BLANK Selection-screen possible?

Hi
Can we have a blank Selection-Screen for a report?
If yes, please tell me how?
Thanks

Hi subhash,
1. yes we can have.
2. just copy paste
   - it will show a blank selection screen
   - on execution, it will write hello
3.
REPORT ABC.
PARAMETERS :  A TYPE C MODIF ID DIS.
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'DIS'.
      SCREEN-INVISIBLE = 1.
      SCREEN-INPUT = 0.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
START-OF-SELECTION.
  WRITE :/ 'HELLO'.
regards,
amit m.

Similar Messages

  • Interaction in the variable selection screen possible?

    I have a query with related 3 variables: a Product Division is related to a Hierarchy-name and to a Hierarchy-node. I want the enduser only to fill in 2 variables in the selection screen: Product Division and Hierarchy-node. Is this possible?
    If a enduser is entering a Product Division in the variable selection screen, the Hierarchy-name can be derived in CMOD with step2. But now we want an additional second variable selection screen for filling in the Hierarchy-node, which is related to the derived Hierarchy-name in CMOD.
    Can somebody help:
    Is there a second variable selection screen possible, or is there some interaction within one selection screen possible?

    Well, In the exit itself you can try ppopulating the hierarchy node for the second variable too. Think well, it is pretty much possible doing it along with the same code.

  • Blank Selection Screen in BEX

    I have an enduser that is on Excel version 2003 SP3.  He has Business Explorer version 3.5 installed.  After selecting a workbook the selection screen pops up but it is blank.  How do we correct that problem?

    Blank screen is cause from Internet explorer 7.0.  Need IE6.0 installed to be compatible

  • Is it possible to display a tag at the selection screen in the output.

    Hi all,
       When you go to se38 and in the program editor screen, at the bottom right end of the screen you find a value called NUM and when you place your cursor on that it displays a tag that says "Num Lock Mode. Double click to toggle."
       My query is, when i execute a report it takes me to the output screen that has a parameter, here i want to display a tag, say "enter the record as it is in the database". Is it possible to have such an option.
       If you'll are wondering why I'm looking for such an option it is just to make a report that can be understood by many.
    P.S: Not only on the NUM field the tag is available. Even on tools like activate display and so on.
    Regards,
    Narayanan Chandran.

    If it's a report program, use a comment in the selcetion screen for information of the user as shown below.
    * Information
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-003.
    SELECTION-SCREEN COMMENT /1(60) text-004. "Text containing the information message
    SELECTION-SCREEN END OF BLOCK b1.
    If you are using a module pool, you can create a tooltip for the element as suggested.

  • Controlling the blank variable on the selection screen

    Hi, I have a query with five keyfigures and each keyfig is restricted by a variable. The variables are BP, ID, Street, City, Country, Postcode. And when I input the value in one variable or two i just wnat to display that data relates to the input criteria.
    Eg: When I enter BP: 1019089 and City: NewYork, here i jsut wnat to see bp and the BPs relates to Newyork. But in my case I'm also getting info relates to all coutries, streets and postcode (I want to restrict this data how ?).
    Because ID, Street, Country and Postcode variable are blank on the selection screen, it is displaying everything.
    How to restrict displaying data for blank variables. Please suggest. Thanks

    You will need to use custom exit variables. Check out "Using Customer Exit Variables in BW Reports". Parts 1 - 4:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20f119d9-922d-2c10-88af-8c016638bd90
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f002c608-2533-2c10-25a1-d0e7f7b5b662
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10fc4382-afa6-2c10-1380-fa224fe4324f
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f0fefc77-40e3-2c10-8da3-d4bfcb013387

  • Is it possible to rearrange the order of SAP STD Selection Screen?

    Hi.
    Is it possible to rearrange the order of SAP STD Selection Screen?
    Example:
    IW69 has Location data selection at bottom of screen. 
    Is it possible to move that to top of the selection screen?
    We are on ECC6.0.
    Thank you,
    Brett.

    Hello Brett
    You may try to use GuiXT:
    [Adjusting Transactions Using GuiXT|http://help.sap.com/saphelp_sm32/helpdata/en/89/91b9db194f11d5b3a30050dae02d7c/content.htm]
    Regards
      Uwe

  • Submit program with selection screen parameters - getting blank values

    Hi, I'm submitting a program with selection screen parameters. when I pass '000' (I_TPLSCN  )value for Planning Scenario and when this goes to selection screen then I don't see value for Planning scenario as '000'(I_TPLSCN  ) but the value is blank in selection screen. I'm using the below code for this.
    SUBMIT RMCPAMRP WITH MATNR_GL EQ I_MATNR   SIGN 'I'
                      WITH WERKS_GL EQ I_WERKS   SIGN 'I'
                      WITH PLSCN    EQ I_TPLSCN  SIGN 'I'
        via selection-screen        AND RETURN.
    Could anyone please help me how to display value '000' rather than blanks.
    thanks in advance.

    If I_MATNR, I_TPLSCN and I_WERKS are variable then try with
    SUBMIT rmcpamrp
      WITH matnr_gl = i_matnr
      WITH plscn    = i_tplscn
      WITH werks_gl = i_werks
      via selection-screen       
       AND RETURN .
    If I_MATNR, I_TPLSCN and I_WERKS are of type range then try  with
    SUBMIT rmcpamrp
      WITH matnr_gl IN i_matnr
      WITH plscn    IN i_tplscn
      WITH werks_gl IN i_werks
    via selection-screen       
       AND RETURN
    Edited by: Pawan Kesari on Dec 24, 2009 3:33 PM

  • Is it possible to debug the selection screen???

    Hi Frdz,
    Is it possible to debug the selection screen.
    eg: if i want to know what is happening in PBO and PAI modules of the selection screen i am not able to debug that.
    Even in code if i click on MODULES present in PBO and PAI modules it is saying MODULE doesnot exist!!!!. So i can't put the break point. even if i press /h it will go to Report events like INITIALIZATION, AT SELECTION-SCREEN but not PBO and PAI modules!.
    Also what is the meaning of exclamatory mark here(Before select option name)
    MODULE !SO_UDATE.
    MODULE !SO_UNAME.
    Thanks,
    Vinod.

    Hi Vinod,
    Double click on the module and then put the break point for the first statement of it. It will work.
    Reward points if useful.
    Thanks,
    Khan.

  • Is it possible to move the ldb selection screen?

    Hi All,
    I have a custom program which uses a logical db.
    The selection screen from the LDb is displayed first and then my custom selection screen is displayed.
    There is a requirement where the custom selection screen needs to displayed first - at top and then the selection screen from the LDB.
    Is it possible to move down the selection screen from the LDB?
    If so then please let me know how...

    Hi,
    with LDB, you can just hide or display LDB selection screen elements,
    but moving your custom  selection screen  above LDB selection screen  is not possible, as upto my knowledge.
    Thanks.
    Raghav M.

  • Selection Screen Variant (optionally default) -I dont think it's possible!?

    I have spent a lot of time looking at this issue - researching forums/sap help/on the system  - so any help appreciated...
    On the selection screen (for tx me59n) is it actually possible for users to set a variant as default on the selection screen?  It's actually that I want "Test Run" to be defaulted.
    This is the ideal scenario:
    - The selection criteria variant is created centrally (or even individually by the user)
    - The user can then optionally set this variant as their default selection criteria for the transaction
    - Next time the user runs the transaction, the defualt variant is used
    What I do not want is:
    - User having to select the variant each time they run the transaction
    - The variant always being default (it should only be default when user decides they want it as such)
    Any ideas?  I can't see that it's possible....?
    thanks in advance,
    Matt

    I've been trying SHD0 alot, but doesnt seem to work - again, i've spent time reading and trying it out but with no luck.
    This is how I'm doing it to try to default "Test Run" checkbox for ME59n
    - Run transaction SHD0
    - Input "ZDefault" into Transaction Variant field
    - Click create
    - ME59n loads
    - I tick "Test Run" (which is what I want defaulting for the transaction)
    - Click save
    - It prompts me to create screen variant
    - I input ZTEST_VARIANT and click save
    - I get a pop-up box which I enter ZTEST_VARIANT to name field but dont make any other changes
    - Get message saying ZTEST_VARIANT saved
    - Click back to Transaction Variant screen
    - Save it as a local object
    - Get message saying "Trans Variant and Screen Variant Saved"
    - Click back to initial SHD0 screen
    - Click TEST to try it out.
    - ME59n loads, but "Test Run" is not checked - the variant appears not to have been loaded at all.
    I run ME59n independently and still nothing seems to get loaded when I run the transaction. Although the new screen variant is availbale in the variant list, which if I select it it works perfectly.  But I want make it default??? How do I do it?
    Any ideas what i'm missing?
    Usually I can figure these things out pretty quickly, but this one has me stumped!
    thanks
    Matt

  • Selection screen in workbook possible?

    All,
    Is it possible to have selection screen, filter and drill down features of the query within a workbook? If yes, please let me know the details
    Thanks!

    rows appear in differnt sequence in the the anlyzer from that in query designer.
    I had initially created a query in 3.x query designer then edited in 7.0 and had added a couple of rows to the query designer (7.0)
    Now when tried to open the report in 3.x, it shows the two new rows at the end of the report even though the new characteristics were at the beginning.
    Any idea why this may be happening?
    Thanks!

  • Is it possible to create a variant without selection screen

    Hi,
    I would like to create a variant for a report(Standard report). It does not have selection screen. Could someone tell me is it possible to creste a varaint for it?
    Is it possible to create a variant w/o selection screen? if yes, how?

    If some SELECT-OPTIONS are hidden or NO-DISPLAY, you should be able to create a variant for the report.
    Rob

  • On Selection Screen - Is it possible to show the text Blinking

    Hi,
    On selection screen - I have 3-4 Texts. (COMMENT)
    User wants to 'Highlight' one of them - If possible want this text 'Blinking'.
    How can I do it? Is it possible ?
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME.
    SELECTION-SCREEN COMMENT 1(70) text-004.
    PARAMETER: rb_exec RADIOBUTTON GROUP g1.
    SELECTION-SCREEN COMMENT 35(30) text-005 FOR FIELD rb_exec.     "This Text
    SELECTION-SCREEN ULINE.
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN COMMENT 1(70) text-006.
    PARAMETER: rb_smry RADIOBUTTON GROUP g1.

    For making highlighted, you can make it bold - please see below link:
    [Bold text|Bold character and font change in some portion of report;
    Blinking is not possible in report...
    Thanks

  • Bex Analyzer selection screen comes up blank

    hi,
    Users are facing a peculiar problem..The selection screen comes up blank when a user refreshes a report in the BEX Analyzer..But when I login and so the same on my system there are no such issues..Could be a GUI issue...Has anybody faced this before..Would be a great help if you could share your experience..
    Thanks
    VK

    it has t be internet explorer settings go through each one of them and make sure they are exactly what is on your machine

  • Possible to modify Logical Database Selection Screen?

    We have added a custom field to an HR database and need for it to appear in the selection screen for logical database PNP. The program DBPNPSEL is this selection screen -- has anyone modified this or is there a better way to get this result?

    Hi,
    Check this link.It contains code sample.
    http://help.sap.com/saphelp_46c/helpdata/en/9f/db9c2e35c111d1829f0000e829fbfe/content.htm
    Regards,
    J.Jayanthi

Maybe you are looking for

  • Error while using Ago function

    hi all, OBI 11.1.1.7.1 I am unable to view data on result tab. No value returned in Calcutated Attribute. Please Help Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has

  • Balance sheet report display month wise - F.01

    Hi Experts, We have requirement to display balance sheet report output monthwise, is any SAP Standard T.code is available. Do we need to create new customized report, if yes from which table i can pick the values. Please let me know the tables for F.

  • After encrypting with filevault 2 on mountain lion, safari is extremely slow

    after encrypting with filevault2 on mountain lion, safari is running extremely slow. it's taking more than 45 seconds (sometimes a full minute) to load pages. my internet speeds are 35 mbps download and 6.35 mpbs upload, so it's not my internet conne

  • Design your own hard case for the iphone

    So, i'm watching one of my favorite shows, PSYCH, and I notice that the main character, Shawn, has his own company logo on the hard shell case for his iphone and i'm wondering, "where can someone go to create their own hard shell (not sure if it's me

  • Fireworks is arbitrarily flattening images when round-tripping

    Here's the problem using Fireworks CS3 and Dreamweaver CS3. Have multiple people editing the images over a network. Sometimes you open a Fireworks PNG file from Dreamweaver and then click done. It's saves it as an editable image file some times, and