Accessing WS data set during selection screen processing in BG processing

Hello ABAPers,
I am attempting to access a working storage table variable that is set during selection screen processing after the user submits the program to background processing (using F9).
I have tried using export to memory id in the at selection screen section and then import from memory id in the start-of-selection section, but it does not seem to work all of the time.  Is there a better way of doing this?
Thanks

bump

Similar Messages

  • Can Selection Screen processing events be triggered manually?

    Good day!
    I have a Selection Screen where a user can select a value from a drop-down box.  If a particular value is used, I assign default text to another Selection Screen field.
    However, because choosing the drop-down value doesn't trigger a Selection Screen processing event (AT SELECTION-SCREEN and AT SELECTION-SCREEN OUTPUT) the value doesn't get updated on the screen field, even though it gets updated in memory.  It only updates on the screen if the user selects a radio button value for another field because that triggers the Selection Screen processing events.
    I've read about various methods in an attempt to get this to work, but nothing is working.  Is there ANY way to trigger SAP to go to these events?
    Thanks, and points for all helpful advice!
    Dave

    Hi dave,
    1. Selecting a listbox on selection screen,
        and immediately populating a field value on the screen.
    2. just copy paste to get a taste of it.
    3.
    REPORT ABC.
    TYPE-POOLS : VRM.
    DATA : VALUES TYPE VRM_VALUES.
    DATA : VW LIKE LINE OF VALUES.
    DATA : FLAG TYPE C.
    PARAMETERS : LIST TYPE C AS LISTBOX VISIBLE LENGTH 10
    <b>USER-COMMAND ABC.</b>
    PARAMETERS : A(10) TYPE C.
    INITIALIZATION.
      VW-KEY = '1'.
      VW-TEXT = 'SUN'.
      APPEND VW TO VALUES.
      VW-KEY = '2'.
      VW-TEXT = 'MON'.
      APPEND VW TO VALUES.
      VW-KEY = '3'.
      VW-TEXT = 'TUE'.
      APPEND VW TO VALUES.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          ID              = 'LIST'
          VALUES          = VALUES
        EXCEPTIONS
          ID_ILLEGAL_NAME = 1
          OTHERS          = 2.
    <b>AT SELECTION-SCREEN  OUTPUT.
    A = LIST.</b>
    regards,
    amit m.

  • FISCAL year from Date  in the Selection Screen.

    Hi Folks,
    Is there any function module which returns the Fiscal year if we provide the date in ranges.
    I mean, I have a select option for date in the selection screen.So,if a user enters the date say 01042007 01042007 it should return the corresponding fiscal year.
    Kindly let me know if anyone here has any idea regarding this.
    Thanks,
    K.Kiran.

    Hello,
    Check these FM's
    FTIS
    FTI_FISCAL_YEAR_MONTH_GET
    KBPA                           Budget/Plan - application-specific
    KBPA_GET_START_FISCAL_YEAR     Determine Start Year for Funds Management
    KBPA_GET_START_FISCAL_YEAR_OPT
    Vasanth

  • To change Default Setting of Selection Screen while Filtering on infoobject

    Dear Guru's,
    I just want to know where can I change the Deafult Setting from 100 to 500 which we get in the Selection Screen when we want to Filter on Info-Object level in the Workbook.
    Hope this will clear the question , incase any further information required please let me know.
    Many thanks.

    Hi Kasi,
    Please do not post the same question twice. You can see my reply at:
    Re: To change Default Setting of Selection Screen while Filtering on infoobject

  • Requirement date in ME2O selection screen.

    Hi Friends,
    I see that requirement date in ME2O selection screen is no where available in the output . Is this equal to PO creation date?

    Actually in ALV grid list out put, the document date is the Requirement date.
    If you analysis the same, you will find the solution.
    See I have analysis the same.
    In my ME2O transaction, I can see the document date as follow for the Purchase order number
    4700048844.
    Here the document date is showing 20.12.2011.
    When I go to to ME23N to display the PO number 4700048844, I can see the document date is different.
    But when I checked the requirement date, then I can see the same date for the PO number.

  • Setting default date range in selection screen when executing as batch job.

    Hi Guys,
    I have one report to be scheduled as weekly batch job and one of the selection screen field is date range. If i set this report to run today then the date range will be from one week back date(Lower value) to today date(Higher value). When it runs for next week(Already scheduled as weekly batch job) the date range should be like this
    Lower value = today date
    higher value= next week run date.
    How can i achieve this functionality. Is it possible through Dynamic variant concept?. Rest of the selection screen fields have some default values and should not change.
    <REMOVED BY MODERATOR>
    Thanks in advance,
    Vinod.
    Edited by: Alvaro Tejada Galindo on Feb 22, 2008 3:52 PM

    Hi Vinod,
    Would suggest you to this.
    Create two parameters : p_start_date and p_end_date of type sy-datum on your selection screen , instead of a range.
    Now goto create a variant from SE38 for the report.
    While creating the variant, mark the "Selection Variable" checkbox for the two parameters and click on "Selection Variables".
    Select the option "D: Dynamic date calculation" for both the date fields.
    For p_start_date - select the option "Current Date"
    For p_end_date  - select the option "Current date +/- ??? days" and put 7 in the pop up.
    Hence what you have done now is, set up a dynamic variant, where p_start_date will have sy-datum and p_end_date will have sy-datum + 7, everytime the job runs.
    Now, in the program, first step after START-OF-SELECTION code the following:
    RANGES: r_date FOR sy-datum.
    start-of-selection.
    refresh r_date.
    r_date-sign = 'I'. r_date-option = 'BT'.
    r_date-low = p_start_date. r_date-high = p_end_date.
    append r_date.
    Hence this way, you would have built your range and use it as needed.
    Cheers,
    Aditya

  • ALV - selecting the data based on layout set in selection screen

    Hi,
    I have an ALV report (Custom). I want to give layout selection at selection screen, so the user can create/select/manage layout at the time of selection screen and only these columns will be displayed in the final output. Instead user execute the report for all column and at the end user select the layout. I want this layout at the selection screen level like the standard reports.
    Thanks,

    You can do the following
    When the user clicks on download
    1.Use FM REUSE_ALV_LIST_LAYOUT_INFO_GET / REUSE_ALV_GRID_LAYOUT_INFO_GET to get the Fieldcat (since due to selection of layout on sel screen some columns are disabled. For the columns which have been disabled the resultant Fieldcat from the above FMs would have NO_OUT = 'X'. Delete columns from Fieldcat itab where no_out = 'X'
    2.create a dynamic itab using cl_alv_table_create=>create_dynamic_table( )  passing the above Fieldcat itab, get a handle of new itab
    3.loop over the original itab and fill the new dynamic itab
    hope this helps...

  • Setting LDB selection screen

    Hi,
    I use report RFDOPR10 which i copied into ZRFDOPR10 . This report uses
    a LDB DDF. In the new report i need to set some values in the selection-screen such as DD_UMSKZ but can't catch up the screen field name.
    Is there a way to solve it?
    Thanks

    A logical database is a special ABAP/4 program which combines the contents of certain database tables. You can link a logical database to an ABAP/4 report program as an attribute. The logical database then supplies the report program with a set of hierarchically structured table lines which can be taken from different database tables.
    LDB offers an easy-to-use selection screens. You can modify the pre-generated selection screen to your needs. It offers check functions to check whether user input is complete, correct, and plausible. It offers reasonable data selections. It contains central authorization checks for data base accesses. Enhancements such as improved performance immediately apply to all report programs that use the logical database.
    Less coding s required to retrieve data compared to normal internel tables.
    Tables used LDB are in hierarchial structure.
    Mainly we used LDBs in HR Abap Programming.
    Where all tables are highly inter related so LDBs can optimize the performance there.
    Check this Document. All abt LDB's
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?documenturi=%2flibrary%2fabap%2fabap-code-samples%2fldb+browser.doc
    GO THROUGH LINKS -
    http://www.sap-basis-abap.com/saptab.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9bfa35c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9b5e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c6/8a15381b80436ce10000009b38f8cf/frameset.htm
    /people/srivijaya.gutala/blog/2007/03/05/why-not-logical-databases
    Re: **LDB**
    www.sapbrain.com/FAQs/TECHNICAL/SAP_ABAP_Logical_Database_FAQ.html
    www.sap-img.com/abap/abap-interview-question.htm
    www.sap-img.com/abap/quick-note-on-design-of-secondary-database-indexes-and-logical-databases.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db9b5e35c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9bb935c111d1829f0000e829fbfe/content.htm
    Gothru the blog which provides info on LDB's:
    /people/srivijaya.gutala/blog/2007/03/05/why-not-logical-databases
    Sample code
    TABLES: SPFLI,
    SFLIGHT,
    SBOOK,
    SCARR.
    START-OF-SELECTION.
    GET SPFLI.
    WRITE:/ ’SPFLI: ’, SPFLI-CARRID, SPFLI-CONNID,
    SPFLI-AIRPFROM, SPFLI-AIRPTO.
    GET SFLIGHT.
    WRITE:/ ’ SFLIGHT: ’, SFLIGHT-CARRID, SFLIGHT-CONNID, SFLIGHT-FLDATE.
    GET SBOOK.
    WRITE:/ ’ SBOOK: ’, SBOOK-CARRID, SBOOK-CONNID,
    SBOOK-FLDATE, SBOOK-BOOKID.
    GET SFLIGHT LATE.
    WRITE:/ ’ GET SFLIGHT LATE: ’, SFLIGHT-FLDATE.

  • Selection screen processing in Module pool

    Dear Friends,
    I am preparing a module pool, in which from one screen, i have to call a selection screen. I want to define this selection screen in the same program. Under which event block, i can define this selection screen?
    Once its called, how can i process the selection screen ( like START-OF-SELECTION etc ?). If i use a LEAVE TO LIST-PROCESSING to display some output, how can i process the user actions in this list?
    Thanking you in anticipation.
    Deepak

    HI Max,
    Thanks a lot for your reply. It was really helpfull. But my problem is not yet solved.
    When i call the selection screen from the PBO of a screen, the selection screen is not being displayed. Only the blank screen is displayed. So i tried another way. I put the CALL SELECTION-ECREEN  statement in the USER_COMMAN_100 module of PAI of the previous screen. (ie when user choose a button from the tool bar, in the initial screen the selection screen will be displayed.)
    module user_command_0100 input.
      OK_SAVE = OK100.
      CLEAR OK100.
      CASE OK_SAVE.
        WHEN 'LIST'.
          CALL SELECTION-SCREEN 200.
          IF SY-SUBRC = 0.
            PERFORM PROCESS_LIST.
          ELSE.
            leave screen.
          ENDIF.
    endmodule.                 " USER_COMMAND_0100  INPUT
    form process_list.
    ... reading database...
    IF SY-SUBRC = 0.
      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 100.
      SET PF-STATUS 'GUI_LIST'.
        LOOP AT ITAB.
          WRITE :/ ITAB-BUKRS, ITAB-BELNR, ITAB-GJAHR.
        ENDLOOP.
      LEAVE SCREEN.
      ENDIF.
    endform.                    " PROCESS_LIST
    Now i have two problems to solve.
    1. I want to come back to the same selection screen (screen no 200) instead of screen 100, when the user click 'back' button in the list. but if i specify screen no 200 in
    LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 100.
    it gives runtime error. ( Msg: Selection screen ZTEST3 0200 was not called using CALL SELECTION-SCREEN). How to return back to selection screen?
    and
    2. If the user selects a line from the list(PICK/F2), that value has to be passed to the input field of first screen( ie the initial screen from where i called the selection screen : screen no 100) For this, where can i write the code to process the user actions in the list?
    Thanking you in anticipation
    Deepak

  • AT selection-screen : Processed 2 times!

    I do have a selection screen
    and event at-selection-screen.
    Some checkbox with usercommand
    When box is uncheck something has to be done but it is done 2 times!
    any idea +?

    My selection screens are generated by another program
    Here is the generated code!
    REPORT main_****.
    CALL SCREEN 0005.
    SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN  .
    SELECTION-SCREEN BEGIN OF BLOCK b_plan WITH FRAME TITLE box_plan.
    SELECTION-SCREEN PUSHBUTTON /01(20) p_9360 USER-COMMAND pl_9360.
    SELECTION-SCREEN PUSHBUTTON 26(20) p_0031 USER-COMMAND pl_0031.
    SELECTION-SCREEN PUSHBUTTON 51(20) p_7320 USER-COMMAND pl_7320.
    SELECTION-SCREEN PUSHBUTTON 76(20) p_7460 USER-COMMAND pl_7460.
    SELECTION-SCREEN PUSHBUTTON /01(20) p_0030 USER-COMMAND pl_0030.
    SELECTION-SCREEN PUSHBUTTON 26(20) p_3250 USER-COMMAND pl_3250.
    SELECTION-SCREEN PUSHBUTTON 51(20) p_4350 USER-COMMAND pl_4350.
    SELECTION-SCREEN PUSHBUTTON /01(20) p_6150 USER-COMMAND pl_6150.
    SELECTION-SCREEN PUSHBUTTON 26(20) p_0035 USER-COMMAND pl_0035.
    SELECTION-SCREEN PUSHBUTTON 51(20) p_4370 USER-COMMAND pl_4370.
    SELECTION-SCREEN PUSHBUTTON /01(20) p_0007 USER-COMMAND pl_0007.
    SELECTION-SCREEN PUSHBUTTON 26(20) p_7440 USER-COMMAND pl_7440.
    SELECTION-SCREEN PUSHBUTTON 51(20) p_4360 USER-COMMAND pl_4360.
    SELECTION-SCREEN END OF BLOCK b_plan .
    SELECTION-SCREEN END OF SCREEN 100.
    SELECTION-SCREEN BEGIN OF SCREEN 200 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK b_stat WITH FRAME TITLE box_stat.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 01(20) pstt_01
    FOR FIELD pst_01.
    PARAMETERS pst_01 AS CHECKBOX DEFAULT 'X' USER-COMMAND pst_01.
    SELECTION-SCREEN COMMENT 26(20) pstt_05
    FOR FIELD pst_05.
    PARAMETERS pst_05 AS CHECKBOX DEFAULT 'X' USER-COMMAND pst_05.
    SELECTION-SCREEN COMMENT 51(20) pstt_08
    FOR FIELD pst_08.
    PARAMETERS pst_08 AS CHECKBOX DEFAULT 'X' USER-COMMAND pst_08.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 01(20) pstt_03
    FOR FIELD pst_03.
    PARAMETERS pst_03 AS CHECKBOX DEFAULT 'X' USER-COMMAND pst_03.
    SELECTION-SCREEN COMMENT 26(20) pstt_06
    FOR FIELD pst_06.
    PARAMETERS pst_06 AS CHECKBOX DEFAULT 'X' USER-COMMAND pst_06.
    SELECTION-SCREEN COMMENT 51(20) pstt_10
    FOR FIELD pst_10.
    PARAMETERS pst_10 AS CHECKBOX DEFAULT 'X' USER-COMMAND pst_10.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 01(20) pstt_04
    FOR FIELD pst_04.
    PARAMETERS pst_04 AS CHECKBOX DEFAULT 'X' USER-COMMAND pst_04.
    SELECTION-SCREEN COMMENT 26(20) pstt_07
    FOR FIELD pst_07.
    PARAMETERS pst_07 AS CHECKBOX DEFAULT 'X' USER-COMMAND pst_07.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b_stat .
    SELECTION-SCREEN END OF SCREEN 200.
    SELECTION-SCREEN BEGIN OF SCREEN 300 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK b_licha WITH FRAME TITLE box_lich.
    DATA : g_licha TYPE mch1-licha.
    SELECT-OPTIONS : so_licha FOR g_licha.
    SELECTION-SCREEN END OF BLOCK b_licha .
    SELECTION-SCREEN END OF SCREEN 300.
    SELECTION-SCREEN BEGIN OF SCREEN 333 AS SUBSCREEN.
    SELECTION-SCREEN INCLUDE BLOCKS b_stat.
    SELECTION-SCREEN INCLUDE BLOCKS b_licha.
    SELECTION-SCREEN INCLUDE BLOCKS b_plan.
    SELECTION-SCREEN END OF SCREEN 333.
    SELECTION-SCREEN BEGIN OF SCREEN 666 AS SUBSCREEN.
    SELECTION-SCREEN END OF SCREEN 666.
    SELECTION-SCREEN BEGIN OF SCREEN 999 AS SUBSCREEN.
    SELECTION-SCREEN END OF SCREEN 999.
    SELECTION-SCREEN BEGIN OF SCREEN 0005.
    SELECTION-SCREEN: BEGIN OF TABBED BLOCK mytab FOR
    17
    LINES,
        TAB (20) button1 USER-COMMAND push1 DEFAULT SCREEN 333,
        TAB (20) button2 USER-COMMAND push2 DEFAULT SCREEN 666,
        TAB (20) button3 USER-COMMAND push3 DEFAULT SCREEN 999,
                      END OF BLOCK mytab.
    SELECTION-SCREEN END OF SCREEN 0005.
    INITIALIZATION.
      SET  PF-STATUS 'STAT'.
      sy-title = '-= [ MDi Cockpit ] =-'.
      TABLES zvmdi16. RANGES : r_status FOR zvmdi16-zzmdistat.
      r_status-sign = 'I'. r_status-option = 'EQ'.
      MOVE 'ACB' TO p_9360.
      MOVE 'Avilés' TO p_0030.
      MOVE 'Cockerill Sambre' TO p_6150.
      MOVE 'EKO Stahl GmbH' TO p_0007.
      MOVE 'Etxebarri' TO p_0031.
      MOVE 'Galvalange' TO p_3250.
      MOVE 'Gijón' TO p_0035.
      MOVE 'Sagunto' TO p_7440.
      MOVE 'Sidmar' TO p_7320.
      MOVE 'Sollac Atlantique' TO p_4350.
      MOVE 'Sollac Lorraine' TO p_4370.
      MOVE 'Sollac Méditerranée' TO p_4360.
      MOVE 'Stahlwerke Bremen' TO p_7460.
      MOVE '01-Initialized' TO pstt_01.
      MOVE '01' TO r_status-low. APPEND r_status.
      MOVE '03-Send to Plant' TO pstt_03.
      MOVE '03' TO r_status-low. APPEND r_status.
      MOVE '04-Analysis by Plant' TO pstt_04.
      MOVE '04' TO r_status-low. APPEND r_status.
      MOVE '05-Pending at Plant' TO pstt_05.
      MOVE '05' TO r_status-low. APPEND r_status.
      MOVE '06-Updated for Leverage' TO pstt_06.
      MOVE '06' TO r_status-low. APPEND r_status.
      MOVE '07-Wait for new MDI Message' TO pstt_07.
      MOVE '07' TO r_status-low. APPEND r_status.
      MOVE '08-Returned to Leverage' TO pstt_08.
      MOVE '08' TO r_status-low. APPEND r_status.
      MOVE '10-Ignore MDI Message' TO pstt_10.
      MOVE '10' TO r_status-low. APPEND r_status.
    AT SELECTION-SCREEN OUTPUT.
      MOVE 'Vendor Batch' TO %_so_licha_%_app_%-text.
      MOVE 'Plant' TO box_plan.
      MOVE 'MDi Status' TO box_stat.
      MOVE ' Main Selection ' TO button1 .
      MOVE ' Status Information ' TO button2 .
      MOVE ' Error Information ' TO button3 .
    AT SELECTION-SCREEN.
      IF sy-ucomm CS 'PL_'.
        IF r_status[] IS INITIAL.
          MESSAGE e398(00) WITH 'No Status have been selected!'.
        ELSE.
          SUBMIT zvl_mdi_errorwf_plant
                WITH s_licha IN so_licha
                WITH s_plant = sy-ucomm+3
                WITH s_status IN r_status
          AND RETURN.
        ENDIF.
      ELSEIF sy-ucomm CS 'PST_'.
        DELETE r_status WHERE low = sy-ucomm+4.
        IF sy-subrc NE 0.
          MOVE  sy-ucomm+4(2) TO r_status-low. APPEND r_status.
        ENDIF.
        CLEAR sy-ucomm.
      ENDIF.

  • 0FI_GL_4 data source input selection screen

    Dear experts,
    I have enabled the input selection option tickfor fields PRCTR and KOSTL in data source 0FI_GL_4 with RSA6.
    Both the fields are available in extract checker RSA3 too. But while does not have any effect while running the extractor. PRCTR and KOSTL are not having any effect while using in selection screen. Kindly let me know if any process there to enhance the standard program by putting the extra field in the selection (open cursor).
    Jigar

    Hi Leandro,
    First, if you want to change a selection field, you need to do it in RSA6, checking the selection flag. I wouldn't touch the table..
    Not always the filter is just checking the flag, I don't know particulary 0FI_GL_4, but the filter might be done in the Function Module logic.
    Where have you updated that field? 0GL_ACCOUNT is an infoobject, so it's in BW. If you want to filter in the InfoPackage, you need to filter in ERP, so it's a field (HKONT) and not an Infoobject.
    For 0FI_GL_4, if you check transaction RSA2, you'll see that selection is impossible, so I'm not sure if changing the table value manually would be enough.
    Hope this helps.
    Regards,
    Diego

  • How to configure/set the selection screen in MRKO

    Hi Experts,
    I couldn't find any config or BADI or User Exit to change the selection screen in MRKO screen. Currently, only company code field is mandatory. My customer requested to make the vendor field as mandatory.
    Am I right to say that it is standard SAP program that control the field selections?
    Thanks in advance.

    Hi
    Using SHD0  - Maintain Transaction variant you can control the screen options for Transaction MRKO
    You can only create transaction variants for dialog transactions and reporting transactions.
    Only "normal" screens, dialog boxes, and subscreens can be included in the variant.
    Screen Variants are automatically created anytime you create a transaction variant.
    Enter the name of the transaction and the transaction variant on the initial screen. The system creates a cross-client transaction variant. If you want to create a client-specific transaction variant, choose Goto -> Client-specific transaction variants tp branch to the client-specific transaction variant maintenance transaction.
    Client-specific transaction variants only exist in the client in which they are created. The field contents of the transaction variant must be available in this client. Cross-client transaction variants are available throughout the system, regardless of the client currently being used. The field contents of these transaction variants must be available in all clients.
    Creating the Transaction Variant
    Choose Create to create a variant.
    The system calls the application transaction that you want to create a variant for. Enter the values you want to use in the in the input fields. Each time an action is completed, a Dialog Box, appears listing the fields of the current screen with their current values. The kind of dialog box called depends on the kind of screen currently being processed
    Enter screen variant names in the "Name of screen variant" field. These names must be unique. If the system is able to find a unique name for a screen variant it is automatically inserted into this field. The convention reads like so: (< name_of_transaction_variant>_(<client>)_<screen_number>).
    Choose the function Continue to proceed. The following pushbuttons are available:
    The Cancel function displays the current application transaction screen again. Here you can make changes to your settings.
    The Menu functions function displays an additional dialog box wher you can deactivate menu functions.
    The GuiXT function allows the user to edit a GuiXT script for the current screen (--> GuiXT).
    The Exit and Save function exits and saves the application transaction. A list appears containing all of the screens in the application transaction that you want to save entries for (that is, all screens for which screen variants will be created).
    Enter a short text for your transaction variant here.
    Display settings can be changed as needed from this list in the future. Settings that require information at application transaction runtime (field values, table control columns) cannot be changed from this list.
    Choose "Save". The system saves your transaction variant and the corresponding screen variants. The Workbench Organizer dialog box is displayed for the transaction variant and for each screen variant. Use it to assign each of these objects to a package.
    You can also branch to this list using the Change values function during the function selection process.
    Thanks & Regards
    Kishore

  • Selections Screen Processing

    I have a selection screen with several select-options, most of which
    allow multiple selections and/or ranges.
    These selection crietera have to be used to retrieve data for
    a report.  I can generate a first SQL statement to retrieve all
    the records meeting the top-level selection criteria.  And then I would
    have to filter the data using several loops to apply the other
    selection criteria.  I could also create one or more views in the dictionary
    to reduce the need for this loop processing.
    What is the best way to proceed?

    Depend on ur database then you can decide ,You could write Normal select query with having join select query .
    Please take up in internal table only 3 tables for each join query and if you take more than 3 tables and it would be performance issue.
    and also try to use for all entries and it gives better option.

  • Need stock on particular date entered on selection screen

    I am creating a stock in transit report and need stock on particular date entered by the user on selection screen.How do I calculate stock on a particular date?

    same thread...
    Re: Stock on a particulare date

  • Passing data to dynamic selection screen

    Hi Guys ,
    I need to pass some field values captured in my report to transaction FBL5N . The problem is that one of the fields which i need to input the value in FBL5N is a dynamic selection in FBL5N and is not in the standard selection screen . How do I pass the value to this field .
    Any sort of help would be great .
    thanks

    If a parameter ID is assigned to the field with dynamic selection in FBL5N, you can pass the value by means of SET PARAMETER ID statement.
    Regards,
    Renata

Maybe you are looking for

  • HP Officejet Pro 8610 setup ink cartridges not recognized

    I just purchased an HP Officejet Pro 8610, and was following the setup on the printer, installed the ink cartridges as shown in the "movie" guide, and the printer seems to not recognize that I have installed the 4 ink cartridges. They are the 4 cartr

  • Troubled

    how do I convert a microsoft word document to a PDF?

  • Camcorder Analog to Digital

    What is the best converter reasonably priced to do a decent job? I have been looking at this one: canopus ADVC-55 A/D Converter Any thoughts or anyone that has used it? Thanks for any and all help. Hoping you all have a great Holiday Season! Margit i

  • Mismatch report data

    Hi I am using 10g.i have one report.In that report query return 2 values but my table report shows only one value.Could you please let me know how it will take data from DB into report. e.g Report Activity Value FF01 10 FF05 1.4 Same DB query while e

  • Keyboard shortcut for Copies has never worked in print dialog

    I don't know if this is the right place to report a bug, but it has always irritated me that the keyboard shortcut ALT-C to move the focus to the Copies field has never worked in the Adobe Reader print dialog.  It should work as the underscore exists