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 STATEMENT

Former Member
0 Likes
717

Hi all,

I am using SUBMIT statement to call a standard report in My program. But the SUBMIT statement is not supported in higher releases like BW 3.1, BI 7, mySAP SCM or ECC 6 etc ..

So I need a alternative for SUBMIT report Statement for higher versions.

Kindly Guide.

Thanks

Shilpa

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
691

Hi !

We do have ECC 6.0 and SUBMIT is working very fine....

So - what error's do you get when you're SUBMITting.... ??

Regards

rainer

6 REPLIES 6
Read only

Former Member
0 Likes
691

used call tanscation .

exanple call transcation se38.

Read only

0 Likes
691

Hi

I have to call a Standard program not a transaction.....

Code in 4.6C is as follows..

SUBMIT rsusr100
         WITH user  IN s_user
         WITH vondatum = p_from   "Changes since
         WITH bisdatum = p_to     "Changes up to
         WITH add_prof IN s_prof1
         WITH del_prof IN s_prof1
         EXPORTING LIST TO MEMORY
         AND RETURN.

  CALL FUNCTION 'LIST_FROM_MEMORY'
       TABLES
            listobject = t_object
       EXCEPTIONS
            not_found  = 1
            OTHERS     = 2.

Read only

0 Likes
691

Shilpa,

Try using INCLUDE RSUR100.

K.Kiran.

Read only

0 Likes
691

Hi !

I've just checked the rsusr100's selection-screen....

The fieldnames have changed.

vondatum is now FDATA

bisdatum is now TDATE

what ever these changes in SAP-System are good for !!

Try this changes and see if it works.

BUT you'll face another problem !!

The rsusr100's output is now a ALV-Grid so this

"Exporting list to memory" things are not workling anymore - because there is no list !

It may work if the submitted program is so "intelligend" and process a ABAP list und CALL-Scenarios but I'm shure that may not happen.

So- you'll have to go into the rsusr100's code....

You may copy it and process an ABAP list. Then your SUBMIT is working as before !

Regards

rainer

Some points would be nice if that helped....

Read only

0 Likes
691

HI,

Thanks for your replies.

How Can I get the previous code of rsusr100(with List display) report so that i can copy to another Z report?

Thanks and regards

Shilpa Dhawan

Read only

Former Member
0 Likes
692

Hi !

We do have ECC 6.0 and SUBMIT is working very fine....

So - what error's do you get when you're SUBMITting.... ??

Regards

rainer