Problem in value mapping

hi experts,
                 i am trying to do value mapping.i have done all configuration according to this link
                http://sap-xi.com/sap-xi-tutorial-value-mapping.html
but  i am not getting the expected results in target file . means the data is not getting changed as per the value mapping.
help me on this .
thanks
Anup
Edited by: anup kumar banerjee on Oct 27, 2011 1:33 PM

are you getting any error?
What is the behavior?
do refer this guide - http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00ee347e-aabb-2a10-b298-d15a1ebf43c5?QuickLink=index&overridelayout=true

Similar Messages

  • Problem in value mapping in POSDM configuration!

    Hi Experts,
                              I am sending data from POS to POSDM. I hav used standard name spaces like GM store Connectivity, BI and Store Connectivity 2.0. I hav also done settings in ID . Made a File adapter and RFC adapter and RD, ID, SA and RA settings.
    Data from Sourse: GMTLogTransaction_out is going to the RFC :/POSDW/CREATE_TRANSACTIONS_EXT  .
    So I hope users can Understand I hav used standard mapping.
    Now the issue is in the source structure a perticular field called TENDER ID is mapped with Target Field :Tender Code.
    But there is a value mapping in between.
    The name of the source Agency is IXREtailPOSLogRetailTransactionTenderID  and schema is IXRetailPOSLogRetailTransactionTenderIDSchema  and 
    The name of the Target  Agency is POSDWTENDERTYPECODE  and schema is POSDWTENDERTYPECODESCHEMA.
        And the Value mapping Context is : http://sap.com/xi/XI.
    The problem is I can see this , but I cant assign any value as it is in disabled mode in Messege mapping.
    Again In the ID I cannot see this Value mapping , which I expected to see and maniputale.
       experts, please tell me hw to I use this  manipulate / incert some values so taht the input when 01 becomes 3101 at output.
    If any doubts/ querioes, pls revert back.Please note , I am using all standard components in IR.
    Regards,
    Arnab .

    Hi Arnab / Abhijith,
    I am also going to work on the similar kind of requirement which u guys  have worked.
    Pos( third Party)->PI>POSDM-->IS-Retail ( Inbound)
    IS-Retail-> PI->POS( third Party) ( Outbound)
    Appreciate if you could help me with some clarifications..
    1) What transactions we can update to POSDM..?
    2) Does we need to POST all POS transactions first to POS DM and then IS-Retail ( Inbound).?
    If that is the case, once transactions posted in POSDM, does we need to do any settings to post idocs automatically to Retail system .. (OR) do we need to develop interface again from POSDM>PI>IS-Retail.( please clarify).
    Please suggest .. is it feasable to post only Non aggregated data directly to POSDM and Aggregated Sales ,FI , GRNs to directly to ECC.( Based on client requirement ).
    Awaiting for your suggestions.. Please suggest the best appraoch
    Thanks & Regards,
    Suman

  • Cache Problem in value mapping

    Hello All,
    I have done some changes in the Value mapping table , activated it and checked the cache also , its upto date.I have verified through cache monitoring in run time workbench also..
    But when i ran the transaction am not getting the expected result.
    Can anybody help me in this issue..Is anyone faced this type of problem?
    Regards
    Venkatesh

    Hi
    >In Mapping while doing the Value mapping,in that value mapping what are the names which you maintained under sender schema and sender agency should be the same names while maintaining the value mapping in ID from Menu>Tools-->value Mapping.
    -->I think the issue is not with the Cache, and In your communication channels for sender and receiver under IDENTIFIERS tab maintain the Sender schema and sender agency(Names should be same as in IR)for sender Channel and maintain the Receiver schema and Receiver agency for Receiver channel.(Names should be same as in IR).
    This might solve your problem and on value mapping search SDN there is simple BLOG given by Praveen Kumar.
    Thanks

  • Agency error on Value Mapping in 7.1.

    Hi,
    I'm facing a problem with value mapping using message mapping. The problem is that i can only choose as a Source/Target Agency the SenderParty/ReceiverParty but I can not use sender/receiver business system .
    Does anyone knows why? I'm using as Agencies the bussines system, so when I use the Party, the mapping program trhows an exeption.
    Thanks in advance,
    Ariel

    Ok, Problem Solved.
    I Used SenderService ; ReceiverService insead of SenderParty; ReceiverParty.
    Cheers,
    Ariel

  • EAI Value Maps

    HI,
    I need to understand how we use the EAI value Maps for mapping values for external System. I am using Siebel 8.0 and need to map values for 2 fields before sending the SOAP message using Outbound Web Service. I can send it and receive the response but the values currently are same in both the systems. Hence I need to understand how I can use Data Maps/EAI values maps for solving the mapping problem.

    EAI Value Maps can be used for data mapping feature while interfacing with an external application. If you anticipate that the value may be different in future or even it remains the same - to build in flexiility in your solution you can use EAI Value Maps.
    I'll try to explain through an example here. Let us consider example from Quote/Order Mgmt functionality - assume that you've to send your quote/order data to an external application for processing. In the quote/order line item you have Product field with value say Desktop However the external application refers to it by PC . In this case before sending the quote/order data out to the external application we've to perform mapping. This is where EAI Value Maps can help us.
    Under Administration - Integration --> EAI Value Maps screen, create a record as follows,
    Direction = Siebel Outbound
    Type = <define a type value - think of it as an identifier> say MY_PRODUCT
    Siebel Value = Desktop
    External System Value = PC
    The EAI value map so defined can be used in the script (business service) as follows -
    var sProd = oBC.GetFieldValue("Product");
    var sEAIMap = EAIGetValueMap("MY_PRODUCT","Siebel Outbound","");
    var sExtVal = sEAIMap.Translate("Desktop"); //sExtVal should return PC
    Note: You need to include eaisiebel.js in the declaration section of the business service

  • Siebel EAI Value Maps

    HI,
    I need to understand how we use the EAI value Maps for mapping values for external System. I am using Siebel 8.0 and need to map values for 2 fields before sending the SOAP message using Outbound Web Service. I can send it and receive the response but the values currently are same in both the systems. Hence I need to understand how I can use Data Maps/EAI values maps for solving the mapping problem.

    EAI value maps are conceptually similar to LOVs, except that they are purpose built for use in mapping values between systems. I would suggest going through the Siebel bookshelf in order to gain an in-depth understanding. Here's a link to get you started:
    http://download.oracle.com/docs/cd/B40099_02/books/EAI4/EAI4_DataMapUSScripts28.html#wp134444
    Once you have read the basics, you will come to realize that depending on how you've configured your application you can use the mentioned functions in both WFPs and scripts by directly calling them or using Data Maps.
    To specifically answer your question, here's the process:
    a) Define the mappings (Eg. IN for external system = +91 for Siebel)
    b) Define direction - Incoming/ Outgoing (optional but useful)
    c) Create the mappings within Siebel EAI Value Maps Screen making sure you have, like in LOVs, a specific type defined for the mapping (E.g. Back Office Phone Numbers)
    d) Use one of the available Value Map functions (See link above for the description of each of them) either in data maps or scripts to obtain the mapping value keying off the type field defined above
    e) The rest is pretty much the routine stuff (convert to XML and post/ call adapter or whatever)
    Hope this makes sense and helps..
    - Mayuresh

  • Value Mapping Problem - Values not appearing in destination system

    hello everyone,
    Here's my scenario: XML > XI > IDOC
    I have a problem with the ValueMapping and FixedValue function in XI. When I test the message in the Integration Repository, I don't get any problems (the value is converted appropriately), but when I view the IDOC in SAP, the value that is supposed to be in the field is missing.
    When I check the payload in SXMB_MONI in XI, no conversion occurs. I have refreshed the caches, and everything seems to be fine. I don't know why the value mapping functions seem to have stopped working altogether. Will anyone be able to help me out with my problem?
    Thanks in advance!
    Glenn

    Hi Glenn Bumanlag,
            I think the values that you have given for source values (Agency and scheme)
    and Target values (Agency and scheme) may be mismatching so kindly chek that...even i got the same error in the past..........
    If you the this problem kindly change it accordingly and also refresh the cache once you that with this.........
    Kindly follow the below mentioned link and check if you have followed these steps.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00ee347e-aabb-2a10-b298-d15a1ebf43c5
    Thanks
    Sai     
    PS: kindly reward points if helpful

  • Value Mapping causing problems in Adapter Engine?

    Hello, I was hoping someone might be able to help me with a problem we are having in our XI system.  I created a new value mapping group that has N:1 values. There are about 80 different values that I convert to 1 value.  I have been using 1:1 value mappings successfully and I tested out the N:1 scenario just fine also.  However, at the time I activated this new value mapping group, all of my resulting messages in the adapter engine are being held in a status of 'To Be Delivered'.  There are no errors in the RWB and the BASIS admin cannot find any errors in the J2EE logs.  Does any one have any ideas on possible causes for this condition?

    This problem has been corrected by a restart of the J2EE engine.  Still not certain what the root cause was, but this is the second time a restart has fixed a problem coinciding with a value mapping group object activation.

  • XSLT Value Mapping Problem

    Hello,
    we want to use the value mapping table in ID with XSLT.
    Here is my source:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Source xmlns:ns0="http://comsol-ag.com/xi/rfcxslt">
        <CustomerNumber>A</CustomerNumber>
    </ns0:Source>
    XSLT Mapping:
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:trg="http://comsol-ag.com/xi/rfcxslt" xmlns:ns0="http://test/xi/tsts" xmlns:ValueMap="java:com.sap.aii.mapping.value.api.XIVMService">
        <xsl:template match="/">
            <trg:Target>
                <CustomerInfo>
                    <xsl:variable name="sourceValue" select="ns0:Source/CustomerNumber"/>
                    <ID>
                        <xsl:value-of select="$sourceValue"/>
                    </ID>
                        <xsl:variable name="response" select="ValueMap:executeMapping('http://sap.com/XI/xi','SourceAgency','SourceScheme',string($sourceValue),'http://sap.com/XI/xi','TargetAgency','TargetSchema')"/>
                    <Name>
                    <xsl:value-of select="$response"/>
                    </Name>
                </CustomerInfo>
            </trg:Target>
        </xsl:template>
    </xsl:stylesheet>
    Target:
      <?xml version="1.0" encoding="utf-8" ?>
    <trg:Target xmlns:trg="http://comsol-ag.com/xi/rfcxslt">
    <CustomerInfo>
      <ID>A</ID>
      <Name /> ???????????????????????????????????
      </CustomerInfo>
      </trg:Target>
    But the receiving data is not converted to value table in ID:
    Integration Directory Value Table :
    http://www.image-load.eu/out.php/i26896_pic1.PNG
    Please point out where i m going wrong.
    Thanks

    problem solved!

  • Value Mapping  Transport Problem

    Hi All,
    I hv some value Mapping Values  in my XI Devvelopment system while i am transporting these values to the XI Quality System  all Development values are able to transport but,some values are duplicating.aferter that
    In  XI Production System newly added values are not transported eventhough imported Sucessfully.
    I was tryed two transport systems i.e CMS & File System.
    Plz, help me to solve this is....
    Thanks
    Mahesh

    Hi Mahesh,
    while value mapping make sure that u refresh the run time cache
    in value it uses another table that which helps in value mapping
    make sure that even that table is imported if any doubt pls chk this link
    value mapping uses values from the cache so you can you value
    mapping replication for your purpose - but you will not
    see those values from ID
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00ee347e-aabb-2a10-b298-d15a1ebf43c5
    http://help.sap.com/saphelp_nw2004s/helpdata/en/2a/9d2891cc976549a9ad9f81e9b8db25/content.htm
    /people/sukumar.natarajan/blog/2006/10/23/accessing-value-mapping-defined-in-directory-using-java-functions
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=value%20mapping%20in%20xi&cat=sdn_weblog
    if found  worth pls do reward points
    Thanx
    Sampath
    Edited by: venkata sampath on May 29, 2008 11:15 AM

  • Fix Value Mapping Problem

    Hi All
    I am doing a fix value mapping for a perticular field.I am getting a value say Y001 from the client system which i convert it to Z001 in my system. I tested the XML in the message mapping test tab.It is giving proper result.But at the output file i am getting the same value of Y001 instead of Z001.Can anyone please provide any inputs on this.
    Thanks
    Amit

    HI,
    Please chek the imput values..
    Sure if you fix the value in Fix Value mapping then you will get the resukt value otherwise empty.
    Please see the below links
    value mapping - /people/sreekanth.babu2/blog/2005/02/23/value-mapping-replication
    Value mapping /people/sukumar.natarajan/blog/2006/10/23/accessing-value-mapping-defined-in-directory-using-java-functions
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=value%20mapping%20in%20xi&cat=sdn_weblog
    /people/community.user/blog/2007/01/08/valuemapping-using-the-graphical-mapping-tool
    /people/alessandro.guarneri/blog/2006/03/27/sap-xi-lookup-api-the-killer
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=value%20mapping%20in%20xi&cat=sdn_weblog
    Regards
    Chilla..

  • Value Mapping problems

    Hello Team,
    I'm trying to use the Value mapping functionality but is not working for me, all the transaccion failed because of invalid account code. Create the map rule but is not executed. Watching the B1iSN Graphical Design tool i see that i have an error on the Sender ObjectType it said "ValueMappingKeyTable B1.2004_JE does not exist on the B1iSN Repositiry" any idea???

    GARG23,
    I had a same issue.
    How did you manually create the B1.2004_JE file?
    Could you please show me step by step?
    Thansk
    Joanne
    Edited by: Joanne Lee on Mar 25, 2011 12:37 AM

  • Problem in message mapping index.

    HI All,
    I am doing idoc to file scenario.
    I have a problem in message mapping.
    Issue is,
    pallet1
      palletheader(here i used counter to increment the value)
      palletline(here i used INDEX to increment the value)
            pallet linenumber1(it should be 1)
            pallet linenumber2(it should be 2)
    so on       )
    so on
    pallet2
      palletheader
      palletline
            pallet linenumber1(here again it should be 1)
            pallet linenumber2(here again it should be 2)
    so on              )
    so on
    In INDEX we have option called reset index in that we have two radio buttons
    one is "reset index to intial value with each new context"
    and next one is "donot reset index to intiak value"
    if i use the first radio button which is working fine in only one pallet and more pallet lines but not more than one pallet.
    If i use the second radio buttton which is working fine in more than one pallet but not satisfying the more pallet lines in one pallet.
    Can you please help me on the issue

    my requirement is like this.
    IF DELVRY05/IDOC/E1EDL20/E1EDL24/POSNR equals to /DELVRY05/IDOC/E1EDL20/E1EDL37/E1EDL44/EXIDV
    then map to 'pallet line' .
    I tried to keep posnr context as E1EDL20 and also IDOC level.
    And at the same way to EXIDV too.
    pallet(1 to unbounded)
       pallet header(1 to 1)
       pallet lines(1 to 1)
            in sub level  pallet line(1 to unbounded) (here i applied the index logic)
    The out put should be pallet line 1,2,3,----- so on
    In the second pallet the pallet lines should be again 1,2,3,4-------so on .
    But when i try to apply thsi logic,
    I am getting only one pallet line instead of two.
    second is not comming .
    please help on this i am facing this problem for the long time back.
    if i solve then i can complete my scenario.

  • Value Mapping not in cache

    Hi all,
    I've ceated a value mapping table manually in the IB (Config) using the tool. I also created a VM Group.
    However it is not picking up the new values and I can't find the VMG in the RWB Cache either....
    Im only dealing with small number of entries so I don't need a mass reproduction...
    Any help welcome..
    cheers,
    Eric

    > I've ceated a value mapping table manually in the IB (Config) using the tool. I also created a VM Group.
    > However it is not picking up the new values and I can't find the VMG in the RWB Cache either....
    Hi,
    Have you refreshed your cache (CPA & SXI_CACHE)?
    Also clear the SLD Data Cache from Intergaration Dirtectory menu "Environment".
    Try to run end-end scenario and see in MONI if there are corresponding values from VM. In general it never gives problem in comparsion to VM Replication.
    Regards,
    Sarvesh

  • Value mapping performance using LookUp API

    All,
    We are using Value mapping look up from an external table using JDBC adapter and Lookup API. The scenario works good, but the performance is a hit for us as it is taking 7 seconds for the first step and the subsequent steps are taking much longer. In the performance header it shows that the steps "DB ENTRY QUEUING" and "DB SPLITTER QUEUING" are taking 90% of the time even though mapping execution is real quick.
    We tried the below things which did not help us analyze or isolate the problem.
    1. We increased the number of dialog processes from 3 to 8. (Optimal value should be 5)
    2. We tested the scenario using Value mapping in ID instead of external table. But it is almost taking the same time in the above two steps mentioned.
    I would like to know whether any kind of configuration settings to be done on the server like "specifying connection pool capabilities" etc...
    Any pointers would be really appreciated.
    Thanks and Regards,
    GP

    Hi,
    Have you seen this weblogs by Prasad recently:
    /people/prasad.illapani/blog/2007/03/08/performance-tuning-checks-in-sap-exchange-infrastructure
    /people/prasad.illapani/blog/2007/04/20/performance-tuning-checks-in-sap-exchange-infrastructurexi-part-ii
    Also are you doing multiple lookups or a single lookup? If you are using multiple lookup for multiple fields which has the same logic then try to use global variables.
    ---Satish

