cancel
Showing results for 
Search instead for 
Did you mean: 

Shipment Document Flow Issue

Former Member
0 Kudos

Hi,

We have configured the process like

1. Created a Sales order

2. Outbound Delivery

3. Shipment

4. GI

5. Shipment Cost

6. Invoice creation

7. Billing Document.

When we look at the document flow of the SO through VA03, the Shipment Cost, Service Acceptance and IV receipt are missing.

But when we refer to the document flow of the Shipment through VT03N we get the same.

Attached are the document flow of both SO and the Shipment.

Is it possible to have the entire thing in single document flow through VA03?

regards

joe

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Can anybody help me on this.....

Former Member
0 Kudos

Hi,

it´s not possible in standard. You could try, however, userexit LV05CFZZ. Check with an abaper.

Regards,

JM

Former Member
0 Kudos

Ok so you mean that its a Standard SAP behaviour.

It can only be done through some exit or Badi.

Thanks joan

regards

joe

bsivasankarreddy_reddy
Active Contributor
0 Kudos

Hi

Use LV05CF01 Include

Form  TRANSPORTFLUSS_LESEN

READ TABLE xvtfa WITH KEY mandt = sy-mandt

                             vbelv = transportbeleg

                             BINARY SEARCH.

   IF sy-subrc <> 0.

     SELECT * FROM vtfa APPENDING TABLE xvtfa

                          WHERE vbelv = transportbeleg

        %_HINTS ORACLE 'RULE'

                DB2 'USE VALUES FOR OPTIMIZATION'          

                DB2 '&SUBSTITUTE VALUES&'                  

* Inserted line of Note 938279

                DB6  '<IXSCAN TABLE=''VTFA'' SAP_INDEX=''0''/>'.

     SORT xvtfa BY mandt tknum vbelv posnv vbtyp_v vbeln posnn vbtyp_n.

   ENDIF.

Form  TRANSPORTFLUSS_LESEN

TABLES: vfkk.

     DATA:

     l_erdat_t1 like vbfa-erdat,

     l_erzet_t1 like vbfa-erzet,

     l_vfkk LIKE vfkk,

     w_vfkk like vfkk.

SELECT * FROM vfkk INTO l_vfkk

   WHERE fknum xvtfa-vbeln

       AND  vbtyp = 'a'.

   ENDSELECT.

   MOVE-CORRESPONDING l_vfkk TO w_vfkk.

    READ TABLE xvtfa WITH KEY mandt = sy-mandt

                               tknum = space

                               vbelv = xvtfa-vbelv

                               vbtyp_n = 'a'

                               BINARY SEARCH.

     IF sy-subrc = 0.

       LOOP AT xvtfa FROM sy-tabix.

         IF xvtfa-vbelv NE xvtfa-vbelv OR

            xvtfa-tknum  NE space.

           EXIT.

         ENDIF.

         MOVE-CORRESPONDING xvtfa TO vbfa_tab.

         vbfa_tab-vbelv = xvtfa-vbelv.

         CLEAR vbfa_tab-posnv.

         vbfa_tab-vbtyp_v = vbtyp_transport.

         vbfa_tab-erdat w_vfkk-erdat.

         vbfa_tab-erzet = w_vfkk-erzet.

         ADD 1 TO vbfa_insert.

         INSERT vbfa_tab INDEX vbfa_insert.

       ENDLOOP.

     ENDIF.


after check below document flow


Former Member
0 Kudos

Thanks Siva