cancel
Showing results for 
Search instead for 
Did you mean: 

Processing routine ENTRY in program ZVBIRXXXXdoes not exist

Former Member
0 Kudos

Hello experts,

I have a requirement of printing an invoice on click on SAVE button for billing document VF02.

I have created a Z program and Z script.

when i configure the output type ZWIA through the path GOTO->HEADER->OUTPUT in t-code VF02, it is displayed in red and on clicking 'processing log' error message "Processing routine ENTRY in program ZVBIRXXXXdoes not exist" is displayed.

I already checked the following:

1. Program and script are active.

2. Configuration is properly done in NACE.

Please note in t-code VF02, when i click 'Issue output to' and then select my output type ,program is executed normally. But, it shows the error in above defined scenario.

Please pour in your suggestions.

Regards,

Richa

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member634038
Participant
0 Kudos

Hey,

What is the solution for this Error message, even I'm getting the same error in V3 Output processing.

vijaymanikandan
Contributor
0 Kudos

Hi

Check the return code that you are passing from the Program.

Check the configuration in NACE to which application this output is assigned.

Check the FORM and ENDFORM in the program.

Br,

Vijay V

Former Member
0 Kudos

Hi Vijay,

Which sy-subrc do u want me to check?

Return code is 999 when i try to execute the program from Issue Output to.

In this case it runs normally.

But when output is created from GOTO->HEADER->OUTPUT it throws an error. It does not reach the FORM ENTRY statement in this case. So i am unable to check the sy-subrc value.

More suggestions please.

Regards,

Richa

vijaymanikandan
Contributor
0 Kudos

Hi

This seems to be a problem in the NACE configuration for your output type. Try like this. Enter output manually in the order and set the timing to 1 and run RSNAST00 and check out manually.

Br,

Vijay V

Former Member
0 Kudos

Hi Vijay,

I am unable to print any output through RSNAST00 program.

Regards,

Richa

Edited by: richa.aggarwal1988 on Mar 7, 2012 10:28 AM

vijaymanikandan
Contributor
0 Kudos

Hi

Have you set the timing to 1 in the output that you have entered manually in the order?

Former Member

Hi Vijay,

I was able to find the solution.

While calling ENTRY routine following code has to be used:

 
FORM entry USING ent_retco ent_screen.
  CLEAR : ent_retco.

Variable ent_retco has to be cleared.

Regards,

Richa