Maybe you are looking for

  • Having trouble with DV NTSC export file for Pro Tools.

    Pro Tools only takes NTSC format video. For some reason every single DV NTSC file that has been exported freezes in a certain spot and in other portions tends to flicker. I'm not so sure as to why that is. I tried exporting it through the QuickTime M

  • HT1657 Why is only one of the two movies I've payed for from iTunes store refusing to download onto my iTouch 4 gen?

    I payed for two movies through iTunes store on my computer, after they were ready to be transfered to the iTouch from my rental library, only one successfully went through. The other film completely disregarded the attempt to show even a 'loading' ba

  • OK, So What Exactly Is Being Copied/Updated Here?

    Hi, Since the last time I synced my 32GB iPod Touch, I've added just ONE song to my iTunes library and played a bunch of songs which were already in my library. I've just synced my iPod Touch now and the message I get (along the top of the iTunes win

  • Flash/HTML best practice

    What's the recommended method for inserting Flash on a web page? (to work in Mozilla, IE etc) I'm on DW8, but the code it generates doesn't validate. My current test page is at http://blastoff.kpdirection.com/playertest.php (Warning - it plays music

  • Dreamweaver CS3 crashes in XP

    Dreamweaver CS3 loads, then crashes after about 5 seconds. I've tried uninstalling the program and all other versions of Dreamweaver, deleting all my site definitions, all registry information, and even disconnecting the drive that all my local sites