cancel
Showing results for 
Search instead for 
Did you mean: 

Immediat RSEOUT00 after Idocs creation

0 Kudos

Hi,

I'm trying to submit RSEOUT00 just after having created the idocs with IDOC_CREATE_ON_DATABASE.

I do see the created IDocs but the status remain at 30 and of course there is no file generated.

I was thinking in using this to collect all the Idocs in one file.

I've tried :

- Commit work before and after.

- commit work and wait before and commit work after.

- and even via Job thought with immediat start

But still, I have no error message but still no file.

I'm at lost of what to do now. Help would be really appreciated.

Thank in advance !

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

NG,

Check in SM58 of R3 whether you have any errors? Check in sxmb_moni whether you see the Idoc or not?

---Satish

0 Kudos

No error ...

The Idocs exists with a status to 30...

If I execute RSEOUT00 after the program which created the Idocs, with exactly the same parameters than before, it does everything fine,

0 Kudos

In case someone else gets the same problem.

I have solved the problem by delaying the job of 1 minute...

Not the perfect solution but at least it works.

Thanks

Former Member
0 Kudos

Hi Sylvie,

My requirement is almost the similar as yours. I want to change the status of the created idoc from 30 to 03 just after the zprog which is creating the IDOCs in Collect Idocs mode. I trying the below code

loop AT lt_edidc INTO wa_edidc1.

lw_idoc_d-sign = 'I'.
lw_idoc_d-option = 'EQ'.
lw_idoc_d-low = wa_edidc1-docnum.

SUBMIT rseout00 WITH docnum = lw_idoc_d-low AND RETURN.

endloop.

Here I am facing two issues.

1) I am passing data from the work area and not by the internal table so I am getting a interactive screen saying "one Idoc Selected " after each loop pass.

2) even after submitting the report rseout00 the status of the created idocs are not changing from '30' to '03'.

I hope that I have explained the issue and since you have worked on it please help me to resolve it.

Thanks & Regards,

Ramesh