How to hide the link when no data exists

I have created a new page in inventory module here.I have developed a search page like if i query through organization all the items related to that are displayed in results table.I have introduced one more dummy colums called details with image and in property for that details i have implemented drill down details.
When i click that details link i will go to next page to display lot details for the item.
Here there are lot details for some items and some items dont have lot details.SWo the details button must be enabled for the items which have lot details only and for other it must be in disable state.
Can any one tell me how to disable for the items which dont have lot details and enable for the it3ems which has lot details.
Right now it is in enable state for all the items it was going to next page.
I nedd to go to next p[age only if i have the related information for that item.
How to do this type of scenario                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Please do not re-post. It would be easier to follow up a single thread.

Similar Messages

  • MessageRichTextEditor - How to hide the link 'Change to Rich Text Mode'

    Hi,
    I will be using RTE only in plain text mode.So I want to hide the link 'Change to Rich Text Mode'.How can we do this.
    Please suggest.
    Regards,
    ashok

    Personalize the page to hide the link and set its rendered property to false.
    --Kumar                                                                                                                                                                               

  • How to get the link when right-clicked (for extension development)?

    Hi,
    I want to get the link when I right-click it in a page.
    I explain: when you right-click a link, you get "Open link in a new window"; this menuitem sends the link to the js function to perform an action and that's exactly what I an looking for
    Thank you

    Hi,
    If you have than one table with add_row_button then this code will work fine
    if (tableBean.getName().equals(pageContext.getParameter(SOURCE_PARAM)))
    && ADD_ROWS_EVENT.equals(pageContext.getParameter(EVENT_PARAM)))
    tableBean is Handle for your advanced table, hope it will help.
    Regards,
    Reetesh Sharma

  • Anyone know how to hide the tabbar when rotated?

    I was told that if you are using a tabbarcontroller, and you want to hide it during rotation, you should override didRotateFromInterfaceOrientation and resize the view inside it and also hide the tabbar itself. But how do you hide the tabbar?

    [self.tabBarController rotatingFooterView]
    works great, that is you dont have to set hidesBottomBarWhenPushed in the controller before you pust it. You can just hide the rotatingFooterView in willRotateToInterfaceOrientation. But the problem is when the tabbar is hidden, it just leaves a black space. There is no way to bring the middle view to the front. I tried playing with changing the height as well as bringSubviewToFront but no success. I feel that we are close, but not yet there...

  • How to hide a graph when no data

    Hi,
    I have a Pie-chart in my rtf template. I pull data from db using sql query.
    I want to hide that template when there is no data (means sql query returns zero results). Can anyone let me know how can I achieve that?
    Thanks,
    -Vijay-

    I know it can be done by putting that in a "Conditional Region" given by BI Publisher desktop plugin. But what condition can I put in if block to identify "when no data" ?
    Is there any straightforward configuration kind of.. in Pie-chart, to hide it when no data.

  • How to get the 'th' when typing dates?

    Does anybody know how to make the 'th' or 'nd' small when typing a date in pages?
    I'm using pages 5.5.2 and can't seem to find how to do it anywhere.
    I would appreciate a quick response as I'm typing an urgent document.
    Thanks,
                Kevin

    Unicode does not have ordinals for numbers, only for the masculine and feminine.
    The reason being that each language has its own and the effect can be achieved with Superscripting.
    To superscript say st, nd or th select the characters > Menu > Format > Font > Baseline > Superscript
    or
    control command shift +
    Peter

  • How to hide the URL when redirecting to another URL?

    Hello9 @ all,
    I want to write an application, which has some LinkToUrls, which redirect the User to BW-templates. When the user executes the LinkToUrls, he should redirect to the BW Templates, but must not see the URL in his browsers addressbar. He still should see the URL of the Web Dynpro Application. How could I solve this problem??
    Thank you in advance!!
    Mehmet

    Hello Maksim,
    I´ve tried this code inside a action of a LinktoAction but it does not work?
    public void onActionopenUrl(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionopenUrl(ServerEvent)
        String urlToTreeApp = wdContext.currentURLSElement().getKAP();
         final String formattedStr = "<HTML>" +"<HEAD>" +"</HEAD>" +"<FRAMESET ROWS="*" width="100%">" +"<FRAME SRC="" + "www.google.de" + "" MARGINWIDTH="0" MARGINHEIGHT="0" NORESIZE FRAMEBORDER="0" BORDER="0" SCROLLING="NO">" +"</FRAMESET>" +"</HTML>";
         try {
              final IWDCachedWebResource resource = WDWebResource.getPublicCachedWebResource
                        formattedStr.getBytes("UTF-8"),
                        WDWebResourceType.HTML,
                        WDScopeType.CLIENTSESSION_SCOPE,
                        wdComponentAPI.getDeployableObjectPart(),
                        "FrameResource"
              try {
                   wdThis.wdGetWd_menueInterfaceViewController().wdFirePlugExit(resource.getAbsoluteURL());
              } catch (WDURLException e1) {
                   // TODO Auto-generated catch block
                   e1.printStackTrace();
         } catch (UnsupportedEncodingException e) {
              e.printStackTrace();
        //@@end

  • Hide  the cursor when it not move?

    how to hide the cursor when it not move?
    i know how to creat a hide_cursor,but i want to hide it when the cursor not move and show it when it starts move again
    thank you!

    Create a javax.swing.Timer that has a 5 second initial
    delay, non-repeating. When it fires, it should hide
    the cursor (set to a blank cursor or whatever you have
    to do). Then on mouse motion events, you show the
    cursor and reset the timer.A good idea - is there no mouseNotMoved-event ?
    heres my sample-code:import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.MemoryImageSource;
    import javax.swing.*;
    import javax.swing.event.MouseInputAdapter;
    public class HiddenCursorListener extends MouseInputAdapter implements ActionListener {
         private static final Cursor HIDDEN_CURSOR =
              Toolkit.getDefaultToolkit().createCustomCursor(
                   Toolkit.getDefaultToolkit().createImage(new MemoryImageSource(16, 16, new int[16 * 16], 0, 16)),
                   new Point(0, 0),
                   "HIDDEN_CURSOR");
         private static final Cursor DEFAULT_CURSOR = new Cursor(Cursor.DEFAULT_CURSOR);
         private Timer timer;
         private int timerDelay=1000;
         private Window window;
         public HiddenCursorListener(Window win) {
              window=win;     
         public void mouseEntered(MouseEvent e){
              startTimer();
         public void mouseMoved(MouseEvent e) {
              showCursor();
         public void mouseDragged(MouseEvent e) {
              showCursor();
         public void mouseClicked(MouseEvent e){
              showCursor();
         public void actionPerformed(ActionEvent e) {
              hideCursor();
         private void hideCursor(){
              if (window.getCursor() != HIDDEN_CURSOR)
                   window.setCursor(HIDDEN_CURSOR);
         private void showCursor(){
              if (window.getCursor() != DEFAULT_CURSOR)
                   window.setCursor(DEFAULT_CURSOR);
         private void startTimer(){
              timer = new Timer(timerDelay, this);
              timer.start();
         public static void main(String[] args) {
              JFrame f = new JFrame("Hidden-Cursor-Test");
              f.setSize(500, 500);
              f.setLocationRelativeTo(null);
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              HiddenCursorListener lis = new HiddenCursorListener(f);
              f.addMouseMotionListener(lis);
              f.addMouseListener(lis);
              f.setVisible(true);
    }regards

  • How can we hide the link "Attachment" in the preview of a Task??

    Hi all
    I have requirement in portal CE 7.1 as follows.
    all GP tasks are getting displayed in UWL that is fine.
    i want to hide the link "Attachment" in the preview of a Task??
    once i open the task from UWL then that task item opens in new window where i am getting the "Attachment" link that i wanted to hide or remove.
    Cab you provide ur inputs then it would be great help to me
    Thanks
    Sunil

    There are Subject, From, Send Date, Attachment .... columns.
    Do you want to hide Attachment column?
    Please refer wiki link :
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl%252bfaq
    How can I have the attachments options be hidden? Our users do not want to add attachments.
    In the UWL iview properties update the proprety "List of preview sections to hide (SUBJECT, ATTRIBUTES, DESCRIPTION, ATTACHMENTS, NOTES, USERDECISION, and/or ACTIONS)." Enter ATTACHMENTS as a value.
    Edited by: shrikant kamble on Feb 27, 2009 12:41 PM

  • How to hide the data in particular table in oracle 10g

    How to hide the data in particular table in oracle 10g
    i want steps

    If its on Report u can  always hide the column - Keyfigure or Selection - Display - Hide......y do u want to have it on the report if it is to be hided in the first place?

  • I-photo:  I used 2 cameras to take pictures on a trip --- i have put the pictures from both cameras into an album --- when i click on view and then sort by date, the pictures do not sort by date --- any ideas on how to get the pics sorted by date?

    I-photo:  I used 2 cameras to take pictures on a trip --- i have put the pictures from both cameras into an album --- when i click on view and then sort by date, the pictures do not sort by date --- any ideas on how to get the pics sorted by date?

    Select all the photos that you need to change, then click the "Photos" menu and choose "Adjust Date and Time".
    If you add a year, it will adjust all the photos that you selected by adding a year (so if you accidentally select one of the photos that already has "2012", that will change to "2013"). 

  • 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 to validate the field when i am populating the data cursor to block

    Hi,
    I am populating data cursor to multi record block.
    Block contain 5 items. I am populating data cursor to block for 4 items. User will enter one item value that is quantity field.
    If user enter negative values and decimal points in quantity filed i need to display message to user item level.
    Please do the needful how to do it.

    902434 wrote:
    Hi,
    I am populating data cursor to multi record block.
    Block contain 5 items. I am populating data cursor to block for 4 items. User will enter one item value that is quantity field.
    If user enter negative values and decimal points in quantity filed i need to display message to user item level.
    Please do the needful how to do it.If you want to validate at entry level then use When-Validate-Item trigger and check the input and show message. Like
    If :quentity <0 then
    message('do not enter negative value');
    message('do not enter negative value');
    raise form_trigger_failure;
    end if;Why u open same thread again ? not closing one.. check this one
    </a>
    How to validate the field when i am populating the data cursor to block
    Hopes this helps
    If someone's response is helpful or correct, please mark it accordingly.

  • How to hide system tables when using the Oracle SQL Developer?

    Hi,
    I would like to know how can I show only the tables that I created under the Tables tree? I didnt find a way to create a separate database using the Oracle Sql Developer. I see all the tables together, and would like to differentiate between different databases.
    Can anyone explain to me how to do these things?
    Thanks,

    Hi,
    I would like to know how can I show only the tables that I created under the Tables tree? Your posting is not clear,again tell something more on tables tree,what u want to achieve with it.
    How to hide system tables when using the Oracle SQL Developer? if u connected with sys, system or user with dba role then u have a privilege to see these tables,so revoke the privilege/role from ur user to view this tables if ur connected other then sys,system,
    I didnt find a way to create a separate database using the Oracle Sql Developer. DBCA is a tool for creating the new database.
    Kuljeet

  • How to Hide the Parameter field at run time....

    Hi,
    I have a parameter field which behaves differently depending on the User logged in.
    It has the LOV coming from following SQL.
    SELECT customer_name FROM Cust_mast;
    If the user = 'INTERNAL' then the Where clause will be
    WHERE cust_id in('DELL', 'SBC', 'BANK')
    Else there will be no WHERE clause or the parameter field
    should be hidden in the parameter form.
    So my questions are:
    1) How to hide the Parameter field during Run time?
    OR OR OR
    2) How to change the LOV select statement during Run time?
    Thanks.
    Ram.

    Hi Ram,
    Is there any way to play with the sql query SELECT using DECODE ?I'm not sure of this part, maybe someone else can suggest a way.
    However, what you want can be done in 2 other ways:
    1. Build 2 reports. Both reports will just be duplicates of each other, only difference being that the 'LoV where clause' will be different. Now you can fire the appropriate report in many ways. For example, if the customer is alreay logged inside your custom application, and therefore you already know whether the user is internal of external, you can design your button or link which launches the report to contain logic such that one of the 2 reports is fired depending on who the user is.
    1. Use a JSP parameter form, not a paper parameter form In this case, just build an HTML parameter form in the web source of your report. Use Java logic to populate the LoV drop-down list. When you have to launch the final report, just launch the paper-layout of the report. For example (you will have to modify this):
    <form action="http://machine:port/reports/rwservlet?report=ParamForm.jsp+..." name="First" method="post">
    <select name="selected_customer" onChange="First.submit()" >
    <option value="">Choose a Customer Name
    <rw:foreach id="G_cust_id" src="G_cust_id">
         <rw:getValue id="myCustId" src="CUSTOMER_ID"/>
    <rw:getValue id="myCustName" src="CUSTOMER_NAME"/>
    <option value="<%=myCustId%>"><%=myCustName%>
    </rw:foreach>
    </select>
    </form>
    In the code above, you will have to make sure that your report's data model defines 2 CUSTOMER_ID's (like CUSTOMER_ID_INT and CUSTOMER_ID_EXT). These 2 will be internal and external Cust ID's. Use Java logic to show one of them.
    Navneet.

Maybe you are looking for

  • Purchased item not playing on Ipod

    I hope someone can help me out here, none of my 171 files that I have purchased from the Itunes store are playing on my Ipod, they just skip past. I have tried restoring, deauthorizing and authorizing again, I have also tried uninstalling and reinsta

  • Problems to display a 2nd window using multithreading

    I would like to know how is it possible to display a second window where I can enter a text while the main window continue to display on a graph acquired data - Thank you very much in advance

  • How to read body of the message

    when i get messages through javamail which function is then used to read out the content of my messages please tell quickly

  • Changing TABs texts in PCUI on runtime

    Hi All. Does somebody know if is it possible to change the text of a TAB on runtime in PCUI ? maybe implementing some logic in the MAC ? any idea is welcome.

  • OAM11g- WNA question

    Hi, We are trying to configure multi-domain WNA using OAM 11.1.1.5.2. WNA works fine with one domain and fails with the other i.e., if the user logs in to windows with second domain, the authentication fails and we see the KDC is sending NTLM token i