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

Error Message in calling output type

Former Member
0 Likes
902

Has anyone encountered an error " Processing routine ENTRY_TEST in program ZTEST does not exist" when calling an output type? The output type has already been configured and in the print program ZTEST, subroutine ENTRY_TEST is there.

4 REPLIES 4
Read only

Former Member
0 Likes
576

hi,

Go to TCODE /nNACE

if ur output type is related to order then choose V1 , billing V3

choose output types button in the application tool bar

then choose the output type which u r using...

in the left side u can see processing routines...

double click that

there u can give the program name which u want to call..

Program ZLS_TEST

FORM routine ENTRY

then go to SE38

ur logic should be within the form ENTRY...

REPORT zls_proforma_invoice.

INCLUDE rvadtabl.

DATA: retcode TYPE sy-subrc. "Returncode

FORM entry USING return_code type any us_screen type any."#EC CALLED

CLEAR retcode.

data: v_update(1) type c.

clear v_update.

*----


*

ENDFORM

Edited by: Sumi Vasu on May 14, 2008 8:49 AM

Read only

Former Member
0 Likes
576

The form routine ENTRY_TEST is already there in transaction NACE and has been configured. However, i still get the error when the output type is processed.

Read only

0 Likes
576

can u post the code...

have u written ur logic witgh in the form ENTRY..

POST UR FULL CODE

Read only

0 Likes
576

Yes the logic is inside the form routine...

the program type is a subroutine pool.

my code is like this...

PROGRAM ZTEST.

Data declaration.

INCLUDE SUBROUTINES.

Form Entry using return_code type sy-subrc

us_screen type c.

***********

Endform.