Quantcast
Channel: SCN: Message List - ABAP Connectivity
Viewing all 3125 articles
Browse latest View live

Consuming webserives in sap of Non sap system

$
0
0

Hi Guys,

 

I want to consume web services in sap of a non sap system (which is service provide) , but i am encountering a problem that how can I use WSDL file (which contains Service provider data) of service provide to use in abap code to use further, without PI, please guide in this regard as i followed different tutorial which only guide me communicate between two sap system, but i want consume web service of non sap system

 

please help me as I am beginner,

 

Thanks


Re: Consuming webserives in sap of Non sap system

Re: Consuming webserives in sap of Non sap system

$
0
0

Hi Ravi ,

 

Thank you so much  for your help, When I Wsdl url file is received from Service provide, and I am going to utilize this url to fetch data out of it then how Can I access method of this wsdl file to fetch accurate data?

 

like the link you provided to me in this ,from where I got to know that GET_QUOTE

CALL METHOD LV_QUOTE->GET_QUOTE

 

is the wsdl file method.

 

and second this I want to ask IS there  any need to parse xml to abap, or I just follow your tutorial  as it is you provided to me?

Re: CREMAS, ADRMAS and data filters in BD64

$
0
0

The solution for distribution of Vendor Master (with contact persons included) will use serialization group with ADRMAS, ADR3MAS, ADR2MAS and CREMAS and will use basic idoc type CREMAS06 and adapted coding from EhP7 SP05.

 

Just in case somebody else is interested.


Re: Modifying the Individual conditions-Banking

$
0
0

Hi Anmol,

 

Did you discover how to create an individual condition using function module?

 

Thanks

no EAN code on Standard Order (created by incoming IDoc)

$
0
0

Hi

 

incoming IDoc has just been created. In segment E1EDP19 003 exist right EAN number, but on standard order created via this IDoc automatically EAN code field isn't filled. When I'm creating the same OR with the same data manually everything is okey (EAN code is in the right place). However when I'm reprocessing IDoc manually (in WE19) creating another, identical order then EAN code is also appearing on every item.

 

Any ideas what can be the reason of this problem?

 

Cheers

Ashoka

RFC and read table in another destination

$
0
0

HI

I search a complete code to read a table using the function 'RFC_GET_TABLE_ENTRIES '

I can acess to another server using RFC without problem.

 

I need to read table 'tmsbuftxt ' and data ' TRKORR '.

 

my program looks like

 

 

TABLES:
       tmsbuftxt.

     DATA:
       i_tab512 TYPE tab512 OCCURS 0 WITH HEADER LINE,
       i_tmsbuftxt TYPE table of  tmsbuftxt,
       st_tmsbuftxt type tmsbuftxt.

     PARAMETERS p_dest LIKE rfcdes-rfcdest OBLIGATORY.

     START-OF-SELECTION.
       CLEAR i_tab512. REFRESH i_tab512.
       CALL FUNCTION 'RFC_GET_TABLE_ENTRIES'
         DESTINATION
           p_dest
         EXPORTING
    "     BYPASS_BUFFER           = ' '
     "     FROM_KEY                = ' '
     "     GEN_KEY                 = ' '
     "     MAX_ENTRIES             = 0
           table_name              = 'tmsbuftxt'
     "     TO_KEY                  = ' '
     "   IMPORTING
     "*     NUMBER_OF_ENTRIES       =
         TABLES
           entries                 = i_tab512
         EXCEPTIONS
           OTHERS                  = 1.

       i_tmsbuftxt[] = i_tab512[].



         LOOP AT i_tmsbuftxt INTO st_tmsbuftxt.
             Write : st_tmsbuftxt-TRKORR.
         ENDLOOP.

 

 

 

 

The problem is I dont know how to use the function correctly , I can choose the RFC I want but  my programm return nothing.

Anyone can corect this?

I just start develop abap since 1 month.

I just want write  st_tmsbuftxt-TRKORR. who is in another environnement using RFC.

Re: SAP RFC Function module


Re: How to extend generated iDoc types for CRMXIF_PARTNER_SAVE_M01

$
0
0

Kavita,

 

XIF Adpater is directly linked to BDoc Adaper as well for processing. Also, the standard best practice to extend XIF IDOCs is using transaction BDFG as it involves both BDoc adpater, AET & EEWB changes.

 

I would not suggest directly updating the XIF IDOC segment as the set up doesn't permit that.

 

You can always create a Custom IDOC for the requirement but then you have to trigger the IDOC programmatically.

 

