Value mapping is not refflected in the output

Hi Experts,
I have used value mapping in PI7.1
BUT IT IS NOT REFLECTED.
ID: I have used value group.IR  I have usedin the value mapping.
please guide me.
regards
elton

Please refer this thread and link. Might help you
fixed and value mapping
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00ee347e-aabb-2a10-b298-d15a1ebf43c5?quicklink=index&overridelayout=true

Similar Messages

  • Value mapping does not work

    Hi All,
    I can not get value mapping in XI 3.0 to work. Has anyone experience with this, the documentation is soo bad. This is what I have done:
    In the Graphical mapper I used the object "Value mapping" and filled in the following parameters:
    Value mapping context: http://sap.com/xi/XI
    Source
    Agency: System1
    Schema: UnitSystem1
    Target
    Agency: System2
    Schema: UnitSystem2
    In the directory I created an Value mapping table with the same paremeters as above and filled in the table.
    When I test the complete flow, the value mapping is not used. The unchanged values are just copied over to the target field.
    Any help is appreciated.
    Cheers,
    Frank

    Hi Colin,
    In test Mode you can't test the value mapping, because the value mapping table is part of the Directory. Instead of the Value Mapping I tried "Fixed Values" and that works, but you can not re-used it.
    If this advanced mapping guide explanes how to use the value mapping better then the standard "how to" mapping guide, please send it to me.
    email: [email protected]
    Cheers,
    Frank

  • Reg : data is not getting in the output

    hi team,
                 data is not getting in the  output, but it is getting in the debug mode
    REPORT ZSAPP10 .
    *tables : pernr.
    TABLES : PA0001.
    type-pools : slis.
    types : begin of itab,
            pernr type pernr,
            orgeh type orgeh,
            abkrs type abkrs,
            end of itab,
            begin of itab2,
            pernr type pernr,
            vorna type pad_vorna,
            nachn type pad_nachn,
            end of itab2.
    parameter : p_pernr like pa0001-pernr.
    *DATA:  g_cprog  tYPE SY-CPROG.
    data : i_itab1 type table of itab initial size 0,
           i_itab2 type table of itab2 initial size 0.
    data : w_itab type itab,
           w_itab2 type itab2.
    data : t_fieldcat type slis_t_fieldcat_alv,
            w_fieldcat type slis_fieldcat_alv.
    data : t_event type slis_t_event,
            w_event type slis_alv_event.
    data : t_listheader type slis_t_listheader,
           w_listheader type slis_listheader.
    *get pernr.
    w_event-form = 'TOP_OF_PAGE'.
    w_event-form = 'sub1'.
    append w_event to t_event.
    w_listheader-typ = 'H'.
    w_listheader-info = 'this is new top of page'.
    append w_listheader to t_listheader.
    select pernr
           orgeh
           abkrs from pa0001 into table i_itab1 where pernr = p_pernr.
    w_fieldcat-col_pos = 1.
    w_fieldcat-seltext_m = 'personnal no'.
    w_fieldcat-fieldname = 'pernr'.
    w_fieldcat-tabname = 'i_itab1'.
    w_fieldcat-outputlen = '20'.
    append w_fieldcat to t_fieldcat.
    w_fieldcat-col_pos = 2.
    w_fieldcat-seltext_m = 'org. unit'.
    w_fieldcat-tabname = 'i_itab1'.
    w_fieldcat-fieldname = 'orgeh'.
    w_fieldcat-outputlen = '20'.
    append w_fieldcat to t_fieldcat.
    w_fieldcat-col_pos = 3.
    w_fieldcat-seltext_m = 'payroll area'.
    w_fieldcat-tabname = 'i_itab1'.
    w_fieldcat-fieldname = 'abkrs'.
    w_fieldcat-outputlen = '20'.
    append w_fieldcat to t_fieldcat.
    *g_cprog = SY-CPROG.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
               I_INTERFACE_CHECK                 = ' '
               I_BYPASSING_BUFFER                =
               I_BUFFER_ACTIVE                   = ' '
                 I_CALLBACK_PROGRAM                = SY-CPROG
               I_CALLBACK_PF_STATUS_SET          = ' '
               I_CALLBACK_USER_COMMAND           = ' '
               I_CALLBACK_TOP_OF_PAGE            = ' '
               I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
               I_CALLBACK_HTML_END_OF_LIST       = ' '
               I_STRUCTURE_NAME                  =
               I_BACKGROUND_ID                   = ' '
               I_GRID_TITLE                      =
               I_GRID_SETTINGS                   =
               IS_LAYOUT                         =
                 IT_FIELDCAT                       = T_FIELDCAT
               IT_EXCLUDING                      =
               IT_SPECIAL_GROUPS                 =
               IT_SORT                           =
               IT_FILTER                         =
               IS_SEL_HIDE                       =
               I_DEFAULT                         = 'X'
               I_SAVE                            = ' '
               IS_VARIANT                        =
                 IT_EVENTS                         = T_EVENT
               IT_EVENT_EXIT                     =
               IS_PRINT                          =
               IS_REPREP_ID                      =
               I_SCREEN_START_COLUMN             = 0
               I_SCREEN_START_LINE               = 0
               I_SCREEN_END_COLUMN               = 0
               I_SCREEN_END_LINE                 = 0
               IT_ALV_GRAPHICS                   =
               IT_ADD_FIELDCAT                   =
               IT_HYPERLINK                      =
               I_HTML_HEIGHT_TOP                 =
               I_HTML_HEIGHT_END                 =
               IT_EXCEPT_QINFO                   =
             IMPORTING
               E_EXIT_CAUSED_BY_CALLER           =
               ES_EXIT_CAUSED_BY_USER            =
                 TABLES
                 T_OUTTAB                          = I_ITAB1[]
              EXCEPTIONS
                PROGRAM_ERROR                     = 1
                OTHERS                            = 2
    IF SY-SUBRC <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
          FORM sub1                                                     *
    FORM sub1.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = t_listheader
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    ENDFORM.                                                    " sub1

    write this way...
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
            i_callback_program                = w_repid
            is_layout                = wa_layout
            i_callback_user_command  = 'USER_COMMAND_ACCT'
            i_grid_title             = 'Document Status Report'
             it_fieldcat                       = it_fcat[]
         IT_SORT                        = IT_SORT[]
             it_events                = it_events
             TABLES
               t_outtab                        = it_final_data[]
          EXCEPTIONS
            program_error                     = 1
            OTHERS                            = 2.

  • Error : DB Mapping does not exist for the Host in iSetup

    Hi Experts,
    We configured iSetup for migrating data from source to target, while configuring instance mapping has been completed successfully but while extracting data from source to target is showing below error :
    Error : DB Mapping does not exist for the Host:<host name > with Two Task: TEST
    EBS Version : 12.1.1 with 11.1.0.7 DB
    OS : RHEL 5.3 x86_64
    Any idea much Appreciated .
    Thanks in advance,
    Regards,
    900076.

    900076 wrote:
    Hi Experts,
    We configured iSetup for migrating data from source to target, while configuring instance mapping has been completed successfully but while extracting data from source to target is showing below error :
    Error : DB Mapping does not exist for the Host:<host name > with Two Task: TESTIs this the complete/exact error message?
    EBS Version : 12.1.1 with 11.1.0.7 DB
    OS : RHEL 5.3 x86_64
    Any idea much Appreciated .
    http://docs.oracle.com/cd/E18727_01/doc.121/e12899/toc.htm
    http://docs.oracle.com/cd/E18727_01/doc.121/e15842/toc.htm
    Thanks,
    Hussein

  • Added in to fieldcat but do not display in the output

    Dear Experts,
    I meet a problem that I add one recode into the fieldcat.But in output, the field's name do not appear in the output.The following is my code.The content 'Duodate' does not appear on the screen.
    form fieldcat_init using l_fieldcat type slis_t_fieldcat_alv.
      data: ls_fieldcat type slis_fieldcat_alv.
    *head field categories                                       *
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'LIFNR'.
      ls_fieldcat-tabname   = 'ITAB_HD_IT'.
      ls_fieldcat-seltext_l = 'Vonder'.
      ls_fieldcat-key       = 'X'.
      ls_fieldcat-fix_column     = 'X'.
    ls_fieldcat-outputlen = 12.
      append ls_fieldcat to l_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'NAME1'.
      ls_fieldcat-tabname   = 'ITAB_HD_IT'.
      ls_fieldcat-seltext_l = 'Vonder'.
      ls_fieldcat-key       = 'X'.
      ls_fieldcat-fix_column     = 'X'.
      ls_fieldcat-outputlen = 40.
      append ls_fieldcat to l_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'VBLNR'.
      ls_fieldcat-tabname   = 'ITAB_HD_IT'.
      ls_fieldcat-seltext_l = 'Payment'.
    ls_fieldcat-outputlen = 10.
      ls_fieldcat-do_sum = 'X'.
      append ls_fieldcat to l_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'WAERS'.
      ls_fieldcat-tabname   = 'ITAB_HD_IT'.
      ls_fieldcat-seltext_l = 'CURR.'.
    ls_fieldcat-outputlen = 10.
      ls_fieldcat-do_sum = 'X'.
      append ls_fieldcat to l_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'WRBTR'.
      ls_fieldcat-tabname   = 'ITAB_HD_IT'.
      ls_fieldcat-seltext_l = 'Amount'.
      ls_fieldcat-outputlen = 15.
      ls_fieldcat-do_sum = 'X'.
      append ls_fieldcat to l_fieldcat.
    *item field categories                                       *
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'BELNR'.
      ls_fieldcat-tabname   = 'ITAB_ITEM_IT'.
      ls_fieldcat-seltext_l = 'Docu.'.
      ls_fieldcat-key       = 'X'.
      ls_fieldcat-fix_column     = 'X'.
      ls_fieldcat-outputlen = 12.
      append ls_fieldcat to l_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'BLDAT'.
      ls_fieldcat-tabname   = 'ITAB_ITEM_IT'.
      ls_fieldcat-seltext_l = 'Document Date'.
      ls_fieldcat-outputlen = 10.
      ls_fieldcat-key       = 'X'.
      ls_fieldcat-fix_column     = 'X'.
      append ls_fieldcat to l_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'ZFBDT'.
      ls_fieldcat-tabname   = 'ITAB_ITEM_IT'.
      ls_fieldcat-seltext_l = 'BasDte'.
      ls_fieldcat-outputlen = 10.
      ls_fieldcat-key       = 'X'.
      ls_fieldcat-fix_column     = 'X'.
      append ls_fieldcat to l_fieldcat.
        clear ls_fieldcat.
      ls_fieldcat-fieldname = 'ZDUED'.
      ls_fieldcat-tabname   = 'ITAB_ITEM-IT'.
      ls_fieldcat-seltext_l = 'DueDate'.
      ls_fieldcat-outputlen = 10.
      append ls_fieldcat to l_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'ZTERM'.
      ls_fieldcat-tabname   = 'ITAB_ITEM_IT'.
      ls_fieldcat-seltext_l = 'Cond'.
      ls_fieldcat-outputlen = 4.
      ls_fieldcat-key       = 'X'.
      ls_fieldcat-fix_column     = 'X'.
      append ls_fieldcat to l_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'ZPAYT'.
      ls_fieldcat-tabname   = 'ITAB_ITEM_IT'.
      ls_fieldcat-seltext_l = 'Pmnt term'.
      ls_fieldcat-outputlen = 12.
      ls_fieldcat-key       = 'X'.
      ls_fieldcat-fix_column     = 'X'.
      append ls_fieldcat to l_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'WAERS'.
      ls_fieldcat-tabname   = 'ITAB_ITEM_IT'.
      ls_fieldcat-seltext_l = 'Currency'.
      ls_fieldcat-outputlen = 4.
      append ls_fieldcat to l_fieldcat.
      clear ls_fieldcat.
      ls_fieldcat-fieldname = 'WRBTR'.
      ls_fieldcat-tabname   = 'ITAB_ITEM_IT'.
      ls_fieldcat-seltext_l = 'Amount'.
      ls_fieldcat-outputlen = 15.
      append ls_fieldcat to l_fieldcat.
    ENDFORM.                    " FIELDCAT_INIT

    hi,
    try this code.
    ls_fieldcat-fieldname = 'LIFNR'.
    ls_fieldcat-seltext_l = 'Vonder'.
      ls_fieldcat-key = 'X'.
      ls_fieldcat-fix_column = 'X'.
       ls_fieldcat-outputlen = 12.
      append ls_fieldcat to l_fieldcat.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         IT_FIELDCAT                        = l_fieldcat.  " Pass the fielc cat here
    it must work.... and check out thels_fieldcat-fieldname  again.. you have to give the correct fielname in uppercase inside ' '.
    thankyou.

  • The value 1 is not allowed for the field variace key

    Hi experts,
               When i was creating material master i was getting the status message as "the value 1 is not allowed for the field variance key" , but its stopping there its not moving out of that screen and creating the material record. When i see this field in the material master configuration its an optional field. Can you give me suggestions, where it can go wrong.
    Thanks & Regards,
    Ravi.

    Hi
    Can u tell me the field name . I cant get that field ref key. In which view does it come.
    Reg
    Raja

  • Manual value adjustments are not allowed in the year of settlement

    Hello Experts ,
    We have an AUC which has a value of 683,969.70 .  Now we have an unplanned depreciation  of 82,500.00-  which is yet to be posted .
    My user wants to run AIBU to do an AUC settlement for the same asset .
    However it is giving the following error .
    Manual value adjustments are not allowed in the year of settlement
    Message no. AW609
    Diagnosis
    It is not possible for technical reasons to settle an asset under construction (802438 0) with manual value adjustments in the year of settlement.
    Procedure
    Reverse the manual value adjustments in the year of settlement. Post them directly to the settlement receivers.
    Please advice what needs to be done .
    Regards
    Anirban

    Hi:
            By standard AUC assets are never subject to any kind of depreciation. They are assigned 0000 deo key in OAYZ . This is the cause of the error you are facing. Reverse unplanned depreciation and then settle it.
    Regards

  • On a Mac v10.6.6 Firefox v3.6.13 Right click on Google Map does not bring up the drop down box, with the first item being directions from here, the right click does work on Google map when using Safari

    On a Mac v10.6.6 Firefox v3.6.13 Right click on Google Map does not bring up the drop down box, with the first item being "directions from here", the right click does work on Google map when using Safari

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r999
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    See also http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html

  • FINAL EXPORT / MIXDOWN FONCTION does not work. The Output Wave Resulting is a total silence?

    AUDITION FINAL EXPORT / MIXDOWN FONCTION does NOT ever work
    The Output Wave Resulting is a TOTAL SILENCE - NO SOUND AT ALL
    Bought & registered Program act as an expired DEMO...
    The result is a wave with a completely flat HORIZONTAL LINE of pure $300.00 rip off of SILENCE
    Even after many clean reinstallations AUDITION never is able to do a Final Mixdown with any Sound in it.
    A AUDITION Support Technician cleaned up during 1 hour about 15 secret hidden Adobe files in the Windows XP System.
    After this clean up the AUDITION program functionned ONCE! Once it was able to output a Final Mixdown with sound in it.
    That never occured again after. I have a very standard very well maintained Windows XP computer.
    My understanding & the experience with the Adobe Support Technician prooves that the problem is the deeply hidden spy files of Adobe who erroneously turn my bought & registered program into an expired DEMO. I have reported the problem numerous times to Adobe, & everytime I talk to support people at Adobe, they tell me they have never heard about this problem, when I already had reported it MANY times at the Adobe Tech Support department !!!
    I can only draw the conclusion Adobe is trying to hide this problem away by pretending they have never heard about it.. ?
    Anybody have had a similar AUDITION  / DEPRESSION nightmare & found a solution ?

    Astraelia wrote:
    Audition is the first & only program easely accessible for musicians who record themselves without having the expertise of a sound technician handling the recording operations. This is certainly by far, the greatest quality of Audition.
    I would term Audition to be the very first & only recording program (on PC) conceived for musicians. All the others Audio Logic, Q Base ect. are conceived for professionnal recording engineers.
    You seem to have a rather strange conception of Audition, I must say. Most musicians want it to do rather more than it does. It wasn't conceived for musicians at all really - it was originally designed to be just an editor, to which the functions of a multitrack tape recorder were added. Its primary use is professional - always has been, mainly by radio stations. Just about every station in the world has at least one copy, and some larger ones like the BBC have rather a lot more... and I'd say that it was the likes of Cubase and Logic that are conceived for musicians, not Audition. It's also used by a lot of Mastering studios, even though they won't admit it. The primary reason for it being in Adobe's Creative Suite is because it's getting more and more integrated with the video programs in it - nothing to do with music at all.
    I'm afraid that whether you like it or not, Audition is marketed towards people who do know what they're doing, by and large. That's why it behaves the way it does, and why you do really need to be at least a bit of a technician to use it effectively. And I'm still trying to think whether I know of any guitarists at all who use amplifiers and who don't understand at least the basics of how a mixer works, but I'm afraid that I can't think of any. I'm not going to say that it's common knowledge, but I don't think it's that rare either.

  • Why is Ovi Maps 3 not available for the E63

    Hi!
    Why is Ovi Maps 3 not available for the E63 an 410.21... for the old OS 400....
    was OVI Maps available.
    I got an license for ovi and now it is not running ;-(
    Have any one an idea... thanks

    Currently there is something very seriously broken in the latest firmwares, Maps 3.0x SIS files or Nokia Maps Updater. Until Nokia gets their problems sorted out, the only way to restore Maps 3.x after factory reset or firmware update is to use a version meant for previous generation devices, like this one (thanks to the user ovikovi).
    Help spreading the knowledge — If you find my answer useful, please mark your question as Solved by selecting Accept this solution from the Options menu. Thank you!

  • Proxy output not displayed in the output XML

    Hi,
    I have created a web service and is calling the service using SOAP UI tool. To do it i have created an RFC Fm and inported to SAP PI and activated it with the input and output parameters that i need. When i am calling the service through the SOAP UI, in debugging( in the provider class of the service interface of the sproxy transaction ) i am able to see the values filled in one of the parameters but the same is not getting displayed in the output XML.(Response). Can any one please suggest what cud be the reason.
    Thanks

    Hi,
    can give us a hint? Code output, screenshot? btw I hope your service is a Synchronous service.
    Thanks Nick.

  • Planning system value mapping does not work (planingsys)

    Hello,
    When sending a Material from R3 to SBO one of the materials fails with this error:
    DI Error -1004 : (-1004) '' is not a valid value for field 'PlaningSys'. The valid values are: 'M' - 'MRP', 'N' - 'None' =| (End of appended Exceptions)
    I immediatly set a value mapping for Planning System ( '' -> 'N' ) but the same error still occurs (i also tried with '' -> 'M' ).
    Can anybody help ?
    Thanks,
    Fabrice.

    I finally found a solution
    The value mapping that needs to be done was:
    'PD' -> 'bop_MRP'
    the value '' in the error is wrong: the value was 'PD' and the mapping has to be done with the SBO SDK variable name.
    Bye.
    Message was edited by:
            Fabrice NANNI

  • Error - 403 - Value mapping replication - not authorized

    Hello Experts,
    I tried to implement the value mapping replication in PI 7.1as per the below article.
    "http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e07dd2ae-f783-2c10-9aa6-ca69f67dd20f"
    As given in the article i have configured everything in Integration Directory.
    I have tried the same thing but getting the following error in "call adapter step" after sending the XML from soap client.
    "&lt;b&gt;&amp;nbsp;&amp;nbsp;You are not authorized to view the requested resource.&lt;/b&gt;"
    I am able to find 2 error messages in SXMB_MONI.
    i think this is an issue with user details in XI channels.
    Please let me know what is the issue,user we have to give in XI receiver channel andwhat ROLE one should have to test the scenario.
    Many thanks.
    Regards,
    Harish

    Hi Hareesh,
    Can you try to use the RFC/ communication user in the communication channel and try?
    Please check the authentication type also, check if you will require non-sap type or sap type.
    Thanks,
    Hetal

  • Barcode Not Visible in the Output

    Hi,
    I am not able to see the barcode in the output of my concurrent program. I am using a Code 39 Font. ( I have it installed it in my system). This is an Oracle Report (rdf) in 10g version. Our apps is on R12.
    I actually printed a simple BI publisher report which is a portrait to test bar codes and it printed it fine.
    But the new one is a landscape and a totally different report. It just shows the field value in the output though I can see the font applied to the field in rtf.
    Can any one please let me know if I am missing something.
    TIA,
    Neeraja

    Never Mind. I forgot to do font mappings :( (duh!!)

  • Web ADI-Custom Integrator- LOV value selected is not populating in the cell

    Hi,
    I have a custom integrator, created a layout and mapping
    and I have update the BNE_INTERFACE_COLS_B table for the column that I want as an LOV.
    LOV_TYPE = STANDARD
    val_obj_name = 'FA_BOOK_CONTROLS_SEC'
    val_addl_w_c= 'NVL(DATE_INEFFECTIVE,SYSDATE) >= SYSDATE AND BOOK_CLASS IN (''CORPORATE'',''TAX'')',field_size = 15
    val_component_code = 'FA_BOOK_TYPE_CODE'
    val_component_app_id = 140
    val_type = TABLE
    val_id_cil= BOOK_TYPE_CODE
    val_mean_col=BOOK_TYPE_CODE
    val_desc_col=BOOK_TYPE_CODE
    The LOV is showing up fine, but when I select the value the , selected value is not getting populated in the excel cell.
    Can you please help me resolve this? This is urgent.
    Thanks,
    AJ

    Hi Ashish,
    Can you please give more details?
    On my end I have the same issue but one of my LOVs is not populating the cell while the other does. But I never performed any of the action you mentionned.
    So I would like to try your solution for the remaining LOV that does not populate my Excel cell. What is the purpose of "Then create a web adi function and attach to web adi menu.Call form function association integrator and attach the form function to your integrator.( Interface_cols)"? and what kind of "function" should we create?
    Thanks and regards,
    Gaël
    Edited by: Gaël on 21 sept. 2012 08:16

Maybe you are looking for