Urgent - XI adapter Development

I am preparing to lay my hands on the XI adapter development.
Could somebody provide some docs or link in this reg,
reg,

Naveen,
I hope the below docs will help you in creating your own adapter.
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7bf6e190-0201-0010-83b7-cc557eb76abe
https://websmp201.sap-ag.de/~sapdownload/011000358700003237612005E/HowToCreateAdapterModules.pdf
Adapter Development
Adapter Development
Adapter Development || sample Adapter
Best Regards,
raj.

Similar Messages

  • Adapter development -  sender/inbound integration

    hi,
       i have few questions to ask ,in relation to adapter development.
    1) the sample adapter given part of the documentation contains implementation representing a file oriented integration process.can it be deployed as an adapter and tried in the adapter framework for integration?
    2)if the answer is yes to previous question,does the SAP's transaction managed provide transactional capablities for file access ?
    3)the ManagedConnectionConnectionFactory implementation provided part of the sample adapter also implements Runnable interface stating the purpose of supporting sender/inbound integration.how the client can initiate a sender/inbound integration without any support from the implementation's jca cci to send the message from its
    system ?
    4)is there some clear example of sender/inbound integration implementation done part of the JCA adapter ?
    regards,
    jana

    thanks gowtham,
    2)if you see the SPIManagedConnectionFactory's sender/inbound integration implementation (to be specific sendMessageFromFile() method)the tx manager obtained from SAPAdapterResource is started ,file is copied and finally the tx is called to commit.that's why i had ask the second question .
    3) the sample adapter implements CCI only for receiver/outbound integraiton,i fear i didn't find any of such support for sender/inbound integration
    4)see this is what i like about you
    regards,
    jana

  • Partner adapter developer certification

    Is there any certification that SAP gives to an adapter developer partner? Is there any reference with this information?

    Hi,
    Refer to this link:
    https://www.sdn.sap.com/sdn/developerareas/xi.sdn?page=xi_adapter_framework_certification.htm
    https://www.sdn.sap.com/sdn/developerareas/xi.sdn?page=exchange_infrastructure.htm
    And post your question in this forum:
    https://www.sdn.sap.com/sdn/collaboration.sdn?node=linkFnode1-5&contenttype=url&content=https://SAP Integration and Certification Center (SAP ICC)
    Regards,
    Sridhar

  • Adapter development: binary data and adapter specific properties?

    Hi,
    We have succesfully developed our own SFTP adapter based on the J2SSH Maverick library (http://www.sshtools.com/showMaverick.do) and the sample file adapter that comes with XI.
    There are 2 features we would like to implement as well, but lack the necessary documentation and sample code.
    <b>1st Binary data</b>
    We do not succeed in transporting binary data via our SFTP adapter (both text and xml go fine).  While debugging, we see that the binary data are correctly picked up, but the actual payload appearing in message monitoring is much larger.  When we write the message to a file again, the data have changed (size has e.g. increased importantly from 127180 bytes to 218198 bytes).  According to the sample adapter code,  the contenttype "application/octet-stream"  should be specified.  But the standard XI file adapter itself seems to specify "application/octet-stream".
    <b>2nd Adapter specific properties (DynamicConfiguration)</b>
    How can we set adapter specific properties in our own adapter code?  Where are the Java docs of the API?  Is this somewhere documented?
    If you would have more information (or pointers), please post it as a response to this message.
    Kind regards, Guy Crets
    <b>Code snippet:</b>
    XIMessageFactoryImpl mf = new XIMessageFactoryImpl();
    Message msg = mf.createMessageRecord(fromParty, toParty, fromService, toService, action, actionNS);
    msg.setDeliverySemantics(DeliverySemantics.ExactlyOnce);
    // In case of XML documents it is not necessary to set the contentType or encoding
    // But: take care that the encoding definiton in the XML document corresponds to the encoding used
    if (msgText.indexOf("<?xml") != -1)
      // Check whether the payload is a XML document. If not, treat it as binary to demonstrate how
      // binary main documents work
      // First create a XML Payload                    
      XMLPayload xp = null;
      xp = msg.createXMLPayload();
      xp.setText(msgText);
      xp.setName("MainDocument");
      xp.setDescription("XI AF Sample Adapter Input: XML document as MainDocument");
      msg.setDocument(xp);
    // In case of binary documents use the Payload super class methods to fill the XMLPayload object
    else
      // Check whether the payload is a XML document. If not, treat it as binary to demonstrate how
      // binary main documents work
      // First create a XML Payload                    
      XMLPayload xp = null;
      xp = msg.createXMLPayload();
      //xp.setContentType("application/octet-stream");
      xp.setContentType("application/xml");
      xp.setName("MainDocument");
      xp.setDescription("XI AF Sample Adapter Input: Binary as MainDocument");
      xp.setContent(msgData);
      // Finally set the main document in the message
      msg.setDocument(xp);          
    TRACE.debugT(SIGNATURE, XIAdapterCategories.CONNECT_AF, "Message object created and filled.");
    ModuleData md = new ModuleData();
    md.setPrincipalData(msg);

    Hello Moorthy,
    I know this part of the documentation.
    So I set the indicator within the communication channel.
    Now, I have to fill the dynamic configuration during my mapping. My code looks like following:
    DynamicConfigurationKey keyURL =  DynamicConfigurationKey.create("http://sap.com/xi/XI/System/HTTP", <b>XXXXX</b>);
    // access dynamic configuration
    DynamicConfiguration conf = (DynamicConfiguration) param.get (StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    // set value
    conf.put(keyURL, url);
    So what has to be filled instead of XXXXX ?
    Regards,
      Marc

  • Adapter development on Adapter Framework PI 7.1

    Hi experts,
    This is relative to PI 7.1 EHP1.
    I am learning how to develop an Adapter on Adapter Framework. On help I found this link: Example Adapter and Example Module. On example´s folder (see help link above) I found only a jar called com.sap.aii.adapter.sample.ra.jar, inside that jar there is only classes, no source code, and there is no index.html like it is written on help.
    I think something is missing, or not?
    Best Regards,
    Gabriela

    Hi Gabriela,
    I am trying to develop a Sample Java Adapter as you did earlier. I have been through SAP Note 1004000 as well. But i couldn't find the "src.zip" as mentioned in the Note. Please help me on it.
    Warm Regards,
    DNK Siddhardha.

  • Unable to get create_SDA.bat file for custom adapter development.

    Hi ,
    I am working on custom adapters development following the PDF(SOA361-how to develop an adapter in SAP Netweaver PI)  about using Sample Adapter .
    In section where we will create the SDA file and deploy it to the J2EE server.
    The create_SDA.bat file is unavailable , How can I get that file.
    Regards,
    Syed.

    This is the original content. Adjust it to your needs.
    set PATH=C:\j2sdk1.4.2_11\bin;%PATH%
    REM Create jar file
    cd ..\AdapterZIP
    jar cvf ..\AdapterZIP_RAR\zip_ra.jar *.xml  com\test\zip\adapter\ra\*.*
    REM Create rar file
    cd ..\AdapterZIP_RAR
    jar cvf ..\AdapterZIP_SDA\zip_ra.rar *.jar  META-INF\*.*
    cd ..\AdapterZIP_SDA
    jar cvf zip_ra.sda *.rar  META-INF\*.*
    pause

  • Adapter development in PCK in a one2many scenario

    Hello,
    I want to develop my own adapter. To do that I installed the PCK and changed the relevant parameters as described in the help to pass the test messages through the PCK.
    Before changing the sample adapter I tested a one2one scenario without problems.
    But now to my question: is it possible to habe only one sender and two receiver in this PCK test scenario (one2many)? Is there a possibility to duplicate the incoming message to more than one receiver?
    Kind regards,
    Daniel

    Hello,
    I want to develop my own adapter. To do that I installed the PCK and changed the relevant parameters as described in the help to pass the test messages through the PCK.
    Before changing the sample adapter I tested a one2one scenario without problems.
    But now to my question: is it possible to habe only one sender and two receiver in this PCK test scenario (one2many)? Is there a possibility to duplicate the incoming message to more than one receiver?
    Kind regards,
    Daniel

  • Adapter Development - No documented examples.

    Hi All,
    There is documentation in regards to the example custom adapter at the following location:
    http://help.sap.com/saphelp_nw04/helpdata/en/8b/895e407aa4c44ce10000000a1550b0/frameset.htm
    However, the code and the help files do not really advise how you build any type of adapter from scratch.  This seems to be a tightly held secret at SAP and I was wondering if someone can provide or reference a blog or similar which describes the process to build a custom adapter (in and/or outbound).  I don't feel it's really that complicated as I believe most of the code in the example should be reusable.
    Note - I can't even get this type of information from my SAP XI subject matter expert and I feel this is an area where XI is perceived as not mature!
    Regards,
    Matt
    ps. It's not my intent for rampant custom adapters to be developed, but where the design is impacted poorly due to limitations in say the JDBC adapter, we need to understand what's involved to build an adapter.

    Hi Matt,
    The information you are looking for is available from service.sap.com.
    Specifically, you want to download the XI PCK, which contains the code for a complete adapter.  The PCK also includes testing tools for "loop back" so you can examine the contents of messages sent without using an XI system.
    PCK is used by various 3rd parties to develop adapters.
    To install PCK, you will need to download the WebAS J2EE also.
    Regards,
    Bill

  • Custom Adapter Development - Some bugs is the development process

    hi
    I'm working through the steps in the document "BEA WebLogic Integration -
    Developing Adapters" - Chapter 4 Creating a Custom Environment.
    I'm using the version of WLS 8.1.1 on the dev2dev trial CD.
    I've encountered the following errors which I think are bugs and should be
    fixed:
    =========================================================
    1. Incorrect naming of a properties file
    =============================
    Step 2. Rebuild the Tree - when running "ant release" immediately after
    generation, the build fails with the following error:
    Buildfile: build.xml
    packages:
    [echo] Building NICOLSON_SAMPLE_1_0...
    generate_web_descriptors:
    [java] Substituting web descriptor variable: display-name
    [java] Substituting web descriptor variable: version
    [java] Substituting web descriptor variable: extra-jsp-servlets
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: request-handler-class
    [java] Substituting web descriptor variable: debug-setting
    [java] Substituting web descriptor variable: extra-jsp-servlet-mappings
    [java] Generated web.xml as:
    C:\software\devtools\bea\weblogic81\integratio
    n\adapters\nicolson\project\..\..\..\adapters\nicolson\src\war\WEB-INF\web.x
    ml
    merge_properties:
    [echo] Merging NICOLSON_SAMPLE_1_0-base.properties and ADK.properties
    [echo]
    props_dir=C:\software\devtools\bea\weblogic81\integration\adapters\n
    icolson\project/../../../adapters/nicolson/src
    WLI_HOME=C:\software\devtools\bea
    \weblogic81\integration\adapters\utils\ant/../../..
    [concat] File
    C:\software\devtools\bea\weblogic81\integration\adapters\nicols
    on\src\NICOLSON_SAMPLE_1_0-base.properties does not exist.
    BUILD FAILED
    java.lang.NullPointerException
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:103)
    at java.io.FileInputStream.<init>(FileInputStream.java:66)
    at org.apache.tools.ant.taskdefs.Concat.catFiles(Concat.java:353)
    at org.apache.tools.ant.taskdefs.Concat.execute(Concat.java:271)
    at org.apache.tools.ant.Task.perform(Task.java:317)
    at org.apache.tools.ant.Target.execute(Target.java:309)
    at org.apache.tools.ant.Target.performTasks(Target.java:334)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:371)
    at org.apache.tools.ant.Task.perform(Task.java:317)
    at org.apache.tools.ant.Target.execute(Target.java:309)
    at org.apache.tools.ant.Target.performTasks(Target.java:334)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1250)
    at org.apache.tools.ant.Main.runBuild(Main.java:610)
    at org.apache.tools.ant.Main.start(Main.java:196)
    at org.apache.tools.ant.Main.main(Main.java:235)
    Total time: 1 second
    This is occuring for because Step 1. Execute GenerateAdapterTemplate is
    generating an incorrectly named properties file in the src directory.
    i.e. it is generating NICOLSON_SAMPLE_1_0.properties when it should
    generate NICOLSON_SAMPLE_1_0-base.properties
    On correcting this problem, the next error will occur
    ==================================================
    2. Missing junit.jar in wli_home/lib
    ==========================
    Buildfile: build.xml
    packages:
    [echo] Building NICOLSON_GENERIC_1_0...
    generate_web_descriptors:
    [java] Substituting web descriptor variable: display-name
    [java] Substituting web descriptor variable: version
    [java] Substituting web descriptor variable: extra-jsp-servlets
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: request-handler-class
    [java] Substituting web descriptor variable: debug-setting
    [java] Substituting web descriptor variable: extra-jsp-servlet-mappings
    [java] Generated web.xml as:
    C:\software\devtools\bea\weblogic81\integratio
    n\adapters\sal\project\..\..\..\adapters\sal\src\war\WEB-INF\web.xml
    merge_properties:
    [echo] Merging NICOLSON_GENERIC_1_0-base.properties and ADK.properties
    [echo]
    props_dir=C:\software\devtools\bea\weblogic81\integration\adapters\s
    al\project/../../../adapters/sal/src
    WLI_HOME=C:\software\devtools\bea\weblogic8
    1\integration\adapters\utils\ant/../../..
    [javac] Compiling 15 source files
    [javac]
    C:\software\devtools\bea\weblogic81\integration\adapters\sal\src\com
    \nicolson\base\integration\sample\jca\bea\sal\spi\NonManagedScenarioTestCase
    .jav
    a:9: package junit.framework does not exist
    [javac] import junit.framework.*;
    [javac] ^
    [javac]
    C:\software\devtools\bea\weblogic81\integration\adapters\sal\src\com
    \nicolson\base\integration\sample\jca\bea\sal\spi\NonManagedScenarioTestCase
    .jav
    a:20: cannot resolve symbol
    There was no junit.jar in WLI_HOME/lib. The problem disappears once this jar
    is added.
    ===============================================================
    3. Class not found error when running tests using "ant test"
    ==========================================
    Buildfile: build.xml
    packages:
    [echo] Building NICOLSON_SAMPLE_1_0...
    generate_web_descriptors:
    [java] Substituting web descriptor variable: display-name
    [java] Substituting web descriptor variable: version
    [java] Substituting web descriptor variable: extra-jsp-servlets
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: request-handler-class
    [java] Substituting web descriptor variable: debug-setting
    [java] Substituting web descriptor variable: extra-jsp-servlet-mappings
    [java] Generated web.xml as:
    C:\software\devtools\bea\weblogic81\integratio
    n\adapters\nicolson\project\..\..\..\adapters\nicolson\src\war\WEB-INF\web.x
    ml
    merge_properties:
    [echo] Merging NICOLSON_SAMPLE_1_0-base.properties and ADK.properties
    [echo]
    props_dir=C:\software\devtools\bea\weblogic81\integration\adapters\n
    icolson\project/../../../adapters/nicolson/src
    WLI_HOME=C:\software\devtools\bea
    \weblogic81\integration\adapters\utils\ant/../../..
    test:
    [java] <3/10/2003 10:40:37 AM EST> <Debug> <NICOLSON_SAMPLE_1_0>
    <000000> <
    added new configuration from file 'NICOLSON_SAMPLE_1_0.xml' with root
    category '
    NICOLSON_SAMPLE_1_0' to category hierarchy for locale 'en_US'>
    [java] Loading
    com.nicolson.integration.bea.sample.spi.NonManagedScenarioTe
    stCase for inclusion in the test suite
    [java] Loading
    com.nicolson.integration.bea.sample.event.OfflineEventGenera
    torTestCase for inclusion in the test suite
    [java] EXCEPTION: attempted to load
    com.nicolson.integration.bea.sample.eve
    nt.OfflineEventGeneratorTestCase
    [java] java.lang.ClassNotFoundException:
    com.nicolson.integration.bea.sampl
    e.event.OfflineEventGeneratorTestCase
    [java] at java.net.URLClassLoader$1.run(URLClassLoader.java:198)
    [java] at java.security.AccessController.doPrivileged(Native
    Method)
    [java] at
    java.net.URLClassLoader.findClass(URLClassLoader.java:186)
    [java] at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    [java] at
    sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:265)
    [java] at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
    [java] at
    com.bea.adapter.test.TestHarness.suite(TestHarness.java:61)
    [java] at
    com.bea.adapter.test.TestHarness.main(TestHarness.java:96)
    [java] java.lang.NoSuchMethodError:
    junit.textui.TestRunner.run(Ljunit/fram
    ework/Test;)V
    [java] at
    com.bea.adapter.test.TestHarness.main(TestHarness.java:96)
    [java] Exception in thread "main"
    [java] Java Result: 1
    BUILD SUCCESSFUL
    Total time: 2 seconds
    The missing test case is being explicitly excluded from the build:
    <javac deprecation='true' debug='true'>
    <classpath refid='CLASSPATH'/>
    <src path="${SRC_DIR}"/>
    <include name="**/*.java"/>
    <exclude
    name="com/nicolson/integration/bea/sample/event/OfflineEventGeneratorTestCas
    e.java" />
    <exclude name="war/jsp_servlet/**"/>
    </javac>
    If it is included, the following compile error occurs...
    C:\software\devtools\bea\weblogic81\integration\adapters\nicolson\project>an
    t re
    lease
    Buildfile: build.xml
    packages:
    [echo] Building NICOLSON_SAMPLE_1_0...
    generate_web_descriptors:
    [java] Substituting web descriptor variable: display-name
    [java] Substituting web descriptor variable: version
    [java] Substituting web descriptor variable: extra-jsp-servlets
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: adapter-logical-name
    [java] Substituting web descriptor variable: request-handler-class
    [java] Substituting web descriptor variable: debug-setting
    [java] Substituting web descriptor variable: extra-jsp-servlet-mappings
    [java] Generated web.xml as:
    C:\software\devtools\bea\weblogic81\integratio
    n\adapters\nicolson\project\..\..\..\adapters\nicolson\src\war\WEB-INF\web.x
    ml
    merge_properties:
    [echo] Merging NICOLSON_SAMPLE_1_0-base.properties and ADK.properties
    [echo]
    props_dir=C:\software\devtools\bea\weblogic81\integration\adapters\n
    icolson\project/../../../adapters/nicolson/src
    WLI_HOME=C:\software\devtools\bea
    \weblogic81\integration\adapters\utils\ant/../../..
    [javac] Compiling 1 source file
    [javac]
    C:\software\devtools\bea\weblogic81\integration\adapters\nicolson\sr
    c\com\nicolson\integration\bea\sample\event\OfflineEventGeneratorTestCase.ja
    va:1
    62:
    com.nicolson.integration.bea.sample.event.OfflineEventGeneratorTestCase.Test
    EventRouter should be declared abstract; it does not define getName() in
    com.nic
    olson.integration.bea.sample.event.OfflineEventGeneratorTestCase.TestEventRo
    uter
    [javac] class TestEventRouter
    [javac] ^
    [javac] 1 error
    BUILD FAILED
    file:C:/software/devtools/bea/weblogic81/integration/adapters/nicolson/project/b
    uild.xml:340: Compile failed; see the compiler error output for details.
    Total time: 2 seconds
    This is because an inner class used in the test case does not fully
    implement methods of the interface it realizes.
    In fact it is missing a number of methods.
    =========================================================
    Just as well I'm only doing a personal eval :)
    Regards
    Jim Nicolson

    Dear Aandi,
    I am really thankful to you for this. I will suggest this to the business and then they can contact adobe for this. Thanking you once again for providing me with all the valueable info. You have been instrumental in helping me out in my project.
    Best Regards,
    Deepak Goyal

  • Urgent Correction 'In Development'

    Hi,
    In Urgent Correction when we execute action 'In development'  a transport request is also created. How is the transport request creation triggered from "in development' action.
    Actually i have a requirement where i want to separate the two actions 'set in development' and 'create transport request'. I compared the 'In development' action for both normal and urgent correction but couldn't find the difference. The 'Set in development' action doesnt create transport request in case of normal correction.
    In case you know where the difference lies please provide insights.
    Regards,
    Kriti Bhalla.

    Found out myself.
    IMG Path:
    SAP Solution manager &#61664; Advanced Configuration &#61664; Scenario-Specific Settings &#61664; Change request management &#61664; Extended Configuration &#61664; Change Transaction &#61664; Change Transaction types &#61664; Make Settings for Change Transaction Types
    Select the transaction type and under assign actions delete entry
    E0002 CREATE_REQ
    now when you execute action 'in development' in urgent correction the transport request is not created.
    You can create a new action 'Create Transport Request' similar to the one for normal correction.
    Regards,
    Kriti Bhalla

  • ICI adapter development (IC Web Client)

    Hello, all
    We are developing ICI adapter(like Genesys Gplus)
    using ICI Interface Specification and
    two wsdl files(IciSystem-3.10.wsdl and IciUser-3.10.wsdl).
    But method getWorkcenterCapability does not run.
    Other method not related Free seating are
    running correctly.
    We think wsdl files we got are old version.
    Do you know how to get new wsdl file?
    Thanks,
    Ryousuke Miyazaki

    Hello friends,
    we have installed gplus adapter for sap-erp integration. Can some one please let me know how to configure a connection between sap application server and an Adapter.
    We got stuck in creating a SAPphone server on sap. In transaction SM59 while creating a new TCP/ip connection RFC destination, we need to set the RFC destination name and program id .
    what should be the value for program id? Do we need to code a RFC for this ? cos be gave the program id as SPS.PROG as mentioned in the gplus deployment guide, but the connection test failed.
    Can someone please help me in fixing this.
    Just one more, how to obtain SAP RFC SDK binary files? Shd these binary files need to be placed in the gplus working directory? Does the tcp/IP connection failed due to missing binary files?
    Thanks in Advance. please reply me on [email protected]

  • URGENT: OVD adapter

    Hi All,
    I have below requirement:
    Our OID 11g has entry cn=SeedRoleGroups,cn=Groups,dc=oracle,dc=com. There is one entry under this called cn=SeedRoleGroup9,cn=SeedRoleGroups,cn=Groups,dc=oracle,dc=com. This entry has cn=RoleGroupD,cn=Roles,cn=DomainA,cn=Domains,dc=oracle,dc=com as uniquemember.
    In the RoleGroupD entry cn=RoleGroupD,cn=Roles,cn=DomainA,cn=Domains,dc=oracle,dc=com it has unique member uid=admin, cn=users, dc=oracle,dc=com which is a user.
    Now I want to have the entries in OVD 11g as shown below:
    cn=AggregatedGroups will contain the SeedRoleGroup entries, but will also show the users as uniquemembers.
    i.e.
    cn=AggregatedGroups
    cn=SeedRoleGroup1
    cn=SeedRoleGroup2
    cn=SeedRoleGroup9
    uniquemember=cn=RoleGroupD,cn=Roles,cn=DomainA,cn=Domains,dc=oracle,dc=com
    uniquemember=uid=admin, cn=users, dc=oracle,dc=com
    Can someone throw light how to achieve this? I have tried with join adapter and it is showing only entries of cn=SeedRoleGroup9,cn=SeedRoleGroups,cn=Groups,dc=oracle,dc=com which has uniquemember as cn=RoleGroupD,cn=Roles,cn=DomainA,cn=Domains,dc=oracle,dc=com but I also want user uid=admin, cn=users, dc=oracle,dc=com as uniquemember in the same cn=SeedRoleGroup9....
    Can this be achieved using Join adapter? If so please help with Join Rules.
    Edited by: 903004 on 07-Mar-2012 04:23

    Can someone help, please? This is urgent.

  • URGENT: File Adapter List Files operation Issue

    Hi All,
    we are using List files operation in one of the SOA composite which lists all files available in the directory. what we observed files are not listing as for the timestamps.
    is there any property to list all files ascending or descending based on time stamp?. we tried with ListSorter property which is suggested by Oracle,but it works for only INBOUND operations. [http://docs.oracle.com/cd/E23943_01/integration.1111/e10231/adptr_file.htm#BABBIJCJ]
    Any suggestions will be greatly appreciated.

    Hi,
    You can try 2 options:
    1. You would need to capture/collect all the file names, you might have to use BPM and create a separate interface.
    2. You can also pick up those files from the archive directory using FTP and push them using mail adapter.
    Regards,
    Pavan

  • Module Context - Module adapter development question

    Hi,
    I've been using the method moduleContext.getContextData(nameParameterChannel) to get values from the communication channel for my custom modules adapter.
    Reading the [API|http://help.sap.com/javadocs/pi/SP3/xpi/com/sap/aii/af/lib/mp/module/ModuleContext.html] there is another method for which I'm not sure what it does:
    --> getContextData(String name, boolean fallback)
    Returns a value of a module configuration parameter and if fallback is true and the parameter cannot be found in the module configuration it is tried to read it from the channel configuration data
    With the usual method --> getContextData(String name), I've been always reading from the channel configuration data (name being the name of the parameter and the string returned being the value).
    So what does that method above do? That place "module configuration" in contrast to "channel configuration data" is not clear to me.
    Thanks!

    Closing (not solution yet)

  • Urgent ---- SOAP Adapter

    Hai,
    The scenario that we are working now is <b>IDOC-XI-SOAP</b>.
    We are having problem at SOAP Adapter.
    SOAP Adapter Receiver configurations:
    TargetUrl : .net webservice
    proxy settings : done
    soap action : given
    In the audit log error code is : General Error
    giving error that : soap call failed
    any inputs would be highly appreciated.
    Thanks
    Sri Krishna Charan

    Hai All,
    <b>
    How can i check whether my .net webservice is accessible or not in xi server....
    bcause xi server is runnig on remote host</b>
    Audit log information in message monitor is:
    Success The message was successfully received by the messaging system. Profile: XI URL: http://iccxi.sap.com:58000/MessagingSystem/receive/AFW/XI
    Success Using connection AFW. Trying to put the message into the receive queue.
    Success Message successfully put into the queue.
    Success The message was successfully retrieved from the receive queue.
    Success The message status set to DLNG.
    Success Delivering to channel: TEST_VONDELSOAP_DEMO
    Success SOAP: request message entering the adapter
    Success SOAP: call failed
    Success SOAP: sending a delivery error ack ...
    Success SOAP: sent a delivery error ack

Maybe you are looking for

  • Syncing video to iPhone?

    Is it possible to put short video clips onto my iPhone? I shoot these with my digital still camera and can see them in iTunes, but they won't sync over like photos do. I get a message like "not supported by iPhone". Is there another way to do this? M

  • Goods Issue Internal Order using MIGO

    Dear All, I want to do Goods Issue Internal Order using MIGO, but then an error message popup says "Order xxx not found or not permitted for goods movement" When i do the Goods Issue using MB1A, the transaction run well, So why MIGO transaction canno

  • Where should I put the conc mgr mid-tier or backend ?

    Hello All, Is there any advantage to putting the conc mgrs on the mid-tier as opposed to the database tier other than saving some memory usage on the database tier ? All the work would be carried out on the database tier wouldn't it ? thanks Dave

  • HT5922 can i watch the dvd in my desktop on my apple tv?

    can i watch the dvd in my desktop on my apple tv? What are the steps?

  • J2EE_ADMIN login authentication failed everyday

    Hi, I went to http://host:port/nwa and log in with j2ee_admin. it says authentication failed though we did not change the password before. I went to config tool, key storage,... to reset password for j2ee_admin and then sync it with j2ee_admin in ABA