For RFC  Sender  " Is it must i need to write ABAP code " ?

Hi All
   I am learning XI but  i have problem while creating RFC sender ?
   How to configure RFC sender? I must write ABAP code in R/3 side ?
  Can any one expalin me indetail on this?
  I see many links in SDN but i was not able to find the exact one
Adv..thanks and points
Rakesh

Hi ,
Go thru this data...
<b>Configuring the Sender RFC Adapter </b>
<b>Use</b>
You configure the sender RFC adapter so that you can use it to convert RFC calls from a sender to XML messages and send these messages to the Integration Server.
<b>Integration</b>
You configure the adapter on the Parameters tab page during the definition of a communication channel. In addition to the adapter configuration, on the Module tab page in the module processor, you can specify generic modules, which give the adapter additional functions.
<b>Prerequisites</b>
       1.      You have created a new communication channel or have opened an existing one.
       2.      On the Parameter tab page you have selected the adapter type RFC.
       3.      You have selected the Sender radio button to define the adapter as a sender adapter.
       4.      The communication channel in which the RFC adapter is defined must be defined for a service of type Business System in the area Service Without Party.
       5.      The specifications in the communication channel must match the specifications for the adapter-specific identifiers for the business system. For more information on adapter-specific identifiers, see:  Service
<b>Activities</b>
<b>Transport Protocol</b>
The transport protocol is RFC.
<b>Message Protocol</b>
The message protocol is RFC (RFC XML).
<b>Adapter Engine</b>
Select the Adapter Engine on the Integration Server, or select a non-centrally installed Adapter Engine.
<b>Adapter Status</b>
Set the adapter to Active to enable messages to be exchanged.
RFC Server Parameters
The RFC server parameters identify the sender system.
<b>Specify the following parameters:</b>
Parameter     Entry
Application server (Gateway)     Gateway host of the sender system
Application server service (Gateway)     Gateway service of the sender system
Program ID     Program ID of the registered server program
Unicode     Select this check box if the sender system is a Unicode system
Initial connections     Number of initial connections required between sender system and adapter
Maximum connections     Maximum possible number of initial connections required between sender system and adapter
Advanced mode     Select this check box if you want to specify additional parameters of the class JCO.Server for the adapter configuration
Enter the name and values of the parameters in the table displayed
<b>RFC Metadata Repository Parameters</b>
The RFC metadata repository parameters identify the SAP system containing the repository for the RFC metadata. This does not necessarily have to be the sender system.
<b>Specify the following parameters:</b>
<b>Parameter     Entry</b>
Load balancing     Select this check box if your SAP system works with load balancing
Application server     Host name of the SAP system (without load balancing)
System number     System number of the SAP system (without load balancing)
Message server     Host name of the message server (with load balancing)
Message server service     Operating system service of the message server or message server port (with load balancing)
System ID     System ID of the SAP system (with load balancing)
Logon group     Logon group for the dynamic logon load (with load balancing)
Authentication Type     Logon data for the SAP system
User Name     SAP user name
User Password     SAP user password
Logon language     SAP logon language
Client     SAP client
Advanced mode     Select this check box if you want to specify additional parameters of the class JCO.Client for the adapter configuration
Enter the name and values of the parameters in the table displayed
Depending on the SAP system version, the following authorizations are required to read the metadata (authorization object: S_RFC, ACTVT: 16, FUGR):
Function Groups by R/3 Release
R/3 Release     Function Groups (FUGRs)
As of 3.1H     RFC1, SG00, SRFC, SUNI, SYST
As of 4.0A     RFC1, SDIF, SG00, SRFC, SYST, SYSU, SUNI
As of 4.6A     RFC1, SDIF, SG00, SRFC, SYST, SYSU
As of 4.6D     RFC1, SDIFRUNTIME, SG00, SRFC, SYST, SYSU
As of SAP Web Application Server 6.20, the role SAP_BC_JSF_COMMUNICATION_RO is available, which is used for the user SAPJSF and contains all the required authorizations.
Regards,
  Jayaram...

