Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Submit rm07docs

Former Member
0 Likes
1,782

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,273

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

3 REPLIES 3
Read only

Former Member
0 Likes
1,274

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

Read only

0 Likes
1,273

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.

Read only

0 Likes
1,273

Beltha

I've just posted in my previuos answer how the SUBMIT should be written

Max