cancel
Showing results for 
Search instead for 
Did you mean: 

Packing List not printing Material Details

Former Member
0 Kudos

Hi Gurus,

I have a problem with Packing List, after applying Support Packs the Packing List is not printing the Material details i've experimented with Paragraph format yet of no use,

however i identified that a field venum is not getting assigned while printing the Material details, when i assign it with the value of shenr it is printing the Material details, i can change the Print Program but i dont know how it'll effect please let me know if any altenate solution is there at the earliest

thanks in advance

Regards,

Karthik

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi ,

Please use this function Module to get all Packing Material details.

SD_DELIVERY_PACKING_VIEW.

Thanks.

Answers (3)

Answers (3)

Former Member
0 Kudos

First Of all Thanks to Gagan barik and F. Bernsen.

Gagan the Function Module you suggested was helpful however it is already being used in the Program thanks for the Reply,

Bernsen i've changed the Print Program as u've Suggested and it solved my Problem Thanks

The Code i Inserted is as follows.

After getting the Values from the Function Module to the Table XVBPLK and XVBPLP i modified it as below

LOOP AT XVBPLK INTO GS_XVBPLK.

+READ TABLE XVBPLP INTO GS_XVBPLP WITH KEY VENUM = ' '. "SPACE

V_IDX = SY-TABIX.

IF SY-SUBRC = 0.

GS_XVBPLP-VENUM = GS_XVBPLK-VENUM.

MODIFY XVBPLP INDEX V_IDX FROM GS_XVBPLP TRANSPORTING VENUM.

ENDIF.

CLEAR : GS_XVBPLK,GS_XVBPLP,V_IDX.

ENDLOOP.

Former Member
0 Kudos

Thanks F. Bernsen and Gagan

Edited by: vijay karthik on Apr 1, 2009 6:01 AM

Former Member
0 Kudos

This message was moderated.