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 CS15

Former Member
0 Likes
790

Hi gurus.

I am calling transaction cs15 tru following method.

SET PARAMETER ID 'MAT' FIELD it_final-matnr.

SET PARAMETER ID 'WRK' FIELD it_final-werks .

CALL TRANSACTION 'CS15' AND SKIP FIRST SCREEN.

in transction cs 15's screen there are check boxes DIRECT & MATERIAL BOM . I want from above code these check boxes as checked when i call this tracation(CS15).

how can i set Direct & Material BOM 'X' from calling program.

Points will be rewared.

Regards

Rajesh

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
590

Do a BDC recording for your requirement(ONLy for filling values in 1st screen of CS15).

Pass the BDC internal table to the CALL TRANSACTION statement in E (error) mode.

The control will stop at the first screen.

2 REPLIES 2
Read only

Former Member
0 Likes
591

Do a BDC recording for your requirement(ONLy for filling values in 1st screen of CS15).

Pass the BDC internal table to the CALL TRANSACTION statement in E (error) mode.

The control will stop at the first screen.

Read only

Former Member
0 Likes
590

Hi,

You can call CALL TRANSACTION stmt along with bdcdata internal table and try to insert any value in of the screen fields of the first screen then the process will display the first screen.

Rgds,

Bujji