Processing routine ENTRY in program ZINVOICE does not exist

Hi all,
I am finding an error after taking the print out of Excise Invoice in Tcode J1IP.
     We had a requirement where we created new output type and  changed  the driver program for the output assignment earlier this invoice was developed in script we changed it to a smartform. and assigned in NACE.
Its working fine we r getting the printout also after getting the print out when I goto tcode VF02 a error log is being created
when i click on the error log its showing
Processing routine ENTRY in program ZINVOICE does not exist
Zinvoice is the driver program.
I hope to get inputs from you in resolving the issue.
Hope to get the reply at the earliest
Shivakumar K B
9886920258

This error message is quite tricky and misleading one.
Make sure in your custom program, all the logic must be in a FORM-ENDFORM.
form entry.
Logic...
endform.
this form may have any name (not needed to be only ENTRY).
The signification of the form is that this name will be given in the subroutine name in NACE transaction.
the standard program RSNAST00 which triggers all the print program dynamically.
it will fetch the name of the print program and form name from TNAPR table and calls the same.
perform (TNAPR-RONAM) in (TNAPR-PROGNAME).
At run time, the TNAPR-RONAM and progname will be filled with your z program name and the subroutine name.
Rgds,
SaiRam

Similar Messages

  • Processing routine ENTRY in program ZRVADIN0111 does not exist for smartfor

    Hi ,
    This is the log , I am getting in vf02 ..
    ==========log==============
    Message Text
    Processing routine ENTRY in program ZRVADIN0111 does not exist
    Technical Data
    Message type__________ E (Error)
    Message class_________ VN (Output control)
    Message number________ 068
    Message variable 1____ ENTRY
    Message variable 2____ ZRVADIN0111
    Message variable 3____ 
    Message variable 4____ 
    Message Attributes
    Level of detail_______ 
    Problem class_________ 0
    Sort criterion________ 
    Number________________ 1
    ======================================end log========================
    My driver program is same as below and form is ZSUNDRY_INVOICES_VENU'
    ================my driver program ===================
    *& Report  ZRVADIN0111
    REPORT  ZRVADIN0111.
    TABLES : nast.
    *TYPES : BEGIN OF ty_header,
           vbeln TYPE vbeln_vf,
           fkdat TYPE fkdat,
           XBLNR TYPE XBLNR_V1,
           STCEG TYPE STCEG,
           kunrg TYPE KUNRG,
           name1 TYPE AD_NAME1,
           city1 TYPE AD_CITY1,
           post_code1 TYPE AD_PSTCD1,
           street TYPE AD_STREET,
           total TYPE NETWR_FP,
           END OF ty_header.
    DATA : sum TYPE i VALUE '0'.
    *TYPES : BEGIN OF ty_item,
           matnr TYPE matnr,
           arktx TYPE arktx,
           fkimg TYPE fkimg,
           VRKME TYPE VRKME,
           netwr TYPE NETWR_FP,
           MWSBP TYPE MWSBP,
           unipr TYPE NETWR_FP,
           END OF ty_item.
    DATA : gs_header TYPE zsd_inv_header,
           it_item TYPE STANDARD TABLE OF zsd_inv_items.
    FIELD-SYMBOLS : <fs_item> TYPE zsd_inv_items.
    DATA : gv_adrnr TYPE adrnr.
    *data: s_vbeln type vbeln_vf.
    *select-options : so_vbeln for s_vbeln.
    *START-OF-SELECTION.
    *form entry.
    *--- Get header
      SELECT SINGLE vbeln fkdat xblnr stceg kunrg bukrs
               FROM vbrk INTO gs_header
               WHERE vbeln = nast-objky.
      SELECT matnr arktx fkimg vrkme netwr mwsbp
           INTO CORRESPONDING FIELDS OF TABLE it_item
           FROM vbrp WHERE vbeln = gs_header-vbeln.
        LOOP AT it_item ASSIGNING <fs_item>.
          <fs_item>-unipr = <fs_item>-netwr / <fs_item>-fkimg.
          sum = sum + <fs_item>-netwr.
          ENDLOOP .
          gs_header-total = sum.
          CLEAR : gv_adrnr.
    SELECT SINGLE adrnr FROM kna1 INTO gv_adrnr WHERE kunnr = gs_header-kunrg.
       SELECT SINGLE name1 city1 post_code1 street FROM adrc
              INTO (gs_header-name1,gs_header-city1,gs_header-post_code1,gs_header-street)
              WHERE ADDRNUMBER = gv_adrnr.
    *end-OF-SELECTION.
    data: fm_name type rs38l_fnam.
    ****calling entry routine
    *FORM entry USING return_code us_screen.
    CLEAR retcode.
    xscreen = us_screen.
    PERFORM processing USING us_screen.
    CASE retcode.
       WHEN 0.
         return_code = 0.
       WHEN 3.
         return_code = 3.
       WHEN OTHERS.
         return_code = 1.
    ENDCASE.
    *ENDFORM.                    "entry
    calling smartfrom from ABAP
    call function 'SSF_FUNCTION_MODULE_NAME'
      exporting
        formname                 = 'ZSUNDRY_INVOICES_VENU'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
      IMPORTING
        FM_NAME                  = FM_NAME
      EXCEPTIONS
        NO_FORM                  = 1
        NO_FUNCTION_MODULE       = 2
        OTHERS                   = 3.
    if sy-subrc <> 0.
       WRITE: / 'ERROR 1'.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    CALL FUNCTION fm_name
      EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
        IS_HEADER                  = gs_header
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        IT_ITEMS                   = it_item
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *call function FM_NAME
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
    TABLES
       GS_MKPF                    = INT_MKPF
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5.
    *if sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *endif.
    end of call function module from abap
    *endform.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    can any body help me with proper code , i have to insert in driver program ..to retify error ...
    thanks
    Regards,
    Venu.

    Call transaction NACE (type V1 for Sales Order) look for the required output type and check program and form in processing routines. (and add code markups when you copy source code in forums)
    Regards,
    Raymond

  • Error "Processing routine ENTRY in program ztest does not exist"

    Hi All ,
               I facing problem in Samrt form  driver program
            Error "Processing routine ENTRY in program ztest does not exist"
             when i given print through T.Code Me22n
             Can you suggest  me why i facing this problem.........
      This is below my driver program code:
    Moderator message - Please respect the 2,500 character maximum when posting. Post only the relevant portions of code
    Edited by: Rob Burbank on Mar 10, 2010 9:53 AM

    Hi nIck,
             I  write the code this way
              can you suggest me any changes are require
      FORM ENTRY USING RETURN_CODE TYPE I US_SCREEN TYPE C.
      PERFORM DATA_FETCH.
      PERFORM DATA_PROCESS.
      PERFORM CALL_FORM.
    ENDFORM.                    "entry
    *&      Form  data_fetch
          text
    FORM DATA_FETCH.
      PONUMBER = NAST-OBJKY.
    ENDFORM.                    "data_fetch
    Regards
    Raju
    Edited by: raju mahapatra on Mar 11, 2010 7:23 AM

  • Processing routine ENTRY in program zprog does not exist

    Hi experts,
    when i try to see print preview from ME23N it is showing status message like below....
    "Processing routine ENTRY in program prog does not exist"
    Message no. VN068
    Any help....
    Regards
    Ram

    As per my understanding, when you press print priview sap script is called by this.
    This sap script name and its driver routing in maintained in a database table .check t*
    As per the message this is missing.You need to update the processing routing in this table.
    Hope this helps you.

  • Processing routine ENTRY_ERS_SMART in program ZPDIV_SBINVOICE does not exis

    Hi experts,
    We created new smartform and print program for ERS invoice and the objects are still in the development system. The output type was triggered when invoice is created however it has an error in the processing log and the error is "Processing routine ENTRY_ERS_SMART in program /AMA/PDIV_SBINVOICE does not exist".
    The program /AMA/PDIV_SBINVOICE has subroutine ENTRY_ERS_SMART but I don't know why it has a error message like this.
    Any ideas?
    Thanks,
    Eric

    Hi
    Check this report RSNAST00 and debug the code
    I think you have not maintained the print parameters in your driver program
    please check the same
    for reference check the driver program RLB_INVOICE
    and this perform
    determine print data
    PERFORM set_print_data_to_read USING lf_formname
    CHANGING ls_print_data_to_read
    cf_retcode.
    Regards
    Shiva

  • Message no. DS017 Program 4FBU does not exist

    When I run FM Report Painter "Budget Consumption", there is Message no. DS017 Program 4FBU does not exist. How could I resolve?
    Regards
    Ton

    Hi Eli
    Thank you for your advised. I found that the report "4FBUDCON" & "4FBUDGET" in library 4FM are not assigned to report group.
    I use GR59 to import library "4FBC" & "4FBU" that missing from my target client. These report is in Library "4FM" and Table "FMRBCS" (compliance with reports). Then, I go to GR52 to generate Report Group but the message appeared :
    - Report 4FM 4FBUDCON does not exist.
    - Report group 4FBC does not contain any reports
    So I try GRR3 to execute report and the system request to assign this report to report group. I assign report group 4FBC, the below message occurred.
    - Objects with leading numerals may not be created.
    My issue is related with T-Code FMRP_RW_BUDCON - Overview of Budget Consumption cannot be executed. SE93 advisewd that this T-Code related to Report Group 4FBC, while I cannot generate report group 4FBC.
    In FME2, I tried execute all reports but It seem like not related to this t-code. Could you please advice more for report copying process from source client 000?
    Regards,
    Ton

  • Object directory entry R3TR EVEN EVEN_BEY5RHD67LRF9UT6G9LXEZUK6 does not exist

    Hi BW Experts,
    I´m facing a Problem while releasing a Transport from Dev to Quality System. The consisty check shows the following objekt as not available:
    Object directory entry R3TR EVEN EVEN_BEY5RHD67LRF9UT6G9LXEZUK6 does not exist
    A check for the Object: R3TR EVEN showed that it is a Event Collector which seems to be missing. The transport consists a process chain which listens to an event. Is this the mentioned Object or is it related to some different topic? The process chain is correct and activated.
    Thanks in advance for your help.
    Best regards
    Christian

    Hi Abdullah,
    I followed your advice and did a check if the object was writen to my transport. The object was missing on the transport. But also searching in transport connection did not help.
    So I had a look into the table TADIR and also here I could not find the mentioned object which was realy strange to me, as the process chain was active and correct.
    I than deleted the event collector(AND) object in the process chain and created a new one. A check in the table TADIR now showed the before invisible EVEN_BEY5RHD67LRF9UT6G9LXEZUK6 and also the new one created. The new EVEN Object(and also the old deleted one) was written to the transport. Importing it into Quality System worked without any problems.
    I´m not 100% sure about this behaviour but maybe its linked to the fact that the process chain was a result from the Dataflow migration wizzard. Maybe while migrating that dataflow something went wrong.
    Anyway, thanks to all of you for your help!
    Best regards
    Christian

  • Entry point 'Test Batch' does not exist

    Hi Forum
     I am in the process of upgrading one of our testsystems from TestStand version 3.1 to version 4.1.
    The system is started up by a Labview app which calls TS by a command line call (-runEntryPoint  "Test Batch"  "C:\..."). However, TS 4.1 doesn't recognize the "Test Batch" entry point (worked fine in 3.1), and I get an error box with the message "entry point 'Test Batch' does not exist". I have checked that the entry point exist in the sequence model file, and if I go to the "Execute" menu, I get the choice to run "Test Batch".
    I am able to se the -run command, but then I, for some reason, don't get the entire sequence.
    Any suggestions to what I am doing wrong? I am logged in to TS automatically with my windows login.
    B.R.
    Martin
    Solved!
    Go to Solution.

    Hi,
    There should be a document in \Conponents\NI\Models\... which should give you the basics for the various process models.
    here is some other references that may help
    http://zone.ni.com/devzone/cda/tut/p/id/7958
    http://digital.ni.com/public.nsf/allkb/D9E7A0BDDDA​2A87886256FD9007598D2
    Check out some of the related links
    http://zone.ni.com/devzone/cda/tut/p/id/3819
    Regards
    Ray Farmer
    Message Edited by Ray Farmer on 09-24-2009 11:00 AM
    Regards
    Ray Farmer

  • Error message: Entry 1 WC 99 does not exist in T508A (check entry)

    Can anyone please tell me what does the error message Entry "1 WC 99" does not exist in T508A (check entry) means? I was trying to 'generate work schedule manually' when got this error.  In the above error message, 1 means employee subgroup grouping.....WC is Holiday Calender......and 99 is personal subarea grouping.....
    I went to the table using se16 but could not make out how I can input those entries in the table....
    Edited by: Parveez Sazzad on Feb 26, 2011 4:56 PM

    you have to check this table from SM30 Tcode and give V_T508A table here we have to configure DWSR and than we have to generate the WSR

  • Program SMIGR_CREATE_DLL does not exist

    Hellio
    While doing a Hetergeneous System copy of Solution Manager system (Database Independent)
    and I am performing the Step to generate DDL.
    When I execute the SMIGR_CREATE_DLL ,
    I get the message "Program SMIGR_CREATE_DLL does not Exist".
    Can anyone suggest since this is SAP Standard program, how do I generate DDL required for the system export?
    Thanks

    Hi,
    > When I execute the SMIGR_CREATE_DLL ,
    > I get the message "Program SMIGR_CREATE_DLL does not Exist".
    >
    Program is SMIGR_CREATE_DDL not SMIGR_CREATE_DLL.
    Thanks
    Sunny

  • StartInstance: Program SAPSTART does not exist (PASE or ILE)

    Hi
       Found that the client has 2 CRM systems using the same 700 Unicode (patch 72) kernel so had to split them.
    Stopped SAP on both systems
    Created a new lib for the QAS system
    RMVSAP QAS - unhook the QAS system
    LODSAPKRN to put SAPEXE in from R3SAV700U
    LODSAPKRN to put SAPEXEDB in from R3SAV700U
    APYSAP QAS
    so far so good.......
    The QAS CRM system wont start & we get the message
    "StartInstance: Program SAPSTART does not exist (PASE or ILE)"
    Any one come accross this one?
    Thanks
    Matt
    PS Happy New Year to all us AS/400 pilgrims.....

    Hi Margie,
    happy new year !
    tja, the recommendations ...
    I fully agree, that as of 7.10 (not out yet) this is necessary, advisable and so on. But with 6.40 and 7.00 Kernels it is really not an issue ...
    EXCEPT: The recommendation from SAP ...
    "Something about each requiring their own links to the exe programs and possibly stepping on each other."
    This is DEFINETELY wrong at the moment. For, sure, it is necessary to use APYR3KRN (or APYSAP) as you are used to from the past - and you need to do that for EACH SID if you would change the contents of the kernel lib.
    => If you are using one kernel lib MY recommendation is:
    Do NOT update the kernel lib itself, but use a different one instead.
    i.e.: if you go to a new kernel patch, copy the old lib first !
    Even when you update TP etc. only, do NOT do this in the old kernel lib, copy it first and then do the update. Otherwise, you might miss one of your 5 SIDs to use APYSAP there - which is REALLY necessary after every APYR3KRN since 6.40 ...
    If you go with this approach I had never any issues )
    Regards
    Volker Gueldenpfennig, consolut.gmbh
    http://www.consolut.de - http://www.4soi.de - http://www.easymarketplace.de

  • Error Program SAPLRSDRC does not exist

    Dear Experts,
    While executing a query am getting an error like as follows : -
    - Error Program SAPLRSDRC does not exist
    - Eror An exception with the type  CX_SY_PROGRAM_NOT_FOUND occured.
    Can anyone please guide if any one have facse this kind of issues.
    Regards,
    Hemanth Aluri

    Hi Chandran.
    Thx for Reply. We are currently working on BI 7.0 Only.. Actually we doing Upgradation project.. So We have taken the 3.5 DEV system Copy which we say it as some XXX system.
    Now Currently Am checking this report in QUALITY System.. When i checked in SE38 for the Program SAPLRSDRC It says the program does not exist.
    But When i checked it in XXX Dev System which is 3.5. I have got that program. But actually it is an function pool.
    So can u please guide me in this scenario how to step further exactly..
    Regards,
    Aluri

  • S_ALR_87012245: the Program RFMXCTOP does not exist ...

    Hi All,
    launching t.code S_ALR_87012245 SAP gives me dthe message: Program RFMXCTOP does not exist
    What does it depend on?
    Thanks
    Gandalf

    Hi,
    have a look at this OSS Note:
    https://service.sap.com/sap/support/notes/842283
    Best regards.

  • Extended program check -  The program ZZZ does not exist as a main program

    Program ZZZ is the Include program of program AAA. I dont understand this error on Extended program check."The program ZZZ does not exist as a main program"

    why are you runnign Code inspector the include program.You shoudl check only your main programs

  • Program RAKOPL01 does not exist

    Hi In ECC 6.0 when i try to execute the report S_ALR_87014043, I get the error "Program RAKOPL01 does not exist"
    Recently we upgraded our system to 6.0  from 4.7
    Please help in finding the reason
    Thanks and regards
    Venkata

    Use the report S_ALR_87012936 in ECC6. When you click on + you get the extra options

