RFC Adapter Settings - stage 3 problems

Hi Experts,
      Mine is a RFC to FILE scenerio.I am facing a strange problem. I am sending some data to the RFC through a SE38 program, but only a part of the data is reaching the SXMB_MONI!
See the report program and the Remote function Module  below. also the details of the structure is given below:
REPORT  ZRFC_ADAPTER.
Data: it_final1 type standard table of  zrfc_str  with header line .
      it_final1-NAME = 'ArnaB'.
      it_final1-ADDRESS = 'address'.
      it_final1-EMAIL   = 'arnab.rudra1gmail'.
      it_final1-ID  = 'ID'.
      append it_final1.
CALL FUNCTION 'ZRFC_XI'
IN BACKGROUND TASK DESTINATION
'R32XIRFC'
  EXPORTING
    username       = sy-uname
  tables
    it_final       = it_final1     .
break-point.
COMMIT WORK.
Clear it_final1.
I have seen in debugging mode, after removing the "
IN BACKGROUND TASK DESTINATION
'R32XIRFC'", that the internal table " it_final1 "  is working fine......
The RFC structure
IT_FINAL LIKE ZRFC_STR -- in tables parameter. and the structure of ZRFC_STR is as follows!
NAME     ZNAME                CHAR       14
ADDRESS     ZADDRESS           CHAR       40
TELEPHONE ZTEL             CHAR   20
EMAIL     ZEMAIL                CHAR       40     
ID     ZID                CHAR   10   
But when checking the SXMB_MONI load , data is incomplete and cut.......Now many of you will suggest re-importing teh RFC in Integratio Repository, and reactivating the communication channel, but i hav done that several times,,,,still the data coming in is incomplete and shreded...i donno why...take a look at teh sxmb_moni output!!
- <rfc:ZRFC_XI xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
  <USERNAME>RETAILDEV</USERNAME>
- <IT_FINAL>
- <item>
  <NAME />
  <TELEPHONE>rudra1</TELEPHONE>
  <ADDRESS />
  <EMAIL />
  <ID />
  </item>
  </IT_FINAL>
  </rfc:ZRFC_XI>
I know, that there is nothin getting stuck in the queue, and had there been anything wrong in the code, nothin would hav worked.....can u guys tell me where am i gettin stuck..
Regards,
Arnab

Hi Bhavesh,
             I did exactly as instructed by u some time back,   I believe I hav something or other there wrong in my SE38 report, ......I cant make that out, but dont you think, this is funny, only a part of the data is coming in, and not the full...if there was something wrong, entire load would have vanished!!!..and yes I hav used the COMMIT statement....take a look at the SE38 Code,
REPORT  ZRFC_ADAPTER.
Data: it_final1 type standard table of  zrfc_str  with header line .
      it_final1-NAME = 'ArnaB'.
      it_final1-ADDRESS = 'address'.
      it_final1-EMAIL   = 'arnab.rudra1gmail'.
      it_final1-ID  = 'ID'.
      append it_final1.
CALL FUNCTION 'ZRFC_XI'
IN BACKGROUND TASK DESTINATION
'R32XIRFC'
  EXPORTING
    username       = sy-uname
  tables
    it_final       = it_final1     .
break-point.
COMMIT WORK.
Clear it_final1.
Is the loaction of commit work ok.....or do you want me to put it in the Remote Function Module??
Do you think I should put the question in ABAP forum, so that some Remote function Module expert can suggest something....
Pls suggest....
Arnab

