Copy Function Pool  program

Hi folks,
I am trying to modify  one screen in SAPLWOSE_GR_ENTRY_DLG (function-pool) to my requirement,  and need to know how to do assign them to transaction code.
Thanks,
Uma

Hi Uma,
unfortunately I'm not able to run transaction WSTED, since it cannot be lauched from the SAPGUI, and I have no authorization to run transactions from the web browser.
Nevertheless, if you take a glance at the definition of transaction WSTED (thru tx SE93), you'll see that WSTED runs program SAPLWOSE_DOGR with dynpro 0100.
From your last answer I can see that you must modify dynpro 0230. Now how do you want the transaction to run?
- If as the standard behaviour, you could copy module-pool SAPLWOSE_DOGR to a (say) ZSAPLWOSE_DOGR, copy all the dynpros, and then modify screen 0230.
- If you wish to start with screen 0230, just create a Z transaction which calls module-pool SAPLWOSE_DOGR and dynpro 0230.
- If you want the standard transaction WSTED to have your changes (not recommended, it's altering SAP's standards), just change dynpro 0230 of module-pool SAPLWOSE_DOGR. Then when you run transaction WSTED it will show your changes.
Sorry if I didn't understand exactly your requirements. Please let me know.
Kind regards,
Alvaro

Similar Messages

  • Copy function pool

    Hello,
    I'm trying to copy a system function pool using Program-Copy  function from SE38 and change it's name but the system generates an error.
    What is the correct way of copying a system function pool?
    Thank you.

    Already tried se80..same error:
    Runtime Errors         RAISE_EXCEPTION
    Short text
         Exception condition "NO_FUNCTION_POOL" raised.
    Error analysis
         A RAISE statement in the program "SAPLSUNI" raised the exception
         condition "NO_FUNCTION_POOL".
         Since the exception was not intercepted by a superior
         program, processing was terminated.
         Short description of exception condition:
         For detailed documentation of the exception condition, use
         Transaction SE37 (Function Library). You can take the called
         function module from the display of active calls.
    Hope this helps.
    Thanks

  • New Function Pool Program Question?

    I am new to these processes.......If I copy a Function Pool Include to a new one, and create a new Function Group to link it to, thus I assume a new Function Pool SAPLZXXX program will will be automatically created, I am trying to determine how, or where config?, is done to link it (the new Function Pool/SAPLZXXX) to its process? 
                    Any input will help.....Thank-You.

    Hi,
    When you create a Function group under a Function pool, then inside of that Function group main program there will be some includes
    ·        LfgrpTOP. This contains the FUNCTION-POOL statement (equivalent for a function group of the REPORT or PROGRAMstatement) and global data declarations for the entire function group.
    ·        LfgrpUXX. This contains further INCLUDEstatements for the include programs LfgrpU01, LfgrpU02,... These includes contain the actual function modules.
    ·        The include programs LfgrpF01, LfgrpF02,... can contain the coding of subroutines that can be called with internal subroutine calls from all function modules of the group.
    Regards
    Sudheer

  • Subscreen selection screen for function pool program

    Hi,
    I have a requirement wherein i need to make the parameter field flexible( meaning can exclude, include values etc). Same function as select-options. The parameter was created in a dialog progmming.
    The problem here is that i am using function pool. I have tried to use subscreen but it is only applicable on report program. Is anyone knows if this is possible. Or is there any way to make the field as select-option without using call subscreen?
    Please help!
    Thanks in advance!

    Hi,
    No need to create separate Fields ,only create as parameter.
    for your Reference check below code.
    DATA : lv_title             TYPE sy-title,
                ls_description TYPE rsfldesc,
                lt_selopt          TYPE STANDARD TABLE OF rsdsselopt.
    PARAMETER : p_field TYPE ausp-atwrt .
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_field.
      lv_title = 'TEST'.
      ls_description-type    = 'C'.
      ls_description-length  = '30'.
      ls_description-olength = '30'.
      CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG'
        EXPORTING
          title                    = lv_title
          description       = ls_description
          help_field         = 'AUSP-ATWRT'
        TABLES
          range               = lt_selopt
        EXCEPTIONS
          no_range_tab      = 1
          cancelled         = 2
          internal_error    = 3
          invalid_fieldname = 4
          OTHERS            = 5.
      IF sy-subrc NE 2.
        MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.

  • Submit function pool program

    hi all,
    i am using submit statement in Z program and calling standard program of SM37, but problem is that it is going for dump and saying that we cant use submit for function-pool.
    can anyone please tell me that how can i submit? can i call this by using call transaction? actually i have to pass selection screen parameters also from my Z program and have to skip standard selection screen.
    plz help.
    regards.

    saurabh srivastava,
    There are few things regarding your query, which I need to clarify
    <li>Submit statements can be used to call Report programs (Type 1 means executable). So program for SM37 transaction is SAPLBTCH which means you can not use SUBMIT statement. SAPLBTCH is module pool program. You can not use Selection-screen statement for module pool program.
    <li>Call transaction can be used to call either report programs or module programs. Which means if transaction is assigned to them, we can use. As I said before program is module pool program. You can still use below statement.
    CALL TRANSACTION 'SM37' and SKIP FIRST SCREEN.
    <li>If you want to use AND SKIP FIRST SCREEN statement , need to follow the below conditions
    "1.For the initial dynpro, in the Screen Painter the own dynpro number must not be specified as the next screen number.
    "2.All mandatory input fields of the initial dynpro must be filled completely and with the correct values by the SPA/GPA parameters
    <li>Please press F1 help on * and SKIP FIRST SCREEN* statement to see how to use.
    Thanks
    Venkat.O

  • Copying function module & program with all ENHANCEMENT-POINT

    Guyz,
    i'm on ecc6.0 and want to copy a standard report and FM with all its enhancement points. Can i do ? Kindly let me know how to do the same ?
    Thanks

    Hi,
    Enhancement frame work is the new concept using which SAP allows you to change the existing programs
    See the following blogs that talk about the same in detail
    /people/thomas.weiss/blog/2006/01/24/what-the-new-enhancement-framework-is-for-150-its-basic-structure-and-elements-for-beginners
    /people/thomas.weiss/blog/2006/03/15/the-new-enhancement-framework-part-2--what-else-you-need-to-know-before-building-an-enhancement
    /people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework
    /people/thomas.weiss/blog/2006/05/03/source-code-enhancements--part-5-of-the-series-on-the-new-enhancement-framework
    Check the theard also
    https://forums.sdn.sap.com/click.jspa?searchID=3456104&messageID=2839972
    <b>Reward points</b>
    Regards

  • Submit program for function pool

    Dear Experts,
                       i am using submit program for a standard report
       submit SAPLRHPA_REPORTING
                   with APPSELECT_HISTO eq  'X'
                   and return.
    it's going to dump how to use function pool programs in submit statements.
    You attempted to start the ABAP/4 program "SAPLRHPA_REPORTING" with SUBMIT, but
    attributes specify this program as type "F" instead of "1". You can
    only start programs of type 1 with SUBMIT.
    Thanks and Regards,
    Thirukumaran. R

    Hi
    As per my knoweldge i think you cant submit the fuction pool using by submit.
    Alternate way is call the function module which is within the function pool .
    Or if you want to execute a particular routine within a function pool you can use as below
    PERFORM Routine_name(saplrhpa_reporting)
                                           USING parameters.
    Hope this answer helps you
    Cheers.
    J.

  • Problem with Function Pool

    Hi All,
    As per some new requirement I've copied one standard function pool into my own function pool.when I'm calling one subroutine defined in this fuction pool through a user exit , it's not behaving the same way as when the same subroutine is called defined in the standard function pool.
    While calling the subrouting using the copied function pool, the vaules are not getting passed and it's taking initial values.
    Any help would be greatly appreciated.
    Thanks.
    Alok Varma

    Sanjay,
    I've copied all the includes in the Function pool into the new Function pool. The subroutine which I'm using is defined in one of those includes which I've already copied. I'm calling one subroutine defined in one include LL03AF9J externally in the user exit include program.I'changed the earlier code for calling this subroutine to
    PERFORM LAGERPLATZFINDUNG_1(SAPLZF05) USING L_SAV_NLTYP
                                                 I_LTAP-NLBER
                                                 I_T331      
                                               I_LTAP-VSOLM
                                               E_NLPLA
                                               L_HLP_PLPOS.
    earlier this code was
    PERFORM LAGERPLATZFINDUNG_1(SAPLL03A) USING L_SAV_NLTYP
                                                 I_LTAP-NLBER
                                                 I_T331      
                                               I_LTAP-VSOLM
                                               E_NLPLA
                                               L_HLP_PLPOS.
    Any clue on this ?
    Thanks
    Alok

  • Calling a Function Pool inside a Class

    Hi,
        I want to call a Function Pool inside a Class Method. I am getting an Error that 'Report or Program Statement already exists' when I call the function pool in the method. can anybody help me on how to call a Function Pool inside a class method.

    Hello Krish
    Based on your error description I assume that you have tried to "insert" the function pool program (e.g. function group ZFUNC -> SAPLZFUNC) into your class.
    You cannot do that. The explanation for the error message is a following:
    - The class contains already a program statement (CLASS-POOL). If there is somewhere in the class an additional program statement (e.g. FUNCTION-POOL) you will get the error.
    In addition, you cannot "call" a function pool. Instead you can always call the function modules of your function group.
    Regards
      Uwe

  • Copy of function pool

    Hi exprts,
    I have copied BSPL function pool and copied all Function Modules from it and converted them to Z Function Modules.
    but while Calling this z function from my program i am not able to get my final output table filled.
    Does anyone having idea what is the procedure for coping the function pool.
    Thanks,
    Pratik Vora

    Hi,
    Make a copy using SE80, enter the function group name and hit enter, now from the tree structure, you will righ-click on the function group name and choose copy. It will ask you what function modules you want to copy, just copy all modify any includes if neccessary.
    Regards,
    Omkaram.

  • How can I get a file to copy all of the files in a directory except itself and the source of the copy function will be the directory the final program is in?

    How can I get a file to copy all of the files in a directory except itself and the source of the copy function will be the directory the final program is in? This application must be in Lab View 8.

    you mean something like this (see below)?
    Now you may have to implement code to check if the destination folder exists and to create it, etc.  But if you use the Front Panel Control to select the destination folder, it should be okay.
    Not the best implementation, mind you but you'll get the idea..
    Message Edited by JoeLabView on 04-18-2007 03:43 PM
    Attachments:
    copy folder contents.PNG ‏10 KB

  • COPY THE STANDARD SAP MODULE POOL PROGRAM

    HOW I CAN COPY THE STANDARD SAP MODULE POOL PROGRAM ((INCLUDING SCREENS) INTO Z REPORT?

    Hi,
    Go to transactionSE38 ABAP Editor.Type the program name.Click copy.It will ask whether you want copy documentation,screens,etc.,
    Check mark it.

  • How to copy a Module Pool Program from one SAP server to another SAP server

    Hi Experts,
    My requirement is to copy some Module pool programs from one SAP server to another SAP server which do not have any link.
    Please advise on this.
    Regards
    Dipak

    put all relevant objects inside a transport request and release it. this will generate two files, a control file in /usr/sap/trans/cofiles/ and a data file in /usr/sap/trans/data/
    you can take these two files, zip'em up and e.g. email them to your destination. There they have to be put into the same directories of that other server and can then be added to the import queue and finally imported.
    These last steps would usually be done by an administrator.
    Both systems should be on the same release, as far as I know.
    Cheers
    Thomas

  • How to copy a module pool program

    Hi All,
    How to copy a module pool program from one system (Organization) to other system(organization) i.e. from one company to other company. My requirement is to how to download & upload module pool program.
    Regards,
    Rajesh Vasudeva

    Hi,
    Check the below link
    [How to DOWNLOAD  a whole module pool program????]
    [Download the Module pool program]
    Cheers,
    Surinder

  • How to copy the module pool program ( Screens, codeing ) ?

    Hi guys,
           How can I copy the Module pool program to another program including screen and every thing?
          can anyone help me....

    1. GO TO SE80, and select program from drop down
    2. Enter Source Prog Name and press enter
    3. Below Object name, right click on the program
    4. Select COPY and enter the (New) Target Prog Name
    it ll ask for following check box options
    -Source
    -Text Element
    -Documentation
    -Variant...etc.
    5 Select all and press enter.
    Hope this ll be helpful.
    Thanks & Regards
    Vinsee

Maybe you are looking for

  • Error in TRansportation

    Hi Experts, I am getting error while transporting co_area(Data source) Error Msg is like this Transfer structure 0CO_AREA_TEXT_PA does not exist in my request I Included Transfer structure  why Iam getting Error Msg it,s showing one more error Msg Er

  • Runtime error while using GUI_UPLOAD

    Hi All, I have a text file which contains few records delimited by tab. I am trying to upload the contents of the file into an internal table using the FM GUI_UPLOAD But, I am getting run time error 'Type conflict when calling a function module'. The

  • Upgrading from Aperture 2-3. What happens to referenced images?

    I'm upgrading from Aperture 2 to 3. I have referenced images on some external hard drives. Will my referenced images be okay and still read correctly from my HD if I upgrade?

  • Email alerts in CCMS.

    HI,    I have configured CCMS for triggering the alerts as  an email. I am receiving an email when I triggerd manually but I have configured metod as an auto reaction method but I am not receving any mails automatically. can any one help on this issu

  • Good Premiere pro Cs5.5 Video Editing Computer Set Up For Under $3000

    Hey everyone im hopeing to hear for Harm Millaard input on this and anyone elses who understands PC computers for video editing. I need to build a computer set up for my specific needs. I am a youtuber who makes videos for a living and I need a speed