‎2008 May 05 5:54 PM
hi all,
in ALV selection screen,two fields to be developed..
either of them can be used to execute the report.
so here we need develop it as
-
salse order :
OR
ship visit notification :
-
how can we acheive this.kindly reply me
‎2008 May 05 6:13 PM
hi ,
for this you need to use the varient ....
if the varient = varient1 then sales order will beexecuted
if the varient = varient2 then ship visit notification will be executed..
regards,
venkat
‎2008 May 05 6:21 PM
Hi,
You can use radio button. If one radio button is selected report output should be salse order or else other
SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
PARAMETER : sp_sale radiobutton group rad USER-COMMAND radio DEFAULT 'X',
sp_visit RADIOBUTTON GROUP rad.
SELECTION-SCREEN END OF BLOCK b1.
if sp_sale = 'X'.
"Display sales details.
else.
"Display ship visit notification
endif.
Thanks,
Sriram Ponna.