Maybe you are looking for

  • Error message when updating software

    Whenever I attempt to update software I get an error message stating that my computer is unable to create a folder. Today when updating iTunes I got this: The Installer could not create the folder "/private/tmp/AppleMobileDeviceSupport.pkg.766WaORpr

  • How to back up my files?

    Hi there, I would like to backup the files (photos, IDs, mail, music, word documents) on my computer, and format my drive. I've read a lot of threads about backing up, but I'm still confused. I have an external drive. Can I just buy something like "S

  • I need to restart the database

    Hi Guys, I have migrated my database from oracle 9i to 10gR2 and from 32bit windows to 64bit RHEL4 using full database export and import. Everything works fine. We have got some performance enhancements also. But one report generation module which wa

  • Can photos be viewed on a second monitor while being edited?

    I have the use of a second monitor (better screen resolution) when using my laptop to edit photos.  Is it possible (in PSE 9) to use the second monitor to view the photo as I edit, but keep the editing tools on the laptop monitor.  This would maximis

  • Problems with Re-installation of CS5.5 Design Premium

    I bought a "Student & Teacher Edition" of the CS5.5 Design Premium in 2012. It was installed in my iMac and the software worked perfectly. Unfortunately, a few weeks ago, my iMac hard disk crashed and need to be replaced. When I got the iMac back rec