Disable period selection subscreen screen 1000

Hi,
I am trying to disable the period selection subscreen on screen 1000 (hr - pnp), so only the payroll period selection subscreen is visible.
Can anyone help me?
thanks,
Nathalie

Hi Nathalie,
There is no need to dsiable any module.. you can create a new Report Category like I mentioned above & attach it to your Zprogram. PL do the following.
1. In SE80/SE38 Get into Change mode for your Program.
2. Go to-->Attributes
3. Click on HR Report Category
4. Click on the Create Report Category
The list of all the existing Report Categories are displayed. You can either pick one that suits your requirement or copy one & in the details screen select the 'No Entry ' radiobutton for Payroll Area/Period/Year.
Regards,
Suresh Datti

Similar Messages

  • How to disable save button on selection screen (1000) run from other report

    Hi Experts,
    Can any one let me know how to disable save button on selection screen (1000) run from other report.
    Say I am running from report R1 which submits report R2, but the save button should be disabled on
    report R2(selection screen 100).
    Thanks in advance.
    Regards
    RP.

    Hi RPReddy16 ,
    Try this:
    DATA :BEGIN OF t_extab occurs 0,
                     fcode like rsmpe-func,
                 END OF t_extab.
    REFRESH T_EXTAB.
    MOVE 'SAVE' TO T_EXTAB-FCODE.
    APPEND T_EXTAB.
    CLEAR T_EXTAB.
    SET PF-STATUS 'STATUS' EXCLUDING T_EXTAB.
    Regards,
    José

  • Selection screen 1000

    hi,
    Can i include a table control in selection screen 1000.
    thank in advance
    joseph fryda

    I would not suggest it.  Instead embed a selection screen in a subscreen of a dynpro with the table control.
    Here is a sample program of how to embed a selection screen in a dynpro.
    report zrich_0006 .
    tables: mara.
    * Custom Selection Screen 1010
    selection-screen begin of screen 1010 as subscreen.
    selection-screen begin of block b1 with frame title text-001.
    parameters: p_rad1 radiobutton group grp1 default 'X',
                p_rad2 radiobutton group grp1,
                p_rad3 radiobutton group grp1.
    select-options: s_matnr for  mara-matnr,
                    s_matkl for  mara-matkl,
                    s_mtart for  mara-mtart.
    selection-screen end of block b1.
    selection-screen end of screen 1010.
    start-of-selection.
      call screen 100.
    *&      Module  STATUS_0100  OUTPUT
    module status_0100 output.
    *  SET PF-STATUS 'xxxxxxxx'.
    *  SET TITLEBAR 'xxx'.
    endmodule.
    *&      Module  USER_COMMAND_0100  INPUT
    module user_command_0100 input.
    endmodule.
    * Screen screen 100 with a subscreen area called "subscreen_1010"
    * Screen Flow Logic follows
    *process before output.
    *  module status_0100.
    *  call subscreen subscreen_1010 including sy-repid '1010'.
    *process after input.
    *  call subscreen subscreen_1010 .
    *  module user_command_0100.
    Regards,
    Rich Heilman
    Message was edited by: Rich Heilman

  • How can i used pai in screen 1000 to change the select-options field?

    hi,all.
    I want used pai to change the select-options field,but it can't works.
    the mainly code is:
    REPORT  ZTEST99.
    TABLES :MARA,MAKT,MARC.
    SELECTION-SCREEN BEGIN OF BLOCK B0 WITH FRAME TITLE TITLE0 .
    select-options:s_matnr for mara-matnr,
                   s_werks for marc-werks MODIF ID ID1.
    SELECTION-SCREEN END OF BLOCK B0.
    parameters:p_flag as checkbox.
    at selection-screen OUTPUT.
       LOOP AT SCREEN.
       IF P_FLAG = 'X' .
       IF screen-group1 = 'ID1'.
             screen-input = '0'.
        ELSE.
          screen-input = '1'.
        ENDIF.
        MODIFY SCREEN.
    ENDIF.
        ENDLOOP.
    START-OF-SELECTION.
    CALL SCREEN 1000.
    when i click p_flag,then i want to change s_werks from OBLIGATORY to no OBLIGATORY.
    how can i realized?
    Thanks for all.
    Sun

    Hi ,
    change your code like this.
    Change in your code:
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    SELECT-OPTIONS : s_matnr for mara-matnr,
    s_werks for marc-werks MODIF ID ID1.
    SELECTION-SCREEN END OF SCREEN 100 .
    At selection-screen.
    if sy-dynnr = '100'.
    IF P_FLAG = 'X' .
    LOOP AT SCREEN.
    IF screen-group1 = 'ID1'.
    screen-required = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    else.
    LOOP AT SCREEN.
    IF screen-group1 = 'ID1'.
    screen-required = 1.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    my code :
    REPORT  Z50871_SELECTOPS_DYNAMIC.
    PARAMETERS : CH_EBELN AS CHECKBOX,
                 CH_VBELN AS CHECKBOX.
    DATA: V_EBELN TYPE EKKO-EBELN,
          V_VBELN TYPE VBAK-VBELN.
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    SELECT-OPTIONS : EBELN FOR V_EBELN MODIF ID G1,
                     VBELN FOR V_VBELN MODIF ID G2.
    SELECTION-SCREEN END OF SCREEN 100 .
    AT SELECTION-SCREEN OUTPUT.
      IF SY-DYNNR = 100.
        IF CH_EBELN = 'X' AND
           CH_VBELN = ''.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'G1'.
              SCREEN-ACTIVE = '1'.
            ELSE.
              SCREEN-ACTIVE = '0'.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ELSEIF CH_VBELN = 'X' AND
           CH_EBELN = '' .
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'G2'.
              SCREEN-ACTIVE = '1'.
            ELSE.
              SCREEN-ACTIVE = '0'.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ELSEIF CH_EBELN = 'X' AND CH_VBELN = 'X'.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'G1'
               OR SCREEN-GROUP1 EQ 'G2' .
              SCREEN-ACTIVE = '1'.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ENDIF.
      ENDIF.
    AT SELECTION-SCREEN.
    IF SY-DYNNR = 1000.
      IF CH_EBELN = 'X' OR CH_VBELN = 'X'.
        CALL SELECTION-SCREEN 100.
      ELSE.
        MESSAGE I000(Z50871MSG) WITH 'Please select atleast one checkbox'.
      ENDIF.
    ENDIF.
    regards
    Sandeep Reddy

  • How to disable the Selection screens of LDB's ?

    Hi,
             How to disable the Selection screens of LDB's when we r using the predefined LDB for our executable pgm ? and how to include the predefined LDB  can u write the Code for including LDb or if possible give an example of a Pgm using a Predefined LDB?
    Thanks & Regards,
    Gopi.

    Hi Gopi,
    Go through the link,
    http://www.sapdevelopment.co.uk/hr/hrhome.htm
    Regards,
    Azaz Ali.

  • How to transport a select - option screen in dialogue programme

    hi Techies
    I have Created select-option field in dialogue program ( With the help of SUBSCREEN)
    Now i need to Transport this Select option Field To Live Server ....
    Poblem is select-option field is not updating in Live server ....
    i have changed some logic in the flow logic of select-option screen. (Just added the F4 help in flow logic)
    while transporting it is fetching the standrd select option field & Flow logic...
    not the changed one ..........?????????
    plz suggest me possible way to accomplish my requirment.
    Regards
    Prasad

    HI,
    check these links for sample codes
    Display Select option in module pool screen
    Select-Option Extension box in Module Pool
    http://sample-code-abap.blogspot.com/2008/06/select-option-in-module-pool-screen.html
    Regards,
    Anirban

  • Wrong period selection for date entered

    Dear Friends,
    In payslip program, I have used HR report category (X_M00002) that shows two options (radiobutton) for period selection:
    1. Current Period
    2. Other Period
    Problem is that when I enter other period as 01.2007 it displays salary slip of February 2007 instead of April 2007 though the period in selection screen on pressing the enter key shows 01.04.2007-30.04.2007.
    This is a copy of another program which shows correct payslip for selected period.
    What could the possible error be?
    Regards,
    Amit

    >
    Amit Srivastava wrote:
    > I had missed to unmark a chackbox named 'Print retroactive runs' in the selection screen. Unmarking it solved the problem.
    > Amit
    Hi, Amit
    Total Questions:         50 (33 unresolved)
    Your most of the Question are still open as you have found the solution of your problem so please mark this question as answered and also the other your open question where you have go the Solution, Please
    Best Regards,
    Faisal

  • Skiping initial selection criteria screen of HR report for Manager Desktop

    Dear All,
    The reports are configured using a custom scenario (Z Scenario) for Manager Desktop and used over the Portal through MSS. I have a requirement where for only one report (named Expired Qualifications) the initial selection criteria screen which comes when accessed through portal needs to be disabled or skipped and directly the transaction S_AHR_61015536 for this report needs to be called.
    Please provide the inputs if it can be done and how for one report only.
    Regards,
    Samir

    Dear Sen,
    I have checked the thread suggested by you but the report here is not independent transaction integrated using iView. It is a part of Scenario which makes the reports available to the managers. It uses MSS Standard iView "Reports" and "Selection Criteria". Both iViews are in one page as delivered by SAP. The reports iView displays all the reports configured in the scenario for Manager Desktop and Selection Criteria iView is launched first in the portal content area when the report ( "Expired Qualifications") link is clicked from the Reports iView.
    Regards,
    Samir

  • Disabling fields in subscreen

    Hi,
    I have a main screen '9970' and subscreen '7300'.
    The subscreen '7300' is also a subscreen of some other screen say '9000'.
    Now I need to disable the fields of '7300' only when it is called from the main screen '9970'. When i disable in fields in PBO of subscreen , then it will be disabled in screen '9000' also.
    Is there any way to disable fields of subscreen from the main screen '9970'.
    I tried the following in PBO of main screen
    LOOP AT SCREEN.
    If Screen-name = 'SCRAREA1'.
                SCREEN-INPUT = '0'.
          MODIFY SCREEN.
          ENDLOOP.
    ENDLOOP.
    ps: call subscreen SCRAREA1 using <prog-name> <screen-no>
    SCRAREA1 is the name of the subscreen area.
    But the above code is not capturing the subscreen area name at all..
    Anyone please suggest..
    Thanks
    Hemalatha

    Hi,
    In The main screen 9000 and 9970 pass the screen number to a global variable before calling subscreen 7300.
    In PBO of 7300 chek the variable to know if it has been called from the desired main screen say 9970. If yes disable it and pass another indicator say dibale  = X.
    Return to main screen.
    In the PBO of the Main screen check the variable DISABLE and grayout the fields you want.
    IMPORTANT.
    If you are doing CALL SCREEN 7300 from 9000.And then a LEAVE TO SCREEN from 7300 after processing, you will not go to the PBO of 9000. Control will execute the flow logic of 9000 after the CALL SCREEN statement.
    Let me know if any issues.
    Thanks,
    Vivekanand

  • Screen 1000 is not visible in se80, but it is there in se51

    Hi,
    I do not know why i am not able to view selection screen 1000 in SE80 for my report program. But i could see in SE51.
    This is report program using ALV class.
    The program is working fine.
    Thanks
    Praba
    Edited by: Prabaharan Rangasamy on May 15, 2009 12:02 AM

    Hi,
    In SE80, when i select the program...i could see the screen and underneath i could see my 100 screen also.
    But i could not see my 1000 screen.....1000 screen is my selection screen. I created z transaction with that 1000 screen.
    even if i execute my program using z transaction, it is working fine.
    I wonder did i delete by mistake my 1000 screen..I do not know what kind of mistake i have done?

  • How to disable the select options button, while audio is playing in the question template in captivate 8?

    How to disable the select options button, while audio is playing in the question template in captivate 8?

    Apologies for late reply.
    I mean "On Question screens audio keeps on playing even after we have selected an option or options depending on the question type and clicked Submit. How do we stop the audio on selecting an option?"

  • How do i disable the startup splash screen in elements 9

    How do i disable the startup splash screen in elements 9

    Try making a direct shortcut for the Organizer and Editor. Make sure you have the correct file path as there is more than one exe file. You can then launch the programs directly from the desktop bypassing the welcome screen. This is generally better as the welcome screen leaves background processes running.
    On Windows, Right click anywhere on the desktop and select New >> Shortcut
    Then click the browse button and navigate to:
    "C:\Program Files\Adobe\Elements 9 Organizer\PhotoshopElementsOrganizer.exe"
    Then click Next; then click Finish
    Then make a direct shortcut for the Editor in a similar manner.
    On Windows, Right click anywhere on the desktop and select New >> Shortcut
    Then click the browse button and navigate to:
    "C:\Program Files\Adobe\Photoshop Elements 9\PhotoshopElementsEditor.exe"
    Then click Next; then click Finish
    N.B. on 64 bit systems navigate to Program Files (x86)

  • Label of PARAMETER-field on SCREEN 1000

    Hi,
    I have created a field with the next statement.
    PARAMETERS p_input LIKE spfli-carrid OBLIGATORY.
    SAP puts it on screen 1000 but how can I change the label for this field. On my screen you can only see "p_input".
    Thx
    Carl

    HI,
    Welcome to SDN!!!!!!
    in se38 editor...
    go to menu item GOTO --> TEXT ELEMENTS --> Selection TEXTS
    Save and Activate..
    BACK, Activate the program
    Regards
    SAB

  • Disabling complex selection button

    Hi Experts,
       In my select-options, based on the user ( sy-uname ), I am disabling the select-option-High value.
       i.e.      if screen-name = 'S_DATE-HIGH'.
                    screen-input = 0.
                 endif.
      But at the same time I need to disable the complex selection button also. It means that the user has to give only one input like parameter.
    How can I disable complex selection button.
    Thanks and regards,
    Venkat

    hi,
    please check this below code
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME  TITLE TEXT-027 .
    PARAMETERS: P_RADIO1 RADIOBUTTON GROUP RAD DEFAULT 'X' USER-COMMAND UCOM .
    PARAMETERS : P_KEY TYPE SYDATUM DEFAULT sy-datum MODIF ID MO1.
    PARAMETERS: P_RADIO2 RADIOBUTTON GROUP RAD.
    SELECT-OPTIONS: SO_BUDAT FOR BSIS-BUDAT MODIF ID MO2 .
    SELECTION-SCREEN END OF BLOCK B2.
    *--AT SELECTION-SCREEN OUTPUT STATMENTS--
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
         IF P_RADIO1 = 'X'.
           CHECK SCREEN-group1 = 'MO1'.
           SCREEN-INPUT = 1.
         ELSE.
           CHECK SCREEN-group1 = 'MO1'.
           SCREEN-INPUT = 0.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
      LOOP AT SCREEN.
        if P_RADIO2 = 'X'.
          CHECK SCREEN-GROUP1 = 'MO2'.
          SCREEN-INPUT = 1.
        ELSE.
          CHECK SCREEN-GROUP1 = 'MO2'.
          SCREEN-INPUT = 0.
       endif.
           MODIFY SCREEN.
      ENDLOOP.

  • SELECT ION-SCREEN COMMENT & BEGIN OF LINE???

    Hi Experts,
    What wuld do the follwoing 2 syntax? I mean, just they print the text on Selection-screen! or any thing else?
    1 - SELECT ION-SCREEN COMMENT
    2-  SELECT ION-SCREEN BEGIN OF LINE
    thanq.
    Message was edited by:
            Sridhar

    See the example :
    SELECT ION-SCREEN COMMENT  - it is for text elements for selection-screen fields.
    When you radio button,text will come right side,if you want to use left side text,then use comment line.
    SELECT ION-SCREEN BEGIN OF LINE
    if you want to use selection-screen fields in same line ,then use this
    selection-screen begin of block b0  with frame title text-b00.
    Data Selection Fields
    selection-screen begin of block b1 with frame title text-001.
    select-options: s_werks     for marc-werks no intervals
                                             obligatory
                                             no-extension
                                             default '1000',
                    s_lgort     for mseg-lgort no intervals
                                             obligatory
                                             no-extension
                                             default '1000',
                    s_prod      for marc-zzproddept ,
                    s_zzdept    for marc-zzdept,
                    s_mtart     for mara-mtart,
                    s_matnr     for mara-matnr,
                    s_lifnr     for mseg-lifnr,
                    s_vmsta     for mvke-vmsta.
    selection-screen end of block b1.
    selection-screen skip.
    Report Type
    selection-screen begin of block b2 with frame title text-002.
    Shelf Life Expiry Report
    selection-screen begin of line.
    selection-screen comment 1(31) text-004.
    parameter:        r_1   radiobutton group rad1.
    selection-screen end of line.
    selection-screen begin of line.
    Aging  Report
    selection-screen comment 1(31) text-005.
    parameter:        r_2   radiobutton group rad1.
    selection-screen comment 40(30) text-003.
    parameter: p_expir as checkbox.
    selection-screen end of line.
    selection-screen begin of line.
    Materials with no Expiry Date
    selection-screen comment 1(31) text-006.
    parameter:        r_3   radiobutton group rad1.
    selection-screen comment 40(30) text-007.
    parameter : p_bin as checkbox ."default 'X'.
    selection-screen end of line.
    selection-screen end of block b2.
    selection-screen end of block b0.

