‎2008 Dec 24 6:02 AM
Hi all,
In our requirement we are calling another program from our current program .
In the current program( from which we are calling ) we are giving file name in the selection screen
and when we run the current program we are successfully going to other program but our main requirement is to higlight the file name which we had given earlier .
Note : The called program doesnt have any selection screen.
‎2008 Dec 24 6:05 AM
HI
use EXPORT and IMPORT key words for passing data from one program to another program.
as the called program is available in the same session you can use above key words which means you are accessing ABAP MEMORY.
You can also use SET and GET key words which means SAP memory
take F1 help there are examples tooo and detailes explanation abou the same
Regards
Ramchander Rao.K
Edited by: Ramchander Krishnamraju on Dec 24, 2008 7:05 AM
‎2008 Dec 24 6:05 AM
HI
use EXPORT and IMPORT key words for passing data from one program to another program.
as the called program is available in the same session you can use above key words which means you are accessing ABAP MEMORY.
You can also use SET and GET key words which means SAP memory
take F1 help there are examples tooo and detailes explanation abou the same
Regards
Ramchander Rao.K
Edited by: Ramchander Krishnamraju on Dec 24, 2008 7:05 AM
‎2008 Dec 24 6:08 AM
Hi ,
what do you mean by higlight the file name which we had given earlier .
you can do one thing create a Tcode using se93 for your called program and by using call transaction statment you can call your program
‎2008 Dec 24 6:09 AM
Hi,
ur calling another program by using SUBMIT ,
So u can use SUBMIT and RETURN
I think it is useful.....
‎2008 Dec 24 6:13 AM
hi,
SUBMIT report1 USING SELECTION-SCREEN '1100'
WITH SELECTION-TABLE rspar_tab
WITH selcrit2 BETWEEN 'H' AND 'K'
WITH selcrit2 IN range_tab
AND RETURN.
try to use the concept in the code..
Pass the select-option variable like this..
hope this will help you..
regards,
vijay.R
‎2009 Dec 18 9:44 AM