Changes in Delivery doc effect in which table

Hi all,
iam chaneing the deliveryquantity in delivery order, that changes iun which table that will be stored.
i know  likp,lips this tables are stored the delivery details.
but i want in which table that  delivery doc effect will be stored.
pls help me
regards,
dhanush

Hi dhanush
Apart from LIPS, LIKP tables  check in VEPO table where the  delivery item (POSNR)  is stored
Regards
Srinath

Similar Messages

  • Changed date in Agreement reflects in which table

    Hi Experts,
    In CRM Sales Aggrements we have the start date and end date. When the user changes the end date example 01.01.2008 to 02.02.2008 but the document flow is not getting updated.
    My requirement is I want to know from which date to which date the document is being changed.
    I am able to get the date to which it is  changed from SCAPPTSEG,  but I want to know from which date it was changed.
    Please help me out.
    Regards,
    Sasmita

    Hi Sasmita,
    U can view the change document details, if u have not activated indicator NO Change Document in the customizing of the transaction type. 
    To view the Change document History, Open the sales agreement, in the menu bar select Extras--> Change Document.
    This will show u the old value as well as new value.
    Regards,
    Shalini Chauhan
    Edited by: Shalini Chauhan on May 1, 2008 5:35 PM

  • Changes to Delivery after it is sent for Pickup (in EWM)

    Hello Experts,
    here i have a requirement with my client:
    Current Landscape:  ECC 6.0 EHP4, EWM 7.0 (on Separate server)
    Additional data: Implementing HU, RF guided transations
    Scenario:
    on 07/20(July 20)
    Customer create an SO, delivery created in ECC --> replicated to EWM --> Outbound delivery doc created --> WT...WO...created --> assigned to a resource for Pick up on 07/30 (july 30).
    On July 30th, i wanted to change the delivery doc in ECC.
    for the above scenatio, please suggest what are the config changes that i have to make and how the resource allocation is done based on the change in quantities?
    waiting for reply. please let me know if more details are needed
    Thanks
    Venkat

    It is NOT possible to change them in ERP after sent to EWM and picked up. You  have to finish them with 0 quantity in EWM and then re-create if you would like to change them. It goes for Outbound deliveries.
    However the Inbound deliveries can be changed in ERP also after the replication, but only using transaction VL60, with the condition that the delivery in EWM hasnu2019t been processed yet. If you performed already any task, then the change should be rejected (not directly in dialog, but later on automatically).
    One additional information about deleting vs rejecting:
    Deleting deliveries in EWM normally will never really delete them, but only create e.g. a new inbound delivery (PDI) from an inbound delivery notification (IDN). If you want to reject deliveries, use the reject button for PDIs, or decrease the quantities to 0 for PDOs and create a final delivery.

  • From which tables i would find the delivery and billing document field..??

    I need to create an ALV report which displays the following details in the output.
    Order No  Item No     Material     Order Qty     Item Category     Plant     Delivery     Billing Document     Sales Org     Dist Channel     Division     Created By     Created On      Changed On
    For(Order No  Item No     Material     Order Qty     Item Category     Plant) i took the fields from vbap and
    for(Sales Org     Dist Channel     Division     Created By     Created On      Changed On)i took the fields from vbak..
    From which tables i would find the delivery and billing document field related to sales document.??
    need help...
    Moderator message : Requirements dumping not allowed, thread locked.
    Edited by: Vinod Kumar on Mar 6, 2012 2:53 PM

    i am new to abap...so i dont have idea about sd table relationship.
    so please reply how to add delivery and billing doc in my coding below..
    *& Report  ZINAA_SD
    REPORT  zinaa_sd.
    TABLES: vbap, vbak, vbfa.
    TYPE-POOLS: slis.
    CONSTANTS: c_x TYPE char1 VALUE 'X'.
    TYPES:
            BEGIN OF st_vbap,
             vbeln TYPE vbap-vbeln,
             posnr TYPE vbap-posnr,
             matnr TYPE vbap-matnr,
             pstyv TYPE vbap-pstyv,
             kwmeng TYPE vbap-kwmeng,
             werks TYPE vbap-werks,
            END OF st_vbap,
            BEGIN OF st_vbak,
              vbeln TYPE vbak-vbeln,
              erdat TYPE vbak-erdat,
              ernam TYPE vbak-ernam,
              vkorg TYPE vbak-vkorg,
              vtweg TYPE vbak-vtweg,
              spart TYPE vbak-spart,
              aedat TYPE vbak-aedat,
            END OF st_vbak, 
           BEGIN OF st_final,
             vbeln TYPE vbap-vbeln,
             posnr TYPE vbap-posnr,
             matnr TYPE vbap-matnr,
             pstyv TYPE vbap-pstyv,
             kwmeng TYPE vbap-kwmeng,
             werks TYPE vbap-werks,
             erdat TYPE vbak-erdat,
             ernam TYPE vbak-ernam,
             vkorg TYPE vbak-vkorg,
             vtweg TYPE vbak-vtweg,
             spart TYPE vbak-spart,
             aedat TYPE vbak-aedat,
           END OF st_final.
    DATA:
          lt_vbap TYPE TABLE OF st_vbap,
          ls_vbap TYPE st_vbap,
          lt_vbak TYPE TABLE OF st_vbak,
          ls_vbak TYPE st_vbak,
          lt_final TYPE TABLE OF st_final,
          ls_final TYPE st_final,
          lt_fieldcat TYPE slis_t_fieldcat_alv,
          ls_fieldcat TYPE slis_fieldcat_alv,
          layout TYPE slis_layout_alv,
          lt_sort TYPE slis_t_sortinfo_alv,
          ls_sort TYPE slis_sortinfo_alv.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_vbeln FOR vbap-vbeln,
                    s_erdat FOR vbap-erdat.
    SELECTION-SCREEN END OF BLOCK b1.
    PERFORM select_data.
    PERFORM loop_final.
    PERFORM sort.
    PERFORM a USING:
          'VBELN' TEXT-002,
          'POSNR' TEXT-003,
          'MATNR' TEXT-004,
          'KWMENG' TEXT-005,
          'PSTYV' TEXT-006,
          'WERKS' TEXT-007,
          'VKORG' TEXT-008,
          'VTWEG' TEXT-009,
          'SPART' TEXT-010,
          'ERNAM' TEXT-011,
          'ERDAT' TEXT-012,
          'AEDAT' TEXT-013.
    PERFORM display.
    *&      Form  SELECT_DATA
          text
    FORM select_data.
      SELECT
       vbeln
       vkorg
       vtweg
       spart
       ernam
       erdat
       aedat
       INTO CORRESPONDING FIELDS OF TABLE lt_vbak
       FROM vbak
       WHERE vbeln IN s_vbeln AND erdat IN s_erdat.
      IF sy-subrc = 0.
        SORT lt_vbak by vbeln.
      ENDIF.
      SELECT
       vbeln
       posnr
       matnr
       kwmeng
       pstyv
       werks
       INTO CORRESPONDING FIELDS OF TABLE lt_vbap
       FROM vbap
       FOR ALL ENTRIES IN lt_vbak
       WHERE vbeln = lt_vbak-vbeln.
      IF sy-subrc = 0.
        SORT lt_vbap by vbeln.
      ENDIF.
    ENDFORM.                    "SELECT_DATA
    *&      Form  LOOP_FINAL
          text
    FORM loop_final.
      LOOP AT lt_vbap INTO ls_vbap.
        ls_final-vbeln = ls_vbap-vbeln.
        ls_final-posnr = ls_vbap-posnr.
        ls_final-matnr = ls_vbap-matnr.
        ls_final-kwmeng = ls_vbap-kwmeng.
        ls_final-pstyv = ls_vbap-pstyv.
        ls_final-werks = ls_vbap-werks.
        READ TABLE lt_vbak INTO ls_vbak WITH KEY vbeln = ls_vbap-vbeln BINARY SEARCH.
        ls_final-vkorg = ls_vbak-vkorg.
        ls_final-vtweg = ls_vbak-vtweg.
        ls_final-spart = ls_vbak-spart.
        ls_final-ernam = ls_vbak-ernam.
        ls_final-erdat = ls_vbak-erdat.
        ls_final-aedat = ls_vbak-aedat.
        APPEND ls_final TO lt_final.
        CLEAR ls_final.
      ENDLOOP.
      ENDFORM.                    "LOOP_FINAL
    *&      Form  SORT
          text
    FORM sort.
      ls_sort-spos = '01' .
      ls_sort-fieldname = 'VBELN'.
      ls_sort-tabname = 'LT_FINAL'.
      ls_sort-up = c_x.
      ls_sort-subtot = c_x.
      APPEND ls_sort TO lt_sort .
    ENDFORM.                    "SORT
    *&      Form  A
          text
         -->FNAME      text
         -->SELTEXT    text
         -->EMPHA      text
    FORM a USING fname TYPE string seltext TYPE string.
      IF fname = 'KWMENG'.
        ls_fieldcat-do_sum =  c_x.
      ENDIF.
      ls_fieldcat-fieldname = fname.
      ls_fieldcat-seltext_m = seltext.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR ls_fieldcat.
    ENDFORM.                    "A
    *&      Form  ALV
          text
    FORM display.
      layout-zebra = c_x.
      layout-colwidth_optimize = c_x.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
       i_callback_program                = sy-repid
      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                         = layout
        it_fieldcat                       = lt_fieldcat
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
        it_sort                           = lt_sort
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = C_X
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      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
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
        t_outtab                          = lt_final
    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.
    ENDFORM.                    "ALV

  • Which table contains - FI Document Changes?

    Team,
    Which table contains - FI Document Changes?
    Please be specific; For example:
    CDHDR:
    OBJECTCLAS ?
    CDPOS:
    BJECTCLAS?
    ABNAME  
    ABKEY      
    HNGIND  
    Thanks

    Hello
    The OBJECTCLAS is BELEG.
    Use FM CHANGEDOCUMENT_READ_HEADERS
    with objectclass = 'BELEG'
         objectid  = (concatenate client + company code + doc no + fiscal year)
    Then loop at the header and use FM
      CHANGEDOCUMENT_READ_POSITIONS
    to get the CDPOS values
    Hope this helps
    Shounak
    Message was edited by: Shounak Mukherjee

  • Delivery doc status change

    Hi
    We have a requirment where in we have to change the status of the
    delivery doc to be completed from open.
    Thanks in advance
    KM

    Hi
    If the delivery status is wrongly determined ,if you want to change the statius according to the configuration
    kindly run the report  RVDELSTA or use the below program
    REPORT 
    TABLES: VBFA.
    data: cnt like sy-tabix.
    SELECT SINGLE * from vbfa  where VBTYP_N = 'U' and vbelv = ''.
    if sy-subrc = 0.
    UPDATE  vbfa  SET PLMIN = ' ' where vbelv = ''  and vbtyp_n = 'U'.
    endif.
    Regards
    Damu

  • BAPI for changing delivery date and delivery time fields in LIKP table

    Hi All,
         Is there any BAPI or function module to change the delivery date and delivery time in LIKP table ?
    Please tell me experts if exists.
    Thank you,
    Raghu.

    try these:
    BAPI/FM to update LIKP and VTTK tables
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/bapi-for-changing-sales-headertable-likp-662800

  • Where on earth can i change resolution values/doc raster effects?

    Hi Guys and Galls,
    when importing a Bar Code i consistently get message that resolution for professional book printing is too low. (which results in text [print proof] overlaid on barcode, which obviously we don't want.
    when trying to save a piece of Russian text (in Illustrator) as pdf (for placing into Pagemaker), i get warning that ppi is 72 ppi or below.
    the designated printer values for both examples are 2400. Where (in InDesign, but problem is same in Illustrator) can i change the document raster effects from 72 ppi to a higher (standard) value?
    Thanks mucho in advance,
    Feather

    Check the "Effects > Document Raster Effects" and/or "Print > Output Resolution" dialogs.

  • In which table i can get doc type description

    Hi to all experts,
    In which table the doc type description for PO stored

    Hi,
    T685B is the table where all the output types are stoled.
    Regards,
    Raj Gupta

  • IS-U changes of schemas - which table?

    Hi all,
    Does anybody knows in which table I can find informations about history of changes in schemas ?

    OK I've found it out. These informations are stored in standard SAP tabels for history - CDHDR i CDPOS

  • From which table field could we find the 'material type' of delivery items.

    Hi,
    Please kindly advise from which table field could we find the 'material type' for one delivery items??
    Thank you.

    Hi,
    You cant get the material type directly from delivery item. Pls make a joint between LIPS and MARA tables to get the same.
    In LIPS, get the material numbers of the delivery document.
    Give them in MARA to get their material types

  • In which table can maintain the SAP MM Display changes?

    hi,
    I have One doubt. Regarding In MM...
    In which Table can Maintain the Changes of Material?

    Hello,
    Please use function CHANGEDOCUMENT_READ.
    Thanks,
    Venu

  • Which table stored the Inbound ASN IDOC # and corresponding In.B Delivery#

    Hi,
    May i know which table stored the inbound ASN IDOC# and corresponding created Inbound Delivery number??
    Thanks!!

    Dear Hoo Laa,
    You may find the Sales Organisation/Distribution Channel details in PO itself (Shipping Tab). Table where you can get Sales Organisation/Disribution Channel is EKPV.
    Regards
    Samier Danish

  • Which table contains - Customer Master Changes?

    Team,
    Which table contains - Customer Master Changes?
    Please be specific; For example:
    CDHDR:
    OBJECTCLAS ?
    CDPOS:
    BJECTCLAS?
    ABNAME
    ABKEY
    HNGIND
    Thanks

    Hi Naved,
    try this:
    CDHDR-OBJECTCLAS = 'DEBI'
    CDHDR-OBJECTID = customer no.
    CDPOS-OBJECTCLAS = 'DEBI'
    CDPOS-OBJECTID = customer no.
    CDPOS-CHANGENR = CDHDR-CHANGENR
    CDPOS-TABNAME = 'KNA1'
    CDPOS-TABKEY = sy-mandt + customer no. (key of table KNA1)
    CDPOS-FNAME = field modified
    CDPOS-CHNGIND = (U Update, I Insert, D Delete)
    Regards, Manuel
    PS: Please remember to reward points if the answer is useful.

  • Which table will give me the serial numbers per each delivery?

    Which table will give me the serial numbers per each delivery?

    Hi,
    Table:
    SER01 -> provide links between delivery and serial number object.
    You can select by LIEF_NR = 'delivery number'.
    OBJK -> content of serial numbers
    You can select by OBKNR = 'SER01-OBKNR'.
    Further more:
    You can check in SE11 with name "SER0*". Then you can see a list of tables which contains link between serial number to other document.
    SER01 -> Delivery
    SER02 -> Maint.Contract (SD Order)
    SER03 -> Goods Movements
    SER04 -> Inspection Lot
    SER05 -> PP Order
    SER06 -> Handling Unit-Content
    SER07 -> Physical Inventory
    SER08 -> Purchase Order Item Serial Numbers
    Regards,
    Harry

Maybe you are looking for

  • With Reports 10G can you customize you message and stop formatting?

    Oracle, states to come here for answer. they said, OTN should be able to help. If any one knows how this can be done can you please help me out? thanks, We were told this was fixed with 10G so we upgraded to 10G. We have a report and we want it to ex

  • Clearing document in FB05

    Hi, The customer has posted a clearing document in FB05 on 10.09.2009 as posting date and document date. but the clearing date has taken to 30.09.2009. But the clearing date should be same as posting date i.,e 10.09.2009. so what could be the reason

  • Outlook 2013 is not opening.

    Hi, Today ,i have faced an issue in outlook 2013.We are using an outlook 2013 as a POP account.When i try to open the outlook it is not opening.It is showing the message the location of the path is moved to DIFFERENT LOCATION/RENAME/DELETED  I tried

  • Fast swap Vs Auto deploy

    Hi Friend's, Can you please tell me differnece betwetween fast swap and auto deploy deployments in weblogic server10. both are using in development mode only right. can I use Weblogic.Deployer tool to deploy applications in weblogic 10.3 ,we are usin

  • Getting M-Audio Keystation 61es to make sound

    I just ordered a keyboard, model given in discussion header. It says that it is just plug and play, I hooked it up to some headphones, no sound, I put on GarageBand to do stuff, no sound from computer. Any tips?