SAP BC  XML to RFC

hi all ,
I am new to SAP BC connector. I need to configure a scenario to send data from XML to rfc. Please tell the confguration steps to do the same.
Yours help will be more appreciated.
Thnz
Faheem

hi,
Problem is with the response sturcture defined in the BAPI, eventhough ur scenairo is async, there will be a response message defined in BAPI.
open the RFC MI in IR you will see the response message type also, handle that at XI or ask your abaper to supress that at R/3, your problem will be solved.
Regards,
Sukarna

Similar Messages

  • Sap PI-xml Digital Signing and encryption in PI-ehp1

    Hi Experts,
    Our Business scenario is sap R/3 (sender)>rfc data to PI and to webservice(receiver) using rfc and soap adapters
    The communication channels are secured by snc/ssl.
    Now the issue is PI have to send digitally sign and encrypt xml messages to receiver and I got no clue how to do this.
    Experts please advise.
    We have to Digitally sign and encrypt xml messages in PI
    1)can we use SAML or Ssfdata xml..if so how to use them,can you send me some documents with screen shots so that i can configure the same in PI
    We used adepative tool but it does not support Dsigning
    2)Please advise the correct procedure
    3)how to develop a adapter user module and how to call it for testing purpose...please advise
    O/s:windows
    PI EHP1 7.1
    DB:oracle
    PLEASE HELP
    Thanking you
    Pooja

    Hi Experts,
    Please Advise for my above querys
    1)I tried to develop a EJB project and generate EAR file and depoly it in J2ee server and create adapter modules to call It..however I tried to use a document provided my sdn http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0b39e65-981e-2b10-1c9c-fc3f8e6747fa?quicklink=index&overridelayout=true................however I am unable to see the options provided ,unable to create EAR project and unable to see deploy option,please can you share a correct document irrespective of nwds SP level
    2)Apart from giving JNDI name in module tab,what else should be mentioned for a small test message request/response
    3)How to call the adapter for testing purpose apart from monitoring audit logs
    Please Advise Experts
    Thanking you
    Pooja

  • Send idocs to SAP in SAP's XML format

    Hi!
    currently we are sending idocs to SAP using the RFC IDOC_INBOUND_ASYNCHRONOUS. this requires us to break up the data so that we can populate rows in the EDI_DC40 and EDI_DD40 table.
    Is it possible, via a RFC call, (or rather, via some programmatic interface if via RFC is not possible) to send idocs to SAP in XML format?
    Thanks,
    Mustansir

    Hi Satish,
    Thanks for the reply. Do I need to do event driven message processsing in XI for this? The other way is to schedule the RBDAPP01 in R/3 to post idocs in sequence based on the message type and Partner number
    Does this makes sense?
    And any idea bout the second question for roll back?
    Thanks

  • XML to RFC Scenario

    Hi All,
    I am working on XML to RFC scenario. I've few questions.
    1) how do I map XML structure with RFC?
    2) The incoming XML file contains multiple records while BAPI can handle one record per time so how can I resolve this situation?
    Thanks in advance.
    Regards,
    Chintan

    >>1) how do I map XML structure with RFC?
    In Message mapping and Interface Mapping Choose the source interface as the input XML message type and the target message as the RFC request message and map it.
    >>2) The incoming XML file contains multiple records while BAPI can handle one record per time so how can I resolve this situation?
    You need to use BPM with mulitimapping. To call the RFC for every record you should define a Block step with mode as ForEach and add the Send step to RFC within the block.
    Illustration of Multi-Mapping and Message Split using BPM in SAP Exchange Infrastructure By Piyush Gangwal
    Thanks
    SaNv...

  • Step by step bapi to convert SAP to XML please its urgent

    step by step bapi to convert SAP to XML please its urgent
    full points if with full example and coding in ABAP,
    Thank you,
    Regards,
    Jagrut Shukla

    yes i want to convert Catsdb table into xml format and safely in server, i.e secured  place

  • SAP XML and SAP IDOC XML

    Hi Friends,
    Can any one tell me what is the difference between SAP XML and SAP IDOC XML?
    Regards,
    Kumar

    Hi,
    Various XML standards are supported by SAP. It presents data according to an SAP specification either in IDoc-XML or BAPI-XML, the SAP XML extensions for IDocs and BAPIs. It uses preprepared representations of the SAP interfaces to XML Commerce Business Language (xCBL) messages to facilitate communication with the MarketSet marketplaces.
    Messages are stored in a generic envelope. This envelope contains metadata that controls, among other things, the routing of the messages. SAP supports two different standards for these envelopes - Microsoft BizTalk and a format similar to Simple Object Access Protocol (SOAP). Packaging SAP BAPIs in a standard envelope offers several advantages, including direct processing of messages by external applications and a uniform system of error handling.
    Regards'
    Aashish Sinha
    PS : reward points if helpful

  • SAP MII XML xpath range

    Hello All,
    Is there a way to get  a range of nodes in SAP MII XML using xpath ? For example I have a query with 1000 rows and I want to take a batch of 2 rows and process them using a separate branch until I reach the end of the XML.
    I am using a For Next Loop for it & I am using the following XPath based on what I found online. Its still not working. ?
    Data.Results{/Rowsets/Rowset//Row[position() >= For_Next_Loop_0.CurrentItem and position()  < (For_Next_Loop_0.CurrentItem + 2)]}
    Any ideas ?
    Thanks,
    Kiran

    Thanks Christian !! I had figured out the adding the # part. But the range is getting a bit tricky
    This is what I am looking for
    XML Document
    Name
    Value
    A
    1
    B
    2
    C
    3
    D
    4
    Batch 1
    Name
    Value
    A
    1
    B
    2
    Batch 2
    Name
    Value
    C
    3
    D
    4
    Thanks,
    Kiran

  • How to save xml output of fm into sap as xml

    how to save xml output of fm into sap as xml
    thank you,
    regards,
    Jagrut bharatkumar shukla

    Hi Jagrut
    The XML document can be stored in an ABAP variable rxml of the type STRING or XSTRING, or in an internal standard table sxml of the elementary line type C. Hence, I believe, your issue with the lenght can be resovled with this types.
    For rxml, you specify an interface reference variable of the type IF_IXML_OSTREAM that points to an IXML output stream.
    For rxml, you specify an interface reference variable of the type IF_IXML_DOCUMENT that points to an IXML document.
    With the stream factory you have several options. Before you call your CALL TRANSFORMATION, you setup your stream factory for these different options.
    1. You want to write the file to the application server file system. You want to create your OSTREAM as a binary string. In this example b_xml is an empty binary string. OSTEAM will be the reference variable of tyep IF_IXML_OSTREAM.
    ostream =
    streamfactory->create_ostream_xstring( b_xml ).
    You get the output lenght with the following:
    ressize = ostream->get_num_written_raw( ).
    You can then send the entire string to the file system with the following:
    transfer b_xml to filename1 length ressize.
    Also refer to this weblog:
    /people/tobias.trapp/blog/2005/05/04/xml-processing-in-abap-part-1
    Regards
    Ravish Garg
    <b>
    *Remember reward points is the best way to say thank you :)</b>

  • SAP PI7.11 adapter RFC sender issue after migrating to SAP ECC6

    Hi,
    After the migration of our backend from SAP 4.700 x 200 to SAP ECC6 unicode (kernel 7.20)), we have a issue of connexion to our SAP PI 7.11.
    A part of the field in ECC6 are not well mapped by the abapter sender RFC to the xml in PI.
    I join a screen shot what I have in SAP ECC6 (inquiryECC6.jpg) and the result in SAP PI 7.11in xml format ofcourse (Inquiryxml.jpg).
    Is there someone who can help me?
    Regards.
    Eric Koralewski

    In SM59, there is a new tab <unicode>.
    In that tab, I checked the unicode checkbox  and that's ok.
    Regards

  • How to modify SAP AII XML So that i can able to work with AII DC -2.1 & 4.0

    I am new to SAP. I am doing integration work between SAP AII and Sun Java RFID Middleware. Currently Sun RFID 3.0 version supports SAP AII DC 2.1, but I am using SAP AII DC 4.0.
    When the Tag commissioning was performed, I am getting an error like "Unexpected element: ConfigureTagFilter".
    I need to know following things,
    1) Can I remove ConfigureTagFilter tag from AII XML? If possible How to do it?
    2) Is there any Compatibility mode option in SAP RFC or AII settings available, so that I can able to switch between AII DC 2.1 & AII DC 4.0 XML formats.
    Please let me know how to do this in SAP AII.
    Thanks in Advance.

    hi,
    you can change the XSLT mapping in AII
    I did it for some other tools (intermec reader) that work with AII 2.1
    and now they work for AII 4.0
    Regards,
    michal

  • Verify if payload is a valid XML (MAIL - RFC)

    What I need to do to verify if the payload is a valid XML ?
    I have a process that get data from email and call a RFC:
    MAIL -> XI <-> RFC.
    It's run very well, but I have problens when I recept any message not expected how a text/plan sent by span for example.
    Thanks!
    Evandro.

    Hi,
    Just adding on to Henrique, From SAP help and through some tests in XI,it is seen that, the only validation that takes place within XI is for mandatory nodes and occurrence of nodes of the target message. There is no validation of the source message (workaround is shown in the blog provided below), and there is no validation of details (like length, maxLength, minLength etc.) as specified in the XSD.
    Do go through these links......
    /people/jacob.vandborg/blog/2005/11/29/schema-validation-of-incoming-message
    The following link gives mapping XSD to JAVA.
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/7e5e3c754e476ee10000000a11405a/content.htm
    You can also get some help by following this thread.
    Validating an XML message from Outbound Interface.
    Regards,
    Abhy

  • Can SAP R/3 send RFC response to Xi

    Hi ,
    I have one scenario where Sap has to trigger an RFC call and shouls send the response to XI and the Xi should write that response to file .
    How to send just response of RFC to XI ??

    hi,
    you need to execute an RFC
    with destination XI (in background)
    so the data will reach the XI (and then you can save as file)
    but you can only do it with RFC request
    so once you execute your first RFC and you'll get a rensponse
    you need to map the reponse to a request of a new RFC
    and execute the new one which will take the data to the XI
    basically that's all
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Sap PI - XML signature

    Hi Experts
    We have to digitally Sign and Encrypt and Decrypt an XML file in PI7.11 system using soap adapter
    To have an expert advise
    can I use WSSE or Apache WSS4J or SAML or Apache axis soap adapter
    My requirement is:
    XML Documents shall be signed using XML signature and Use enveloped signatures
    Support RSA signing in conformance with the algorithm indentified by sha1
    Use exclusive canonicalization (with comment or without comments)
    Will WSSE or Wss4j can support the above requirements...Please advise
    Thanking you
    Pooja

    Hi ,
    Thank you for your response...
    I mean when you say java experts can do easily...yes we do have java experts who can develop a source code encrypt and sign the code and give it to us as an ear file
    However I tried deploying EAR file on PI system my converting it into sda file ...no luck ..the file getting converted to ear file and i renamed and tried to deploy using jspm....no luck
    As we cannot import the ear file directly to NWDS to deploy it on PI system ....what we are trying is to get the source code from Java developer and we are developing and EJB and Ear projects by replacing the source code
    and later once deploy using adapter modules we can test it
    My question is:
    Can we configure WSSE on PI as per this link(/people/rajendra.badi/blog/2011/08/24/configuring-wsse-digital-signing-and-encryption-using-sap-pi-711-aae-soap-adapter) and try
    Signing and Enc/Dec
                                                     or
    How to configure and use Apache wss4j and Apache axis soap adapter...can you please forward me some documents on it
    Thanking you
    Pooja

  • Migration of SAP DMS documents from RFC Archive to SAP HTTP Content Server

    Can anyone verify the correct OSS for the migration of documents from an RFC Archive repository (non SAP) in SAP DMS to a SAP Content Server HTTP Repository. Most of the OSS notes seem to indicate HTTP to HTTP migrations or based storage category migrations.
    Which is the most suitable for this?
    Edited by: Athol Hill on Oct 30, 2009 2:35 PM

    Dear Athol,
    If you want to move the originals from an archive or vault to a Content  
    Server, please use the DMS_KPRO_CONVERT and DMS_KPRO_CONVERT2 report I   
    would kindly ask you to see teh documentation on DMS_KPRO_CONVERT report 
    in transaction SE38, which explains the whole process and gives          
    necessary information.                                                                               
    This conversion program offers two possibilites:                                                                               
    - Complete migration:                                                    
    The meta data of the document info record and the checked-in original    
    application files are migrated together. The checked-in original         
    application files are transported into the storage catgories.                                                                               
    - Step-by-step migration:                                                
    In the first step meta data is migrated. The original application files  
    remain in the old storage data. The migration of original application    
    files starts after you have processed the files with the integrated      
    viewer and checked them into a secure storage area.                                                                               
    Best regards,
    Christoph

  • SAP IDOC XML to Flat File Conversion

    Hello,
    I have downloaded SAP schema through the "Consume Adapter Service" with properties GenerateFlatFileCompatibleIdocSchema = "true" and FlatFileSegmentIndicator = "SegmentType". I am trying to convert IDOC XML into a IDOC Flat File.
    Though the flat file gets created it has a "/" at the end of each blank field which I do not want in the flat file. I see the schema has <recordInfo structure="delimited"...> which I believe should be "positional". I tried
    changing preserve_delimiter_for_empty_data="True" and suppress_trailing_delimiters="False" properties also but did not help.
    I would appreciate any help on this.
    Thanks,
    Tarun

    Hi Tarun....
    please check this property set this property GenerateFlatFileCompatibleIDoc is set to false

Maybe you are looking for

  • Why my iphone 5 restart itself when I make a call on facetime?

    When I make a call on facetime, sometime my iphone 5 was hang, then black screen and restart itself. At the first, I think it's because my ios is 6.0 so I update to 6.0.1 but it still restart itself. What should I solve this problem?

  • Quicktime Player Sound Only

    I have quicktime pro 7.4.1 and on my mac pro only, in Quicktime Player from a fresh download, the video starts out fine and then the video window goes away and only the sound plays, I have tried everything I can think of and am having the same thing

  • DB Connect

    I am trying to create a connection to DB2 tables via DC Connect.  If I select the Create... option it asks for three parameters which are selected from Picklists: Logical System Name Source System Name Type and Release From what transaction do I set

  • Podcasts delete themselves while playing

    Hi all- There's one podcast to which I subscribe (KQRS Morning Show) which will randomly delete themselves from my 5S while they are playing, and I am forced to re-download them.  I do not sync them with my Mac, and this happens throughout the day wh

  • Multithreaded behavior of new Solaris 8 /dev/poll

    When one thread is blocked in the ioctl for the /dev/poll device (to retrieve the fd's with events), a write from a different thread to add to the set appears to block indefinitely. I figured this ability (to add to the set from a different thread wi