How to hide the fixed text when it is not needed?

Hi All,
I am using a fixed texts in a lot of reports to detail queries.
How to cancel or hide these fixed texts when there is no data returned for some detail query in the report?
Note: I am using Reports 6i.

Select that text and press F11 to call PL/SQL Editor and use the code as below.
IF your_condition_when_no_data_returned THEN
  RETURN FALSE;
ELSE
  RETURN TRUE;
END IF;-Ammad

Similar Messages

  • How to hide the cover page when printing ?

    Dear all,
    I would like to change printings option for the report S_ALR_87013611.
    I would like to hide the cover page (with parameter) when printing.
    How can I do that ?
    Thanks for your help
    Best regards

    Hi,
    Do you mean the part of the report, which contains the report name, selection date, controlling area,
    Fiscal year, and other selection data?
    If yes, then you could proceed as follows: As the 1SIP-001 (S_ALR_87013611) is a standard report, please copy this report with name in the customer naming range and then delete the title page from the copied report as follows:
    1.  Call GRR2, in the library 1VK place the cursor on report 1SIP-001 and click on the icon 'Copy'
    2.  In the 'To report' field enter (for example) ZSIP-001 and press  'Enter'
    3.  Now double-click on ZSIP-001 to enter the report definition.
    4.  Under 'Extras' -> 'Report texts' -> 'Title page' call the title page.
    5.  Choose 'Text' -> 'Delete' and the title page lines are removed.
    6.  Click on the 'Save' icon to save this.
    7.  Assign the report to a new report group by choosing 'Environment'
       -> 'Assign report group' from the menu and enter ZSIP in the popup,
       confirming the next popup that the report group should be created.
    Now call txn GR55 and execute report group ZSIP with your selection
    criteria and follow the steps to print the report:
    - click 'printer icon' - mouseover text 'Print (ctrl+P)'
    - click OK with dot in 'current report'
    - click OK with dot in 'Print formatted report (page length 59)
    - on print parameter screen in menu, blank the 'SAP cover page' field.
    Regards,
    Greta

  • How to hide the player button when publish a project?

    My predecessor producted several swf files using Captivate 3. And I only get the swf files and don't get the *.cptx files.
    However, now I need to publish them into  a folder format, including the standard.htm, *.htm and *.swf.
    So I tried to build a blank project, insert the swf file, say, test.swf , then publish it (click the "publish to the folder" and "export to html"). then I get the new folder test2, including standard.htm, test2.htm and test2.swf.
    Now there is a problem, in the test2.htm and test2.swf, has two rows of player buttons,
    The upper row of buttons are from the old file, test.swf. This is the real button that work.
    The lower row of buttons are from the new file (test2.swf). But these are not what I want.
    So I am wondering how I could delete or hide the lowe row of buttons from the new file.
    That is to say, the visitor just need one row of player button.
    Your reply will be greatly appreciated.

    Go to Project > Skin Editor and untick the option for Show Playback Controls.
    Then the only buttons will be for the original SWF.

  • How to hide the Play arrow when player is paused?

    Hi,
    I wanted to hide the Play arrow that appears in the middle of the screen when player is paused.
    Users often pause the player to examine a schema, diagram, or somewhat else, and in that case, this arrow may hide some image details.
    Thanks

    No, I am not the author. I watch flash videos.

  • How to hide the Alt description when you hover over your links?

    I was told that you have to have a description for images, links just about everything. But when I preview my website and hover over the links, a yellow box appears with the description of the images. How do I hide this?

    You are previewing with an old (very old?) version of IE, which is the only browser on earth that does what you describe.  All other browsers play by the rules and leave the alt attribute values alone (which is what they should do). 
    You can choose to ignore this, or 'kill' it by adding a title attribute that is empty, e.g.,
    <img alt="foo" title=""...
    By the way, you add alt attributes to images for accessibility reasons.  People who browse with images turned off (and there are some) or people who use screen assistive devices (screenreaders) need some indication that there is an image at the point where they are looking/reading.  Consequently, you would only want to add content to these alt attributes where it's important to the message of the page (i.e., a cosmetic-only image would just have an empty alt attribute value). And you only need these for images, not for any other page element....

  • How to hide the extra line when use the AI pen tool

    When I use AI CC  pen tool to draw a line, when i click the 1st anchor point,  " - " shows next to the Poniter  ( I did not drag ) ,I tried to move, but  an extra line coming out before I click another point. So I could not draw lines or curves!  That extra line just follow the Pointer  direction.  I am using Window 32 bit,  will it affect this?  please help.

    suetsuetwong,
    Apologizing for my being so slow in the uptake, I believe I have finally grasped the meaning.
    As I now (mis)understand it, you are seeing the (maybe overly) helpful Smart Guides in action.
    You may ignore the line or untick Smart Guides in the View dropdown, or change their settings as desired.
    The Smart Guides are trying to help you with snapping to directions, paths, Anchor Points, whatever, and also telling you where you are.

  • How to respecify the fixed path when use  mm01 to upload the attachment

    Now I'm need to upload some pictures to the material when I use the transcation MM01, but I don't know the default path ,  I guess it appoint the the database directory,
    I want to respecify the path, Can anybody tell me the detailed solution
    Thanks a lot.

    Hi ,
    you can use the .dtprofile under the home directory of each user to set the PATH variable for the users. To set the PATH for the root, you can also use /etc/profile. For each user you can also use .login
    (for csh shell) and .profile(for sh & ksh shells) under their home directory to set the path variable.
    regards

  • How do I select the entire text when the focus is moved to one TextBox?

    How do I select the entire text when the focus is moved to one TextBox?
    There are three TextBoxes.  I use <TextBox TabIndex="1"/> to set the order they are selected.  When I enter one specific TextBox, I would like to have the entire text selected ... one key stroke removes all of the text in that TextBox.
    bhs67

    I do it the following way:
    1.  Override the OnStartup for the application.  Use the following code: (VB.NET)
    EventManager.RegisterClassHandler(GetType(TextBox), TextBox.GotFocusEvent, New RoutedEventHandler(AddressOf TextBox_GotFocus))
    2.  In the event handler use this code (again VB.NET)
    Private Sub TextBox_GotFocus(ByVal sender As Object, ByVal e As RoutedEventArgs)
    _theTextBox = CType(sender, TextBox)
    If setFocusTimer IsNot Nothing Then
    RemoveHandler setFocusTimer.Tick, AddressOf setFocusTimer_Tick
    End If
    setFocusTimer = New DispatcherTimer
    setFocusTimer.Interval = TimeSpan.FromMilliseconds(10)
    AddHandler setFocusTimer.Tick, AddressOf setFocusTimer_Tick
    setFocusTimer.Start()
    End Sub
    Private Sub setFocusTimer_Tick(ByVal sender As Object, ByVal e As System.EventArgs)
    setFocusTimer.Stop()
    _theTextBox.SelectAll()
    End Sub
    What this does is register a handler for every textbox in your application.  This will execute when the GotFocus event is raised and will allow you to do whatever (in this case select all) you want.  A great way of handling things at the application
    level.
    Lloyd Sheen

  • How to hide the file name (the bizarre number assigned by the camera) when exporting an image version in aperture from an album. Pl understand I want to keep the file name in the project library version.

    how to hide the file name (the bizarre number assigned by the camera) when exporting an image version in aperture from an album. Pl understand I want to keep the file name in the project library version.

    Within Aperture you have Images, which are constructed on-the-fly from two files (the Master and the Version).  You get an image-format file _only_ when you export an Image.  You select the file name (usually a scheme) when you create an image-format file (that is, when you export).  Look under "Aperture→Presets→File Naming" for built-in Presets.  You can, of course, create your own or customize any provided.
    The Preset is applied to only the file newly created by your "export" command.  It is not applied to the Image in Aperture (unless you rename your Versions or your Masters).

  • How can I hide the thought bubble when typing?

    Very simple, I'd love to know how to hide the bubble with the ellipsis that pops up for others to see when I'm typing. I'm hoping this is an easy question for someone to answer.
    I knew how to do it before, but now not so much.
    Thanks!

    acuffrose
    Don't think there's any way of doing it in iChat but maybe some of the add-ons (such as Chax) can do it.
    http://www.ksuther.com/chax/
    Dave

  • How to disply the input text box when the data in the table is empty

    Hi,
    I m using JDeveloper 11g 5.1.1.1 : How to display the Input text box when the data in the table is empty or by using the dual table.
    Since there is no record in the table, screen is displying only the lable. not displying the Input text box.? Any property is there to enable?.
    One more case i tried by using dual (eg Select '0' as name from dual) created one view object and dragged in the JSF screen as input combo box with list of values.
    In this case also it is not displaying the combo box.Just displaying the Lable name and 0 only.
    Regards
    Bijesh K

    Hi,
    I didn,t get you.Could you please explain. I am not choosing the ADF table. Selecting and dragging ADF form only.
    Regards
    Bijesh K

  • How to skale or increase text, when i read an ebook created by ibook-author?

    How to scale or increase text, when i read an ebook created by ibook-author?

    If the book is in portrait mode, the text is fluid - top of the screen is a resize option. Basically whole effect is the same as an ePub file.
    If reading a book in landscape mode, resizing text simply isn't an option because it's considered fixed format.
    I've been working with landscape only books and I tend to increase the size of my body text in iBooks Author - to at least size 18. It appears that although this would be large if printed, when displayed on an ipad it's closer to about size 12, which is standard anyway.
    Jenny

  • How to disable the reminding dialog when close the webi report viewer

    Dear all
    How to disable the reminding dialog when close the webi report viewer
    Background
    When user close the webi report viewer in inforview by click the button in the right-top of the webi report viewer frame. It always prompt a dialog to remind user that the modification will be lost without saving.
    But customer need to disable this dialog, and can clost the report viewer directly.
    So is there any ways to modify this?
    I think it shoule modify some .js file under tomcat, but can not find the solution.
    Thanks a lot, any information woulde be appreciated.
    David Zhang

    I've had the same issue bugging me since installing Snow, er, lion, er, cat, er, cougar, er, Mountain Lion. Incredibly ANNOYING.
    It's stupid stuff like this and reverse scrolling that really turn long-timer users off. I'm personally glad Forstall got fired for blunders such as these.
    I'm serious peeved that turning off iCloud Documents & Data actually deletes documents and data locally. That's just incredibly stupid.
    MANY thanks mende1 for the answer on how to fix it.

  • How to hide the view latest instance option for the reports in XIR3

    Created an access level and denied the rights "view document instances" and "view document instances that the user owns" in the access level.
    Applied this access level for a particular group on a particular folder.
    Login to Infoview and when view the history,there are no instances for a particular report under that folder.
    But we could still see the 'View Latest instance' option in the properties of the report and when click on it,we are able to view the report.
    As per the security assigned,the user should only be able to view the instances owned by him.
    Plz help me how to hide the option in INFOVIEW

    In 9.3.1 (not sure about 9.2) there is a table in your BIPlus repository which stores preferences/profile information, however, having a user simply log in to WA doesn't appear to automatically create a row for them in this table. (So this may not be a viable solution to your situation, I'm still looking for one myself.) This table stores lots of preference info such as whether or not to show the Main Menu, Toolbar, Masthead, etc. by default.
    To hide the View Pane, edit the data in the SHOW_INFO_PANEL column, change it from a 1 to a 0 and for that user the View Pane will not longer appear by default.
    HYA_USER_PREFS
    But again, this only works if you already see the user in the table otherwise I guess maybe they have to 'touch' their Preference before it creates an entry in that table. Haven't figured that part out yet, and Support didn't have any information.
    If anyone has found a way to maneuver through the table structures I'd love to hear any insight you can offer.
    Before you make any changes to the data in this table be sure to take adequate repository backups, and use caution as usual.
    I'm going to create a Shared Preference and have each user point to it the first time they log in - but then you lose the ability for each user to have their own personal folder as their default, so it's still not the ideal solution. Really wish there was a way for Admins to set certain prefs. A coworker reminded me under 7.? or 6.x things like View Pane were system-level settings which was easy to control, but now it's at the user level.
    Good luck,
    Karen

  • How to hide the menus in Weblogic Portal?

    I have to develop a page in Weblogic Portal 10.0 that uses a portlet for the UI presentation.
    I have a requirement that the page is hidden by default. When I navigate to the page by selecting a link, I have to display the contents in that page. While displaying I should hide the portal level menus of other books/pages. But I have to display other contents like logo, etc.
    Can some one please help me on how to hide the menus in the selected page?
    Edited by: [email protected] on Apr 19, 2010 3:43 AM

    As a quick and dirty solution i would edit the navigation jsps (singlelevel/multilevel/yourcustom menu jsp) and disable the navigation for all hidden pages.
    Or create a backing file and dynamically change the navigation state on the desktop when the hidden page is requested.
    Or have the page in a different portal file if possible and set the same header and footer there as well.
    Or You could have a look at the detached portlets. These are used as popups often.

