Selection-Block By default grey

Hi,
How to make the block in the selection-screen by default as greyed.

hi,
Try this code, this makes the block by default gray.
selection-screen begin of block b1 WITH FRAME TITLE TEXT-001.
   parameters : p_matnr like mara-matnr modif id ABC,
                p_ersda like mara-ersda modif id ABC.
  selection-screen end of block b1.
  At selection-screen output.
   loop at screen.
     if screen-group1 = 'ABC'.
       screen-input = 0.
       modify screen.
     endif.
   endloop.
Regards,
Sailaja.
Message was edited by: Sailaja N.L.

Similar Messages

  • Push button "Select Block" on the list screen?Interactive report

    Hi, i am developing a plain report(Use read data & write output, not ALV).
    And there was a checkbox(itab-chx) before each line of the output list.
    The customer wants me to add 4 buttons on the menu bar, they are 'Delete', 'Select ALL', 'Deselect all',  <b>'Select block'</b>.
    As far as i know that 'Delete' button is for the user to delete the entries which they have checked using the checkbox.
    As for 'Select ALL' is that when they push this button, all the checkbox on the output list are checked.
    As for 'Deselect all' is that ...all are unchecked.
    <b>BUT</b> i dont have any idea on 'Select Block' function?? What it is and how to program and handling with this button???
    Below is my code for those button, just dont know what 'Select block' means
    at user-command.
      case sy-ucomm.
        when 'DLT'. 'Delete
             'Do delete things...
        when 'SLL'. 'Select all     
          loop at itab.
            itab-chx = 'X'.
            modify itab index sy-tabix.
          endloop.
          sy-lsind = 0.
          perform output.
        when 'DSL'. 'Deselect all
          loop at itab.
            itab-chx = ' '.
            modify itab index sy-tabix.
          endloop.
          sy-lsind = 0.
          perform output.
        when 'SBL'.  'Select block
          '???? No idea at all!!!
      endcase.
    Great thanks!!! Any helps?
    Hoo lala 
    Message was edited by:
            Hoo lala
    Message was edited by:
            Hoo lala

    Refer this demo report, it is having 2 buttons one Call (defined in PF status) and other one PA30 one.
    u have to create a PF status, and there in Application Toolbar option i have cretaed a button Named Call. like tht u can create more buttons as per ur requirement.
    REPORT  ZGILL_CALLREPORT                        .
    DATA: L_PERNR(20).
    parameters : p_rname(20) obligatory DEFAULT 'NONE'.
    INCLUDE <icon> .
    selection-screen pushbutton 60(20) gocfg user-command amit.
    AT SELECTION-SCREEN OUTPUT.
    write icon_configuration as icon to gocfg.
    concatenate gocfg 'Go to PA30' into gocfg.
    AT SELECTION-SCREEN.
    if sy-ucomm = 'AMIT'.
    SET PARAMETER ID 'PER' FIELD '10000000'.
    call transaction 'PA30'.
    ENDIF.
    Start-of-selection.
    write: 'This Report is called by report',' ',p_rname left-justified.
    set pf-status 'TEST'.
    AT USER-COMMAND.
    CASE SY-UCOMM.
    WHEN 'CALL'.
    submit zgill_it using selection-set 'TESTING_IT'
           exporting list to memory and return.
    perform get_output.
    WHEN '&F03'.
      LEAVE SCREEN.
    WHEN '&F15'.
      LEAVE PROGRAM.
    ENDCASE.
    *&      Form  get_output
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form get_output .
    data : listobject like abaplist occurs 0.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject       = listobject
    * EXCEPTIONS
    *   NOT_FOUND        = 1
    *   OTHERS           = 2
    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 'DISPLAY_LIST'
    * EXPORTING
    *   FULLSCREEN                  =
    *   CALLER_HANDLES_EVENTS       =
    *   STARTING_X                  = 10
    *   STARTING_Y                  = 10
    *   ENDING_X                    = 60
    *   ENDING_Y                    = 20
    * IMPORTING
    *   USER_COMMAND                =
      TABLES
        listobject                  = listobject
    * EXCEPTIONS
    *   EMPTY_LIST                  = 1
    *   OTHERS                      = 2
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    refresh listobject.
    endform.                    " get_output

  • Looking for a select block

    Hello!
    I'm looking for a select block but I don't find it.. I want a block with four inputs,an input select, and one output. The output variable catch  the value of the input variable which his position agree with the value of input select.
    Ex.: I have input_1=20    input_2=30   input_3=40  input_4=50 and input select is 2. Output value is 30.
    Exist a block like this? If not exist, which eay you try to build it? Thanks!
    Thank you
    Larson

    Hi Larson
    There is a select block - it is called "case structure" and is located in the structures palette (where the loops are).
    You can use this structure to switch between different cases. You can have different types to control them.
    Here is a simple example of what you want to do.
    Hope this helps.
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    Case.vi ‏17 KB

  • Payment block by default un Residual items documents

    Hi
    I was wondering why SAP is setting a payment block by default when creating a "Residual item" document. Does anybody knows where is configured this behavior?
    thanks a lot
    Rafa

    Hi
    While you are creating Residual item document there is no setting for payment block.
    Please verify in Vendor Master data for the same.
    Srini

  • Display Key and Text in Variable Selection Box by Default in BEx

    Hi Experts,
    I have a requirement to display both key and text in the variable selection box by default.
    Currently, only the text is being displayed.
    The 'wrench' can be used to change the display, but the client would like to see both key and text by default.
    Is there  a way I can accomplish this?
    Thanks,
    Points will be assigned!

    hi experts,
    i have done the same settings in development and its working fine and we can see key/text bydefault in variable selection in Dev. and when i transport the cube into quality the settings are reflecting but in analyzer(QA) variable selection screen still its giving text(DEFAULT). could you please provide me the solutions to do it.
    thanks & Regards
    vadlamudi

  • Creating a block key default for documents created by MIRO?

    Hi All,
    Could anyone tell me how to create a block key default for documents created by MIRO?  
    Thanks
    Gandalf

    Hi,
    I cannot find substitution field BSEG-ZLSPR in GGB1.
    My prerequisite is to check if SYST-TCODE = MIRO and unplanned delivery cost <> 0.
    How to define unplanned delivery cost field in the prerequisite. I cannot find the field name.
    You can see this field when you create MIRO, tab details.
    The purpose for my substitution is to block all unplanned delivery cost invoices.
    When I click on substitution the choices I got is only as below :
    BSEG  ABPER       Settl.Period
    BSEG  AUGGJ       Clrg Fiscal Yr
    BSEG  DOCLN       Line Item
    BSEG  FIPOS       Commitment Item
    BSEG  FISTL       Funds Center
    BSEG  FKBER       Functional Area
    BSEG  FKBER_LONG  Functional Area
    BSEG  GEBER       Fund
    BSEG  GMVKZ       Execution
    BSEG  GRANT_NBR   Grant
    BSEG  HKTID       Account ID
    BSEG  HZUON       Sp.G/L assgt
    BSEG  INTRENO     RE code
    BSEG  KSTAR       Cost Element
    BSEG  MEASURE     Funded Program
    BSEG  PARGB       Trdg Part.BA
    BSEG  PPA_EX_IND  Excluding/Includin
    BSEG  PPRCT       Partner PC
    BSEG  PRCTR       Profit Center
    BSEG  PRODPER     Prod.Month
    BSEG  PRZNR       Business Proc.
    BSEG  PSEGMENT    Partner Segment
    BSEG  SAMNR       Collect.inv.
    BSEG  SCTAX       FI-CA Tax Portion
    BSEG  SEGMENT     Segment
    BSEG  SRTYPE      Addit.Receivab.
    BSEG  UZAWE       Pmt meth.supl.
    BSEG  XREF1       Reference Key 1
    BSEG  XREF2       Reference Key 2
    BSEG  XREF3       Reference Key 3
    BSEG  ZUONR       Assignment
    Can anyone help me ?

  • [JS] select blocks of text

    Hello,
    How to select blocks of text embedded in the image to change their size?
    thank you very much
    Bonjour,
    Comment sélectionner des blocs image ancrée dans le texte pour leur changer la taille?
    Merci beaucoup

    Here's a picture.
    I have to select blocks and their dimensions changed blocks and changes the framing of the image and applied a style block ...
    To start, my biggest problem is the selection inked block ... for the rest I cross that I should come
    Voici une image.
    Je dois sélectionner, blocs et changé leurs dimension les blocs et change le cadrage de l'image et appliqué un style de bloc...
    Pour commencé, mon plus gros problème est de selection les bloc encré ... pour le reste je croix que je devrais y arrivé

  • Is it possible to selectively block re-explode BOM in Sub-contracting PO ?

    In our business scenario, sometimes we are directly adding PO components in the Sub-contracting PO in addition to the existing components that have come in through BOM. After saving and somedays later when the user goes to edit PO through ME22N, since the components button & re-explode BOM button are very close, users by mistake press re-explode BOm and also save the PO. The directly added components go out and hence not consumed while GR. Is it possible to selectively block the re-explode BOM  through PO user exit or any other method?

    Some amount of user training should help.
    If not discuss with your abaper if badi - ME_PROCESS_PO_CUST can be used or you can find user exits with a search using MM06E*

  • CANNOT SELECT BLOCK OF TEXT. HOW TO CORRECT?

    CANNOT SELECT BLOCK OF TEXT. HOW TO CORRECT?

    I understand your frustration but please do not use all caps when posting--it "sounds" as if you're yelling to the eye.  In any case, are you sure you're using the select tool and not the hand tool?

  • CG36 - No virus scan profile is selected as the "default profile"

    When running transaction CG36 - Import Reports, I'm getting this message in the job log:
    "No virus scan profile is selected as the "default profile"                   VSCAN         034          I"
    Do I have to set up a default profile for virus scan? I have never seen this error until recent upgrade. Is there a way to by pass this virus scan if we choose not to activate it?
    Thanks!

    I encountered the same problem during the CG36 transaction.
    "Error during virus scan in file "...\usr\sap\.....\xixoxoxioxo.pdf" with Message class "CM_REPORT_IMP_EXP"   010     E
    Job cancelled after system exception ERROR_MESSAGE.
    This may be due to BASIS security level virus scan checks on the files being imported to the application server. Is BASIS assistance required on this or any workaround to bypass?
    Thank you.

  • Virus scan server error: "No virus scan profile is selected as the "default"

    Hi Team,
    I  try to upload Fiori Code into SAP Netweaver Gateway server .
    i can able to share Project.
    But when i try to submit code
    then at the end of Process i got error message.
    Virus scan server error: "No virus scan profile is selected as the "default"
    Please Guide me
    Regards
    Pankaj Kamble
    Tags edited by: Michael Appleby

    Hi Abraham,
                 Thank you very much. My problem resolved.
    I  have one Query Please guide me.
    whenever  we run Server URL from The  Browser,   first we must need run    "chrome.exe --args --disable-web-security"  command on   CMD.   on located directory the Chrome has installed.
    to disable  web security.
    if I did not run that command on CMD,  then Fiori Apps not worked.
    Why it's compulsory to disable web security.
    Regards,
    Pankaj Kamble

  • When i try to sync photos from iPhoto to my iPad using iTunes,  the "Selected Folders" option is greyed out with only the "All Folders" option available, how do i change this?

    When i try to sync photos from iPhoto to my iPad using iTunes,  the "Selected Folders" option is greyed out with only the "All Folders" option available, how do i change this?

    I add the keyword 'sync' to any photos I want added to the iPhone/iPad.
    Then, during the regular process of syncing the iPhone/iPad with my computer (mac), the photos with that keyword would be copied onto the iPhone, iPad.
    I've been doing it this way ever since I was shown how to; ie after I got my iPhone 2 years ago. And every time the process worked - until the last few weeks. Suddenly it doesn't do it any more.
    I believe I have upgraded software (either iTunes or iPhoto or both) during this period. I try to keep my software updated but have noticed previously that the new version often is disappointing.
    I've not tended to use Smart albums much.
    MM

  • Shift key doesn't select blocks of files.  Even after clean install of mavericks in case it was old snow leopard problem.  Can only select individual files

    Hi for a few months my shift key stopped allowing me to select blocks of files and worked like the cmd key selecting just individual files.   Apple store sold me a. New keyboard when I connected it first time it worked. But after shutting down mac it never worked again.   Have just performed clean install of new mavericks as I was told it must be the permissions or other account settings etc.    But 2 days later after lots of work shift still doesn't work.  Every now and then it would work once and then. Not again.  I work with photos a lot and only being able to choose individual files is a nightmare.  Can anyone explain this problem.?

    I installed mavericks from a USB and reformatted the hd.  I set up a new user account added email, apple ID  etc and then downloaded new iPhoto and iMovie.  I manually copied documents, music inc itunes library folder and photos from time machine back up.   I also copied original apps only using migration assistant to get idvd and garageband back as despite a lot of searching i couldnt find a way to selectively reinstall original apps not purchased from app store.  Only third party apps are photoshop elements 9 and office 2011.

  • HOW DO I BLOCK IMAGES AND KEEP 'BLOCK' AS DEFAULT?

    On a pay by use so too many pics cost. Set permissions and option to block or no images. Sometimes works sometimes reverts to a default of allow, both globally and by site ...

    Thanks for the link .. it addresses a part of the issue but I am still unable to set the 'permissions' so that 'block' is the default: and even when it is shown as block by default certain pages load images - sometimes?
    I have had some success by putting the BBC into the exceptions list to block them.
    Where the issue beats me is when everything is set for 'no images' yet i get smiling/scowling/ politicians pics.
    many thanks

  • Hi, I'have selected "Block this ad" when I was in Facebook. Now I can only see an empty page when I try to use my Facebook. Any help in unblocking it? Thanks.

    Hi, I'have selected "Block this ad" when I was in Facebook. Now I can only see an empty page when I try to use my Facebook. Any help in unblocking it? Thanks.

    Apple doesn't have any built-in ad blocking components in teh OS or in Safari...so what ad blocking program or Safari extension are you using?  It should have the ability for you to change its settings.

Maybe you are looking for

  • SQL script works in SQL Developer but not when scheduled

    I have a script that I can run, logged onto my server as a user with full permissions and into my database as SYSDBA, that produces a CSV file on the server when I run it from SQL Developer ON the server. HOWEVER, when I set it up as a scheduled job,

  • OnClick Issue

    Hi, I have a problem with a onClick event in my image. I created a report with a decode for my column, if the column is 'S' then I insert an icon with the correct simbol, else I insert an icon with the wrong simbol. For which image I have created an

  • Qosmio F30-127: How to use SD card - no SD card drive icon

    Could some one tell how to use SD in F30-127. I was trying to get picture from my SD card. I inserted into slot but no Drive ICON was displayed

  • Cancel Subscription doesn't work !!!

    1) On a expired Skype Number subscription, Skype keeps trying to charge the Credit Card 2) Even worse, it doesn't let the end user remove the Credit Card. It claims that it is required to cancel subscription first, but when the option is selected, no

  • Missing font for Desktop 6 in XP ?

    I installed the same download of 600_b047_multilanguage.exe on two separate xp machines selecting US English in both cases.  One one machine the desktop software looks fine, but on my laptop the fonts are all just boxes.  Any ideas ?  Do I need to ha