Trigger IDOC for ADDRESS FIELDS IN DEBMAS06

Hi
i have extended DEBMAS06 and added two new segments:
1) ZE1KNA1M (streetnumber2,3,4,PO_BOX_CTY,PO_BOX_REG
2) ZE1KNVKM.(email and fax from table ADR6 and ADR3 respectively)
now for change in the above fields IDOC has to be triggered using change pointers....may i know how to activate change pointers for these fields?

Hi moorthy,
sending DEBMAS IDOCs via TA BD12 ( Report RBDSEDEB ) will generate an ADRMAS IDOC.
Have a look on the source code - inside FM MASTERIDOC_CREATE_REQ_DEBMAS there is another call of FM MASTERIDOC_CREATE_REQ_ADRMAS.
Regards
REA

Similar Messages

  • F4 help for address field

    Hi,
    In BP_CONT component, for address field I need to provide F4 help. And the F4 should contain the addresses with separate fields as (city.street,country).On selecting the row the data should flow as concatenated manner to the address field.
    Please provide some idea to achieve this.
    Thanks.

    Hi Ginger,
    I would like to add what Vinamra has said, you need to create a search help through se11 transaction. As per your requirement you need to map address field of the selected row to different fields in UI.
    In search help we have IMPORTING(IMP) and EXPORTING(EXP) Fields or parameter.
    Lets take a simple example, suppose you have three address field house no, street and city. Now you would like to apply F4 help on CITY field so you need to choose CITY field as IMPORTING and EXPORTING parameter in your search help and other fields like HOUSE NO and STREET as EXPORTING parameter only.
    Now following code you need write in GET_V_CITY() method
    DATA:
       lt_inmap  TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,
       ls_map    TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,
       lt_outmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab.
       ls_map-context_attr = 'STRUCT.CITY'.
       ls_map-f4_attr      = 'CITY'.
       APPEND ls_map TO: lt_inmap, lt_outmap. " map to input and out
      ls_map-context_attr = 'STRUCT.HOUSENO.     " Context node attribute
      ls_map-f4_attr      = 'HOUSE_NO'.                    "corresponding Field in search help
      APPEND ls_map TO: lt_outmap.
    ls_map-context_attr = 'STRUCT.STREET.     " Context node attribute
      ls_map-f4_attr      = 'STREET'.                     "corresponding Field in search help
      APPEND ls_map TO: lt_outmap.
      CREATE OBJECT rv_valuehelp_descriptor
        TYPE
          cl_bsp_wd_valuehelp_f4descr
        EXPORTING
          iv_help_id                  = 'ZSH_ADDRESS'
          iv_help_id_kind             = if_bsp_wd_valuehelp_f4descr=>help_id_kind_name
          iv_input_mapping            = lt_inmap
          iv_output_mapping           = lt_outmap.
    May this will help you.
    Regards
    Ajay

  • Trigger Idoc for MIGO Goods Receipt

    Hi,
    We have an output type created and configured for ALE (dist model). The output type is also enabled with 'Partner Indep-output' in NACE. The program that is attached to it is 'RSNASTED' and form routine 'ALE_PROCESSING' yet while processing we get an error 'incorrect partner type' in output log once the GR is processed. Would like to know how to overcome this issue and the config fix to be in place to trigger idoc for a GR via MIGO

    option 1. go for special f/n in the output type config and need to write a program to create and post the idoc
    option 2. copy rsnasted and havae the required changes there which is then set in the output processing routines (NACE)
    option3. drop the requirement

  • IDOC PEXR2002 Address Fields

    Hi,
    I notice in IDOC PEXR2002, there are only 2 address fields - Street and Street 1.  How can I interface the IDOC to my bank if Street 2 and Street 3 from Vendor Master are also needed?
    Any workarounds?
    Thanks.
    Regards.

    Do you mean I can add more fields to the standard IDOC?
    I understand there are some user exits for this IDOC.

  • Trigger idoc for returns document using transaction O3O_RT01, O3O_RT02.

    Hi All,
    There is an requirement to trigger an IDOC with the details of returns documents.
    I am building a custom IDOC for this purpose. But the problem is i need to trigger the IDOC when i click on 'RETURN' button in the transactions O3O_RT01, O3O_RT02.
    Kdly help in as to is there any BADI or exit or and event available  to trigger a code when i click on that button, else  let me know how to go about it.

  • Regenerate IDOC for EEWB fields

    Hi All
    I have added a new field via EEWB and regenerated the IDOC using transaction BDFG (to ensure that the new field appears in the IDOC for population).
    In the new message type, I see the additional field added there. I tried testing the IDOC in WE19 by populating the new field - record created but the new field's value doesnt get populated in CRMD_ORDER.
    Have I missed a step for mapping - user exit? Please help.. points will be rewarded.
    Thanks,
    NS

    Hi NS,
    You need to add XIF site in site admin (SMOEAC).
    Then you also need to maintain partner profiles for IDoc exchange. Atleast for this process you need inbound mapping to be defined (WE20).
    CRMXIF_ORDER_SAVE should allow you to load business transaction. For the usage, you can refer to txn BDLR where some sample are given for product and partners.
    Regards,
    Surendar

  • How to Trigger IDOC for GR in SAP?

    Hi Gurus,
    I am making the configs for triggering an IDOC whenever a GR document is posted. Could you please advice on what are the configs need to be done and also on the Message type for the Idocs on the same?
    Thanks in Advance,
    Saakithyan

    It is possible.But you need to maintain output condition record to trigger idoc once GR is posted.
    Check below Idoc message types this may help your requirement
    MBGMCR01     BAPI Posting of goods mvts with MB_CREATE_GOODS_MOVEMENT
    MBGMCR02     Post goods movements with MB_CREATE_GOODS_MOVEMENT
    MBGMCA01     Reverse goods movements with MB_CANCEL_GOODS_MOVEMENT

  • Sending idocs for custom field

    Hi
    I need to send idocs when i save the data in field , the idocs should be  send automatically when the data saved to field, please provide the solution.
    Thanks
    Moderator message: "spec dumping", please work yourself first on your requirement.
    Edited by: Thomas Zloch on Jun 23, 2011 9:17 AM

    Hi
    In case you have created a structure for your custom fields and added it to the standard table then you would be looking for a user exit so that the data entered in those fields from the MM01 or MM02 screen gets stored into the database.
    Over there you can trigger a custom event and start your approval workflow.
    If the approval is given then set a parameter say Approval as X in the workflow.
    Read the workflow container in your exit for this container element and if its value is X,then move the corresponding data to the desired structure or else clear it.
    Lets say you have added fields in CJ01 and it has two exits for storing the data in database.PROJ is the table and custom fields added in CI_PROJ
    EXIT_SAPLCJWB_002
    move-corresponding sap_proj_imp to proj.
    EXIT_SAPLCJWB_003 :
    call F.M. swe_event create
    wait for say a particular time limit after which it should be considered as auto rejected read workflow container for this approval value
    if X
    move-corresponding proj to cnci_proj_exp.
    else.
    fire another event to cancel the workflow.
    endif.
    I am not sure this would be an appropriate way but could be tried.

  • IDOC for Given Fields

    hi all,
    is their any IDOC which containes list of below fields
    1) Delivery Document Number
    2) Document Date
    3)  Delivery Ship To Number
    4) Ship To Name
    5) Ship to Address
    6) Delivery pertinent text
    7) Planned Goods Issue Date
    8) Shipment Reference Number
    9) Delivery Item
    10) Material Number
    11) Material Description
    12) Unit
    13) Serial Number
    14) Plant
    15) Storage Location
    16) Requested delivery date

    hi prabhu,
    can u map  and show me fields with respect to the segments for the above mentioned fields

  • Idoc not Trigerring for Change Pointers in CREMAS only for 2 fields

    Hi All,
    I am trying to trigger the Idoc for 2 fields ( Contact Person First Name & last Name) KNVK-NAMEV and KNVK-NAME1. I have maintained the fields in BD52. Whenever I change the fields, entries get created in CDHDR, CDPOS and BDCP. But the Idloc doesnt get triggerred. But if I change any other fields of LFA1 or LFB1 for the same vendor, the Idoc gets created. Can anybody please help out on this?
    Thanks,
    Geetha

    Hi,
       Just check after executing the program "RBDMIDOC" idocs getting triggered or not.
    Thanks,
    Asit Purbey.

  • In MM related Transaction, trigger idoc

    In MM related Transactions, MSC2N, MB1A etc trigger idoc for goods movement only after we enter plant and storage location.In the user exit i have written code to create an idoc and gave validations for plant, storage location  it doesnt work.
    Does anyone have an idea about how to restrict the batch for this condition.

    Hi,
    There are several user exits for MB1A Transac .
    Exit Name           Description                                                     
    MBCF0002            Customer function exit: Segment text in material doc. item      
    MBCF0005            Material document item for goods receipt/issue slip             
    MBCF0006            Customer function for WBS element                               
    MBCF0007            Customer function exit: Updating a reservation                  
    MBCF0009            Filling the storage location field                              
    MBCF0010            Customer exit: Create reservation   BAPI_RESERVATION_CREATE1      
    MBCF0011            Read From RESB and RKPF For Print List in  MB26                 
    MBCFC003            Maintenance of batch master data for goods movements            
    MBCFC004            Maintenance of batch specifications for goods movements         
    It depends on what values u need from the screen.
    Enhancement : MBCFC003 has the values of MATNR, WERKS, CHARG and also Material document header and item values.
    The Userexit FM used is  : EXIT_SAPMM07M_003.
    Remember to check if the values are populated correctly before CALL CUSTOMER-FUNCTION '003' is called in the program. If those are the values u need then just write the code in the include of the exit.
    Regards,
    Ramya
    Message was edited by:
            Ramya Kanakala

  • Idoc for PO changes

    Hi,
    For any new PO created, an idoc is getting triggered automatically and the same is communicated to vendor through portal.
    Please let me know how to trigger idoc for any changes / amendments to the purchase order.
    regards,
    C. ASHOK RAJ

    Hi Ashok,
    Goto ME20,
    Select your vendor
    On the right hand side, you will find "Outbound parmtrs."
    Select the "Messsage Type" of your Purchase Order.
    Double click on it OR press Display button.
    In the 'Messsage Control' tab
    Add
    (1) Application
    (2) Message Type
    (3) Process Code ME21N
    (4) Check the 'Change' option box.
    Hope this will help you.
    Rewards are useful.

  • IDOC for DeliveyReversal

    Hi All,
    I have a requirement that on the reversal of the delivery (VL09)  I need to trigger an IDOC,
    1. Can we use the DELVRY IDOC for the same.
    2. Is there any configurations that needs to be done to trigger IDOC for Delivery Reversal
    With regards
    Pradeep n

    Hi, review e.g. http://help.sap.com/saphelp_40b/helpdata/fr/52/16ac64543311d1891c0000e8322f96/content.htm
    WMCAID01 - transfer orders
    WMMBID01 / WMMBID02 - GR for POs

  • Triggers for DBSequence fields

    It's possible to customize the trigger generated for DBSequence fields?
    Example:
    Instead of:
    select seqName.nextVal into :new.id from dual;
    I wish
    if :new.id is not null then
    select seqName.nextVal into :new.id from dual;
    end if;
    thanks

    Hi,
    As you have this trigger defined in the database (on the database table), yes you can using PLSQL
    Frank

  • Populate all address fields to the customer master (DEBMAS06) IDOC

    Hi All,
    We have requirement to extend the customer master IDOC 'DEBMAS06' to add the address fields i.e (ADRC-STR_SUPPL3,STR_SUPPL4,STR_SUPPL5). Can any one tell me the suitable EXITs or BADI's to populate these fields street3, street4 and stree5 to the customer master. Otherwise can any one tell me how to over come this problem.
    Thanks in advance
    K N C

    Dear Matthias,
    I only can confirm the following statements (regarding information from development department):
    - it is not possible with GuiXT
    - it is not possible via a transaktion variant
    - there exists no screenvariant with this functionality
    ->  modification is the only possibility.
    Regards,
    Andreas

Maybe you are looking for

  • Google earth and google earth plugin not working on

    Hi, I have a macbook 2006 with Intel GMA 250 and OS 10.6.8, and I cannot manage to make google eart work properly, nor google earth's plugin on safari, firefox, or google chrome. It worked fine previously, but stoped at a certain point (since several

  • Cost estimate

    Hi Guru's Our project go live was this month of 11th. At the time i run cost estimate for all the materials. But i know this is month end activity. But my doubt is before next cost estimate for all the materials. Is it required for all the PP orders

  • SQL Query Urgent..pls help

    Dear Experts, Table. C_id Purity 1     100 2     100 10     100 11     100 12     100 Ranking Regions by Size You have to list all regions in the table, and you have to list them according to their size. you need to list all regions of two or more co

  • "Not yet Implemented" when trying to delete a variable?

    Hello all, Is this a bug or is it still in development. When I am trying to delete not used custom varaibles it says "Not yet Implemented" Thanks, Kiran

  • Acrobat X PDF Won't Print

    I installed Acrobat X the other day. Today, I tried printing a PDF document, but it won't print. When I click OK, I get an error message that reads: document cannot print, then another message that reads no pages were selected. If I click on printer,