Application Development 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: 

submit - PFAL - set radio button

Former Member
0 Kudos

Hi,

I want to call transaction PFAL through my report, passing object ID and Object tyope fields.

I had used syntax

SUBMIT rhaleini USING SELECTION-SCREEN '1000'

WITH pchotype EQ 'P'

WITH pchobjid IN gr_objid

WITH pchztr_d EQ 'X'.

Here everything is working fine except radio button selection,

I want Today as selected instead of All, but as these are coming through LDB i am not able to set that radio button WITH pchztr_d EQ 'X'. is not working.

Please suggest.

Thanks

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Can you use

USING SELECTION-SET variant

if not does this work for you.

SUBMIT rhaleini USING SELECTION-SCREEN '1000'
WITH pchotype EQ 'P'
WITH pchobjid IN gr_objid
"WITH pchztr_d EQ 'X'.
WITH PCHOBEG EQ SY-DATUM.

A

4 REPLIES 4

Former Member
0 Kudos

Can you use

USING SELECTION-SET variant

if not does this work for you.

SUBMIT rhaleini USING SELECTION-SCREEN '1000'
WITH pchotype EQ 'P'
WITH pchobjid IN gr_objid
"WITH pchztr_d EQ 'X'.
WITH PCHOBEG EQ SY-DATUM.

A

0 Kudos

no even WITH PCHOBEG EQ SY-DATUM.

is not working.

for that i think first we need to write the code so that 'Other period' button will be clicked.

Thanks

0 Kudos

Why don't you create a variant and submit the report with that ?

A

Former Member
0 Kudos

Pass pchtimed eq 'D' and it is working