DISABLING OF A BLOCK

Hi all,
  I've used an LDB "PNP",I've two blocks.i want only one block in it, the other block should not be displayed.
Is there any code which can disable this block,so that it cannot be seen on selection screen.And in that block's place i want to get my selection screen block.
Thanks&Regards,
Satya

Hi,
Try using the AT SELECTION-SCREEN OUTPUT event...Make the fields invisible..
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
* make it invisible.
  IF screen-name = 'P_MATNR'.    " Add the other fields also...
     screen-active = 0.
     MODIFY SCREEN.
  ENDIF.
ENDLOOP.
Thanks,
Naren

Similar Messages

  • Blocking popup windows even when disabling the popup blocker

    For quite some time now, Firefox has been blocking essential popup windows on my computer. It's not just those annoying ones, even those when I am trying to write an email and similar things. I have disabled the popup blocker and it does not change anything at all. It does not alert me that it has blocked anything either, it is simply as if I never clicked anything in the first place. I have tried adding exceptions to my popup blocker, and this does not work either. This is really frustrating and is interfering with my daily use of firefox, and forces me to use crappy explorer which does not block things. What can I do?

    Hi Sachin
    Thank you so much for the reply.
    About your request, the codes that I used are:
    HTML for the PopUp:
    <SCRIPT LANGUAGE="JavaScript">
    function popUp(URL) {
    var iMyWidth;
    var iMyHeight;
    //half the screen width minus half the new window width (plus 5 pixel borders).
    iMyWidth = (window.screen.width/2) - (250 + 10);
    //half the screen height minus half the new window height (plus title and status bars).
    iMyHeight = (window.screen.height/2) - (225 + 50);
    //Open the window.
    var win2 = window.open("http://xarao.businesscatalyst.com/caipiroska.html","Window2","status=no,height=450,width=500,resizable=yes,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
    win2.focus();
    </SCRIPT>
    For the Link:
    javascript:popUp('http://xarao.businesscatalyst.com/caipiroska.html')
    Of course for all the different links in the page I've changed the http of each image in both codes.
    http://xarao.businesscatalyst.com/cocktails.html
    Thank you once more.
    Best regards,
    Augusto

  • How to disable the complete block on the selection screen

    Hi,
    I want to disable the complete block of selection screen when user checks on box...how shall i go about this?
    I tried using block name as screen name and then modify screen but of no use..
    Any Pointers...
    Regards
    Gunjan

    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-002.
    PARAMETERS: box as checkbox USER-COMMAND ch.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    PARAMETERS: path(150) MODIF ID id1.
    SELECTION-SCREEN END OF BLOCK b3.
    AT SELECTION-SCREEN OUTPUT.
      IF box = 'X'.
        LOOP AT SCREEN.
          IF screen-group1 = 'ID1' .
            screen-active = '1'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ELSE.
        LOOP AT SCREEN.
          IF screen-group1 = 'ID1' .
            screen-active = '0'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF.
    Hope it will work
    Regards
    Sugumar G

  • Enable / Disable selection screen block

    Hi, could u pls tell me how do I enable/disable selection screen block written below based on radio button selected??
    Block to be enabled / disabled :
    *----APO Version and RFC destination block
    SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-013.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 01(20) text-e11.    "APO Planning Version
    SELECTION-SCREEN POSITION 29.
    SELECT-OPTIONS s_apover FOR w_version NO INTERVALS.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 01(20) text-e09.    "APO RFC Destination
    SELECTION-SCREEN POSITION 32.
    PARAMETERS  :  p_aporfc LIKE rfcdes-rfcdest.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b4.
    Radiobuttons :
    Material Type
    SELECTION-SCREEN BEGIN OF BLOCK ss04 WITH FRAME TITLE text-072       .
    PARAMETERS :
         Load only FERTs
           p_FERT  RADIOBUTTON GROUP styp DEFAULT  'X' USER-COMMAND rusr ,
         Load ROH/HALBs
           p_HALB  RADIOBUTTON GROUP styp                                .
    SELECTION-SCREEN END   OF BLOCK ss04                                 .
    Thanx in advance

    Hi
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: pa_file TYPE rlgrap-filename MODIF ID abc,
    pa_lifnr TYPE lfa1-lifnr MODIF ID abc,
    pa_vkorg TYPE vbak-vkorg MODIF ID abc.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS: pa_kunnr TYPE vbak-kunnr MODIF ID def.
    SELECT-OPTIONS: s_lifnr FOR gs_lfa1-lifnr MODIF ID def,
    s_date FOR gs_lfa1-erdat MODIF ID def,
    s_augru FOR gs_vbak-augru MODIF ID def,
    s_vbeln FOR gs_vbak-vbeln MODIF ID def.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pa_upd RADIOBUTTON GROUP g1 USER-COMMAND uc01 DEFAULT 'X'."#EC *
    SELECTION-SCREEN COMMENT 3(60) text-004 FOR FIELD pa_upd.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pa_rep RADIOBUTTON GROUP g1 ."#EC *
    SELECTION-SCREEN COMMENT 3(60) text-005 FOR FIELD pa_rep.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b3.
    IF pa_rep EQ gc_x.
    LOOP AT SCREEN.
    IF screen-group1 = gc_abc.
    screen-input = gc_zero_num.
    ELSEIF screen-group1 = gc_def.
    screen-active = gc_one_num.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    ELSEIF pa_upd EQ gc_x.
    *For Reprocessing
    LOOP AT SCREEN.
    IF screen-group1 = gc_def.
    screen-input = gc_zero_num.
    ELSEIF screen-group1 = gc_abc.
    screen-active = gc_one_num.
    ENDIF.
    MODIFY SCREEN.
    CLEAR pa_upd.
    ENDLOOP.
    ENDIF.
    REPORT zrich_001.
    PARAMETERS: p_rad1 RADIOBUTTON GROUP grp1 DEFAULT 'X'
                            user-command chk,
                p_rad2 RADIOBUTTON GROUP grp1.
    SELECT-OPTIONS: s_datum1 FOR sy-datum MODIF ID d1,
                    s_datum2 FOR sy-datum MODIF ID d2.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF p_rad1 = 'X'
          AND screen-group1 = 'D2'.
          screen-active = '0'.
        ENDIF.
        IF p_rad2 = 'X'
         AND screen-group1 = 'D1'.
          screen-active = '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    Regards
    Anji

  • Disable pop-up blocker globally (for all users) in FF 30+

    Hello,
    I cannot find the correct settings to disable pop-up blocker globally. I have some internal web apps that are using pop-ups to display certain information. By default FF is blocking all. Although it is indicating that pop-up was blocked many users do not notice the notification. I need to disable globally the pop-up blocker once for all, so users on particular computers can access the data without such problems. What is the about:config setting for that?
    best regards
    salata

    thanks,
    but is i set privacy.popups.policy to 0 on administrator profile will that affect profiles of all users using same machine? I have impression only administrator will be affected by this change.
    regards
    salata

  • Unable to disable pop up blocker

    where is the "Tools" option on home page--can not disable pop up blocker,

    Go to "View > Toolbars" and check-mark "Menu Bar" with a click if you want to make that permanent.
    See https://support.mozilla.com/kb/Menu+bar+is+missing

  • How can i disable pop up blocker in Safari?

    how can I disable pop up blocker in Safari?

    Upper left corner (next to the Apple menu).
    Click on the word Safari.

  • How to disable the assignment block's Edit button

    Hi guys,
    I need to disable the edit button in assignment block Parties Involved on an opportunity. Only authorised people would be able to see Edit button as enabled.
    I'm not able to do this in the BTPARTNER/Partner as I don't get process id and order id in Partner view.
    Kindly suggest a way to disable the EDIT button of assignment block (in display mode).
    Regards,
    Shaili

    Make use of Parameter ID to set the values at Document Header page and on individual assignment block get this value to enable or disable the button.
    Regards,
    Harshit

  • Disabled pop-up blocker but pop-ups are still being blocked. How can I remedy this?

    I have disabled the pop-up blocker, I've added the site to the exceptions list but pop-ups are still being blocked. I have an email program that requires pop-ups in order to compose an email.

    Are you sure that you don't another popup blocker installed?
    Like maybe as a feature of a security suite?

  • How can I whitelist specific URLs to disable mixed content blocking? (New Feature in FF23)

    For a few of the enterprise products I use, the mixed content blocker disables my ability to use these tools. While I understand I can toggle to allow mixed-content -- I would like to be able to whitelist the URLs that I use regularly that I don't want content blocking enabled. Is this possible?

    the content toggle button works but is not really the solution for enterprise products. A white-list would be a real good solution...
    So I add a my white-list request here too

  • I cannot effectively disable pop-up blocker for a certain site - it won't allow me to view attachments to documents at this site.

    I am attempting to review documents that have attachments. I am unable to view the attachments. I just get a blank page and the message that my brower has installed a pop-up blocker installed and I need to disable it. When I go into my Tools, the pop up block box is not checked. Is there another location that I need to look?

    I posted about this a few days ago with no response. VERY annoying! I am working at a job on Quickbooks online and in the middle of entering transactions I keep getting the message that Firefox is blocking something but the pop-up blocker is not even checked on in preferences and the message at the top when you open it asks if I want to allow the web address I'm on - WHICH IS ALREADY LISTED IN THE LIST THEY ARE SHOWING ME of allowed sites!
    This forces me to have to quit Quickbooks, quit Firefox, relaunch the whole thing! Its ridiculous. I've never had this issue before this past week. I'm running Firefox 3.6.20 on an iMac running OS 10.4.11
    PLEASE HELP!

  • I need to disable pop up blocker on my iMac so that i can run a program but can't figure out how to do it  can anyone tell me how?

    I need to disable my pop up blocker but i don't know how...can anyone help me with this

    Kappy - Thanks for the help. Thought when you checked the box it would "block pop windows." What else should be unchecked? jn

  • Disable the default block menu item(Urgent)

    Hi,
    How can I disable the default menu item 'Block'. Please help.
    Thank
    tim

    Hi,
    Why dont you prefer your own Menu with the same icons,which are available in forms6i default menus.If you created your menu with the same icons, you have a right to disable the icons through the SET_MENU_ITEM_PROPERTY built-in(see help in forms6i).
    I have same icons which are available in forms6i by default.I hope you have also that icons.If you don't have i'll send it.
    Please give feedback.
    Thanks
    Bhujendra

  • How can I disable pop-up blocker manually cause the website I want to access just shows me a message that I have to allow popups and reloads.

    My corporate website requires to open a separate window for one of the applications, but when I access it from my tablet it shows a message that I have to allow popups in which I can only click OK and then reloads without letting me get to the popup blocker dialogue of Firefox mobile.

    Hi Tsanko,
    It is a bit different in Firefox mobile, you should be able to tap the icon next to the URL for the site (the favicon) and get a drop-down menu. Select Clear Site Preferences. Then reload the site. If you get the blue drop-down saying Firefox prevented windows from opening, select Show to allow them and then Reload.
    Let me know if you have more questions.
    Thanks,
    Michelle

  • How do I disable the "popup blocker" on Firefox 5.0.1 on my Macbook and OS 10.5.8.

    I am a realtor trying to access forms on the Calif. Assoc. of Realtors. I received a message saying that I have to turnoff my popup blocker to proceed. I tried to download Google's Toolbar and received a message that the Toolbar is only available for Firefox 5.0 and under. I am Firefox 5.0.1 on my Macbook (Mac OS 10.5.8). Thank you

    we are users just like you Go the the bottom left off this page, it's write ¨contact us ". Click it and talk to apple

Maybe you are looking for

  • My iPhone 3G (8G) has the White screen with Grey lines, how do I fix it?

    Hello!, am a new iphone user I bought an iPhone off my friend and put my sim card in the iPhone. I've had my iPhone for 2 months nearly, when I got the iPhone it was in Great condition still is...BUT... I have the 'white screen of death' but with gre

  • 参考:Photoshop Elements.Premiere Elementsでベータテスター募集

    本投稿はPhotoshop Elements.Premiere Elementsの両フォーラムに出しています. Windows環境だけのようですが.ベータテスターが募集されました.アドビでの公のベータテスター募集は珍しいのでは? 守秘義務の締結があるので.口外は出来ませんね. 詳細は下記サイトを. 急募!Photoshop Elements.Premiere Elementsベータテスター募集のお知らせ - http://www.adobe.com/jp/joc/psprelements/bet

  • Word 2007

    I am running windows 8.1 (updated) and I have Office 2007 installed. Word files will not start from Win Explorer by clicking on a file (>doc or docx) as had with previous versions. The same issue occurs when an email has a "Word doc" attached. The sa

  • I've been trying to transfer Photos I took on my iPhone to my PC am unable to figure it out, can anyone give me some pointer onthis?

    Can anyone give me any Pointers on how to Transfer my Photos That I took on my iPhone to my PC?

  • IPhoto 8.1.1 Fixes Facial Recognition Problems

    That's what I have observed from my testing on a library of over 15,000 pictures. It is important to "Detect Missing Faces" as explained in the appended support article: http://support.apple.com/kb/HT3941 Your computer will work long and hard at this