cancel
Showing results for 
Search instead for 
Did you mean: 

Output type not appearing in interco. document -> Req. 905 not fulfilled

0 Kudos

Hi everyone. WHen i am creating my intercompany document, no output type is appearing. I have maintained VV31 condition records as well as WE20 settings. Also i have set output device to LOCL .When i click on Analysis output , it gives me

RD00 502 Output ignored (requirement 905 not fulfilled).

Any idea on this?

Accepted Solutions (0)

Answers (2)

Answers (2)

Shiva_Ram
Active Contributor
0 Kudos

Routine 905 looks like a customized routine, so you need to check the coding on what the requirements is.

However, did you release the billing to accounting through t.code VF02 (by clicking the flag button on the top). After releasing the document, try to print.

Regards,

0 Kudos

req 905 checks if the invoice created before the interco document has been succesfully posted. in my case yes, the accounting document has been created for the invoice.

FORM KOBED_905.

sy-subrc = 4.

check komkbv3-rfbsk = 'C'.

sy-subrc = 0.

ENDFORM.

FORM KOBEV_905.

ENDFORM.

jpfriends079
Active Contributor
0 Kudos

Is it a newly develop routine.

I'm not technical guy.

But, in my opinion, the code need further work-on.

There are

- no IF statement

- no READ statement

- no table-field refer

- logic for processing missing


FORM KOBED_905.

sy-subrc = 4.
check komkbv3-rfbsk = 'C'.
sy-subrc = 0.

ENDFORM.

FORM KOBEV_905.
ENDFORM.

For instance in this code, if there is no READ Statement, how

sy-subrc = 4

Then how system will judge 'READ' statement failed i.e., no record is found with key specified by you.

Check/discuss with ABABer teammate for this.

Further, try to manually put this output type in your desire billing type.

Regards

JP

former_member184701
Active Contributor
0 Kudos

dear friend,

please look what req 905 does (take abaper if you need) -

your custom requirement wasn't done successfully.

good luck!