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

Similar Messages

  • 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

  • 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

  • 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 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

  • 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 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

  • 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.

  • 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

  • The dynpro 0201 in program SAPLXM06  does not exist.

    Hi All,
    i am facing a problem that is after opening T-code ME31K (create contract: Initial screen) and after providing the values for Vendor,Agreement Type,Agreement Date,Purchasing Org. and purchasing group,when I am clicking enter to create the contract
    it is giving an exception " The system attempted to use dynpro 0201 in program SAPLXM06,The dynpro does not exist.Please suggest me any solution or reson for this problem.
    Thanks
    Anand.

    Hi Anand,
    This error occurs because of improper activation in the Screen exit that created using an Enhancement MM06E005. You or someone would have implemented screen exit for either of the following.
    1. Purchase order
    2. Outline agreement
    3. RFQ
    Solution for this problem:
    1. Go to the (Z) project created in SMOD for this purpose using the enhancement MM06E005.
    2. You will find Screen exit.
    3. Under screen exit, you will find Custom screens 0101, 0111, 0201, 0211, 0301, 0311
    4. Double click on 0201 screen
    5. Activate the flow logic, screen exit and also the Project in SMOD
    Now you check your transaction ME31K, you will not get the dump..
    Note: You have to activate for other screens also, so that you will get the dump for ME21N or ME41...

  • S_ALR_87011774 returns the message u0093Program 9PSM does not exist

    Hi Dear Gurus,
    I have been given a   task to add a t-code to a role and i did that but when the user execute the transaction
    the transaction S_ALR_87011774 returns the message “Program 9PSM does not exist.
    how to fix it.
    i did run the SU53 report and it says
    activity : 03
    co trasaction  rks
    and these two are maintained in the object.
    please help me how to resolve this issue.
    Kind Regards,
    vamsi,

    as far as I can tell, it is not actually the program that does not exist, but the report group.
    when changes have been made to the layout, it is sometimes necessary to regenerate them.  this can be done through GR52.
    I'm curious to know what the SU53 will display for the user who's executing the transaction, because I don't find a reason to assume this is related to authorizations?
    for more info on report groups, have a look [over here|http://help.sap.com/saphelp_47x200/helpdata/en/5b/d2308343c611d182b30000e829fbfe/frameset.htm|sap help]
    it may have something to do with logging on in a different language than the report was setup to be displayed in?
    If reports are to be available in several languages,
    you must define the languages concerned in Customizing.
    For more information, see the Implementation Guide (IMG)
    for Special Purpose Ledger under Information System ->
    Define Report Writer Languages.
    Edited by: Dimitri van Heumen on Feb 21, 2008 11:36 AM (messing up the layout...)

  • Standard SAP report group 6PP3 does not exist

    A user is attempting to run the transaction S_ALR_87013544 and receives the error "program 6PP3 does not exist". I used gr53 to display report groups it is not in the list.
    I cannot generate 6PP3 either. I cannot create 6PP3 because it is a standard report group
    Any ideas?

    1.   Use GR59 IN THE <TRG> client
         a. 300 in this case
         b.     SOURCE client = 000
         c.     Leave all fields blank – hit EXECUTE
         d.     Select the report group to generate from the list
            i. BPP3
           ii. Select the CONFIRM button

  • Assign PO Smartform in NACE error-Processing routine does not exist

    I have created a Z-Smartform and Z-driverProgram and assigned both in NACE:
       Medium-           Program-                      Form-                                 PDF/Smartform-   Type
    Print output-     ZSFPOREPORT-                          -ZSFPOREPORT- SmartForm
    but a error message : Processing routine in program ZSFPOREPORT does not exist  ..
    Do we need to code in driver prog under a Subroutine and call the same (or) Do we need to create a Form with Special Interface parameters similar to Entry_NEU ..
    I am not sure as ENTRY_NEU is for a Script but we need to assign a SMARTFORM here...
    So Gurus suggest.....

    Hi
    DATA:   fm_name  TYPE rs38l_fnam.
    *-- Call the Smartform for Label Printing.
            CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
              EXPORTING
                formname           = 'ZLS_XXXXX'
              IMPORTING
                fm_name            = fm_name
              EXCEPTIONS
                no_form            = 1
                no_function_module = 2
                OTHERS             = 3.
            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
                v_XXXX         = v_YYYYY
                v_matnr          = mara-matnr
              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.
    But this pattern is not same for all driver program. So you can do the following:
    Step 1: Click on the area where you want to write function module.
    Step 2: Click on "Pattern" at the top of the SAP window. Enter the function name as  SSF_FUNCTION_MODULE_NAME  and
                 press ok.
    Step 3: Now fill up the reqd fields. Give the name of the smartform in
                 EXPORTING
                formname           = 'ZLS_XXXXX'
    Step 4: Now go to the SMARTFORMS program Environment->Function Module Name  and copy  the Module Name.
                Again click on "Pattern" and paste the module name. Again you will get a pattern(i.e. the second function)
    Step 5: Replace the Function module name with "fm_name" as shown in the code above.
    Then your code is ready.
    Thanks & Regards
    Rocky kr. Agarwal.

Maybe you are looking for