Maybe you are looking for

  • Can't install Photoshop CS3 on Windows XP SP3

    Hello, I recently have reformated my machine and installed XP SP3 sadly now, I can't install Photoshop CS3, when I double-click on Setup.exe, it show me a small bar/dialog which tells me it's extracting files, but after that, NOTHING HAPPENS I left i

  • URL Link overrides

    Hi, I set the url link to the 2 groups on click like this 1-st group: window.open("http://www.google.com", "_blank"); 2-nd group: window.open("http://translate.google.com", "_blank"); the problem is then I test the animation, 1-st and 2-nd group gets

  • Bank data Moldavia

    HI to all, I try to enter bank data for Moldavia also entering the IBAN. But the system tells me all the time that the IBAN is not correct although I validated it. I belive it has to do with the country specific check rules. Do you know what are the

  • How to Determine BHCA and ACH in UCCX Environment v8.5.1

    Hi, I need to calculate the busy hour call attempts and average call handle time in a UCCX environment. I know for a UCCE you can simply run a SQL query, but I am having trouble with the UCCX. UCCX version is 8.5.1 Thank you, 

  • Creating / updating vendor master from CREMAS03

    Hi All, I am getting vendor master data from external system and SAP XI will convert this into Idoc of message type CREMAS03. I would like to create/update vendor master in R/3 system from Idoc CREMAS03. Which function module / BAPI will cater to thi