‎2007 Jul 25 4:03 PM
Hi all,
I have requirement saying that transfer data from one program to another transaction selection screen.
Requirement is.
In a programi will l have final data in one internal table.
This data i need to send it for another program selection screen as input.
Please provide me the logic.
Thanks in advance
‎2007 Jul 25 4:12 PM
SUBMIT RMCB0300 WITH SL_WERKS-LOW EQ SO_WERKS-LOW
WITH SL_MATNR IN SO_MATNR
WITH VA EQ 'X'
WITH SL_SPMON-LOW EQ W_BUDAT1
WITH SL_SPMON-HIGH EQ W_BUDAT1
WITH SL_MTART-LOW EQ 'ROH'
WITH SLV_NO EQ 'STOCK'
EXPORTING LIST TO MEMORY AND RETURN.
‎2007 Jul 25 4:05 PM
u need to use SUBMIT statement....
check the syntax for SUBMIT wherein u can send either data value or internal table data...
‎2007 Jul 25 4:10 PM
use the first program as an include for the second program
then in the intilisation of the second program
use the values of the internal table of 1st program.
regards,
srinivas
<b>*reward for useful answers*</b>
‎2007 Jul 25 4:12 PM
SUBMIT RMCB0300 WITH SL_WERKS-LOW EQ SO_WERKS-LOW
WITH SL_MATNR IN SO_MATNR
WITH VA EQ 'X'
WITH SL_SPMON-LOW EQ W_BUDAT1
WITH SL_SPMON-HIGH EQ W_BUDAT1
WITH SL_MTART-LOW EQ 'ROH'
WITH SLV_NO EQ 'STOCK'
EXPORTING LIST TO MEMORY AND RETURN.
‎2007 Jul 25 4:21 PM
Hi,
Try this way,
<b>SUBMIT zbeisr35 WITH p_rfc EQ 'X' AND RETURN.</b>
Regards,
Marcelo Ramos
‎2007 Jul 27 1:53 AM
HI ,
use the submit stmt and find the syntax in help
the diffrent ways you can pass the data through submit depending on your requirement.