Similar Messages

  • Need to write ABAP Routine at infopackage Selection Options

    Hi All,
    I need to write ABAP Routine at Info Package Selection Options.
    Requiremnet i need to bring  some Sales Document Types (Sales Orders Types) only from R/3.
    Ex I need OrderTypes ZQT,ZSIV etc
    Can any body help to resolve this.
    Regards,
    P.C.V.

    Hi P.C.V,
    If the order type field is already available in the Data Selection Tab of the InfoPackage, then you just need to place your selections there (e.g. order type = ZQT, ZSIV) without the need to use ABAP routines.
    If ever you really need an ABAP routine, here is an example ABAP routine. The most important concept is to modify the range table l_t_range so that the selection reflect what you need.
    data: l_idx like sy-tabix.
    data: w_startdate like sy-datum,
          w_startweek like scal-week,
          w_maxdate like sy-datum,
          w_maxweek like scal-week.
      w_startdate = sy-datum.
      w_maxdate = w_startdate + 104 * 7.
    * Calculate horizon for extraction
      CALL FUNCTION 'DATE_GET_WEEK'
        EXPORTING
          DATE         = w_startdate
        IMPORTING
          WEEK         = w_startweek
        EXCEPTIONS
          DATE_INVALID = 1
          OTHERS       = 2.
      CALL FUNCTION 'DATE_GET_WEEK'
        EXPORTING
          DATE         = w_maxdate
        IMPORTING
          WEEK         = w_maxweek
        EXCEPTIONS
          DATE_INVALID = 1
          OTHERS       = 2.
              read table l_t_range with key
                   fieldname = 'CALWEEK'.
              l_idx = sy-tabix.
              l_t_range-sign = 'I'.
              l_t_range-option = 'BT'.
              l_t_range-low = w_startweek.
              l_t_range-high = w_maxweek.
              modify l_t_range index l_idx.

  • Using a two separate 6534 cards I'm trying to code-up a simple test for my UUT (memory device). I need to write a pattern into the device and read back the pattern and verify it matches the value written.

    I need the simplest method of using two 6534 cards for a memory (UUT) test. I want to write (byte-wide) a pattern (A5,5A) into the UUT, then read it back and verify it matches the value written. Things that change are: Address inputs (increment by 1 for each read/write) with the control signals (card 1) and data values written/read (card 2). If I detect a mis-match, the test stops, I read the location one more time and verify it's really incorrect, the correct value is written back into the same location just read, a counter is incremented to keep track of the tota
    l errors detected and the test (memory read/verify) is resumed. Each time through the memory another counter is incremented to track the number of passes through the memory read test. The test should terminate when the operator hits the VI panel STOP TEST button.

    Dave
    Check out chapter two of the 653x User Manual for information on the different modes of operation. There it explains the difference between strobed and unstrobed I/O as well as Pattern I/O and Handshaking. It sounds as though unstrobed should work unless your UUT requires hardware timing or handshaking. You will have to keep track of errors in software however since the 6534 does not have any counters on it.
    Brian

  • Need help in ABAP code

    Hi All,
    I have the data like this and ABC line is the primary object, Inline is the attribute.
    ABC Line                                                                       Inline
    GH04                    1001
    OI04                    1031
    OU04                    1002
    OU05                                                                            1002
    My requirement is like in the report. I have to use the Inline and restrict with the data when I restrict with 1001, 1031 and 1002. But it has to consider 1001, 1031 and 1002 which starts with only OU*. I donu2019t require all ABC lines.
    I tried to write the code but I couldnu2019t.
    Can any one give the code please?
    Thanks
    Sravani

    if the ABC line item is OU* then you need to display 1001 and 1031 else you want display all the items
    I m right???
    reach me at
    Edited by: shanthi bhaskar on Apr 15, 2010 5:20 PM

  • Need a small abap code

    Dear Friends,
    request your help in creating a small abap Logic.
    Business Case : loading data into 0sd_c03. an addition field product line (ZPRODLINE) has to be populated using Plant (WERKS) and division (SPART)
    Psuedo Logic :
    If division is '32' and plant is '4100'.
    Result = concatenate Plant & Division.
    Else.
    Result = division.
    ENDIF.
    could you pl. help me to write the abap code for the above.
    Regards
    Padmanabham

    Hi,
    In case if you are trying to write in 'Start Routine'  the would be similar to this:
    DATA : I_DATAPACKAGE LIKE DATA_PACKAGE,
             I_TABIX LIKE SY-TABIX.
    CLEAR: I_DATAPACKAGE, I_TABIX.
      LOOP AT DATA_PACKAGE INTO I_DATAPACKAGE.
        I_TABIX  = SY-TABIX.
        IF I_DATAPACKAGE-WERKS  EQ  '4100' AND
            I_DATAPACKAGE-DIVISION EQ  '32'.
           CONCATENATE
            I_DATAPACKAGE-WERKS I_DATAPACKAGE-DIVISION INTO
            I_DATAPACKAGE-<RESULT-FILED>.
          MODIFY DATA_PACKAGE INDEX I_TABIX.
        ENDIF.
      ENDLOOP.
    Hope this would help.
    Message was edited by:
            Nasiroddin Pattan

  • Do I really need to write ANY code to create menus

    I need to create a Enhanced CD. You know....a CD, that when
    put into a computer pops up with menus and options to play music,
    videos, goto a website display a PDF etc......
    I know Director does this, because the last Enhanced CD I saw
    had a lillte "d" in the upper left hand corner and also a message
    that said MADE WITH MACROMEDIA (now Adobe).
    So my question is if I buy Director, will I need to know any
    code or Lingo? I know very little HTML, but thats about it. Was
    something like this created via a drag and drop process, or do I
    need to be a genius...or maybe a super genius?
    Any help or suggestions would be greatly appreciated!
    Chaz

    It's been a long time since I first used Director, I can't
    recall a
    project that didn't some amount of coding.
    Your brief description doesn't include anything overly
    complicated, but
    will require an understanding of the fundamentals of Lingo.
    Director
    comes with some pre-built code widgits and there are 3rd
    party Xtras
    (some free, some that cost) which can make the job easier.
    The best thing of all is the tremendous help that you will
    get on this
    forum. The only real question is do you have the time
    required to learn
    how to use the product?
    Xaos wrote:
    > I need to create a Enhanced CD. You know....a CD, that
    when put into a computer
    > pops up with menus and options to play music, videos,
    goto a website display a
    > PDF etc......
    >
    > I know Director does this, because the last Enhanced CD
    I saw had a lillte "d"
    > in the upper left hand corner and also a message that
    said MADE WITH MACROMEDIA
    > (now Adobe).
    >
    > So my question is if I buy Director, will I need to know
    any code or Lingo? I
    > know very little HTML, but thats about it. Was something
    like this created via
    > a drag and drop process, or do I need to be a
    genius...or maybe a super genius?
    >
    > Any help or suggestions would be greatly appreciated!
    >
    > Chaz
    >

  • Get parameters for rfc sender communication channel

    Hello everybody,
    does anybody know how to establish the values for the cc-parameters?
    For example:
    Where do I receive information about:
    - the Application Server (Gateway) = Gateway host name of the sender system
    - the Application Server Service (Gateway)
    - the Program ID
    etc.
    Regards Mario

    hi,
    did you have a look at my weblog?
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    >>>- the Application Server (Gateway) = Gateway host name of the sender system
    fomr SAPlogon
    >>>>- the Application Server Service (Gateway)
    SAPGW + system number from SAPlogon
    >>>>- the Program ID
    any name
    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>

  • Need help in ABAP code to Enhance the Extract Structure ?????

    Hi all,
        I want to enhance the extract structure to get KBETR & KBRUE fields of KONP table since it didn’t allow me to add those fields while creating the generic extractor because of currency key problems. I want to read all KONP records into internal table with KNUMH (Key). Next, I want to fill them into ZZKBETR & ZZKBRUE of Extract Structure ZOXUR40065 in loop.
    DATA:
      i_t_zrebate like ZOXUR40065 occurs 0 with header line,
      reb_tabix like sy-tabix.
    TABLES: KONP.
      Could you please help me in completing the ABAP code?
    Thanks,
    Venkat.

    Hello Manga,
        I have included the following code in ZXRSAU01:
    WHEN 'ZREBATE'.
    PERFORM ZREBATE_EXIT TABLES C_T_DATA.
    After Double click on ZREBATE_EXIT on perform statement, it created ZXRSAF01 include and the following code is added in it:
    FORM ZREBATE_EXIT TABLES FP_C_T_DATA STRUCTURE ZOXUR40065.
    DATA:
    i_t_zrebate like ZOXUR40065 occurs 0 with header line,
    reb_tabix like sy-tabix.
    FIELD-SYMBOLS: <l_c_t_data> TYPE ZOXUR40065.
    LOOP AT fp_c_t_data ASSIGNING <l_c_t_data>.
    reb_tabix = sy-tabix.
    select single KBETR KBRUE
    into (<l_c_t_data>-ZZKBETR,
    <l_c_t_data>-ZZKBRUE,
    from KONP
    where KNUMH eq <l_c_t_data>-KNUMH.
    if sy-subrc eq 0.
    MODIFY fp_c_t_data FROM <l_c_t_data> INDEX reb_tabix.
    endif.
    CLEAR:reb_tabix.
    ENDLOOP.
    ENDFORM.
    When I tried to Activate this ZXRSAF01 include, it fails with 'The FORM "ZREBATE_EXIT" does not exist'.
      Should it be FP_C_T  or P_C_T? I found P_C_T in ZXRSAF01 include.
      What is wrong with it, please ?
       Can't I add this whole code in main include ZXRSAU01itself?
      The Extractor ZREBATE is based on KONA, KONH & KONP tables. This Extractor and KONA table have the same 4000 records and KONP has 13000 records. I want to extract KBERT & KBRUE from KONP.
       Thanks in advance.
    Regards,
    Venkat

  • How to write a code for cumulative values..

    Hi
    Can any one proivde the Sudo code for Customer exit at Reports.
    I need to write a code for when ever user input Calaender month then querry calucalate the cumulative values also.
    How to write a code for cumulative values..
    Example:
    Customer -Sales.Quantity(CalMonth)---   Sales.quantity(Cumulative Month)  
    1000--223--
    2200
    Regards
    mannev.

    hi mannev,
    to get an idea, search in SDN
    for example
    customer exit code
    with hopes,
    Raja Singh

  • Need towrite ABAP code in cnoverting Country like Malysia to Area like East

    Hi ,
    Need to write ABAP code in cnoverting Country like Malysia  to Area like Ease or West.
    Can anybody help me please?
    Regards,
    kranti

    Hi,
    I think you can also do  it by concatenating the 2 fields data and displaying it in the result. You can go through the link below which discusses the similar issue. Not very sure which would be the best way to achieve this.
    Concatenate 2 fields in a Query
    hope this helps in some way.
    Regards,
    Gaurav

  • XI RFC Sender Configuration

    When configuring the communication channel for an RFC sender in XI, do I need to refer to the sending SAP system (e.g. R/3) or the XI system in the "RFC Server Parameter" and "RFC Metadata Repository Parameter"?  I thought it would be the R/3 system, but I am having issues sending an RFC message (using RFC "STFC_CONNECTION") from R/3 to XI.  The message never gets to XI (i.e. I can not see it in SXMB_MONI or RWB Message Monitor) and comes back with a "System Failure" message and no additional detail.  My SM59 TCP/IP connection is working, I use this RFC destination in my RFC call to XI, and my programID matches between R/3 and XI.  I am using the RFC - "STFC_CONNECTION" in this example.

    Hi,
    Pls find the following link about configuring Sender RFC Adapter.
    http://help.sap.com/saphelp_nw04/helpdata/en/67/6d0540ba5ee569e10000000a155106/frameset.htm
    Also find following blog.
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    Hope this helps..
    Regards,
    Moorthy

  • RFC Sender and Mandant

    Hello,
    I have a understanding question:
    In the RFC-sender-channel's configuration I need to specify the r/3 mandant.
    Does this mean:
    1. when the given user to login R/3 from xi (the one from the channel's config) is in mandant 100
    and
    2. In R/3 I test the rfc using a account in mandant 400
    Then the RFC-Call won't reach the comm channel.
    Is this correct?

    Hi Daniel,
    i just to say one all RFC reside in ABAP stack for that reason we need to give the MANDT of ABAP we just importind RFC or IDOC from ABAP stack
    http://help.sap.com/saphelp_nw04s/helpdata/en/af/7ad9beab5e824cb2403f6821cde7dd/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/6a/11f1f29526944e8580c5e59333d96d/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/6a/11f1f29526944e8580c5e59333d96d/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/a48f3c685bc358e10000000a11405a/frameset.htm
    if its worth pls do the req
    Thanx
    Sampath

  • RFC destination for RFC to File scenario

    Hi,
    I m creating a TCP/IP RFC destination in R/3 system for my RFC to File scenario.
    Step 1:
    For this a Registered server program is created in Jco RFc Destinations with,
    Program Id : pgm1
    Gateway host : PI's host
    Gateway service : PI's service
    application server host: ECC's host
    system numer     : ECC's number
    client  : ECC's client
    logon user : ECC user
    password : pwd
    Step 2:
    In SM59, TCP/IP connection the following parameters are given:
    Program ID : pgm1
    Gateway host : PI's host       -
    > is this correct
    Gateway service : PI's service      -
    > is this correct
    Step 3:
    So i am calling the RFC in ABAP program (R/3 system) like:
    CALL FUNCTION 'Z_HR_OUTBOUND_DATA2'
    IN BACKGROUND TASK DESTINATION 'Z_HR_OUTBOUND_DATA2'
    Step 4:
    In PI side,
    for RFC sender I am passing :
    Application server : PI server
    Application server service: PI host
    program ID: pgm1 which was created in the previos step
    For RFC Metadata Repository Parameter, i am passing all the values related to R/3
    Please let me know whether the steps and values i given is correct.
    B'cos even if i give ECC's information in Gateway host and Gateway service the scenario works fine and if i PI's info then also it works fine.
    so i am confused as which is the correct method. pls clarify

    Ok I will try to explain....
    Assumptions: R3_TO_XI is the name of RFC which I created in ECC of type T.
    While creating the RFC in ECC we mention a unique name which is called Progaram ID. Now the same program id we mention in our sender RFC CC.
    So now when an ABAP Progarm (where you will call this RFC with it's destination) is scheduled/triggered with the code as mentioned below then since the DESTINATION ('R3_TO_XI') mentioned here contain the same program id which we have mentioned in our sender CC, invokes the adapter in PI and soon after that all pipeline steps get executed in XI.
    CALL FUNCTION 'ZBAPI_COMPANY_GETDETAIL'
      IN BACKGROUND TASK
      DESTINATION 'R3_TO_XI'
      TABLES
        comp_detail = company_detail.
    COMMIT WORK.
    Regards,
    Sarvesh

  • 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

  • Rfc Destination problem in RFC Sender Adapter

    Hi experts
    I created a Rfc destination type TCP/IP for Rfc Sender adapter.
    while creating i passed following parameter:
    1) I selected Activation Type option-> Registered Server  
    2)Given a Program id , same as i given in Rfc sender Adapter config.   
    3)Gateway option:
       i) Gateway Host:Server IP address where i created  Rfc.
      ii) Gateway Service:sapgw00
    After making these entry, i m unable to receive message at XI end (I am executing Rfc at R/3 site due to Rfc sender)

    Hi
    please check for the following things.
    1. check the RFC destination using the connection test tab in the R/3 system.
    2. check whether the program id that u have given is registered or not.
    to check the program id go to the transaction SMGW, in the menu select Goto-->LoggedonClients
    check for ur program id name in the table.
    3. when you configure the RFC sender adapter in XI then you have to give the same program id name that you will give while creating the RFC destination in the R/3 system.
    if u still face the problem please reply me back.
    Thanks
    Rinku

Maybe you are looking for

  • Error in Modify a sales order, when we add the item in the sales order.

    Each time when we try to modify a sales order, adding a new item.We get a dump and the changes are not saved in the Data base. Could you help on this??

  • What is the best way to merge a file content into log file

    What is the best way to merge a file content into log file. In worst case, I will read the file line by line as string, then use logger.info(lineString)to output to log file. However, is there better way to do this? The eventual log file will be some

  • Backup root file system on DVD

    I have a root file system about 4Gb large. Can I back it up on a DVD? I read the ufsdump works with tapes. Can it work with a DVD? If yes, what is the command format?

  • Oracle Business Intelligence 10g rel2 installation

    Hi, I am trying to install the Oracle BI 10g rel 2 server but am getting the following error during the file copy stage : "java.util.zip.ZipException: invalid entry CRC (expected 0xc2083262 but got 0x6338f69d)" I am not planning to associate it with

  • Import XMI

    Hi all, Does SJSE 8.1 supports XMI import? Thanks -Charles