No main program for include..

hi,
i have created an include and when i do a syntax check, i get the message, "there is no main program for this include". what does that mean ? how to overcome this issue ?
only when this is resolved further statements can be checked.
thks

only executable program can be sintax checked.
to check this include.
include it in other report program and check it.
go to se38
create report.
reprot z_test.
include <name>.
no check the sintax.
go through
http://help.sap.com/saphelp_47x200/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm
Edited by: S.r.v.r.Kumar on Jun 18, 2008 8:11 PM

Similar Messages

  • SAP Upgrade : No Framework Program For Include

    Hi,
    I am getting the Syntax error as mentioned while upgrading
    system from 4.6C to ECC 6.0
    Please provide some solution.
    Regards;
    Parag

    Hi
    Could you be more clear about the problem which you are facing in Upgrade.
    Regards
    Lakshmikanth

  • Problem in creating include program for customer exit for BC425_01

    Hi,
         I want to write a customer exit for transaction BC425_01. For identifying the include program for exit , i go to System->Status.There I double click on the program name(GUI).Then I perform a 'FIND' in main program for 'customer-function' keyword. I get 3 search results with "CALL CUSTOMER-FUNCTION '001' " , "CALL CUSTOMER-FUNCTION '002' " , "CALL CUSTOMER-FUNCTION '003' ".
    Now i double click on CALL CUSTOMER-FUNCTION '001'  and i am taken to the code of program where this function is called in MODULE cust_check INPUT. I double click on CALL CUSTOMER-FUNCTION '001'  and then I am taken to the function module code which contains a single statement 'INCLUDE ZXBC425G01U01 .' .
    Now I double click on this include program so that I can write my own code. But when i double click on it , a message displayed 'Program names ZX.. are reserved for includes of exit function groups'. Hence I am not able to creates this include program and write my coding.
    Kindly Help
    THANKS

    Hi Amber,
    Then you click enter button.It is asking to create object with that include name ZXBC425G01U01 in a pop-up.You  should select YES option.It will ask package . Give the package name and save.Then include program is created and allowed you to write your own code.
    Thanks,
    Prasad GVK.

  • Table for Include Programs.

    Hi,
    Can anyone tell me which table stores the include program names of a Module Pool.??
    regards,
    Ramakanth

    Thanks for your Reply..
    My exact requirement is to identify the main program for all the include programs. REPOSRC gives the include program name but i think it doesnt give the main program name from where include is fetched.
    So I need table which stores the main program / Module Pool and its includes.

  • Why do we need to point at main program when activating include?

    Hi There Abapers,
    Just a quick question, because I faced such issue when implementing OSS notes.
    When activating objects I am asked to point out the main program for one of includes changed.
    This inclde is used in ~30 programs.
    As far as OSS note doesn't say a word about main program in fact I am not able to check it, I need to pick random program from a list up.
    The question is...
    Why do we need to point at main program when activating include as we are only changing the sub-object (include)?
    Will this 'random main program selection' bring some negative effects in the future?
    Will be thankful for some expert opinion
    Kind Regards,
    P.

    You should check all main programs when activating an include, to make sure that all main programs are still syntactically correct even with the changed include.
    Thomas

  • Editor: Annoying pop-up for choosing main programs when searching for text

    Hi,
    We're upgrading to ECC60 and are getting frustrated when searching for text in a source code within the ABAP editor.
    For every include contained in the main program you are searching in there is a pop-up asking to choose the main program for that include.
    This can get crazy when searching in a standard SAP program such as SAPMV45A. You'll have to process through 30-40 of these pop-up windows before your search results appear. I each pop-up you have to scroll though dozens of main programs to find the one you are doing the search in.
    Can this be turned of somehow to have the search functionality work as it did in previous version, where the Editor knows that the program you are launching the search from is the main program you want the results from?
    Thanks,
    Peter

    HI Peter
    Please check if program: <b>RPR_ABAP_SOURCE_SCAN</b> can help you...
    Regards
    Eswar

  • Insert include program in a main program dynamically

    Hi All,
    I would like to add one 'Z' INCLUDE program in my 'Z' Executable Program. Is there any Standard Function module or Class and Method or any other option available?
    Example:
    Include Program name:ZINCLUDE (which is already existing in SAP)
    Standard Program Name: ZEXECUTE (which is already existing in SAP)
    Now, I want to insert include program ZINCLUDE in my executable program ZEXECUTE.Could you please sugget me on this?
    Thanks,
    Vishnu.

    Hi All,
    Below is the samle program which i did for my requirement.
    DATA:itab TYPE TABLE OF string,
         wa_tab LIKE LINE OF itab,
         lv_string TYPE string.
    * Read the data from already existing Executable Program
    READ REPORT 'YVISHNU_TEST127' INTO itab.
    IF sy-subrc = 0.
    * Append Include program to itab
      lv_string = 'INCLUDE ole2incl.'.
      wa_tab = lv_string.
      APPEND wa_tab TO itab.
      BREAK 50120c1941.
    * Insert Main program by Including above Include program
      INSERT REPORT 'YVISHNU_TEST127' FROM itab.
    ENDIF.
    Thanks for your help.
    Thanks,
    Vishnu

  • Message Include * is used in multiple main programs (210)

    Hi,
    I get the message:
    Select a main program in Properties View on tab "Source"
    Include /SAPDMC/SAP_LSMW_READ_FORMS is used in multiple main programs (210).
    when I want to modify an include in LSMW.
    The effect is for example that I cannot open the declaration of a data element.
    Is there something I can do?
    Best regards
    Volker

    Hi Michael,
    I have updated ADT to newest version (com.sap.adt.core is now 2.31.5).
    When I type something in that Include or save it, the error message is now displayed in status bar (which is of course much better, and I can at least edit the file):
    However, when I try to activate this Include, same popup comes as earlier with this error message. It is still not possible to edit the main program in properties.
    What I also found out:
    If I create new include, let's name it Z_INCL1, and use it in one program - Z_PROG1, include Z_INCL1 will have as main program Z_PROG1 and everything works fine. (of course).
    When I create Z_PROG2 which is including Z_INCL1, main program of Z_INCL1 will be Z_INCL1 and I can no longer compile Z_INCL1. (So far there was nothing new).
    Now when I remove Include statement from Z_PROG2, main program of Z_INCL1 will still be Z_INCL1 and I still cannot compile Z_INCL1 with the same error message even thougt it is now only included in 1 program again. I have to remove include statement also from Z_PROG1 and than I am able to compile Z_INCL1 again.
    Have a nice day!
    O.

  • Main program of a include

    Hi Guys,
    Can anyone of you tell me how can we find the main program of a particular include program.
    Thanks,
    Rajeev

    HI sunderasan,
    Thanks for the reply. I tried doing what you suggested and now the thing is when used the where used list tab it showed few programs but now I am not sure which one is the main one, in my case it showed me one z program and one J_1HKORD, so I am not sure which one to take. The thing is I want to activate few include programs and when I tried doing it asked me the main program .
    Thanks,
    Rajeev

  • How do I creaet Enhancement Implementations for multiple main programs?

    I need to implement an enhancement (ENHANCEMENT-SECTION buchen_03 SPOTS es_mm06ef0b_buchen INCLUDE BOUND.) in an include (MM06EF0B_BUCHEN) that is used by 2 different main programs (SAPLMEPO & SAPMM06E).
    When I create an implementation, it is created for a specific main program.
    How can I create an implementation that is executed irrespective of which main program calls the include?
    Thanks
    Rajeev Natarajan

    Hello,
    plaese apply my note 1020176.
    Read the note carefully. It is absolutly necessary to activate the object in the specified order when appling the note!
    Alternativly: Import SP12 when it is avialable.
    Best Regards
    Michael

  • Program name zxvau02 are reserved for includes of exit function group

    i am facing a problem during user exit.
    when i am trying to change the code in function module (va01) in include zxvvau02
    an error is occurred 'program name zxvau02 are reserved for includes of exit function group'
    so i could not edit the include program.

    Hi,
    1. Find the appropriate Enhancement.
    2. Enter the ABAP code in the "Z" program within the function module.
    3. Create a project.
    4. Add the Enhancement to the project.
    5. Activate the project.
    At the step (2), when I double click on the Include ZX* within source code of the function module to realize the exit, the
    system would prompt to create the include. But NO, it always prompt that the name of include is reserved by SAP and I
    cannot create it... I entered an access key for the object ...

  • Error  : No framework program was found for include

    Hi All,
    A web UI enhancement worked perfectly fine in a development system. However, after transporting it to a quality system, it did not work as expected. All transports were error free and all the developed items could be seen in the quality system.
    When trying to keep a breakpoint in the redefined method of a controller class, I get the error "No framework program was found for include <> "; where <> is the z implementation class that was created.
    Any suggestions/ideas on how to resolve this error?

    Hi,
    Check the entries in sm30 bspwdv_ehset_asg if the enhacement is assigned to client in Q system..
    Hope this helps..
    Cheers,
    Sumit Mittal

  • Standard program for creating outbound IDoc including wbs + cost planning

    Hello,
    a)
    Before we start developing our own ABAP, I would like to ask the forum if somebody knows if there is already a standard ABAP program for generating outbound IDocs including wbs-element data (CJ20N; wbs ID, description) plus annual data from the cost planning (CJ41; such as fiscal year and costing items from unit costing; quantity, unit, price per unit, total price, description of item) ?
    b) we are planning to use the logical message /ISDFPS/PS, basic type /ISDFPS/PS01 and enhance this IDoc with segments for the costing items from the cost planning.
    Question: Do you know if there is a standard IDoc which has segments for both wbs-element data and costing items?
    Kind regards
    Viveka Schwartz

    Hi Frank,
    Did u check this Link on the PP confirmaitos[LINK|http://help.sap.com/saphelp_47x200/helpdata/en/12/3bbc1c504811d182c20000e829fbfe/frameset.htm]
    Reg
    Dsk
    Edited by: DSk on Sep 14, 2010 3:44 PM

  • Program names ZX... are reserved for includes of exit function groups means

    dear all,
    i am doing the enhacement  SRVESSR   for  EXIT_SAPLMLSR_010  in this exit  i got include, when i double click on the ZXMLUU19
    i am getting the  following error.
    Program names ZX... are reserved for includes of exit function groups
    regrds.
    shashi

    Hi,
    When the warning message is displayed press enter key, System will prompt the message "Include ZXMLUU19 does not exist. Create Object? ". Select Yes option. Include will be created.
    Regards
    Vinod

  • Which programs are included included in the subscription for CS customers?

    which programs are included included in the subscription for CS customers?

    Hi ilbra
    Please check this link for the programs available as part of Creative Cloud - https://www.adobe.com/ie/creativecloud/catalog/desktop.html
    Thanks
    Bev

Maybe you are looking for