‎2008 May 14 7:41 AM
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.
‎2008 May 14 7:49 AM
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
‎2008 May 14 8:04 AM
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.
‎2008 May 14 8:06 AM
can u post the code...
have u written ur logic witgh in the form ENTRY..
POST UR FULL CODE
‎2008 May 14 8:29 AM
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.