‎2008 Feb 05 11:04 AM
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
‎2008 Feb 05 11:15 AM
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.
‎2008 Feb 05 11:15 AM
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.
‎2008 Feb 05 11:18 AM
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