Rgds,

Ravi

How to use loop in VBAK table using BDC RFC connection through excel vba ?

$
0
0

Hello,

 

I am trying to extract data from VBAK table using rfc connection with Excel VBA. where i can able to pull data first time, when i tried to use the same set of code using loops, it throws an error like BAD INDEX.

 

Any help appreciated.

Formatting the spool output.

$
0
0

Hello All,

 

   Can any one let me know how to format the spool out into internal table.

 

   I am using FM "RSPO_RETURN_ABAP_SPOOLJOB"  to get the spool data and getting the output in Buffer table type which is single column with 255 characters.

 

Now i need to format this data into internal table so that i can process further.

 

Thanks & regards,

sathish.

Re: RFC and read table in another destination

$
0
0

Hello Guillaume,

 

welcome in this forum.

 

I try RFC_GET_TABLE_ENTRIES, but I think it is better to use RFC_READ_TABLE. Try this to get the numbers of the transports from another system:

 

"-Begin-----------------------------------------------------------------  Program Z_TEST.    Data Fields Type Standard Table Of RFC_DB_FLD.    Data Field Type RFC_DB_FLD.    Data Data Type Standard Table Of TAB512.    Data Line Type TAB512.    Field-FIELDNAME = 'TRKORR'.    Append Field To Fields.    Call Function 'RFC_READ_TABLE' Destination 'NONE'      Exporting        QUERY_TABLE = 'TMSBUFTXT'      Tables        FIELDS = Fields        DATA = Data      Exceptions        TABLE_NOT_AVAILABLE = 1        TABLE_WITHOUT_DATA = 2        OPTION_NOT_VALID = 3        FIELD_NOT_VALID = 4        NOT_AUTHORIZED = 5        DATA_BUFFER_EXCEEDED = 6        Others = 7.    If sy-subrc <> 0.    Else.      Loop At Data Into Line.        Write: / Line.      EndLoop.    EndIf.

"-End-------------------------------------------------------------------

 

Let us know your results.

 

Cheers

Stefan

Re: IDOC's in TRFC ("Transaction recorded") Problem

$
0
0

Dear Kumar,

 

We have enough DIALOG WP defined, now we will check 1280898 note and see what happens.

 

Best Regards

Re: Proxy Cliente - Connectivity WSDL error

$
0
0

Hi Guys,

 

I am trying to upload the attached WSDL through SE80, but getting the following error "Exception of class CX_PROXY_GEN_ERROR", any ideas about what is going wrong?

 

Tnx!

 

N S

Re: Update HRPAD500 table update

$
0
0

Found the solution by debugging standard PP01 tcode.

Use RH_INSERT_INFTY

and pass relationship (HRPAD500) details in ADATA field in tables parameter.

Relationship can be createdby passing ISTAT as 01.


Transaction BDXJ. Сan not add standard table to distribute.

$
0
0

Hi Experts,

 

I'm trying to add standard table to the distribution group in transaction BDXJ, but get error:

 

Entry S T77SK does not exist in OBJH (check entry)

 

I will be grateful for help to adding this table or documentation about distribution groups.

Re: Transaction BDXJ. Сan not add standard table to distribute.

$
0
0

Check it with transaction SOBJ, also check for maintenance dialog definition SE54/SE11.

 

Hint : If you don't find T77SK, Type S for Table, look for a maintenance view as V_T77SK, Type V for View, or similar name. (e.g. execute SE16N on OBJH with wildcard or a where-used search on table name from SE11)

 

Regards,

Raymond

Re: Transaction BDXJ. Сan not add standard table to distribute.

$
0
0

Thank you.

I'm use view instead table.

lsmw, butch input RCPTRA01 , assignment of components to routings

$
0
0

hi experts

I use "LSMW" with the method "butch input", the subject : routing "RCPTRA01" for the assignment of components to the existing routings, but when I execute my butch input, the system forces me to create a new routing then it will assign the components. but what I want is to assign components to the routings that are already created

you have proposals please

INcorrect value: unknown namespace http://www.w3.org/2001/xmlschema consuming webservies in sap

$
0
0

Hi guys,

 

 

I am trying to consume External web services url  http://172.31.3.48:8717/?wsdl from se80 - enterprise services - client proxy etc, which is located on our local server , but it giving me a error"liberary haldler exception"  " incorrect value: unknown namespacehttp://www.w3.org/2001/xmlschemaI AM trying to solve this issue from last one week but failed to fix it,

 

Attached is my WSDL File

 

please help me.

Viewing all 3125 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>