Maybe you are looking for

  • Ipod is recognized by windows but not itunes

    i got a 4gb nano and when i connect my ipod to my computer it dosnt show up in itunes i reinstalled everything but it still wont work

  • How to fix the iphone 4s if it is the wrong carrier iphone 4s?

    Just wondering if anyone has had this problem and how to fix it.   Lets see in October 2012 I bought a brand new Iphone 4s.   I had it less than a week when I sent it to Apple because it had already been updated to IOS 6 without my knowledge and the

  • KT£ Ultra2 - RAM Problem

    Hi everybody. I am new in this forum. I have a problem with Ram. The OS is Win2000 Amd XP 1800 Palomino. I upgrade my 256 mb PC2700 ram with another 1 gb. The system and bios tell me that there are only 767mb. The 1gb ram 2 rows, 4 banks work 512mb o

  • POWL Questions

    I have two questions on POWL use in WDA -- 1. Is it possible to store multiple selection/query criteria and retrieve them via the POWL UI or some other way ? 2. While configuring POWL I got error after I changed the FEEDER class implementation. 'No q

  • XMLSamples

    I'm trying to use the classes in XMLSamples as a prototype for some new functionality. Howerver, I get a compile error on the code when its in my project:Class FindElement not found in my project. I'm referencing the same libraries and have the same