RFC Send (Sync) --- XI -- RFC Rec (Sync) scenario. Pls help

Hello All,
There is one scenario
RFC Send (Sync) --- XI -- RFC Rec (Sync)
Now I want to make it to async as I do not need response
RFC Send (Async)  ---  XI -- RFC Rec (Async)
1. I know about Abap Client and Server Proxy that can be
    async but the RFC's are very complex in nature. I am not
    and abaper also
    Can there be a way that Sender and Receiver RFC can be
    made Async. Or any other simple way.
Regards

Hi Swarup,
I have done the same thing.
I have removed the export parameters of both the RFCs
In interface mapping I used the request message mapping. and kept the response mapping part blank.
Now when I run this scenario it works fine but also
in sxmb_moni I see two messages.
One for my request mapping. -- ok .
Second empty message for response mapping.
I do not want this second message in my sxmb_moni.
Pls advice
Regards

Similar Messages

  • Apps showing in library but not showing up in devices i pod- sync apps list. ...pls help

    apps showing in library but not showing up in devices i pod- sync apps list. ...pls help
    id: [email protected]

    Are the apps checked to be synced to the iPod and did you click on the sync button in Tunes?
    Were the apps purchased fro the same accoubnt signed into in the iPod?
    Are the apps compatible witht he iPOd model and iOS version?
    Do you have restrictions set that prohibit instaling apps?

  • HT1212 guys!!!! i forgot my itouch password and now it's totally disabled... what else i can do?? i mean my itouch5 is never been sync to any computer... pls help me to get rid of this passcode!! and do all my data and apps will be gone or will it be ther

    guys!!!! i forgot my itouch password and now it's totally disabled... what else i can do?? i mean my itouch5 is never been sync to any computer... pls help me to get rid of this passcode!! and do all my data and apps will be gone or will it be there?? pls

    Forgotten Screen-Lock Passcode
    Connect the iOS device to your computer and try to make a backup
    iOS: How to back up
    Then restore via iTunes. The iOS device will be erased. Place the iOS device in Recovery Mode if necessary to allow the restore.
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store    

  • I want to change my password but the system is not sending me message to reset my password. pls help someone is using my password without my permission and i want to change my password.

    i want to change my password but the system is not sending me message to reset my password. pls help someone is using my password without my permission and i want to change my password.

    If you are talking about your Apple ID password, make sure it IS your apple ID.
    In the past 24 hours, I have received two emails "How to reset your Apple ID password". I  had not requested any change and I finally realized someone else is trying to reset the password. I have had this Apple ID since 2009 so I am not using someone else's ID.
    Again, if you are not receiving the email to reset make sure you have the right ID - it might be going to the email linked to the account, and it might not be yours.

  • Help with RFC sender, Program And RFC Destination

    Hi!!
    my scenary is asynchronous
         RFC Sender -> SAP-XI -> Oracle reciever
    I have a problem with abap, especially rfc, program and rfc destination. The connection with SAP-XI exist and SAP-XI  receive the message but the message is empty.
    1. In my program on the line
              CALL FUNCTION 'ZBAPI_SD_PED_ORD_SERVIC' DESTINATION 'ZXI_ENVIAR_PED_ORD_SERVIC'
              catch an error system_failure = 2 and it dont execute the rfc ZBAPI_SD_PED_ORD_SERVIC
    2. I rewrite my program, that line to
              CALL FUNCTION 'ZBAPI_SD_PED_ORD_SERVIC' STARTING NEW TASK 'NEW' DESTINATION 'ZXI_ENVIAR_PED_ORD_SERVIC'
              catch an error communication_failure = 1 but the rfc ZBAPI_SD_PED_ORD_SERVIC is executed but no send to SAP-XI
    3. I rewrite my program, that line to
              CALL FUNCTION 'ZBAPI_SD_PED_ORD_SERVIC' IN BACKGROUND TASK DESTINATION 'ZXI_ENVIAR_PED_ORD_SERVIC'
              No error but it dont execute the rfc ZBAPI_SD_PED_ORD_SERVIC and the message in SAP-XI is empty, display the tables but not the row. i check the table PED_ORDEN and RETURN but the controls fields dont are afected.
    What is my Error?
    Where am i making a mistake?
    RFC
    FUNCTION zbapi_sd_ped_ord_servic.
    *"Interfase local
    *"  TABLES
    *"      PED_ORDEN STRUCTURE  ZSD_RFC_T04
    *"      RETURN STRUCTURE  ZSD_RFC_R06
      TABLES: zsd_ped_orden, zsd_rfc_r01.
      DATA: tb_ped_orden LIKE zsd_ped_orden  OCCURS 0 WITH HEADER LINE,
                     tb_rfc_orden_error LIKE zsd_rfc_r01 OCCURS 0 WITH HEADER LINE.
    *Get Pedido by Ordenes
      SELECT  *  INTO CORRESPONDING FIELDS OF TABLE tb_ped_orden
              FROM zsd_ped_orden
              WHERE estatus  EQ  space.
      LOOP AT tb_ped_orden.
        MOVE-CORRESPONDING tb_ped_orden TO ped_orden.
        APPEND ped_orden.
        tb_ped_orden-estatus = 'X'.
        tb_ped_orden-fecha_actualiz = sy-datum.
        tb_ped_orden-hora_actualiz = sy-uzeit.
        MODIFY tb_ped_orden.
      ENDLOOP. 
      MODIFY  zsd_ped_orden FROM TABLE tb_ped_orden.
      COMMIT WORK.
    *Errors in Ordenes
      SELECT  *  INTO CORRESPONDING FIELDS OF TABLE tb_rfc_orden_error
              FROM zsd_rfc_r01
              WHERE estatus  EQ  space.
      LOOP AT tb_rfc_orden_error.
        MOVE-CORRESPONDING tb_rfc_orden_error TO return.
        APPEND  return.
        tb_rfc_orden_error-estatus = 'X'.
        tb_rfc_orden_error-fecha_actualiz = sy-datum.
        tb_rfc_orden_error-hora_actualiz = sy-uzeit.
        MODIFY tb_rfc_orden_error.
      ENDLOOP.
      MODIFY  zsd_rfc_r01 FROM TABLE tb_rfc_orden_error.
      COMMIT WORK.
    ENDFUNCTION.
    PROGRAM
    REPORT  ZBAPI_SD_PED_ORD_SERVIC.
    DATA: ped_orden LIKE ZSD_RFC_T04 OCCURS 0 WITH HEADER LINE,
          return LIKE ZSD_RFC_R06 OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'ZBAPI_SD_PED_ORD_SERVIC' DESTINATION 'ZXI_ENVIAR_PED_ORD_SERVIC'
         TABLES
              ped_orden             = ped_orden
              return                = return
      EXCEPTIONS
        communication_failure = 1
        system_failure        = 2
        OTHERS                = 3.
    IF sy-subrc <> 0.
      MESSAGE 'error' type 'I'.
    ENDIF.
    COMMIT WORK.
    RFC DESTINATION
    RFC Destination: ZXI_ENVIAR_PED_ORD_SERVIC
    Connection TYpe: TCP/IP Connection
    Register Server Program: ZBAPI_SD_PED_ORD_SERVIC
    Gateway host: host00
    Gateway service: sapgw00

    hi
    For rfc sender adapter we hv to do some settings .Please chk whether this settings are well configured or not.
    a) RFC destination
    b) RFC channel in the XI directory
    This weblog is a response to a few question about the basic configuration of the RFC sender adapter
    that were posted on the XI forum (and also on my e-mail)
    So here we go, basically we have to configure 2 things:
    a) RFC destination
    b) RFC channel in the XI directory
    RFC destination:
    1. To create the RFC go to TCODE: SM59
    2. Create new destination of type T (TCP/IP)
    3. Make sure you select Registered Server Program option before writing your program ID
    4. Write you program ID (remember it's case-sensitive)
    5. In the gateway host and gateway service write the values of your "Application system" - business system (not the XI server)
    7. No configuration in the J2EE administrator nessecary
    Now we can proceed to RFC channel configuration:
    1. Enter your Application Server
    2. Your Application Server Service
    3. Enter your Program ID from the RFC destination
    And we're done:)
    Now you can test the RFC destination in SM59 to see if it works.
    Please chk this following link.
    1. RFC Processing with the RFC Adapter
    http://help.sap.com/saphelp_nw04/helpdata/en/25/76cd3bae738826e10000000a11402f/content.htm
    2. Configuring the Sender RFC Adapter -
    http://help.sap.com/saphelp_nw04/helpdata/en/67/6d0540ba5ee569e10000000a155106/content.htm
    3.  /people/swaroopa.vishwanath/blog/2006/12/28/send-rfc-to-sap-xi-150-asynchronous
    regards
    Manas

  • Iphone not syncing after updating itunes 10.5. pls help

    Hi apologies but I am new to all this stuff.  I updated itunes to version 10.5 and I think my iphone 4 was synced in during this.  After itunes had updated I found that my iphone wasnt synced in any longer.  I pulled out connecter and re connected but still nothing.  Rang apple tech support (on hold for an hour in cue).  They tried couple of things and then advised to uninstall itunes then reinstall.  I have done that but still not recognising iphone.  I can sync to my other apple computer but if I try and upgrade to iOS5 on that it says I need to go to the normal computer it is synced with or I'll lose some apps etc.  I dont think my iphone has the latest iOS 5 on it yet.  Can anyone pls help?  Apple support now closed :-(  thanks

    I am also in the same boat.
    Windows 7 on Alienware laptop - no problems at all until upgrade of iTunes client to 10.5. 
    After the upgrade, attempts to sync my iPhone 4 hang at "Step 1 of 4: Backing up Rob's iPhone" (for over 12 hours)
    I have read hundreds of documents with various solutions.
    1) Delete backup file from C:\Users\<name>\AppData\Roaming\Apple Computer\MobileSync\Backup
    2) Stop stuck MDCrashReport and AppleMobileBackup processes
    3) Reinstall iTunes
    It all FAILS.  I work in IT and can assure you that nothing changed but whatever was changed by the iTunes application as it was upgraded to 10.5.  This 2 day extravaganza is ridiculously frustrating and creating a rabid anti-apple sentiment in my house.  Why the F would you (Apple) release something that is mandatory for me to use with my iPhone and have it be this buggy P.O.S.?  (Rhetorical - no need to answer, please just fix this problem so I can sync and backup my phone).
    Non-plussed

  • All my send out email lost in cyberspace! Pls Help!

    Hi pp,
    Pls help me! I believe my Mail started to behave strangely when I update the latest security patch or OSX to 10.4.5 ... am using Mail 2.0.7 now...
    Everything look and work fine for my mail server... I can download all email that people send to me, and it's seems like I can send out email to my friends too...
    **** No! Mail seems to work fine when I try sending out email. No error msg, no blockage... everything looks just alright. But my friends have complained to me that they didnt received a single email from me...
    1.feeling something wrong, I called up my Mail server hosting company to check my mail and they say nothing is wrong.
    2. I do a roundtrip testing, by sending email from my own account to my own account. I send out about 10 over mail... nothing was received.
    3. I do a disk verification using Disk Utility. No error detected.
    4. Decided to download a third-party email client program to test, IT'S WORK!
    I can use other email client program to send out and able to receive!
    Conclusion is, if I use Mail to send out my email, it will send out but eventually disappear before reaching the recipient. Something must be wrong with my System or Mail... but I've run out of idea on how to solve it...am getting very desperate at the current situation... hopefully there are some genius or knowledgable kind soul fellow that can help me on this mystery error... hereby, thanks alot fto anyone who offer their help to me. greatly appreciated.
    Powerbook G4 12"   Mac OS X (10.4.5)  

    Nothing in any update should have caused this, and clearly has not for most people -- therefore we should seek an answer aside from waiting for some unknown update.
    What type of account do you have -- POP, IMAP or .mac. In Mail Preferences, what are the selections in Mailbox Behaviors for this account?
    In the Finder, open Home/Library/Mail/Mailboxes -- is there an Outbox.mbox folder, and is it represented by a blue Icon? At Home/Library/Mail/this account folder, are there both a Drafts.mbox folder, and Sent Messages.mbox folder, and are both blue icons?
    More info, please.
    Ernie

  • RFC Sender ---- R/3(RFC) - XI- File.

    Hi All,
       I need some clarification on this weblog for configuring TCP/IP connection
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    Please open this web log and in that
    in 4th and 5th points ..I am having doubts.
    1. how and where can I create the Program ID.
    2. what is that gatway host and service.. Where can I find the gatway host and service for SAP R3
    Thanks In advance.
    Raghavendra

    hi,
    >>>>1. how and where can I create the Program ID.
    just just insert it there (in the RFC dest on the R/3)
    that will create it
    >>>2. what is that gatway host and service.. Where can I find the gatway host and service for SAP R3
    host : check -> SAP logon
    gataway - sapgw + instance number
    (instance number -> SAP logon)
    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>
    Message was edited by: Michal Krawczyk

  • Oracle single sign-on scenario. pls help.

    Hi,
    I have following basic Oracle single sign-on setup in place along with integration with Active Directory 2003.
    All the users are provisioned in AD, which is then synchronized with OID. The OID users is then manually synchronized to Oracle
    E-business suite (FND_USER table).
    So, the flow is like this :
    AD > OID > Ebiz suite
    Problem :
    We are now migrating users in AD 2003 to AD 2008 and i am being asked to perform impact analysis on Oracle Single sign-on environment while this AD migration is in process.
    Any clues or your inputs on impact that this will create on single sign-on will be much appreciated.
    Thanks in advance

    Hi Darsh,
    1. Oracle Internet Directory (OID) is Oracle LDAP storage solution (more here), Oracle Virtual Directory is Oracle solution that can read identity data (and filter it (mask it) based on policies) from Oracle/non-Oracle databases, Oracle/non-Oracle Directories and files and provide the user profiles as LDAP view (more here), There is nothing called Oracle Active Directory, you must be referring to Microsoft Active Directory.
    2. No, Oracle Single Sign On (OSSO) is a feature in iAS (its obsolete), Identity Management is wide umbrella of solutions and concepts.
    3. Oracle Access Manager is one component of Oracle Identity and Access Management suite of products.
    4. Webgate is Oracle access Manager agent that is installed on a webtier, it intercepts the web requests and collect the credentails, send them to Oracle Access Manager for security evaluation (decide what Authentication is needed, verify collect credentials, etc), webgate then enforce the Access Manager decision.
    5. Oracle EBS AccessGate is a java application that has the same use of OAM Webgate (it is OAM agent) but specific to E Business suite, EBS Access Gate is the new solution replacing OSSO agents, OAM is replacing OSSO server component, EBS and OSSO customers can use OAM server with OSSO agents, or with EBS AccessGate.
    HTH.
    Ghassan

  • RFC Sender (XI 3.0, SP14) Load Balancing doesn't work

    Hi all,
    We're "desperately" trying to use the Load Balancing option of RFC Sender Adapter (XI 3.0, SP14). It doesn't work.
    The Adapter can not register to the sender SAP server. But when we do not use the "Load Balancing" option, everything works well.
    We did follow the XI guidelines step-by-step. All necessary configurations in XI and in SAP sender system (TA: SM59) are "properly" done and reviewed by different experts several times.
    Do you have, by chance any running scenario using "Load Balancing" within a RFC Adapter? If yes, I would appreciate if you can share it with me. 
    Thanks a lot!
    Regards,
    Khaled

    Hello Khaled,
    the RFC sender adapter registers a program at the SAP Gateway. Load Balancing for the Sender Adapter means, that you have at least two J2EE server nodes within your XI installation. On all these server nodes the same RFC sender adapter is started and register the same program at the same gateway. The load balancing is then handled by the gateway. That means, that for the sender adapter the settings are the same, even if you use load balancing or not.
    The settings are, e.g.
    - SID=ABC
    - hostname=abchost (central instance, message server)
    - hostname=xyzhost (additional dialog instance of ABC)
    - instance nr=00
    application server (gateway): xi1host
    application server service (gw-service): sapgw00
    programm id: could be freely choosen
    The Metadata Repository could be connected using load balancing. Here a user need to log on to the system.
    The settings here must be:
    Message-Server: abchost
    Message-Server-Service: sapmsABC
    System-ID: ABC
    Logon-Group: e.g. PUBLIC; this logon group need to be created in system ABC using transaction SMLG
    For the RFC-Receiver Adapter the same settings as for the Metadata could be used.
    Keep in mind, that for the RFC Sender Adapter a RFC connection of type T must be created in transaction SM59 in system ABC.
    Rgds.,
    Andreas

  • Error in RFC Sender

    Hi,
    We are implementing a BAPI to send data to PI. We have created the following
    IN R\3
    In SM59 create a new RFC connection type T (TCP/IP).
    Technical settings:
    Activation type: registered server program
    PROGRAM_ID: test_program_id
    Gateway options:
    GAteway host: Host of your R\3 system
    Gateway service: Gateway of your R\3 system
    In XI
    In your RFC Sender Communication Channel:
    RFC Server Parameter:
    Application Server: Host of your R\3 system
    Application Server Service: Gateway of your R\3 system
    PROGRAM ID: test_program_id
    RFC Metadata Repository parameter
    Message Serer: Your R/3 host.
    Message Server Service...
    SystemmID...
    Use a user with authorization to do RFC calls.
    Client...
    Language...
    After we finish setting up your CC, save and Activate.
    Now check the RFC in R/3
    When we run the program in SAP( which contains the BAPI ) for the first time, it runs & send the data but for next run it gives error in SAP side(SM58) :  Commit fault: com.sap.aii.adapter.rfc.afcommunicat ion.RfcChannelMismatchE
    Message no. SR053
    Can any one help us to solve the RFC connection issue
    Thanks

    make sure your program id is unique.try changing it.
    Ref:
    RFC adapter - /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    trouble shooting rfc/soap -
    /people/shabarish.vijayakumar/blog/2008/01/08/troubleshooting--rfc-and-soap-scenarios-updated-on-20042009

  • Doubts in RFC sender Adapter

    Hi XI Gurus,
    Can any body plz explain me about the parameters used in RFC Sender Adapter (like RFC Server Parameters: Program ID, Gateway, etc..)
    Thanks in advance.

    Hi,
    Refer this link there they have given everything clearly
    http://help.sap.com/saphelp_nw04/helpdata/en/67/6d0540ba5ee569e10000000a155106/frameset.htm
    Application Server (Gateway) : host name of the sender system.
    Application Server Service (Gateway):  Gateway service of the sender system. This can be the numeric description of the service port in the sender system or the alphanumeric equivalent (for example, sapgwXX, where XX is the system number of the sender system).
    Program ID: Program ID of the registered server program. The selected program ID must uniquely describe the RFC sender channel in the configured gateway (Application Server (Gateway) and Application Server Service (Gateway) parameters).
    For Program id: In sender R/3 system Tcode SM59
    1.Create RFC Destination with connection type: T
    2.Choose Registered server program
    3.Give program id(you can give any name here, the program id you give in sender RFC adapter and here should be same )
    4. Give Gateway host and Gateway value.
    You can also check this blog
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    Regards,
    Sakthi

  • RFC Sender and RFC Receiver Sync Scenario . Help required.

    Hi,
    I need to make RFC Sender and RFC Receiver Sync Scenario.
    Any docs/links for it.
    Regards

    Hi,
    I have CRM (r/3) and DM (r/3)system.
    Data from differnent tables of CRM system needs to go to
    DM system different tables , data will be saved there and then return response back to CRM system.
    For this I have given one RFC for CRM system
    For this I have given one RFC for DM system
    So I have to make Sync Outbound Interface
    and Sync Inbound Interface.
    So I think so no BPM is required.I am correct?
    Adapter -- RFC Sender and RFC Receiver Adapter.
    Regards
    Edited by: Henry H on Jan 29, 2008 11:20 AM

  • RFC Sender to start Sync/Async Bridge

    Hi,
    I'm trying to start a Sync/Async Bridge calling RFC. When importing RFC into Integration Repository, by default it creates two Message Type for request and response (RFCNAME and RFCNAME.response).
    My scenario is configured as follows:
    <b><u>Integration Repository</u></b>
    The starting step in BPM is configured with an abstract synchronous interface (output message is RFCNAME and input message is RFCNAME.response).
    <b><u>Integration Directory</u></b>
    <u>Sender Agreement</u>: sender service is R3 business system (from SLD), interface is the RFC program name (not an interface).
    <u>Receiver determination</u>: sender service is the R3 business system, the interface is RFC program name, an as configured receiver the BPM.
    <u>Interface determination</u>: In the configured inbound interface for the receiver (BPM) I configure the abstract synchronous interface
    My problem is that when calling the RFC, the outbound message is received into XI but does not reach BPM: NO_RECEIVER_CASE_ASYNC. Can you help me please?
    Thank you,
    Gari.
    (Sorry for my english!!!)

    Of course it is possible. Some considerations, though:
    1. you said that receive/send steps of BPM are configured with RFC and RFC.Response messages. However, by default, the RFC interface cant be used as Abstract Async. You have to explicitely create those abstract async interfaces. Have you done that?
    2. What extra steps do you have in BPM? I mean, you dont need to create abstract interfaces based on message type of RFC. If you have the message type of your receiver, you can perform mapping outside of BPM, and all abstract async interfaces could be done refering to the receiver message types.
    Regards,
    Henrique.

  • Rfc sender to soap recever (sync comunication in sender and recever side)

    this scenario is from RFC sender(synchronous) to SOAP receiver adapter(synchronous)
    RFC sender adapter (synchronous):  r3 will send some details as request and it will get back 3 new fields as response.
    SOAP receiver adapter(synchronous): webservice receve the details and it will send newly created 3 new fields in SQL database.
    1) i am sending product details from R3 to xi using RFC sender adapter.
    2) Details will be send From XI to webservice using receiver SOAP  adapter.
    3) The purpose of providing webservice by SQL database team : they want to receive the details from webservice to SQL database, once data base receves details through webservice, it will create the 3 new fields , then these fields will be returned to webservice . IS IT POSSIBLE?
    4) Response(3 newly created fields by SQL database) will be send back to SOAP adapter by webservice
    5)Xi sends these 3 new fields to the RFC sender adapter(responce), with the help of RFC adapter 3 new fields will be posted into R3
    Thanks,
    siva

    Siva,
    I think it is depending on approach...both approach sounds good.
    But if databse team providing you webservice..i think you can go with this.
    Anyway future would be  webservice for all communication..:)
    Nilesh

Maybe you are looking for