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

Populate Screen Fields

Former Member
0 Likes
997

Hello All,

I got one requirement like

when i run my report it calls another transaction(Modulepool Program) and

my report fields are populated into that transaction screen fileds and ,The transaction screen fields are in gradeout mode.

how i can i solve this problem ?

Regards,

Vandu.

5 REPLIES 5
Read only

Former Member
0 Likes
709

Hi

Write in PBO

loop at screen.

screen-input = '1'.

modify screen.

endllop.

Aditya

Read only

Former Member
0 Likes
709

Hi Vandana,

this can be solved using set parameter and get parameter.

follow the following ex:

DATA: carrier TYPE spfli-carrid,

connection TYPE spfli-connid.

START-OF-SELECTION.

SELECT carrid connid

FROM spfli

INTO (carrier, connection).

WRITE: / carrier HOTSPOT, connection HOTSPOT.

HIDE: carrier, connection.

ENDSELECT.

AT LINE-SELECTION.

SET PARAMETER ID: 'CAR' FIELD carrier,

'CON' FIELD connection.

CALL TRANSACTION 'DEMO_TRANSACTION'.

similarly call the get parameter function in the module program....

u can hav a demo prog on get parameter on pressing f1 help after typing get parameter.

to gray out, in the screen layout, set the output only property of the screen element.

i hope it helps. do reward if it does.

Read only

0 Likes
709

Thanks,

But my report calling standard

transaction i can't change that

so how can i write get parameter statements in that.

Regards,

Vandu.

Read only

Former Member
0 Likes
709

Solved

Read only

0 Likes
709

Vandana can you please tell me how you have solved that problem. I have the same problem.

Thanks in Advance,

fayaz.