Similar Messages

  • RFC Adapter Settings - stage 2 problems

    Friends ,
    I am working on a RFC to XI to Mail senerio. 2 diff adapters are required for this, as we know. From r3 perspective, I have a se38 program to run the RFC.
    see the code below!
    report zrfc_adapter.
    data: it_final1 type standard table of zrfc_str.
    *Cns :
    call function 'ZRFC_XI'
    in background task destination
    'R32XIRFC'
    EXPORTING
    bill_doc = 'ABCD'
    tables
    it_final = it_final1.
    commit work.
    clear it_final1.
    refresh : it_final1.
    The FM has been made RFC by selecting the Remote Function Call in
    FUNCTION ZRFC_XI.
    ""Local Interface:
    *" TABLES
    *" IT_FINAL STRUCTURE ZRFC_STR OPTIONAL
    it_final-NAME = 'Arnab Mondal'.
    it_final-TELEPHONE = '12345'.
    it_final-ADDRESS = 'abcdxyz'.
    append it_final.
    ENDFUNCTION.
    I am getting black flag sign in sxmb_moni..,, a file is being created in the destination folder...as per file adapter settings, but the file is empty, the reason being, the sxmb_moni is sending no data in.....I donno the reason, why  is not sending any load!!both communication channels are green.
    I dont believe that because i have made 2 commubication channels inside 1 business system and then the ID, RD, SA and RA , so this is not sending the data..
        I hav made 2 messege interfaces, the RFC as outbound and async, and the file as inbound and async .......is that ok???
    Pls comment !!
    Thanks and Regards,
    Arnab
    PLs Help !!!
    Arnab

    Nallam, 
          the function module is working fine in R3.It is not giving any syntatical error or short dump.  But , how do i test it in xi?? what load is it sending.??? ..because , i believe there is only 1 way to check load in XI and that is through sxmb_moni...do u know any other way by which i can confirm, what load is coming into XI???? through this FM!!
    Pls tell.!!
    Thanks
    Arnab .

  • RFC Adapter Settings.

    Friends ,
              I am working on a RFC to XI to Mail senerio. 2 diff adapters are required for this, as we know. From r3 perspective, I have a se38 program to run the RFC.
    see the code below!
    report  zrfc_adapter.
    data: it_final1 type standard table of  zrfc_str.
    *Cns :
    call function 'ZRFC_XI'
    EXPORTING
       bill_doc       = 'ABCD'
    tables
       it_final       = it_final1.
    Clear it_final1.
    Refresh : it_final1.
    The FM has been made RFC by selecting the Remote Function Call in
    FUNCTION ZRFC_XI.
    ""Local Interface:
    *"  TABLES
    *"      IT_FINAL STRUCTURE  ZRFC_STR OPTIONAL
          it_final-NAME = 'Arnab Mondal'.
          it_final-TELEPHONE = '12345'.
          it_final-ADDRESS = 'abcdxyz'.
          append it_final.
    ENDFUNCTION.
    Now there is a setting needed in sm59. I hav read several blogs and wikis, and every where they are asking to make a TCP/IP connection where I hav to make a program ID . The program ID name can be 'anything'
    Now friends I have done this, and select the activation type as Registered Server Type.
    Then as per the snote : 730870  ,page 13, " To check which Program IDs are registered at the SAP Gateway the
    gateway-monitor can be used via transaction SMGW. Select Goto ->
    Logged on Clients. Registered RFC-Servers have a System-Type of
    'REGISTER_TP'. The Program ID of the registered RFC-Servrer can be
    found in column 'TP name'. Unfortunately the list within SMGW only
    shows the truncated version of the Program ID (column 'TP name'). To
    get the full name, the details of an entry have to be selected. As an
    alternative the report RSGETALL_REG_SERVERS can be executed in
    transaction SE38. The output of this report will show the full names
    of the Program ID in column 'Registered PROGID'. This functionality is
    also available in the function module GWY_READ_CONNECTED_SYSTEMS which
    can be executed in transaction SE37.
    So as per instruction when I tried to execute the program RSGETALL_REG_SERVERS, I  couldnt  find it in se38.
       Now the biggest query is sm59 is not taking any arbitary PROGRAM ID name!
    I tried to copy a standard tcp/ip connection: GFW_ITS_RFC_DES and the program id in this is IGS.DTR, which is working perfect. I can copy and use this,, but this is not the solution. Pls some1 help me, where am I going wrong???
    Thanks and Regards,
    Arnab
    PLs Help !!!
    Arnab
    Edited by: Arnab Mondal on Sep 10, 2008 7:39 AM

    Hi,
    You can Follow this Procedure to get Success in Test Connection
    1) Create RFC Sender Channel and mention the Program ID(Any thing that u Want)
    Activate all the Objects here.
    Now goto SM59 in R/3 and create TCP/IP connection and mention the Same Program ID name here which u entered in RFC Sender Channel creation.
    Save and test Connection. and there by check in SMGW for your Registered Program ID also
    Regards
    Seshagiri

  • RFC Adapter Receiver - change SAP User for each call

    Hi guys,
    I need to create one connection between PI and SAP, all right, i can use RFC Adapter Receiver, no problem.
    But, for each call i need to use User and Password different, then, I would pass SAP User and Password in my XML Payload.
    Can anybody help me, please?

    hi,
    >>But, for each call i need to use User and Password different, then, I would pass SAP User and Password in my XML Payload.
    sure we can help you but no in this way:)
    it is possible to change the user for RFC adapter but using
    principal propagation:
    /people/alexander.bundschuh/blog/2007/01/16/principal-propagation-in-sap-xi
    this is the way you need to go and not send password in XML payload
    (this is certainly not the way and no client will approve it)
    why use a password is anyone can see it ?
    Regards,
    Michal Krawczyk

  • FILE-RFC ADAPTER problem

    Hi all,
    I am trying file->xi->rfc adapter scenario.
    My scenario is employee information is written to flat file n  will be kept on ftp server.THe file adapter will pickup the file and sends it to rfc adapter through pipeline service.
    This is going well. The problem is the data is not being updated into receiving sap system.
    in SXMB_MONI transaction the messages are successully processed . But there are no messges in rfc adapter when i gone through idx5 transaction???
    Any one have idea??
    Thanks in advance.
    Rgds,
    Ram Sri

    sxmb_moni only shows the status of the integration engine's processing, not the result of what happened in the rfc call.  First, you can check if the adapter framework successfully passed the message to the destination system (not on moni, thru RWB)
    as far as did the rfc succeed - it's as difficult as always with internal processing.  We did a lot of testing by debugging modules on the destination side (manually putting in the data as the adapter would've to step thru & see where the message is "lost") - have not yet found a better way, sorry.  It's not so much a problem with XI, just in general the difficulty to debug rfc's

  • Problem in Sender RFC adapter

    Hi all,
    Our scenarion is like this
    RFC -> XI -> File
    When we are calling the RFC ( inside a program ) from the client we are getitng a shortdump with the error ...
    'JCO.Server could not find server function 'STOCK_ENQUIRY_OUT'
    any idea where is the exact problem '?
    regards
    Goutam

    Have these basic checks;
    1. Import the RFC and activate the same in XI.
    2. Configuring of RFC adapter - /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    3. Troubleshooting - /people/shabarish.vijayakumar/blog/2008/01/08/troubleshooting--rfc-and-soap-scenarios-updated-on-20042009

  • RFC Sender problem  between 46D and RFC adapter

    Hi,
    I have this simple integration scenario where I want to send data to a archiving system;
    SAP -> (tRFC) -> XI -> (MQ) -> BizTalk -> (MQ) Arch.syst.
    SAP side ***
    A Z-program using a Z func. like;
        CALL FUNCTION 'ZSD_DCF_SEND_TAG'
          IN BACKGROUND TASK
          DESTINATION 'XISYSTEM_TRFC_DCF'
          EXPORTING
            pt_filing_info = gt_filing.
        COMMIT WORK AND WAIT.
    XI side ***
    Both IR and ID is configured correctly, in the development environment everything works just great. I have created a test program where I can define how many calls I will do, looping over the func. call with a commit inside the loop - 500 or more msgs are ok.
    The integration scenario is transported to quality enviroment using CMS, and the RFC sender comm.ch. is configured accordingly.
    The problem in quality ***
    When sending just 1 msg, everything is just fine, message received and delivered to MQ.
    When sending >= 2 msgs, the 1 msg is always ok, BUT all others fails due to the following from Adapter monitor;
    RFC_HISTORY
    - Error: 2006-01-19 10:55:18 CET: com.sap.aii.af.rfc.afcommunication.RfcAFWException: lookup of alternativeServiceIdentifier via CPA-cache failed for channel 'RFCSender_XI0002' (02d4d30de3593874942ed0659add0827, party '', schema 'TechnicalSystem', identifier 'Q93#120')
    - OK: 2006-01-19 10:55:17 CET: Message processed for interface ZSD_DCF_SEND_TAG
    My sending system is Q93 CLI 505 so I can understand the error, BUT I cannot understand why the RFC adapter is saying the TechnicalSystem is Q93#120 - it should be Q93#505. My Q XI has client 120...
    It seems to me that the RFC adapter is kind of confused about the sender..
    I have created a OSS message and SAP has looged on and looked into it with both a XI expert and RFC expert without being able to answer - all is configured correctly.
    - The SLD config. for bus.system Q93 is ok -
    - The bus.system in ID is showing correct vaues for
    Adapter Specific Identifiers (SID Q93, client 505)
    - Both Dev. and Qual. environment are running on XI 3.0 SP 14 latest patch, RFC component version on the SAP side is identical between dev. and qual. SAP systems
    - It doesn't matter which gw I use (Q93 gw or XI gw), the error is persistent
    - It doesn't matter if I increase initial conn, max conn.
    I have also tried to use qRFC instead, but with the same result.
    Anyone using tRFC for asynch. communication from SAP to XI seeing something similar?
    Meanwhile, I will do RFC trace on GW and RFC Adapter on AE....
    Please, do not say SP15, oss msg for FAQ RFC adapter or links to RFCAdapter config....
    best regards
    Torstein

    Hi,
    SAP Note 730870 FAQ: XI 3.0 RfcAdapter Q.no 15
    <i>Q 15: Whats wrong when the error message "lookup of alternativeServiceIdentifier via CPA-cache failed" shows up while sending a RFC call to the RfcAdapter?
    A: A RFC sender channel is located beneath a service within the Integration Directory. Within this service choose "Service" -> "Adapter-Specific Identifiers". The values in the fields "R/3 System ID" and "Client" has to be maintained with the correct values of the system, that sends the RFC call to the RfcAdapter. It normaly only makes sense to have these values filled for services of type "Business System". If maintained in SLD, this fields will be filled automaticaly for services of type "Business System" and can be updated with the button "Compare with System Landscape Directory".</i>
    - Give correct appserver and gateway service details in XI.
    - Open the service holding the RFC adapter you are trying to use. On the top menu, goto Service -> Adapter Specific Identifiers..
    Regards,
    Prateek

  • RFC Adapter Problem: Adapter Engine Field Blank

    Hi,
    I want to invoke a BAPI defined on a R/3 system. I am trying to create a RFC Adapter in the Integration Directory by creating a communication channel.
    The problem I am facing is that when I define the Adapter Type as RFC, the Adapter Engine dropdown list is blank and it does not contain any entries.
    On passing a document through XI, I can see the following error in the monitor:
    <SAP:Code area="INTERNAL">ADAPTER_NAME_INVALID</SAP:Code>
      <SAP:P1>RFC</SAP:P1>
      <SAP:P2>PLSRV_CALL_ADAPTER</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Unknown receiver adapter (name = RFC)</SAP:Stack>
    what do i need to configure on the XI and R/3 side ?
    thanks,
    Manish

    i followed the steps but i am not getting the populated adapter engine list.
    Actually, the Association shows a list of logical systems to be added (Application System, BC Application Server, BC Central Server Instance .....). I experimented with many systems but it is not working.
    My basic problem is I need to call a BAPI from XI. The XI monitor shows the error :
    Adapter Name Invalid.
    Unknown Receiver Adapter (name=RFC).
    Now, for the RFC adapter, I have not given it any name. My Communication Channel is called GeneratedChannelRFC.  I am not sure where this error is coming from. I would appreciate any help to solve this error.
    thanks,
    Manish

  • RFC adapter problem: ICM_HTTP_CONNECTION_FAILED

    Hi All,
    We have problems with a RFC adapter. The error is not consistent. Most of the time it works, sometimes we get the error below. It looks like the http communication with the XI adapter Engine fails. The problem is described in note 804124, but this note does not give us the correct answer.
    We are on SP15, has anyone an idea?
    Thanks,
    Frank
    Error:
    Error when receiving by HTTP (error code: 400, error text: ICM_HTTP_CONNECTION_FAILED
    404 Resource not found
    Partner not reached
    Error:     -20
    Version:     6040
    Component:     ICM
    Date/Time:     Tue Mar 7 09:35:20 2006
    Module:     icxxconn_mt.c
    Line:     2121
    Server:     pxpci_PXP_10
    Detail:     Connection request from (89/30444/0) to host: pxpci.fil-eu.sv.philips.com, service: 51000 failed (NIECONN_REFUSED) EX-T89, U30444, 660 XIAFUSER, 130.139.212.156, 09:35:20, M0, W0, , 1/0

    Hi Michal,
    I don't think the timeout is the problem here, as you can see in the error, it states the the resource can not be found (404) and further in the error you find that the connection is Refused. This error occurs within in second after the message comes into SAP XI.
    Hi Holger,
    The ICM log gives the same error as in the message monitoring. But I think it is not on level 3. I will try that.
    Thanx,
    Frank

  • RFC Adapter Problem: Necessary Roles?

    Hi XI Gurus,
    Our team is working with a File-to-RFC scenario. We are using a custom RFC, which uses BAPI_GOODSMVT_CREATE within it, to post data for Goods issue, Goods receipt and Transfer Posting. We are using the credemtials of a user, <b>sapxiuser</b>, within the RFC adapter. <b>Can anyone please tell me what are the roles that are to be maintained for this particular user at the R/3 end?</b>
    Points will be rewarded!
    Thanking in anticipation,
    Amitabha

    Hi,
    Remember to add explicit commit in the communication channel:
    <i>"
    <b>Commit Control for Individual BAPI Calls</b>
    If you want to use this communication channel to call BAPIs as remote-enabled function modules that change data in the database, set the indicator.
    If executed successfully, the transaction is written to the database by calling the function module BAPI_TRANSACTION_COMMIT explicitly. If an error occurs, the transaction is rolled back by BAPI_TRANSACTION_ROLLBACK.
    The result is determined by the value of the field TYPE in parameter RETURN. If successful, the tables are empty and the values “”, “S”, “I”, and “W” are displayed. All other values are regarded as errors.
    To change this setting, set the indicator BAPI Advanced Mode.
    In the Successful RETURN-TYPE Values table, enter the values that should lead to a successful execution.
    "</i>
    Regards,
    Wojciech

  • Problem with sender RFC adapter

    Hi All
    I have created one RFC adapter for which i have created wrong business system and all then i have deleted that and i have created on more RFC adapter but when i am testing my scenario its taking the old one which i have deleted from the Integration directory. I have refreshed the cache using sxi_cache and also in RWB. But still i m getting the same error...
    Could you please tell  me how to resolve this error

    Hi
    Yes i have configured RFC as sender communication channel. I have deleted the old one including the business system. but still in adapter monitoring i m getting the error "com.sap.aii.af.rfc.afcommunication.RfcAFWException: alternativeServiceIdentifier: party/service from channel configuration are not equal to party/service from lookup of alternativeServiceIdentifier (CPA party/service/channel ''/<b>'Whirlpool_BS1'/</b><b>'RFC_Source_CC'</b>, lookup of alternativeServiceIdentifier for party '', schema 'TechnicalSystem' with 'QN9#800' returned party/service of ''/'QN9')"
    but i have deleted the whirlpool_bs1 business system.
    Why still i m getting this error.
    Thanks & Regards
    SUN

  • Problem with RFC adapter (JCO Exception RFC logon failure)

    Hi ,
    I have SOAP to RFC scenario.
    Scenario with same configuration (RFC adapter) is working in QA system.but when I have transported to PRODUCTION system
    it is showing
    com.sap.aii.af.ra.ms.api.DeliveryException: RfcAdapter: receiver channel has static errors: can not instantiate RfcPool caused by: com.sap.aii.af.rfc.RfcAdapterException: error initializing RfcClientPool:com.sap.aii.af.rfc.core.repository.RfcRepositoryException: can not connect to destination system due to: com.sap.mw.jco.JCO$Exception: (103) RFC_ERROR_LOGON_FAILURE:
    I have gievn max conn=10 ;Refresh the cache also
    and checked Roles and authorization also but still I am getting the same error.
    Regards

    Hi ,
    I have created all the objects manually. and it is working.
    now it is showing other error when I am sending the messages from SOAP side it is showing
    MAPPING">NO_MAPPINGPROGRAM_FOUND</SAP:Code>
      <SAP:P1>Object ID DF2C6D6E40E935CB970DEE3A71049BF9 Software Component C3D5E1D1C75311DDB94DE33C0A1E01B6</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Interface mapping Object ID DF2C6D6E40E935CB970DEE3A71049BF9 Software Component C3D5E1D1C75311DDB94DE33C0A1E01B6 does not exist in runtime cache</SAP:Stack>
    for this I checked the Interface determination step and receiver determination ,mapping program all looks correct.
    I have refershed cache also both Complete and SLD.
    but nothing is wroking
    Please advice.
    Regards

  • Problems in connecting the RFC adapter

    Hi all,
    we are using XI 3.0  which has been installed very recently. I am trying to configure the RFC adapter but i am getting an error "program <progname> not registered".
    I have set up a TCPIP connection on the ECC system with the parameters :
    gateway host: hostname of ECC system
    gateway service : sapgwXX where XX is system number of ECC system
    activation type : Registered server program ZXXXXX
    On the XI system, I am creating a communication channel of type RFC sender with the Integration server as the adapter engine
    RFC server parameters:
    Application Server : hostname of ECC system
    application Service: sapgwXX where XX is system number of ECC system
    program ID : ZXXXXX (case-sensitive)
    RFC metadata parameters:
    application server :  hostname of ECC system
    system number :  system number of ECC system
    Logon Details of the ECC system
    I am confused about which details to give where, but i have followed Michal's blog .
    I am still getting an error . Could you please help in sorting out this matter?
    Thanks,
    Amit

    Hi
    RFC metadata parameter login should be U R ECC system login s and correct.
    What is u r error.
    Steps shown in the blog is all fine it works , no other configuration needed.
    I guess u r testing the TCP RFC connection , u configure u r Sender RFC use the Register Program id same what u have used in the RFC (case sensitive) and run the scenario
    it will work.
    Regards
    Srini

  • Problems in RFC Adapter

    Hi All,
    I'm using RFC adapter to send messages to XI. The import parameter of the RFC is a very complex structure. One of the embedded strcuture contains a table. During runtime, if I use "APPEND line TO tale" statement to fill that table in the client of RFC Adapter, the program dumps. The short text is "After a value an end tag must follow. That did not happen in". This short text is obviously incomplete. My questions are:
    1. How can I view the complete short text of this dump?
    2. Is there any restriction on the RFC adapter parameter? I only use "import" and "export" parameters. I'll not use "table" parameters. Could I use a very complex structure which contains embedded structures and tables as import parameters?

    HI Jerome,
    >>>1. How can I view the complete short text of this dump?
    have you tried TCODE - ST22 ?
    >>>2. Is there any restriction on the RFC adapter parameter? I only use "import" and "export" parameters. I'll not use "table" parameters.
    please use the table - this is the parameter for storing many values (lines) of a structure
    Regards,
    michal

  • Problems with RFC Adapter, utf-8 encoding and special characters

    Hi,
    How can I change my enconding UTF-8 for ISO-8859-1 in my RFC ADAPTER SENDER?
    Regards,
    Sérgio

    Hi,
    To change encoding of xml you can either use this piesce of xslt after your mapping as a next step
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" encoding="ISO-8859-1"/>
    <xsl:template match="/">
    <xsl:copy-of select="*" />
    </xsl:template>
    </xsl:stylesheet>
    or use adapter module but now I can't remember name of it.
    Best regards,
    Wojciech

Maybe you are looking for

  • I am at a loss please advise

    Herewith an outline of the problem. Used my Mini as usual in the morning, hit work for a few hours then woke her from sleep to check mail. Upon Mail launch i noticed the mail view had changed.....fiddled a little but mail froze. Did a system re-start

  • How to change date

    my ipod touch screen to change my date will not touch 2g and can i change it from the computer this really makes me upset i cant download apps because the date read 1970 well the year im trying to change can i change that useimg computer?

  • JSF 2.0: Composite Components and their ID

    I'm using Composite Components with JSF 2.0. Template: <composite:interface /> <composite:implementation>     <h:inputText id="text" /> </composite:implementation>Template Client: <h:form id="form">     <components:myComponent /> </h:form>In the rend

  • Process Flow - Pass paramters between activities

    Need to pass argument from one mapping/component to next piece. What is the way. Process Flow Editor does not seem to show OUT paramters. Pasting from a previous post Hi, I have a requirement to pass output parameter from a Mapping as input to anothe

  • Unable to see SAP Help files properly

    Hi, I had downloaded some SAP help documents (.chm) files. I am unable to view the contents. The tree view in the left side is coming but when I click any of the topics, 'Action Cancelled' message is displayed in the right side pane. I am using Windo