Integrated configuration with parameterized mapping

Dear All,
My scenario is using integrated configuration AAE. I am trying parameterized mapping with Integrated configuratiion but it throws an error saying that AAE doesnt support parameterized mapping.
I am uisng PI 7.1 I wanted to know doest PI 7.3 support this or which service pack on PI 7.1 support Parametrized mapping with AEE.
Any thoughs on this.
chirag

Hi Chirag,
Integrated Configuration Scenario with Parameterized mapping is not supported in PI 7.1, 7.1 EHP1 or even in 7.3
This is a limitation with AAE based scenarios. However, you can still use Parameterized mapping in Classical Scenarios(ID,RD,SA,RA). This is well supported in PI 7.1 and higher versions.
Please take a look for the CAUTION statement in the following link:
http://help.sap.com/saphelp_nw73/helpdata/en/94/75de6590d64673b1e94ac072842ee3/content.htm
I hope this helps.
Regards,
Gaurav.

Similar Messages

  • Problems with parameterized mapping in BPM

    Hi
    I am using an RFC lookup in a message mapping. I have declared the parameters/bindings in Message Mapping and Operations Mapping, but when I use the Operations Mapping in a transformation step in my BPM, I am asked for an "import" value. There are no values to be selected. What do I do?
    Thanks!
    regards Ole

    In your integration process, define the import parameter under Configurable Parameters category.
    http://help.sap.com/saphelp_nwpi71/helpdata/en/44/1f1a5c932d0d19e10000000a114a6b/frameset.htm
    Regards,
    Prateek

  • Integrated Configuration-with multiple receivers(synchronous )

    Hi All,
    Our scenario is web service to proxy(2 receivers) synchronous scenario.....
    sender is a party and 2 receivers are 2 different business systems....
    we have to create a ICO.....
    when i am creating up to receiver interface is fine...
    in outbound processing tab i didnt find any communication channel.....
    what is the issue????
    any one could you please suggest me the process
    Thanks In Advance,
    vishnu

    Hi All,
    Thanks,
    I got the solution.... like below....
    Use SOAP Adapter both Sender and Receiver.
    Create the Sender SOAP Adapter User Message Protocol: SOAP 1.1 (This is for web Service)
    Create the Receiver SOAP Adapter User Message Protocol : XI3.0  (This is for AAE Adapter)

  • How to pass input parameter (parameterized mapping) to java mapping program

    Hello
    I have a question about the parameterized mapping with Java (PI 7.1).
    In the operation mapping (using Java-class) I defined a inputer parameter (string). I think I am supposed to retrieved the value using:
                    arg0.getInputParameters().getString("myInputParameterName");
    where arg0 is the TransformationInput object.
    However I am not able to get the value, I got runtime exception saying the inputer parameter doesn't exit.
    Then I figured out maybe I need to bind the OM input parameter to Java mapping parameter, just like in case of message mapping, you need to bind OM parameter to MM parameter. However there is no way to define input parameter for the java mapping program.
    Anybody has done java mapping with parameterized mapping?
    Anybody can give any hint for this?
    Thanks
    Jayson

    InputParameters params = container.getInputParameters();
    DynamicConfiguration conf = (DynamicConfiguration) params.getValue(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File", "Directory");
    http://help.sap.com/saphelp_nwpi71/helpdata/en/43/03612cdecc6e76e10000000a422035/content.htm
    Edited by: Anand on Dec 10, 2008 4:13 PM

  • Problem with Dynamic Configuration in XSLT mapping..!!

    Hi friends,
    Working first time with xslt map.I am doing a Idoc to File scenario in which I need to pass Idoc number as the file name dynamically. Right now I am just trying to send some constant value 'ABCD' to go in dynamic attribute filename.
    I used the code which has been provided over here.
    [http://help.sap.com/saphelp_nw04/helpdata/en/43/03fe1bdc7821ade10000000a1553f6/frameset.htm|http://help.sap.com/saphelp_nw04/helpdata/en/43/03fe1bdc7821ade10000000a1553f6/frameset.htm]
    I just changed the "Directory" with "FileName" in the code. It is not generating the dynamic attribute http://sap.com/xi/XI/System/File
    This is my xsl code. Please suggest me If iam doing anything wrong.
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:map="java:java.util.Map" xmlns:dyn="java:com.sap.aii.mapping.api.DynamicConfiguration" xmlns:key="java:com.sap.aii.mapping.api.DynamicConfigurationKey">
         <xsl:output indent="no"/>
         *<xsl:param name="inputparam" select = "ABCD"/>*
         <xsl:output method="text" encoding="utf-8"/>
         <xsl:template match="/">
              <!-- change dynamic configuration -->
              <xsl:variable name="dynamic-conf" select="map:get($inputparam, 'DynamicConfiguration')"/>
              *<xsl:variable name="dynamic-key" select="key:create('http://sap.com/xi/XI/System/File', 'FileName')"/>*
              <xsl:variable name="dynamic-value" select="dyn:get($dynamic-conf, $dynamic-key)"/>
              <xsl:variable name="new-value" select="concat($dynamic-value, 'subfolder\')"/>
              <xsl:variable name="dummy" select="dyn:put($dynamic-conf, $dynamic-key, $new-value)"/>
              <!-- copy payload -->
              <xsl:copy-of select="."/>
         </xsl:template>
         <xsl:template match="/">
    Waiting for your answers.
    Thank you.
    Deepthi.

    Hi Stefen,
    I tried the way you suggest but still I couldn't able to see the Dynamic Configuration attribute in SOAP document. I tried for Idoc number and even tried by passing just a value 'abcd' like below.
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:map="java:java.util.Map" xmlns:dyn="java:com.sap.aii.mapping.api.DynamicConfiguration" xmlns:key="java:com.sap.aii.mapping.api.DynamicConfigurationKey">
         <xsl:output indent="no"/>
         <xsl:output method="text" encoding="utf-8"/>
         *<xsl:param name="inputparam"/>*
                    *<xsl:param name="new-value">*
      *<xsl:value-of select="/WMMBID01/IDOC/EDI_DC40/DOCNUM" />*
      *</xsl:param>*     
         <xsl:template match="/">
              <!-- change dynamic configuration -->
              <xsl:variable name="dynamic-conf" select="map:get($inputparam, 'DynamicConfiguration')"/>
              <xsl:variable name="dynamic-key" select="key:create('http://sap.com/xi/XI/System/File', 'FileName')"/>
              <xsl:variable name="dummy" select="dyn:put($dynamic-conf, $dynamic-key, $new-value)"/>
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:map="java:java.util.Map" xmlns:dyn="java:com.sap.aii.mapping.api.DynamicConfiguration" xmlns:key="java:com.sap.aii.mapping.api.DynamicConfigurationKey">
         <xsl:output indent="no"/>
         <xsl:output method="text" encoding="utf-8"/>
         *<xsl:param name="inputparam"/>*
                    *<xsl:param name="new-value" select="abcd">*
       *</xsl:param>*     
         <xsl:template match="/">
              <!-- change dynamic configuration -->
              <xsl:variable name="dynamic-conf" select="map:get($inputparam, 'DynamicConfiguration')"/>
              <xsl:variable name="dynamic-key" select="key:create('http://sap.com/xi/XI/System/File', 'FileName')"/>
              <xsl:variable name="dummy" select="dyn:put($dynamic-conf, $dynamic-key, $new-value)"/>
    Any suggestions please.
    Thanks
    Deepthi.

  • ABAP Proxy sender possible in integrated configuration AAE with PI 7.11

    Hi guys,
    we are running PI 7.11.
    We have serveral scenarios where the senderis an ABAP proxy and the receiver is reached by a jave adapter.
    With Ehp1 the SOAP adapter offers the possibilty to chose XI 3.0 as message protocol.
    We use this feature already in scenarios where ABAP proxy is receiver.
    But is it also possible to use it at sender side?
    Kind regards
    Jochen

    Hi Volker,
    thanks for your help.
    You could also use ABAP proxy at sender side during integrated configuration.
    Prerequisite is to implement SAP note  1349125 and use following url for acessing the PI from SAP backends.
    http://<host>:<port>/XISOAPAdapter/MessageServlet?ximessage=true
    With this URL you could ABAP proxies in normal scenarios where integration server is involved as well as  in integrated configurations.
    Kind regards
    Jochen

  • Dynamic Configuration not working with Integrated Configuration

    Hi All,
    Dynamic Configuration works fine in PI 7.3 when Classical Configuration is used. However the same does not work using Integrated Configuration.
    Scenario :
    SOAP -->SOAP Synchronous scenario in PI 7.3 (Dual Stack).
    Trying to save a value from Request mapping using dynamic configuration and use the same in response mapping.
    UDF Code :
    Request Mapping :
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey Variable = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP", "Variable1");
    conf.put(Variable, a);
    Response Mapping :
    DynamicConfigurationKey Variable = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP", "Variable1" );
    string1 = conf.get(Variant);
    Note : Using Integrated Config(AAE Processing) - Response header does not have DynamicConfiguration header node , but Classical Configuration has that.
    Regards,
    Parimala
    Edited by: ParimalaE on Mar 1, 2012 1:33 PM

    For us this is what we had:
    This didn't work (getInputParameters is the newer stuff that doesn't work):
    DynamicConfiguration dc = (DynamicConfiguration)container.getInputParameters().getValue(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey dck = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP","TServerLocation");
    dc.put(dck,"https://xyz.api-salesforce.com/services/Soap/c/26.0/0DFa00000008jis");
    return "";
    This works for us(we had to remove getInputParameters):
    DynamicConfiguration dc =  (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey dck = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP","TServerLocation");
    dc.put(dck,"https://xyz.api-salesforce.com/services/Soap/c/26.0/00D3000000001X0");
    return "";

  • How to query Database with Parameters  and configure null value response?

    Hi,
    1.When capture attributes from forms & after applying several logics, passing to a DB table using an API, how to get relevant values for a given parameter in another DB table ?
    2.When a DB table is queried, if the value does not exist, how to configure the response message ?
    Thanks.

    Okay, you've provided exactly what John S. asked for - and no more. This is helpful, but not enough. I think we're going to need a use case to understand exactly what you are asking. What should the user see? What does the user do next? What should happen in the database and in the application when the user does this?
    However, I'll try to read between the lines a bit, and get you part of the way there. To query the database with parameters in ADF BC, you need a View Object (VO). The simplest thing to do is create the SELECT command behind the VO with some bind variables and add the bind variables to your VO. At that point, you will get an ExecuteWithParameters operation in the Data Control. You can drag that operation onto a JSF page and it will give you an option to create a parameter form to let the user fill in the parameters to set the bind variables, and a button to execute the query with these values. Any table or form based on that same VO will show the selected data.
    A Trinidad or ADF Rich Faces table will have an attribute to let you define some text to show the user if no data was retrieved by the query. But there are other ways to determine if data was retrieved which you can use to control other ways to display this information. For instance, I have a page that has an outputText component that has a "rendered" attribute to show the text only when there was no data retrieved by a query.

  • Photos integrated with GPS Maps

    With the Location settings enabled for your camera, can you send geotagged photos to other iPhone users as a way for them to get directions to your location?
    Let's say I needed directions to meet up with my friends. Is it possible for them to just take a picture of their location, send it to me, have the picture integrated into my GPS maps, and get directions to their location?
    Is this possible? Anyone know? If not, wouldn't that be a good idea? Would it be difficult?

    One of many ways would be to add this in the bookmarks in your gps maps. So far there are only 3 options to select
    1. Bookmarks
    2. Recents
    3. Contacts
    Can't they add "Geotagged Photos" or something to that extent?
    I know this isn't the place to do it.. So I won't entertain this much longer. I thought for sure our photos would be integrated with the GPS maps.
    Is there at least a specific social network application that closely resembles that? If so, which one?

  • How to configure the Integration Builder connection Parameters

    Hi,
    If I leave the integration builder for a while, then I explore objects, the pop up message is:
    "Connection to server lost You can log on again once the server is available again Do you want to log on again?"
    I input password, some times regain the connection, most time not, then if not, I have to restart integration builder. I would like to know where I can adjust parameters to allow connection kept longer.
    Thanks
    Liang

    Hi, Swarup:
    Thanks for your reply.
    The reality here is that we could not get solid support from BSAIS team, we came to many situations that we have to search around and tell them how to do the job like this (They are all afraid of Java Stack
    I will keep search, if you have detailed information how to and where to configure those parameters, please let me know.
    Regards!
    Liang

  • Siebel Integration with Google Maps

    Hi
    Is there any posiibility to Integrate Siebel with Google maps
    Currently i am Working in Siebel Version 8.0
    With Google Maps we are able to drop pins on the locations of customers and use to Know the Minimum travel time (Shortest Distance) set calling patterns, receive directions etc.
    As i mentioned above,how can we integrate the Siebel with Google Maps
    if anybody has worked on this, plz let me know the Details / Provide where i can gather the Information
    Thanks & Rgds
    Prasad

    I can't stop to wonder, if this:
    http://www.google.com/search?hl=en&q=%22Google+Maps%22+siebel&aq=f&oq=
    is really too much to ask?
    The two first hits are "Google Maps in Siebel for dummies".
    Axel

  • Parameter setting for RFC Lookup in Integrated Configuration

    hi Experts,
    I am using AAE feature of PI 7.1 to create a file to file scenario with mapping.
    I have to perform RFC_LOOKUP in mapping.
    I have Created a parameters in Message Mapping and Operation Mapping and performed required binding between them.
    Details of parameter are:
       Name:         RFC_Lookup
       Category:    Adapter
       Type:          RFC
       Parameter:  Import
    I am using Integrated Configuration in ID.
    Please tell me where do I assign values to parameter in ID when using Integrated Configuration.
    Thanks.
    Girish

    Hi guys,
    I have the same issue.
    I want to use an parameterzied mapping during an integrated configuration.
    But I don´t find any place to specify the value for the parameter.
    Are parameterized mappings not possible with integrated configuration?
    If I create an normal configuration using interface determination, I could specify the parameter value
    Kind regards
    Jochen

  • Integrated Configuration- Problem occurred in receiver agreement for sender

    Hi ,  I am using AAE in PI 7.1  and it is proxy to file scenrios.
    When Ia m doing testing  in Integration Directory in test configuration its giving me this error .
    Problem occurred in receiver agreement for sender -<ECCBUSINESSSYSTEM> to receiver -BS_D_EPS,http://abc.com/sap/pi/HR/Qualifications.Qualifications_Async_Out: No receiver agreement found for , -<ECCBUSINESSSYSTEM> , BS_D_EPS, http://abc.com/sap/pi/HR/Qualifications, Qualifications_Async_Out
    ( here it should take interface  Qualifications_Async_In, but logs says it is pointing to outbound interface)
    here  when I am going in to trace logs  then it seems  that are not able to understand  the   receiver interface . rather then it is taking sender inface in logs..
    In trace logs . I am getting
    Receiver Determination
    <Not found>
    <Trace level="1" type="B">CL_RD_PLSRV-ENTER_PLSRV</Trace>
    <Trace level="1" type="T">R E C E I V E R - D E T E R M I N A T I O N </Trace>
    <Trace level="1" type="T"> Cache Content is up to date </Trace>
    <Trace level="2" type="T">Start with given receiver - BS_D_EPS </Trace>
    <Trace level="2" type="T">Using Receiver Determination 00000000000000000000000000000000 </Trace>
    <Trace level="1" type="T">No Relation found - accept given Receivers. </Trace>
    <Trace level="2" type="T">...extracting Receiver from Header: BS_D_EPS </Trace>
    <Trace level="2" type="T">Classic Receiver Determination via Rules. </Trace>
    <Trace level="3" type="T">...create rule engine </Trace>
    <Trace level="2" type="T">No Receiver found behaviour: 0 </Trace>
    <Trace level="2" type="T">Number of Receivers:1 </Trace>
    <Trace level="1" type="E">CL_RD_PLSRV-ENTER_PLSRV</Trace>
    Interface Determination
    <Not found>
    <Trace level="1" type="B">CL_ID_PLSRV-ENTER_PLSRV</Trace>
    <Trace level="1" type="T">I N T E R F A C E - D E T E R M I N A T I O N </Trace>
    <Trace level="1" type="T"> Cache Content is up to date </Trace>
    <Trace level="1" type="T">...There is no Interface Determination configured for receiver party and receiver service BS_D_EPS </Trace>
    <Trace level="2" type="T">Check conditions for (Inb: Party Srvc If) BS_D_EPS Qualifications_Async_Out </Trace>
    <Trace level="2" type="T">...valid InbIf without Condition: Qualifications_Async_Out </Trace>
    <Trace level="2" type="T">Number of receiving Interfaces:1 </Trace>
    <Trace level="1" type="E">CL_ID_PLSRV-ENTER_PLSRV</Trace>
    Operation Mapping
    <Not found>
    <Trace level="1" type="B">CL_MAPPING_XMS_PLSRV3-ENTER_PLSRV</Trace>
    <Trace level="2" type="T">......attachment XI_Context not found </Trace>
    <Trace level="3" type="T">Mapping already defined in interface determination </Trace>
    <Trace level="1" type="T">No mapping configured </Trace>
    <Trace level="1" type="E">CL_MAPPING_XMS_PLSRV3-ENTER_PLSRV</Trace>
    I  have developed the other integrated configuration scenario and this is working fine . 
    please let me know how can I troubleshoot it

    I am using sender as Soap and receiver as File adapter. 
    here  the problem is that  while going for interface deteremination and receiver agreement  it is calling to  Outbound interface .
    It should call the inbound interface. I put all the details correctly and deleted all the objects and crated again for both Ir and Id..
    I put the name of inbound interface  in configuration but while executing its calling outbound interface.

  • PI 7.1 Integrated Configuration for AAE - Issue Accessing Attachment

    Hello All,
    PI 7.1 in its new features allows access to the Attachment using UDF's withing Graphical Mapping.
    Tried this feature and works good in Graphical mappings; am able to access the Attachment; and write it into a Field on my target. This works with the standard XI pipeline steps of passing message from AE to IE back to AE.
    When trying to use the same set up with the Advanced Adapter Engine, - Integrated Configuration; this feature doesn't seem to work and the mapping run time triggers a Null Pointer Exception.
    None of the SAP documentation discusses this as a limitation of AAE and hence am wondering if this is a bug or is this a limitation? Has anyone on the forum tried this?
    Regards
    Bhavesh

    Hi Bhavesh,
    I also tried this scenario long back when PI7.1 was in Rampup mode. We tried and first part was working fine as you also written, but in second part we got stuck. After some research, we found that we cannot configure additional communication scenarios that contain, for example payload-based routing or a message split, with Integrated Configuration. You must define separate receiver determinations, interface determinations, and communication agreements to configure communication scenarios of this type. We can only configure communication scenarios where message is transfered withing AAE.
    MAy be you need to check the receiver interfaces and Mappings or may somthing missing there.Also check for authorized Service User.
    Possibilities are like something missing is in Integrated Configuration but not sure.
    Regards
    Aashish Sinha

  • Integrated Configuration in PI 7.1

    Hi All,
    I am using 3 BAPIS at the receiving side out of which 1 BAPI will be picked as per the condition in the condition editor.
    1.So,do I need to tick the "Sender Uses Virtual Receiver" check-box in the "Integrated Configuration" section
    2.But when I go for creating the "Integrated Configuration"section without ticking the "Sender Uses Virtual Receiver" check-box ,
    it gives me the error that it is already assigned to the object;conflicting direct connections,sender agreements,or integrated configurations are not permitted.
    3.I have configured the Sender Agreement,Receiver Agreement before the "Integrated Configuration" section.So,what shall I do?Shall I tick the "Sender Uses Virtual Receiver" check-box in the "Integrated Configuration" section ?
    Thanks in advance.

    Hi ,
    Thanks for the reply.
    Actually I am having the Process Order coming in the source with 5 to 6 relevant fields.Out of these Process Order fields Status is one of the fields.Based on the the StatuS field the BAPIs will be called at the receiver.So can I skip Integrated Configurations as I am imposing the condition on the data in the payload(Source Structure) as Integrated configuration will not be helpful in my scenerio.?
    Or shall I  skip Sender Agreement ,Receiver Agreement?
    Also,in PI 7.1 Integration Directory there is one section as "Value Mapping Group".I suppose that it is used if and only if value mapping is used.But I am not using any kind of value mapping so can I skip that section?
    Thanks in advance.
    Edited by: Shweta Kullkarni on Aug 19, 2009 5:19 AM

Maybe you are looking for

  • Alertmonitoring in SAP XI and the standard text follow up activities

    Hello together, we implement the XI Alertmonitoring. This works propertly. Only I we don't need the section "follow up activites". So it is possible to delete the entry ? Here the error message as-is: Alert ID: ##80586## XI System ID: P80 Alert creat

  • Is there any way to change more than one picture at a time in Adobe CS2 from Tiff to .jpg

    I have a folder of Tiff pictures that I would like to change to .jpg so that I can download them to one DVD rather than the huge amount of space Tiff pictures take. and the number of DVD's that I would have to use. Thx.

  • ITunes doesn't open on my ipad

    When I try to connect to the iTunes store frm my iPad, it says can't connect. This despite my wifi being in working condition. I am able to use my brows er but not iTunes store. Can anyone help? Btw, apple support *****.

  • Large Photoshop file has caused system slow down.

    I have Dual 2.0Ghz G5 which has worked very well since I got it last Spring. Just recently however I've had some slow downs. There are a number of things that I've noticed such as more frequent spinning beachball and font redraw issues. These issued

  • Flash CS5 crashes on exit

    I have Adobe CS5 Master Collection trial installed on Windows XP Pro Service Pack 3, 32bit operating system. Every time I try to exit Flash CS5, no matter how (File/Exit, ALT+F4...) it crashes and won't close the window. While I work in Flash, open a