Query on User exit for outbound idoc

Hi ,
Can u all pls help me out to solve these queries
1. when we extend a new segment (at we31) and create a new idoc type(at we30), say,for DELVRY05 idoc type-<b>what is the logic to be written inside the Exit</b>(at Transaction code - CMOD -where a project is created and the exit is found for the enhancement) ,to view our extended segment -that needs to be appended (viewed below the existing segment)at we02?
2.Can we delete the outbound idoc generated with errors from development server?
3.How to recify the outbound idoc errors-like runtime,syntax,port unreachable errors(at the status record and data records listed inside we02 transaction code)?
4.How to check values populated at our extended segment inside we02-Transaction code.
say,the logic required inside the exit may be,
<b>Select single ladel from eikp into wa_ladel where refnr = (inbound delivery)</b>
In this,the ladel exists in eikp table as EIKP-LADEL field.
The main thing is- an inbound delivery is created at transaction code VL31N for which an outbound idoc(using an  Exit )should be generated  with few more validations for the fields like
i) ekpo-pstyp(corresponding IDOC segments are  E1EDL26-PSTYV )
ii)ekko-lifnr and ekko-lichn(E1EDL24-LICHN )
Segment name-item(at transaction we63)                          Segment no.
iii)   E1TXTP8-TDLINE => SCAC Code.                                    11
      E1TXTH8-TDID   => Z001.                                                 10
iv)   E1TXTP8- TDLINE => Primary seal number.                       13
      E1TXTH8-TDID => Z002.                                                   12
v)    E1TXTP8- TDLINE => Secondary seal number.                   15
      E1TXTH8-TDID => Z003.                                                   14
