Application Development and Automation 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: 
Read only

call transaction

Former Member
0 Likes
778

I had a report in which handling unit is a field. so when i click on handling unit , the user should go the HUMO transaction code skipping first screen. ho wto pass the parameters from the program

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
675

get parameter id of the field you are going to pass.

if parameter id is 'PID', field value is 'FVAL' and tcode is 'TCOD'.

SET PARAMETER ID 'PID' FIELD FVAL.

CALL TRANSACTION 'TCOD' AND SKIP FIRST SCREEN.

to get Prameter id, goto technical setting or screen painter(display mode) where you find PID of the field.

Reward points if helpful.

Regards,

Ashok

I had a report in which handling unit is a field. so when i click on handling unit , the user should go the HUMO transaction code skipping first screen. ho wto pass the parameters from the program

4 REPLIES 4
Read only

Former Member
0 Likes
675

which fields u r going to pass

Read only

Former Member
0 Likes
676

get parameter id of the field you are going to pass.

if parameter id is 'PID', field value is 'FVAL' and tcode is 'TCOD'.

SET PARAMETER ID 'PID' FIELD FVAL.

CALL TRANSACTION 'TCOD' AND SKIP FIRST SCREEN.

to get Prameter id, goto technical setting or screen painter(display mode) where you find PID of the field.

Reward points if helpful.

Regards,

Ashok

Read only

Former Member
0 Likes
675

I am going to pass handling unit number , it is a select option , so parameter ID cant pass.

Thanks,

Read only

Former Member
0 Likes
675

Hi,

Record BDC for HUMO transaction and then pass the handling unit number ,what u do in normal BDC in call transaction mode