‎2008 Jun 05 12:29 PM
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.
‎2008 Jun 05 12:33 PM
Hi
Write in PBO
loop at screen.
screen-input = '1'.
modify screen.
endllop.
Aditya
‎2008 Jun 05 12:35 PM
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.
‎2008 Jun 05 12:49 PM
Thanks,
But my report calling standard
transaction i can't change that
so how can i write get parameter statements in that.
Regards,
Vandu.
‎2011 Jul 28 4:25 PM
‎2011 Aug 17 11:40 AM
Vandana can you please tell me how you have solved that problem. I have the same problem.
Thanks in Advance,
fayaz.