Segment field IDOC_INPUT_DELVRY

what is the segment update the picking quantity and PGI in Inbound function module IDOC_INPUT_DELVRY.
I'm using message type SHPCON and Basic Type DELVRY03.
Thanks

We need to check also qualifiers details in WE31. Check below qualifiers:
E1EDL18-QUAL=PIC   -- For Picking qty
E1EDL18-QUAL= PGI  --For PDI
Reddy

Similar Messages

  • Replaced value is not getting relected in IDOC segment field

    Hi,
    Need your help for the below issue.
    I am replacing the PO # with Delivery Doc # . But the replaced value is not getting reflected in the IDOC segment field(e1bp2017_gm_item_create-po_number.).
    Function Module  which I am using is IDOC_INPUT_MBGMCR as a copy.
    Here is my code given below:
    SELECT
                SINGLE vbeln
                  INTO lx_vbeln
                  FROM lips
                 WHERE vgbel EQ e1bp2017_gm_item_create-po_number.
    Move lx_vbeln TO e1bp2017_gm_item_create-po_number.
    MOVE-CORRESPONDING e1bp2017_gm_item_create
                   TO goodsmvt_item.
    Then this is passed as  TABLE in "BAPI_GOODSMVT_CREATE".
    Please do the needful.

    Hi Dheepa,
    Check it in debug whether the filed is empty or having po#, when ur code is executed for the replacement. if it is empty, po# is populated after ur code. in this case you need to write the code in suitable place.
    Reddy

  • Segment  Field in  vendor line item

    Hello Guru,
                        we have activated new gl functionality with doucment splitting . but we are not able to view the segement filed in vendor line item and customer line item in different reports.
            how we can pool that field in variouse report in instead using Zreport.
    Thanks and Advance
    Laxmi narayan

    Hi,
    whe we are  entering  the vendor line item we can enter the Fund and fund Center, our segment will be derived from the fund ( we have done it in a substitution, if the segment is empty we derive it from the fund) and in BSEG table we can see that the segment is filled correctly. But we cannot change it because this fields segment don't appear in the screen. We have reviewed the SAPMF05A 0332 Screen (screen that we can see when we are entering the vendor line item and we push in "More data" button) but the segment field don't appear.
    Thanks in advance,
    Sap Userr

  • Segment field is not shown in profit center master data

    Hi,
      When i activated New GL ,but the segment field is not shown in profit center master data. How can i make the field shown ?
    Thanks.

    After activating the New GL have you defined the segment? First define the segment under Enterprise Structure and in Fin.Acctg Global settings(New)-Legers-Display scenarios for General Ledger Accounting, you need to create new entries for FIN_PCA & FIN_SEG.
    Hope this helps you.

  • New GL - Update segment field of table FAGLFLEX*

    Hi All,
    We are turning document splitting in our configuration, split by segment.
    When do posting of invoice, the vendor leg will be automatically split base on expense leg segment.
    Example enter invoice consist of 2 expense leg:
    GL Account    Segment   Amount
    DR Expense  SEG01     $100
    DR Expense  (blank)      $200
    In document view (BSEG table) the posting will be:
    GL Account    Segment   Amount
    DR Expense  SEG01     $100
    DR Expense  (blank)      $200
    CR Vendor                    $300
    In GL View (FAGLFLEXA table) the posting will be:
    GL Account    Segment   Amount
    DR Expense  SEG01     $100
    DR Expense  (blank)      $200
    CR Vendor     SEG01     $100
    CR Vendor     (blank)      $200
    We need to default the vendor leg (bold above) segment to SEGXX. Any body have any idea on how to do this? Thanks.
    rgds,
    Rini

    Hi,
    I need to default the segment field in FAGLFLEX* table to certain value when the segment field is blank.
    Do you know the BAPI/BADI that I can used? Thanks
    rgds,
    Rini

  • How do I copy/paste full numerical-only account strings into the Projects WebADI template when the account segment fields in the template require use of the dropdown because they're formatted as alpha-numeric values?

    How do I copy/paste full numerical-only account strings into the Projects WebADI template when the account segment fields in the template require use of the dropdown because they're formatted as alpha-numeric values? I'm using the Integrator named "Projects - Transaction Import" and a custom Layout created based on the seeded Layout named "Transaction Import - Accounted". Do I need to somehow change my Layout to make the Document accept numerical values instead of requiring alpha-numeric values? I need to be able to populate the Document with a large amount of transactions and cannot feasibly go through every transaction to add the alpha-valued name of the account segment to every segment that requires it. The segments in particular causing the problem are "Expnd Type" and "Organization Name" which are both alpha-numeric and as such contain the segment number and name; I need to be able to only have to enter the Natural Account Number (6-digit number only) and the Organization Number (5-digit number only).

    How do I copy/paste full numerical-only account strings into the Projects WebADI template when the account segment fields in the template require use of the dropdown because they're formatted as alpha-numeric values? I'm using the Integrator named "Projects - Transaction Import" and a custom Layout created based on the seeded Layout named "Transaction Import - Accounted". Do I need to somehow change my Layout to make the Document accept numerical values instead of requiring alpha-numeric values? I need to be able to populate the Document with a large amount of transactions and cannot feasibly go through every transaction to add the alpha-valued name of the account segment to every segment that requires it. The segments in particular causing the problem are "Expnd Type" and "Organization Name" which are both alpha-numeric and as such contain the segment number and name; I need to be able to only have to enter the Natural Account Number (6-digit number only) and the Organization Number (5-digit number only).

  • IDOC Missing Segment Field

    Hi,
    Some of my outbound IDOC's are missing a particular field in the Segment.....
    This is probably because that Segment field don't have any value and hence missing from IDOC.
    What can be the possible approach for Solving this probelm?

    Hi Abhishek,
    Can you please get the solution for such issue?
    I didnt aware of Enhancement Spot...
    Looking for your reply..
    Regards,
    Raghu
    Edited by: Raghu Raman on Jan 5, 2009 1:27 PM

  • How to map idoc segment field E1IDB02-FIIKONTO with BSEG-ESRNR.

    Hi,
    I have searched for lot of threads in the forum , and also i tried myself but i am not able to map this fields segment with my logic, so please anyone kindly contribute in mapping idoc segment field  with the logic given below:
    idoc type :PAYEXT  outbound idoc.
    message type: PEXR2002
    This is my logic: i need to populate the ISR number(BSEG-ESRNR  ) in idoc segment field( E1IDB02-FIIKONTO)
    DATA : str1 TYPE string,
          len1  TYPE i,
          len2  TYPE i,
          str2  TYPE string,
          str3  TYPE string.
    str1 = '01-1234-4'. ---> BSEG-ESRNR  "ISR Subscriber Number
    REPLACE FIRST OCCURRENCE OF '-' IN str1 WITH '_'.
    REPLACE ALL OCCURRENCES OF  '-' IN str1 WITH space.
    CONDENSE str1.
    len1 = STRLEN( str1 ).
    IF len1 LT '9'.
    len2 = '9' - len1.
    CASE len2.
       WHEN '1'.
         REPLACE ALL OCCURRENCES OF '_' IN str1 WITH '00'.
       WHEN '2'.
         REPLACE ALL OCCURRENCES OF '_' IN str1 WITH '000'.
       WHEN '3'.
         REPLACE ALL OCCURRENCES OF '_' IN str1 WITH '0000'.
       WHEN '4'.
         REPLACE ALL OCCURRENCES OF '_' IN str1 WITH '000000'.
       WHEN OTHERS.
    ENDCASE.
    ELSEIF len1 EQ '9'.
    REPLACE ALL OCCURRENCES OF '_' IN str1 WITH '0'.
    ELSEIF len1 GT '9'.
    REPLACE ALL OCCURRENCES OF '_' IN str1 WITH space.
    CONDENSE str1.
    ENDIF.
    Thanks in Advance.

    Resolved.

  • Mandatory Segments / Fields for Incoming Vendor Invoice for PO

    Hello,
               I have a Requirement to develop an Inbound Interface for Incoming Vendor Invoice with Reference to a PO. If I have to build an IDoc using WE19 tool, what are the Minimum Mandatory Segments / Fields that I need to populate in order to Post the Invoice successfully for the PO? Please let me know along with the Qualifiers.
    Thank You,
    Venkata Phani Prasad K

    Managed to Find the Necessary Segments along with the Qualifiers required to Post the Incoming Invoice. Closing the Thread.

  • Inbound idocs segment fields

    Hi,
    Iam new to idocs and a functional consultant. I need to know whenever we receive the inbound idocs and if i see the segments of the inbound idoc, do the fields which i see in the segments are the sap fields.????/ for instance if the inbound idoc needs to create a sales order, then the fields of the segments of such an inbound idoc are the normal sap sales order fields ??
    do i need to give functional specs to the abapers that whenever the inbound idocs is received the segments fields need to be mapped to sales order fields if such an idoc needs to create a sales order ??
    regards
    sachin

    Hi Sachin,
    Most of the IDoc segment fields are simmilar to SAP transaction fields e.g. most of the ORDERS IDoc segment fields will be simmilar to what you can see in VA01/VA02 screen fields.
    Some fields may have different names.
    In the case of few segments which may repeate in IDoc with different qualifiers (such as partner details, date segments), fields will be same but different qualifier value decides where these field values will be populated in the Order.
    If you are using standard function module to create Order, it will take care of mapping IDoc segment fields to VA01/VA02 screen fields. But if it is a Z function module, then you need to specify the mapping.
    Hope this information will help you.
    Regards,
    Mahesh Pakhale

  • Idoc Segment Fields

    Hi,
    I am having a problem with the display of idoc segment fields. When i check the Idoc segment contents in WE02 it is displaying the fields which dont have the value in the DB table along with the fields which have the data. To avoid this what is the procedure. I dont want to display the fields in the content of segment which does not contains the data.
    Plz help me out.
    Regards
    Santosh

    Hi,
    U have to use for reduced message type...U need to filter the segments which  u don't want...In BD53 u need to create reduced message type....
    plz go through the below link..
    http://help.sap.com/saphelp_erp2005/helpdata/en/d3/06f6679aaf0e44b67ca6d6b58d91df/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/0b/2a6702507d11d18ee90000e8366fc2/content.htm
    Regards,
    Nagaraj

  • Segment field in SD transaction Postings

    Hi
    As we are using Derived Segment FAGL_DERIVE_SEGMENT (there is no segment assignment in PCtr master data i.e. segment identified with out PCtr also), the segment field is not coming in VA01, ME21N.
    What to do to get the field segment in the above transactions.
    Let me know if there is any other process do.
    Please help me out
    Thanks & Regards
    Ramki
    Edited by: Ramki on Feb 11, 2009 11:46 AM

    Thanks Paul
    We are using the BAdI FAGL_DERIVE_SEGMENT, which means no assignment of segment to the PCtr. We have activated the account assignment objects in AA for PCtr only. There is no field Segment in Account assignment objects in AA. For reporting purpose we are using Evaluation group1 as Segment.
    But in AA automatic postings like AIBU (CWIP Settlement line items) and AFAB system has to pick the segment field.
    For this what I have to do? Please help me out
    Thanks & Regards
    Ramki
    Edited by: Ramki on Jan 30, 2009 2:17 PM

  • Segment field in MM transaction Postings

    Hi
    As we are using Derived Segment FAGL_DERIVE_SEGMENT (there is no segment assignment in PCtr master data i.e. segment identified with out PCtr also), the segment field is not coming in VA01, ME21N.
    What to do to get the field segment in the above transactions.
    Let me know if there is any other process do.
    Please help me out
    Thanks & Regards
    Ramki
    Edited by: Ramki on Feb 11, 2009 11:47 AM

    Thanks Paul
    We are using the BAdI FAGL_DERIVE_SEGMENT, which means no assignment of segment to the PCtr. We have activated the account assignment objects in AA for PCtr only. There is no field Segment in Account assignment objects in AA. For reporting purpose we are using Evaluation group1 as Segment.
    But in AA automatic postings like AIBU (CWIP Settlement line items) and AFAB system has to pick the segment field.
    For this what I have to do? Please help me out
    Thanks & Regards
    Ramki
    Edited by: Ramki on Jan 30, 2009 2:17 PM

  • Segment field mandatory in PCTR master

    Hi
    I created PCTR without assigning segment to that PCTR. To avoid this error in future, i want to make this field as mandatory. Can i make segment field as mandatory

    Hi,
    you can make it mandatory by implementing notes 1369185 and 1509517. There are also some manually steps, like creating message FAGL_LEDGER_CUST156, these are described in the description of the note 1369185.
    Regards,
    Greta

  • SEGMENT field updation while Move-In creation (BAPI_ISUMOVEIN_CREATE)

    Hi,
    We are creating Move-In using BAPI_ISUMOVEIN_CREATE.
    But we found that in this BAPI, there is no provision to maintain the SEGMENT field for the Contract.
    Can you suggest any alternate solution to maintain the same.
    Kind Regards,
    Vandana

    Try to use this function module:
    ISU_S_MOVE_IN_CREATE   it will create with segment.
    Regards,
    Siva

Maybe you are looking for

  • Emailed voicemails with .wav files no longer play

    My office has a VoIP system that I have set up so it sends me an email (Gmail not Outlook) with the voice mail message attached as a .wav file.  On Sunday my Droid Razr M stopped working and Verizon made me do a hard reset to restore factory settings

  • Bandwidth controlling problem

    i have a 3550 catalyst and i configured it for bandwidth controlling i have used POLICE command its work fine and i saw it limit the bandwidth but there is a little problem when i limit the bandwidth at 1024000 and i useing all the bandwidth and moni

  • System object with same credentials for all users?

    Hi everyone I would like to create a system object in Portal, which can be used by users in a specific group. However, I want all users to use the same credentials for this system. Is this possible? I've tried creating systems, but they all seem to r

  • Speaker hum

    I upgraded from Audition 3.0 to CS5.5.  So far, my experience has been dysmal.  My monitors now have a high pitched hum coming out of them sounding like a ground loop.  Problem is, no other software package causes this to happen.  If I shut down Audi

  • Artwork click and song drag randomly not working

    first time in years of use... I got two strange bugs. the first one is when I click on the artwork viewer. the normal behavior is to open the artwork image in a new window. but now, randomly... nothing happens. if I close iTunes and reopen, this will