Confirmations table / Last Delivery field?

Hi,
BBPCRM release 400 Level 10
I am trying to find the table that holds the Confirmations information, specifically the ‘Last Delivery’ CheckBox field.
Background:  I have a PO which is still showing up as needing receipting for the user, and I think the reason this is happening is there are 2 confirmation lines on the PO. 
The first confirmation was cancelled and the Last Delivery was not ticked. 
The second Confirmation was completed and it was flagged as Last Delivery.
But I think the Last Delivery un-ticked on the cancelled line is causing it to stay on the users screen.
I am trying to remove the PO from the users screen when looking at PO’s that need receipting.
Thanks in advance for your time and input.
Thanks,
Neal.

Thanks for your answer!  You where spot on, I managed to change the Last Delivery Flag.
My assumption was wrong about the Last Delivery flag.  So I will have to look into the status in the Jest table.
Cheers,
Neal.

Similar Messages

  • Date of Last.Del field is not updated in EKEK table

    Hello All,
    We have one date update problem for one Scheduling agreement, the field is LFDKD (Date of Last.Delivery) in the table EKEK -Header Data for Scheduling Agreement Release and  this date hasnt been updated only for one SA since 2008 , it remains as it is like 18.02.2008, but the date of last field (LWEDT) is updated correctly till date. So due to this problem , the SA release is sent to the vendor through EDI and the date of last delivery is sent wrongly in 2008 date even though after that many goods receipt has been done for this SA.  Any idea why it didnt get update till date ?
    Thanks in Advance
    Benny

    Hello Benny,
    Please check if the following notes can help :
    1337084 Release header contains doc. date instead of delivery date
    1309001 Incorrect date for last goods receipt in sched. agreement
    Regards,
    Mauro

  • Sales order item level partial delivery field table and field?

    Will anyone share your expertise,  In SD sales order level, at item what is the table and field name in which the partial delivery status is stored.  I want the table and field name?.  will anyone share pl.

    Hi,
    Try with table VBUP - and field LFSTA.
    Regards

  • Recalling Process Order confirmations after selecting Last delivery indicator in error

    Hello,
    I was completing an order confirmation and hit the last delivery indicator. I submitted my confirmation but noticed I had not completed my amount. When I tried to pull the order back up,. I was not able to. Is there anyway to recall this order? I am new at my job and I'm just learning so I just went back through my notes and realized I was not suppose to use the "last delivery indicator". Any suggestions on how I can fix this or retrieve my order so that I can correc the amount and confirm the order would be very helpful.
    Thank you in advance,
    Rita 

    Hi Rita
    If your question has been answered, please close this thread selecting the correct answer.
    See this blog for more details:
    How to close a discussion and why
    BR
    Caetano

  • Last delivery option in SRM

    Hello
    At the time of confirmationby mistake they were marked with the "Last Delivery" botton. Those PO have some invoices posted and paid. In order to make more confirmation against those PO, how can I delete the click in the "Last Delivy" botton?
    Is there any way through SRM ,to do this?Or I need to cancel my material document in the backend.
    Thanks for the help.
    Jayawant

    Hi
    <u>Inside the BADI - BBP_CREATE_PO_BACK, there is a field <b>NO_MORE_GR</b> at the PO_ITEMS table (Inside Line type of BBPS_BAPIEKPOC Structure)
    Reset the indicator as per your requirements, by creating an custom BADI implementation using SE19 Transaction.</u>
    Hope this will help.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

  • How to find out Last Changed Fields for a line item of a PO

    Dear All,
    Pls let me know is there any FM or procedure to find the last changed fields for each line item of a PO. I should be able to get the details on the basis of Last changed Date. Can u pls guide me in this?

    Hello,
    Check the table CDHDR,CDPOS for PO items,
    Check this code:
    REPORT ZV_GET_LATEST_SO .
    DATA: BEGIN OF ITAB OCCURS 0,
            OBJECTCLAS TYPE CDHDR-OBJECTCLAS,
            OBJECTID TYPE CDHDR-OBJECTID,
            CHANGENR TYPE CDHDR-CHANGENR,
            USERNAME TYPE CDHDR-USERNAME,
            UDATE TYPE CDHDR-UDATE,
            UTIME TYPE CDHDR-UTIME,
            TCODE TYPE CDHDR-TCODE,
            TABNAME TYPE CDPOS-TABNAME,
            TABKEY TYPE CDPOS-TABKEY,
            FNAME TYPE CDPOS-FNAME,
            CHNGIND TYPE CDPOS-CHNGIND,
          END OF ITAB.
    TABLES: CDHDR,CDPOS.
    DATA: LT_CDHDR LIKE CDHDR OCCURS 0 WITH HEADER LINE,
    LT_CDPOS LIKE CDPOS OCCURS 0 WITH HEADER LINE.
    *REFRESH AUSG.
    CLEAR CDHDR.
    CLEAR CDPOS.
    CDHDR-OBJECTCLAS = 'EINKBELEG'.
    CDHDR-OBJECTID   = '0000001784'.  " Purchase order number
    **SELECT A~OBJECTCLASS A~OBJECTID A~CHANGENR A~USERNAME A~UDATE A~UNAME
    **B~TCODE
    **B~TABNAME B~TABKEY B~FNAME B~CHNGIND INTO TABLE ITAB FROM CDHDR AS A
    **INNER JOIN CDPOS AS B ON A~OBJECTCLASS = B~OBJECTCLASS
    **                         A~OBJECTID    = B~OBJECTID
    **                         A~CHANGENR    = B~CHANGENR
    **                    WHERE OBJECTCLAS = 'VERKBELEG'
    **                      AND OBJECTID = '0000001784'.
    *SELECT * FROM CDPOS INTO TABLE LT_CDPOS WHERE OBJECTCLAS = 'VERKBELEG'
    *                                    AND OBJECTID = '0000001784'.
    *IF NOT LT_CDPOS[] IS INITIAL.
    *  SELECT *
    *  INTO   TABLE LT_CDHDR
    *  FROM   CDHDR
    *  FOR    ALL ENTRIES IN LT_CDPOS
    *  WHERE  OBJECTCLAS = LT_CDPOS-OBJECTCLAS
    *  AND    OBJECTID = LT_CDPOS-OBJECTID
    *  AND    CHANGENR = LT_CDPOS-CHANGENR.
    *ENDIF.
    **  SORT ITAB BY OBJECTCLAS ODJECTID DESCENDING.
    *LOOP AT ITAB.
    *  WRITE: ITAB-UDATE."ITAB-UNAME.
    *ENDLOOP.
    *--- Interne Tabellen -------------------------------------------------
    DATA: BEGIN OF ICDSHW OCCURS 50.       "Ausgabeaufbereitung
            INCLUDE STRUCTURE CDSHW.       "Zwischendatei
    DATA: END OF ICDSHW.
    CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
         EXPORTING
              DATE_OF_CHANGE    = CDHDR-UDATE
              OBJECTCLASS       = CDHDR-OBJECTCLAS
              OBJECTID          = CDHDR-OBJECTID
              TIME_OF_CHANGE    = CDHDR-UTIME
              USERNAME          = CDHDR-USERNAME
         TABLES
              I_CDHDR           = LT_CDHDR
         EXCEPTIONS
              NO_POSITION_FOUND = 1
              OTHERS            = 2.
    LOOP AT LT_CDHDR.
      CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS'
        EXPORTING
    *   ARCHIVE_HANDLE                = 0
          CHANGENUMBER                  = LT_CDHDR-CHANGENR
    *   TABLEKEY                      = '00000000 '
    *   TABLENAME                     = ' '
    * IMPORTING
    *   HEADER                        =
       TABLES
         EDITPOS                       = ICDSHW
    *   EDITPOS_WITH_HEADER           =
    * EXCEPTIONS
    *   NO_POSITION_FOUND             = 1
    *   WRONG_ACCESS_TO_ARCHIVE       = 2
    *   OTHERS                        = 3
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP AT ICDSHW.
        IF ICDSHW-TABKEY+3(10) = '0000001784'
           AND ICDSHW-TABKEY+13(6) = '000001'.
        ENDIF.
      ENDLOOP.
    ENDLOOP.
    Vasanth

  • Tables for delivery details

    Hi all,
    What are the tables for delivery details.
    What i want exactly is header and lines tables for one Delivery .
    Thanks

    Thanks Nagmohan...
    And i want to know what are the tables get affected and the flow of process from the status to shipp confirm ..
    Can you pls tell me patiently..
    thanks

  • Table names and field names for the PO item details

    Hi,
    I want table names and field name for the below fields.
    I have PO number i want to get below fields for PO.
    <b>Confirmed Ship Date (or actual ship date if already shipped) – PGI Date
    Quantity of Product to be shipped (base unit of measure) Sales Order Qty
    Shipped Quantity of Product (normally zero)
    Shipped From Plant Name</b>
    Excellent reward is compulsary.
    reagrds,
    vijay

    Hi,
    Please find below the some of tables and fields for the PO. But from your query hope you are refering some other PO.
    Table : EKPO
    Fields
    KTMNG - Target Qty
    MENGE - Open Qty
    WEPOS - Goods Receipt
    LEWED - Latest GR date
    Table : EORD
    Fields
    RESWK - Procurement plant
    FRESW - Fixed Issuing plant
    LIFNR - Vendor
    FLIFN - Fixed vendor
    Regards,
    BK

  • EDI Order Confirmation requirements routine 002, fields COSTA & BESTK

    Hi All,
    Can someone help me understand what I can do to allow the Order Confirmation to be generated at the appropriate time?
    The criteria seem simple enough:
    order is complete
    all materials are available
    ignore the fact that the delivery may be delayed for a weekly consolidated shipment
    Field COSTA: (both in VBUK and KOMKBV1) "Confirmation status for ALE"
    Field BESTK: (both in VBUK and KOMKBV1) "Confirmation Status"
    Does anyone have information on field COSTA? How it is triggered, etc? What configuration if any needs to be done to force it to become active?
    I was assuming that when a sales order has a back-ordered product, the COSTA value would change. But this didn't happen in our system.
    So . . . I copied and modified the output routine (002, include LV61B002), used BESTK instead of COSTA, but that didn't work either. BESTK is flagged AorB (not or partially confirmed) when the the delivery is held for a consolidated shipment on a later date -- even if the materials are available.
    Any help would be appreciated.
    Thanks,
    Eddie

    Hi,
    I think if you will post this message in ABAP Section then you will get answer quite fast, as this is not related to PI/XI.
    Thanks,
    Hetal

  • Table Extension custom fields in SRM 7.0

    Hi SRM Experts,
    I'm struggling with adding data into a table extension that I created on Confirmations. (SRM 7.0)
    I followed the suggested steps to add a table extension:
    1) SPRO->SAP SRM->SRM Server->Cross-Application Basic Settings->Extensions and Field Control (Personalization) -> Create Table Extensions and Supply with Data -> Define Customer Table Extensions on Item Level.
    2) I created the two structures (INCL_EEW_PD_HEADER_CST and INCL_EEW_PD_HEADER_CST_CONF) and added the custom fields.
    3) I set the visibility of the table extension and created the entries with TICUS.
    4) I configured control of fields of table extensions.
    5) I configured control of actions for adding a row (ADD_TICUS)
    6) I added the custom fields in SM30 to table /SAPSRM/V_MDFSBC_DEFAULT
    The table extension is visible on the Confirmation screen but the custom fields are not editable and I'm not able to fill in data into them.
    When I click on the add row button, a row is added to the table but the fields are still uneditable.
    I need to populate this table extension with some data before it gets displayed to the user, and then the user needs to complete the empty custom fields.
    I tried to add data to BBP_PDICF, but it still does not appear in the table extension.
    Please can someone give me some guidence?
    Regards,
    Andrew

    Hey Andrew,
    Please let me know how you rectified the issue?
    Are these the steps to be followed? Even I need to add  a table in the header level of PO document.
    Please share your experience.
    Kind Regards,
    Gayathri

  • Table name and field name of the structure field

    Hi Gurus
    I am having a screen where i enter a value in a field and that field is a structure field, I would like to know in which table and what field is this value storing?
    Can anyone help me out in finding the field name? and what is the procedure to find?
    Thanks in advance

    Hi Satya,
    In the field data section (technical information), you can double click on the field name then the system will take you to SE11 (Data Dictionary). From here, you can check whether the field is available in tranparent table or structure.
    In general, as naren mentioned sales order header data stored in table VBAK and line item in table VBAP, VBEP, etc.
    For request delivery date, it stores in table VBAK-VDATU.
    Regards,
    Ferry Lianto
    Please close this thread if your problem solved and mark for all helpful answer.

  • Table name and Field names

    pls tell me the Table name and field names for the following.
    i want to create a purchase order, so that i want to get the following fields:
    sender address
    receiver address
    purchase order date
    order no:
    payment terms:
    port of loading
    port of discharge
    terms of delivery
    And the line items are:
    item name
    packing
    cases
    quantity
    price

    sender address - EKKO-KUNNR
    receiver address - EKKO-LBLIF
    purchase order date  - EKKO-AEDAT
    order no:            - EKKO-EBELN
    payment terms:       - EKKO-ZTERM
    port of loading     - EKPO-EGLKZ
    port of discharge   -
    terms of delivery  -
    And the line items are:
    item name   - EKPO-EBELP
    packing -    LIPS-PCKPF
    cases  - 
    quantity - EKPO-MENGE
    price  - EKPO-NETPR

  • Table nyoame and field name..

    hi frds
    can anyone explain me what is OPEN PO Number and Qty and give its table name and field name ??
    by
    PARI VENDHAN.R

    Hi,
    EKKO - Pur. Doc Header
    EKPO - Pur. Doc Item
    Logic:
    1. Read PO headers from EKKO
    2. Read Items from EKPO
        Here check the field EKPO-ELIKZ (Delivery Complete Indicator).
    3.If for all items if delivery complete indicator is set that is not a open PO
    4. If you have atleast one non-delivery complete then it will be a open PO
    Rewards if this answer is useful.
    Thanks,

  • Subform with table with expanding fields - please help!

    I am a new user of LiveCycle Designer ES and need help with a form.  I've made so many changes within the form that I have now lost track and don't know where to start to fix the following two issues:
    The form itself is one Master Page that needs to repeat, based on the amount of data entered.  This is not happening.
    Within the form is a Table with expanding fields.  It is when the last field is full that I need a new page created.Also, as the table expands, it overwrites the Footer, which is a subform.  The footer is set to have a top margin (.25).
    Any assistance would be much appreciated.  Thank you!

    Looks like a cross post.  see other thread here...
    http://forums.adobe.com/thread/489453?tstart=0

  • Order Confirmation tables

    Hi all,
    I want to know the Order Confirmation tables. Please if anybody can speify SOP tables, will be very much needed & hence helpful to me.
    Regards,
    MHP

    AFFW                           Goods Movements with Errors from Confirmat
    AFFWPRO                        Log of deleted AFFW entries
    AFRC                           Incorrect cost calculations from confirmat
    AFRD                           Default values for collective confirmation
    AFRH                           Header information for confirmation pool
    AFRH_DEL                       Backup Copy of Header Information for Conf
    AFRP0                          Table of planned changes for confirmation
    AFRP1                          Table of planned changes to conf.: Automat
    AFRP2                          Table of planned changes for confirmation:
    AFRP3                          Table of planned changes for confirmation:
    AFRP4                          Table of planned changes to confirmatn: Da
    AFRU                           Order Confirmations
    AFRV                           Confirmation pool
    AFRV_DEL                       Backup Copy for Confirmation Pool
    AFWI                           Subsequently posted goods movements for co
    CORUUSR                        User Settings for Confirmation
    TAFWD                          CORU: Messages that are not interpreted as
    TCORD                          Table for field-dependent check routines
    TCORU                          Parameters for Order Confirmation
    TCORUPBTXT                     Customizing Single Screen Entry Confirmat.
    TCORUSSDEF                     Customizing for Single Screen Entry of a C
    TCORV                          Table with Routines for structureing varia
    TCORW                          Confirmation: Window Control
    TPARU                          Control parallelized confirmation processe
    TPRRU                          Control table for process chain for confir
    TPRRUT                         Text table for process control of confirma
    sree

Maybe you are looking for

  • MD04 release reject problem

    Sir in MD04 when i am converting planned order to production order i am getting following message also release is rejecting :- No valuation variant found for valuation area AMBA Message no. C6015 Diagnosis The system could not find a valid valuation

  • Currency Display in BEx Report

    Hi, When I am executing a BEx Query with Regional Language options on the OS as English ( United Kingdom ), I am seeing the values in Number format ex : 98766EUR but when I change the Regional Language Options on the OS as German ( Deutshland ) I am

  • Log error while loading a war file to WAs

    When trying to load a war file to WAs and selecting the class loader option "Parent last", I get an error: Caused by: org.apache.commons.logging.LogConfigurationException: The chosen LogFactory implementation does not extend LogFactory. Please check

  • Populating a pdf form from a database

    There seems to be a lot of information on the forum that skirts around this problem, but so far everything I've tried falls short. <br /> <br />I have a pdf form that can be filled out via a browser (the web server is Win2k and IIS. <br /> <br />I ca

  • Viewing check number in payment document.

    Hi, I have made an outgoing payments through F-53. Two document numbers: 1800000012 & 1800000013 were generated Then i issued a check through FBZ5 & FCH5 respectively. Now i went into FB03 & displayed both above mentioned document numbers. But i am u