5.Can you help me out to know the logic by which we can validate few fields from different tables like eikp,ekpo and ekko inside our Exit (in the project created at CMOD transaction?
With Regards,
Srividya

Hi Swati Choudhary,
please ask your question in devlopment forum, please see its 2 yr old thread, and i don;t think Phileas Fogg still remember his stuffs.

Similar Messages

  • User exit for outgoing IDOC

    Hi friends,
    I want to find user exit for outbound idoc INVOIC, but i dont to how to do that.
    Please gve ur suggestions

    INVOIC
    Invoice / Billing document
    - FEDI0001 EXIT_SAPLIEDI_001 FI-EDI: Invoice receipt - Determine G/L account per invoice line
    - FEDI0001 EXIT_SAPLIEDI_002 FI-EDI: Invoice receipt - Determine add. acct assignm. per line item
    - FEDI0001 EXIT_SAPLIEDI_003 FI-EDI: Invoice receipt - Fill the screen field 'Allocation'
    - FEDI0001 EXIT_SAPLIEDI_004 FI-EDI: Invoice receipt - Determine the segment text
    - FEDI0001 EXIT_SAPLIEDI_005 FI-EDI: Invoice receipt - Determine the name of the BDC session
    - FEDI0001 EXIT_SAPLIEDI_011 MM-EDI: Invoice receipt - Determine purchase order item
    - FEDI0001 EXIT_SAPLIEDI_101 FI-EDI: Invoice receipt INVOIC01 - additional assignment
    - FEDI0001 EXIT_SAPLIEDI_102 FI-EDI: Invoice receipt INVOIC01 - add data
    - FEDI0001 EXIT_SAPLIEDI_111 MM-EDI: Invoice receipt INVOIC01 - additional assignment
    - FEDI0001 EXIT_SAPLIEDI_112 MM-EDI: Invoice receipt INVOIC01 - add data
    - MRMH0002 EXIT_SAPLMRMH_011 Logistics Invoice Verification:inboud EDI message, company code
    - MRMH0002 EXIT_SAPLMRMH_012 Logistics Invoice Verification:inboud EDI message, control flags
    - MRMH0002 EXIT_SAPLMRMH_013 Logistics Invoice Verification:inboud EDI message, assignment
    - MRMH0002 EXIT_SAPLMRMH_014 Logistics Invoice Verification:inboud EDI message, segments
    - MRMH0002 EXIT_SAPLMRMH_015 Logistics Invoice Verification:inbound EDI message, before posting

  • How to find the appropriate user exit for invoic02 idoc in idoc_output_invo

    Hi all,
    I am new to this community p
    i have issue regarding  the How to find the appropriate user exit for invoic02 idoc in idoc_output_invoic function module.........
    thanks,

    Hi ,
    welcome to SDN.
    You can select the appropriate Customer exit accrding to the available parameters .
    The list of exits available are 
    EXIT_SAPLVEDF_001
    EXIT_SAPLVEDF_002
    EXIT_SAPLVEDF_003
    EXIT_SAPLVEDF_004
    For Example , if you want  to modify the Idoc data(EDIDD) you have to use the EXIT_SAPLVEDF_002. accodingly you can select the user exit according to the avaialable parametres.Use Table MODSAP fto get the Enhancement name.
    Hope this Helps
    Rgds
    Sree
    Edited by: Sree on Jul 23, 2010 12:11 PM

  • User exit for inbound idoc

    could anyone please tell the user exit for inbound idoc : ACC_POSTING_GL01

    I thnk the inbound idoc name is ACC_GL_POSTING01. User Exit for this is EXIT_SAPLACC4_001.
    *****Reward points if useful
    Regards,
    Kiran Bobbala

  • Help required regarding user exit for STPSHH01 IDOC

    Need help regarding user exit.
    I append the structure of VTTP and add one field with the name of ZDELCST i.e Delivery cost so i want to update that table once the idoc will post.
    I have to write the user exit for this but i have no idea how to do this so kindly requesting someone to please write the code for me and i will be very grateful to him/her.
    The functional module is IDOC_INPUT_SHIPPL
    and there is a CALL CUSTOMER-FUNCTION '012'
    this will take us to function module EXIT_SAPLV56I_012
    This includes ZXV56U08
    Within this include in need to map the delivery cost from the idoc to the new append filed VTTP-ZDELCST

    Hi,
    use this FM to update ur shipment
    variables
    DATA: lo_tp_g_tra       TYPE v56e_shipment_activities, "Data to modify
          lo_tp_g_shp       TYPE v56e_shipment,
          lo_tp_g_log       TYPE v56e_logfile, " Errors function
    call the function to modify shipments
    CALL FUNCTION 'SD_SHIPMENT_PROCESS'
      IMPORTING
        e_logfile    = lo_tp_g_log
      CHANGING
        c_activities = lo_tp_g_tra
        c_shipment   = lo_tp_g_shp
      EXCEPTIONS
        error        = 1
        OTHERS       = 2.
    Thanks,
    Sendil.

  • HOW TO WRITE USER EXIT FOR EXTENDED IDOC

    Can somebody please help me as i need the user exit code for Shipment idoc.
    I append the structure of VTTP and add one field with the name of ZDELCST i.e Delivery cost so i want to update that table once the idoc will post.
    I have to write the user exit for this but i have no idea how to do this so kindly requesting someone to please write the code for me and i will be very grateful to him/her.
    The functional module is IDOC_INPUT_SHIPPL
    and there is a CALL CUSTOMER-FUNCTION '012'
    this will take us to function module EXIT_SAPLV56I_012
    This includes ZXV56U08
    Within this include in need to map the delivery cost from the idoc to the new append filed VTTP-ZDELCST

    hi ,
    'EXIT_SAPLHRBEN00GENERAL_014'
    1)Goto CMOD  tcode.
    2)Click on Utilites on Menu bar.
    3)Press Shift+F9, below in component name enter
    EXIT_SAPLHRBEN00GENERAL_014,
    4)F8 , then you will get Exit name PBEN0014
    Double Click  again Double Click you will get function
    FUNCTION EXIT_SAPLHRBEN00GENERAL_014.
    within this onel include file is there.
    INCLUDE ZXPBEU14.
    here you will write your Enhanc Code.
    Reward if , you got soln,
    Thanks.

  • User Exit for Aleau Idoc

    Hello everybody.
    We have the next scenario:
    JDBC--->PI-(iDOC)--
    >SAP
    SAP---->PI-(ALEAUD)-->JDBC
    We sent a Orders Idoc to SAP. In this Idoc we have informed the field BELNR (Purchase number) and I need to get this number in the ALEAUD Idoc. The problem is that this field doesn´t exist in ALEAUD Idoc.
    I have two questions:
    - Is there any User Exist for Aleaud Idoc where I can fill it?
    - With the Aleaud Idoc I have the original idoc number, how can I get the field BELNR from this Idoc number?
    Thanks a lot
    Regards

    Sorry... I didn´t write the scenario correctly....
    JDBC--->PI-(iDOC)--
    >SAP
    SAP(ALEAUD)>PI--
    >JDBC
    Thats is the correct scenario. I need to get back a field of original inbound idoc and send it in the aleaud idoc to PI.
    Thank a lot!!!!

  • User exit for extending iDoc

    Hi gurus,
    Can anyone tell me the user exit for extending the message type COAMAS.
    Thanks & Regards,
    Soumya.

    Exit name Short text
      SIDOC001  Customer function for module pool EDI1
      SIDOC002  CA-EDI: Exits in Function Group EDI6 (Partner Profile)

  • Urgent!... What is the USER EXIT for outbound desadv

    Hi All,
        Which <b>USEREXIT</b> is used for outbound desadv where i need to change the value of the segment-field(<b>E1ADRM1-PARTNER_ID</b>) nothing but the partner number.
       Please help me on this. Thanks in advance!..
    Regards,
    Ramkumar.K

    Hi Naren,
        IDOC_OUTPUT_DESADV this does not exists and i also tried IDOC_OUTPUT_DESADV01 FM is not having the segment E1ADRM1 which i want.
    <u>   Exact requirement :</u>
    <b>  Message Type : DESADV
       IDOC Type:        DELVRY03 (This Idoc type is having the segment E1ADRM1)
       Direction : Outbound.
       USER EXIT : ????</b>
       I want to know which FM and customer exit is used for this purpose.
      Thanks!...
    Regards,
    Ramkumar.K

  • User exit for BENEFIT3 idoc

    Hi All,
    Could somebody tell me what is the user exit/FM for BENEFIT3 idoc with BENREP message type.
    I need to extend BENEFIT3 and write a logic for the new segment.
    Appreciate your help in advance.
    Thank you.

    Hi Everybody,
    Is any one implementing any of the Benefit idocs.
    I would like to know if you are able to populate participation date on benefit idocs.
    all the standard benefit idocs do not have participation date on it.
    Appreciate any kind of input.
    Thank you,
    Mamatha

  • User Exit for Aleaud Idoc

    Hi everybody!!!
    Does anybody knows if exist any user-exit or badi for aleaud idoc???
    We receive an Idoc from PI and we sent an Aleaud Idoc to Pi as Ack and we need populatel some fields.
    Thanks a lot

    try an implementation of BADI   IDOC_DATA_INSERT
    we have successfully added an ALEAUD extension and populated fields within the extended segment the IDoc then gets sent to PI, however we have not managed to get PI to see those extended fields yet.
    Colin

  • User Exit  for  Inbound IDOC  FIDCCP02 - FIDCC2

    Hi All,
    I am working on DOC type extensions, I extended basic IDOC type FIDCCP02 with one custom segment. This IDOC is associated with message type FIDCC2.
    Custom segment have five fields, one out of five only i found it is BSEG table, rest of  four is custom fields.
    Now i want move these custom fields to custom table ( i.e ZEXT ), but not to BSEG table. i need a help for USER EXIT in inbound system to move the data from custom segment to custom table.
    <u><b>Hierarchy of the segments structure – with the custom segment which I added:</b></u>
    E1FIKPF : FI Document Header (BKPF)
    1)      E1FISEG : FI Document Item (BSEG)
             1.1  ) E1FISE2 : FI Document Item, Second Part of E1FISEG (BSEG)
                        1.1.1)  Z1FISE2: Custom Segment for FI Posting IDOCS
             1.2   ) E1FINBU : FI Subsidiary Ledger (FI-AP-AR) (BSEG)
       2)  E1FISEC: CPD Customer/Vendor (BSEC)
       3)  E1FISET: FI Tax Data (BSET)
       4) E1FIXWT: Extended Withholding Tax (WITH_ITEM)

    Hi Sridhar,
    I am suggesting you what  ever i know. If u want to move the data from custom segment to custome table, then build a strucutre which refer your custom Segment, and manually you need to move those values from custom segment to custom table. for this first move data from that custom segments to work area after that insert that work are to custom table, hope this helps ypu.
    Regrads,
    Kumar.

  • User exit for extended idoc..

    Hi,
    I have extended inbound idoc and added segment.. i m using standard function "IDOC_INPUT_FIDCC2" for posting through idoc (FB70)..
    now i want to do coding for the newly added segment.. however i m not getting customer exit where enhancement spot can be created for the logic...
    i want to use function "SAVE_TEXT" in the customer exit.. so mainly once document is generated i can add FI note by using function "SAVE_TEXT"..
    Please let me know which way i can achieve this (name of user exit ??)
    Regards,

    Hi Santosh,
    If you don;t have User EXit  then copy FM IDOC_INPUT_FIDCC2" into 'Z' FM and write your code and define 'Z' FM into WE20 T-code.

  • Query on User Exit for PO .............Urgent plz help

    hi
      Friends,
      Here is my query on Po Posting
      whenever i am creating a po based on cost centre and project a mail should be fired to the  respective user who has created that po.
      I am trying to solve this issue using the user exit,if some body having the idea how to solve this prob using userexit and the code related to that pls post that,or if there is any other procedure other than the userexit than pls send me the code.
    There is a possibility to solve this issue using BADI ,but i dont have any idea about this so pls help me if there is any other procedure.
    Thanks a lot
    mrutyun^

    Enhancement name is MM06E005 
    below FM's are trigger when you save PO .
    You can use EXIT_SAPMM06E_012 or EXIT_SAPMM06E_013
    TEKKN Structure to find out cost center and wbs element.
    With in user exit call FM : SO_NEW_DOCUMENT_ATT_SEND_API1 ,This fm will mail to user.
    Thanks
    Seshu

  • User exit for delivery IDOC on save

    Hi,
    I have found some exists for delivery IDOC fun mod 'IDOC_OUTPUT_DELVRY'.
    when I am testing from WE19, the debugger is not triggiring.
    Pl suggest.
    Thanks,
    Krishna

    Hi,
    If you have the idoc no. get the partner details form it and go to we20 and put it there. and go to inbound parameters, and cleck on the message which your idoc belongs to. and go to the process code in it, and double click on it. where you can get the FM attached to it. put the break point there. opne your idoc from we19. click on the inbound FM. and place the FM. and click on debugger active check box and chose fore ground. it will take you to that FM. now debug that function module. in this process you may come across Exits you are looking for.
       Hope this will helps you.
    Regards
    Kiran

Maybe you are looking for

  • How to open a .mrc file?

    I need to download an order report from a vendor site (Ingram Books).  The file has a .mrc extension.  I have been unable to find a application that will open this file.  Any suggestions?

  • Who can tell me why?

    I get some Excepiton in my applet here: Exception occurred during event dispatching: java.lang.IllegalArgumentException: Width (800) and height (0) must be > 0      at java.awt.image.SampleModel.<init>(SampleModel.java:105)      at java.awt.image.Sin

  • Clear memory or buffer or...?

    Hi I create program, but I need clear "something" - memory, buffer or...? My program have a selection screen and modificate output screen (using ALV buttons). When I modify data (using new framework and next part of code old infotype framework) progr

  • Converting varchar list to number

    hi everybody, can anyone help me to convert the varchar to number ex the input arg is varchar in this query below select * from student where rollno in ('1,2,3,4'); in this example the roll no is of type number.when i use to_number function it shows

  • L675D-S7016 Recovery media issue.....

    I have a L675-S7016 laptop that the hard drive failed. I purchased a new Toshiba hard drive Model # HDDR500102X, and installed it in my laptop. Then I purchased the recovery media disks. My problem is, When I put the 1st recovery disk in, it loads, I