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

problem in call transaction using FD33 t code

Former Member
0 Likes
1,057

Hi all i'm developing a report in that in that i'm calling a tcode FD33.

I want to skip the initial screen.For that i need to pass Customer , Credit control area and status from my program to that tcode.

But my problem is that how to pass the value to check box.

i.m writing the following code

"Set parameter ID for transaction screen field

SET PARAMETER ID 'KUN' FIELD W_ALV-KUNNR.

SET PARAMETER ID 'KKB' FIELD W_ALV-VKORG.

  • "Execute transaction FD33, and skip initial data entry screen

CALL TRANSACTION 'FD33' AND SKIP FIRST SCREEN.

So how to set the value of the STATUS check box.

thanks in advanced.

Dheeraj

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
819

use:

data: dynnr(40) value '/210'. "or number of another dynpro you wish to go

SET PARAMETER ID 'CDY' FIELD dynnr.

A.

4 REPLIES 4
Read only

andreas_mann3
Active Contributor
0 Likes
820

use:

data: dynnr(40) value '/210'. "or number of another dynpro you wish to go

SET PARAMETER ID 'CDY' FIELD dynnr.

A.

Read only

0 Likes
819

Thanks for that!

Complementary information:

*      /105 Overview checkbox

*      /110 Address    checkbox

*      /120 Central_data checkbox

*      /210 Status checkbox

*      /220 Payment_history checkbox

To check several checkbox:

SET PARAMETER ID 'CDY' FIELD '/105/110/120...etc'



Read only

Former Member
0 Likes
819

not possible to pass this check box value to FD33, you find FM or BAPI

Read only

Former Member
0 Likes
819

Hi Dheeraj ,

Try like the below code using BDC .

DATA class_name TYPE c LENGTH 30 VALUE 'CL_SPFLI_PERSISTENT'.

DATA: bdcdata_wa  TYPE bdcdata,
      bdcdata_tab TYPE TABLE OF bdcdata.

DATA opt TYPE ctu_params.

CLEAR bdcdata_wa.
bdcdata_wa-program  = 'SAPLSEOD'.
bdcdata_wa-dynpro   = '1000'.
bdcdata_wa-dynbegin = 'X'.
APPEND bdcdata_wa TO bdcdata_tab.

CLEAR bdcdata_wa.
bdcdata_wa-fnam = 'BDC_CURSOR'.
bdcdata_wa-fval = 'SEOCLASS-CLSNAME'.
APPEND bdcdata_wa TO bdcdata_tab.

CLEAR bdcdata_wa.
bdcdata_wa-fnam = 'SEOCLASS-CLSNAME'.
bdcdata_wa-fval = class_name.
APPEND bdcdata_wa TO bdcdata_tab.

CLEAR bdcdata_wa.
bdcdata_wa-fnam = 'BDC_OKCODE'.
bdcdata_wa-fval = '=CIDI'.
APPEND bdcdata_wa TO bdcdata_tab.

opt-dismode = 'E'.
opt-defsize = 'X'.

CALL TRANSACTION 'SE24' USING bdcdata_tab OPTIONS FROM opt.


With Regards,

Sudhir S