Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling Transaction VL32N

Former Member
0 Kudos

Hello All,

I am calling the transaction VL32N. But Im getting Blank delivery.

could you please tell me what is the problem and propose solution.

Im using correct Parameter ID 'VL'.

Please find my coding below.


*     Set Parameter ID with Inbound Delivery
      SET PARAMETER ID 'VL' FIELD g_t_final-vbeln.

*     Call Transaction
      CALL TRANSACTION 'VL32N' AND SKIP FIRST SCREEN.

Good answers will be appreciated.

Thanks in advance.

Best Regards,

Sasidhar Reddy Matli.

2 REPLIES 2

Former Member
0 Kudos

Hi,

In g_t_final-vbeln is value comming up.....the code you have pasted is perfect.

Beter check in sy-ucom when you are clicking on the vbeln in your alv.

Former Member
0 Kudos

Hello,

Better you try in this way i saw u r code every thing is fine but try in this may.

Create one variable.

data: y_v_vbeln type VBELN_VL.

clear y_v_vbeln.

move: g_t_final-vbeln to y_v_vbeln .

SET PARAMETER ID: 'VL' FIELD y_v_vbeln.

CALL TRANSACTION 'VL32N' AND SKIP FIRST SCREEN.