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 / Submit program issue.....

Former Member
0 Likes
680

Hi All,

I have a problem with Call transaction / Submit program.

In a custom report if the user clicks on the material number it should take him to the Material BOM display screen.

Since program 'SAPMC29S' is not a executable program, i can not use SUBMIT statement (let me know if we can use it). I have to use CALL TRANSACTION for T-Code CS02. In CALL TRANSACTION, there are couple of issues.

First, it takes me to first screen of 'CS02' which is not useful for the user and he wants to skip it. Since I am using bdc data to fill the selection screen...I can not use the SKIP FIRST SCREEN statement.

Second, even if i dont skip first screen and user presses ENTER, it takes the user to the next screen but the second screen is different from what it is normally. The layout is different.

Can someone help me on this?

Thanks in advance

Regards,

Ankit

3 REPLIES 3
Read only

Former Member
0 Likes
561

why dont you use parameter ids..

Material, plant and bom usage, all has parameter ids..

do set parameter id...

and call transaction cs02 and skip first screen, will directly take you to second screen , right ?

while using BDc, some screens appear different..

Read only

Former Member
0 Likes
561

HI

Only for display purpose use cs03 and in that Material no, plant and bom usage is having parameter id and only alternative bom is not having the id. If you dont have alternative bom in your data then supply only this paramater ids and u can skip the screen.

SET PARAMETER ID: 'CAR' FIELD carrid,

'CON' FIELD connid.

CALL TRANSACTION 'FLIGHT_TA' AND SKIP FIRST SCREEN.

Hope will solve ur issue.

thiru

Read only

Former Member
0 Likes
561

Thanks guys..this helped.