‎2010 Nov 30 1:33 PM
Hi Gurus,
I m developing a report. I need to call prog. rm07docs
MY statement is
SUBMIT zmm_rm07docs WITH matnr-low = P_i_a621-matnr
WITH bwart-low = 601
WITH ar_flag = 'X'
WITH bwart-high = 602
WITH budat-low = s5_datbi-low
WITH budat-high = s5_datbi-high AND RETURN.
but my parameters is not carried to the rm07docs prog.
What is the problem?
THanks in advance
‎2010 Nov 30 1:40 PM
Hi
The single data for select-option have to be transfered without LOW, if you need to transfer a range, you have to use IN option
RANGES: R_BWART FOR MSEG-BWART.
R_BWART(3) = 'IBT'.
R_BWART-LOW = '601'.
R_BWART-HIGH = '602'.
APPEND R_BWART.
SUBMIT zmm_rm07docs
WITH matnr = P_i_a621-matnr
WITH bwart in R_BWART
WITH ar_flag = 'X'
WITH budat IN s5_datbi AND RETURN.
Max
‎2010 Nov 30 1:40 PM
Hi
The single data for select-option have to be transfered without LOW, if you need to transfer a range, you have to use IN option
RANGES: R_BWART FOR MSEG-BWART.
R_BWART(3) = 'IBT'.
R_BWART-LOW = '601'.
R_BWART-HIGH = '602'.
APPEND R_BWART.
SUBMIT zmm_rm07docs
WITH matnr = P_i_a621-matnr
WITH bwart in R_BWART
WITH ar_flag = 'X'
WITH budat IN s5_datbi AND RETURN.
Max
‎2010 Nov 30 1:51 PM
SUBMIT zmm_rm07docs WITH manr-low = P_i_a621-matnr
WITH bwart-low = 601
WITH ar_flag = 'X'
WITH bwart-high = 602
WITH budat-low = s5_datbi-low
WITH budat-high = s5_datbi-high AND RETURN.
this is also not working.
What may be the problem.
‎2010 Nov 30 2:02 PM
Beltha
I've just posted in my previuos answer how the SUBMIT should be written
Max