How to personalize and set rendered property false to poplist

HI,
could u please tell me that How to personalize and set rendered property false to poplist
when poplist was developed initially it's user personalization property set as FALSE, that is why when i tried to personalize and set rendered property as flase, i could not able to find the property as rendered for that perticular item.
Please provide me step by step process.
Thanks,
Ram.

Hi Ram,
you can do set rendered false through personalization as well as co extension.
if you go for persoalization set the profile option Personalize Self Service Definitions and clik on personaliztion link
then search for item and set its rendered property to false.
If you go for co extension capture the poplist bean and and setRendered(false) to that field.
If you are feeling difficulty by personalizatoin better go for CO extension.
Thanks
Amit Jaitly

Similar Messages

  • In which function i should set rendered  property of components

    Hi
    Thank you for reading my psot.
    it is really making me mad.
    can some one tell me which function of a backing bean i should use to set rendered property of some components ?
    i tried all of them and none of them seems to apply the rendereing propretiy.

    It is easy to find out
    Add a message group to the Page. Then in each method add
    info("At method <method name>");
    Run the application and see the results.
    - Winston
    http://blogs.sun.com/roller/page/winston?catname=Creator

  • How to set Rendering property of an item in a Default Double Column

    Hi ,
    I have developed a self service query region with default double column region. I have placed a combination of Input Text , LOV component in that region. My Issue is , I need to set the rendering property of the LOV input during run time. I used the OAMessageLOVInputbean.setRendered(false) in my contoller class. But I found that this is not working.
    Is there is any other way to handle the rendering property of item's in a default double column during run time.
    Thanks

    Here is the code snippet
    import oracle.cabo.style.CSSStyle;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageTextInputBean;
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
          CSSStyle css =new  CSSStyle();
                 css.setProperty("text-transform","uppercase");
                 OAMessageTextInputBean mtib=(OAMessageTextInputBean)webBean.findChildRecursive("HelloName");
                 if(mtib!=null) {
                 mtib.setInlineStyle(css);          
    }Hope it helps!!!
    Thanks
    AJ

  • Get value from table record and set Disabled property...

    Hi! I have table in my JSPX page. I search for records and then press on one of the records with right click, see: http://my.jetscreenshot.com/2677/20120203-fas1-30kb
    I set disabled property like this of my commandMenuItem:
    #{row.GenResGrupa != 'true'}But as You can see from my picture above, the disabled property do not work. Where I am wrong with my code:
    <af:commandMenuItem text="#{sampleBundle.pases}"
                                                  id="commandMenuItem1"
                                                  action="adfMenu_pasesDati"
                                                  actionListener="#{bindings.setCurrentRowWithKeyValue.execute}"
                                                  disabled="#{row.GenResGrupa != 'true'}"/> Please correct me! If You need some other information, please let me know.
    Best regards, Debuger!

    Dear fedor! Popup is in facet contextMenu. contentDelivery="lazyUncached" for my popup:
    <af:popup id="p1" contentDelivery="lazyUncached">
                            <af:menu text="menu 1" id="menu1">
                              <af:commandMenuItem text="#{sampleBundle.pases}"
                                                  id="commandMenuItem1"
                                                  action="adfMenu_pasesDati"
                                                  actionListener="#{bindings.setCurrentRowWithKeyValue.execute}"
                                                  disabled="#{row.bindings.GenResGrupa.inputValue != 'true'}"/>
                            </af:menu>
                          </af:popup>In my pageDef I have this code:
    <bindings>
        <tree IterBinding="LVAIMeklesanaIterator" id="LVAIMeklesana">
          <nodeDefinition DefName="kokaugi.model.view.LVAIMeklesana"
                          Name="LVAIMeklesana0">
            <AttrNames>
              <Item Value="Accename"/>
              <Item Value="LvaiKolekcijaPk"/>
              <Item Value="Accenumb"/>
              <Item Value="AvsGrupa"/>
              <Item Value="Cropname"/>
              <Item Value="EkspGrupa"/>
              <Item Value="GenResGrupa"/>
              <Item Value="Genus"/>
              <Item Value="Species"/>
              <Item Value="Sinonims"/>
            </AttrNames>
          </nodeDefinition>
        </tree>
        <action IterBinding="LVAIKolekcijaDatiIterator"
                id="setCurrentRowWithKeyValue"
                InstanceName="KokaugiModuleDataControl.LVAIKolekcijaDati"
                DataControl="KokaugiModuleDataControl" RequiresUpdateModel="false"
                Action="setCurrentRowWithKeyValue">
          <NamedData NDName="rowKey" NDValue="#{row.LvaiKolekcijaPk}"
                     NDType="java.lang.String"/>
        </action>
      </bindings>And disabled property is like this:
    disabled="#{row.bindings.GenResGrupa.inputValue != 'true'}"But it is still do not working. I am wrong somewhere? Maybe the only way to correct my problem is like Hohn said?
    Best regards, Debuger!

  • How to get and set graph propertis using UIGraph instance

    Hi,
    I have added barGraph graph component on *.jspx and also added buttons like "Get properties" and "Set Properties". On "Get Properties" button action, I want to get all the attrributes of barGraph using UIGraph and also want to get "getGroupAttributes" and "getSeriesAttributes".
    I saw examples on gettiing the Group attributes using the click event on the graph.
    Is there any way to get the attributes on some button action like "Get Properties" without any click event on graph?
    Thanks,
    Gopal

    [Copying the answer here from the internal forum discussion so that other customers can benefit]
    Hi Gopal,
    You can call getValue on the UIGraph to get the GraphDataModel, then to use the data access APIs from there.
    Once you get the DataAccess from the GraphDataModel, you can call getMemberMetadata to get the members on the row and column edge.
    This method is documented in the interface CDFDataAccess:
    http://docs.oracle.com/cd/E16162_01/apirefs.1112/e17492/oracle/dss/util/CDFDataAccess.html#getMemberMetadata%28int,%20int,%20int,%20java.lang.String%29
    You should use the following constants for the series and groups:
    DataDirector.COLUMN_EDGE=groups
    DataDirector.ROW_EDGE=series
    Use the method getEdgeExtent to find out how many members are in the series and groups:
    http://docs.oracle.com/cd/E16162_01/apirefs.1112/e17492/oracle/dss/util/CDFDataAccess.html#getEdgeExtent%28int%29
    Method getLayerMetadata is the correct way to get the names of the layers, a.k.a "dimensions" displayed in the graph.
    DataAccess is used to read the data from the Graph. You set the data in the Graph by setting tabular data, using data binding by dragging and dropping from the data control palette, or by implementing a custom DataSource and setting it on the graph.
    http://docs.oracle.com/cd/E16162_01/apirefs.1112/e17492/oracle/dss/dataView/CommonDataview.html#setDataSource%28oracle.dss.util.DataSource%29
    However, implementing a custom data source is not trivial, and you should only use that approach if you can't use tabular data or regular binding against the available data controls.
    This doc chapter might help in understanding data source requirements for different Graph types:
    http://docs.oracle.com/cd/E16162_01/web.1112/e16181/dv_graph.htm#CEGBGCDG
    Hope this helps,
    Katia

  • How to get and set custom tag attributes

    How do i get and set custom tag attributes from a jsp page?

    Not sure if this is what your looking for, but....
    example...
    < taglibprefix:testtag attribute1="x" attribute2="y">
    ...of course, the attributes have to be defined in your taglib (.tld) file

  • How to Get and Set personalization data from Iview with Java Webdynpro ?

    Hi All,
    I'm trying to get Iview properties from an Iview in the portal, did anyone knows how to do this?
    sample caode?
    Thanks,
    AmitY

    You can use PCD API to access iView properties
    Check this link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/314ae7a5-0c01-0010-c198-9c7c5e8cee46
    /people/daniel.wroblewski/blog/2006/08/15/pcd-ii-creating-portal-objects

  • How to read and set Pane value for new adding folder

    Hi Experts,
    I tried to add a new folder in to a system form as below
    Itm = form.Items.Add("UserFolder"), SAPbouiCOM.BoFormItemTypes.it_FOLDER)
    form.DataSources.UserDataSources.Add("F_new", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 1)
    Dim oFolder As SAPbouiCOM.Folder
    oFolder.DataBind.SetBound(True, "", "F_new")
    oFolder.GroupWith("138")
    My quester is what is the panelevel for this new folder? And how to set value to panelevel for this folder.
    If we design a folder from Screen Painter, we can set the pane value manually, can we do this from code?
    Thanks a lot
    Tim

    Hello,
    You do not have to set any panelevel for your folder, if you would like to display it all the panelevels. (Let's see an example on Item Master data form).
    Sales, Purchase, Inventory etc tabs (folders) are always visible, there is no panelevel set for them.
    To change between panelevels, you can trigger et item pressed event, and  before_action = false, then you may change the panelevel of the form poperly.
    For initially you may use the Folder.Select() command to show the default panelevel
    >The problem is here, it looks like oFrom.Panelevel property can only accept integer value, so how can I know what's the pane level number for my folder?
    Do not set panelevel for your folders, you should drive your form's panelevel based on a selection tree:
    To see clear, please check the following code in the help sample: CompexForm
    C:Program FilesSAPMásolat - SAP Business One SDKSamplesCOM UIVB.NET07.ComplexForm2003
    to make it clear:
            '// Adding Folder items
            For i = 1 To 2
                oItem = oForm.Items.Add("Folder" & i, SAPbouiCOM.BoFormItemTypes.it_FOLDER)
                oItem.Left = (i - 1) * 100
                oItem.Width = 100
                oItem.Top = 6
                oItem.Height = 19
                oFolder = oItem.Specific
                '// set the caption
                oFolder.Caption = "Folder" & i
                oFolder.DataBind.SetBound(True, "", "FolderDS")
                If i = 1 Then
                    oFolder.Select()
                Else
                    oFolder.GroupWith(("Folder" & i - 1))
                End If
            Next i
    This code add 2 folders to the form: and the first (i = 1) is selected.
    IN itemevent, the panelevel property of the form is depending from the item you have clicked:
    Case SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED
                        '// Check if the event was raised by one of the Folder items
                        '// and change the form's pane level
                        If pVal.ItemUID = "Folder1" Then
                            oForm.PaneLevel = 1
                        End If
                        If pVal.ItemUID = "Folder2" Then
                            oForm.PaneLevel = 2
                        End If
    Regards
    János

  • How to access and set the object attributes in a task flow?

    I have created a web service data control which has an operation having input as payload object. This payload object has two attributes min and max. I am calling a task flow in a dynamic region in which I want to display result of this operation for which i have to set the values for min and max. I want to set these values when I click the taskflow link. How to achieve this? I am new to adf.

    Hi Arun,
    Thanks for your reply.
    I have tried passing parameter to a task flow, but i cannot set the action to a task flow call because it already has action for a method in a dynamic region which renders the task flow at runtime. How do i set action to task flow call link? Also once i get the parameters into the page flow scope variables, i want to pass those to one of my data control operation which displays the result in that taskflow.(i dont want to create parameter form for this operation).

  • How to configure and set a default view for contents of a data set

    Here is my scenario:
    I have a document library where each item is a "Plan".  "Plan" is of a custom content type that inherits from a Document Set content type but has some additional attributes such as Plan Type.  Inside each Plan, each item is
    a Plan Document which is of custom content type Plan Document which inherits from Document content type but has some additional attributes e.g. Document Status.
    So the hierarchy is:
    All Plans (document library)
         Plan 1  (custom content type that inherits from Document Set but also has a "Plan Type" attribute)
                 Plan Document   (custom content type that inherits from Document but also has a "Document Status" attribute
    When I click on the document library, I want to see all the folders (e.g. Plan 1) where one of the columns will be "Plan Type"
    When I click on an individual Plan (e.g. Plan 1) I want to see the contents of that custom document set.  At this point, since this page shows contents of one document set, I want to see the column "Document Status" but NOT Plan Type since
    Plan Type applies to the document set as a whole, not to an individual item in that document set.
    However, I don't think I have it set up correctly because right now the "Plan Type" column is visible both on the list of all document sets AND on the page that shows the contents of one document set.
    I've found a discussion on this topic here:
    http://sharepoint.stackexchange.com/questions/61565/how-can-i-set-a-custom-default-view-for-a-document-set
    where one person said "When you click on a Document Set content type in library settings, one of the options is "Document Set settings". The last option in this dialogue allows you to select a defined view on the library that will be used
    to show the contents of that Document Set."  I don't see that view selection.  The last item on the document set settings page is "Update List and Site Content Types".  The field before that is for customizing the Welcome page. 
    However, I don't want to customize the Welcome Page as a whole, I just want to customize the columns that are displayed on the list of content of this document set.
    thanks

    I finally found the answer:
    At the document library level, create a new view to use when displaying the files in the document set
    Go to the document library settings
    Select your custom content type (in my case it was "Plan")
    In the next screen select Document Set settings
    Select your newly created view at the Welcome Page View section
    Press Ok
    Now the default All Documents view will be shown when displaying all the document sets and the newly created view will be displayed when viewing one document set with the files within.

  • How to install and set up SAP BW 7.0

    I have already worked against SAP BW 3.5/3.1 server with SAP DPA for a while. Now I would like install and setup the BW server by myself. How could I get the installation for BW 7.0? Is it part of NetWeaver 2004s? What is the general steps to install BW 7?
    Thanks

    Hi Zhang,
    Yes. It is part of NW2004s. So when you install NW2004s you can select the BI Component. Make sure you select both the BI ABAP and Java stack. Also remember to install the BI content after this. The BI 7.0 has a separate frontend so install that too. Make sure all the frontend and backend are on the same patch level.
    You can find all the set-ups and patches at http://service.sap.com/swdc.
    Bye
    Dinesh

  • How to install and set printer paper and tray automatically via script or batch file

    Hi,
    Our firm using HP Printers and we need to deploy printer in Citrix Environment where setting does not save to the Base PC Image.
    Because our Environment is Citrix (User Settings and Printer are deployed when user login).
    Can we build the setting into the Base PC Image for All users?
    Printer get install when using login.
    Problem that I am encounter right now are:
    1. How to correctly identify all tray from each printer.
    2. How to set all paper tray to A4
    I am currently using Powershell Script to install printers during login, all the printer driver has been installed to the Base PC Image.
    But the trouble I have is when the script run to completion.
    It only added the printer.
    I've been googling, but I can't find a way to detect printer tray or how to set all the tray to A4.
    I don't mind using any type of script/batch file or even program.
    Any of the following language is C#, VB.NET, powershell, vbscript or Event Access to HP API ?
    Our Environment:
    Windows 7 x32 SP1
    Windows Server 2008 R2 (Print Server)
    I am using the PCL 6 Printer Driver.
    Our Printers are:
    HP LJ CP1025NW
    HP C LJ 4650
    HP C LJ 3525
    HP LJ 1045
    HP LJ 2050
    HP LJ 3055
    HP LJ 4015
    HP LJ 4350
    HP LJ 4700
    HP LJ 2035n
    Thanks in advance
    Regards Dat.

    Most of those printers are commercial grade printers.  It would be best to post in the commercial LaserJet forums.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • How to binding and change VM property value when DataTrigger?

    Hi all,
    Please see the below code. The current work is when mouse over myButton then set textbox value as 3. Then binding this value to ViewModel property, at this time, the new value of ViewModel property also be 3.
    The textbox just like a bridge. Can I remove this bridge and change the VM property directly when <setter..... in myTrigger style? thanks.
    <Style x:Key="myTrigger" TargetType="TextBox">
    <Style.Triggers>
    <DataTrigger Binding="{Binding IsMouseOver, ElementName=myButton}" Value="True">
    <Setter Property="Text" Value="3"></Setter>
    </DataTrigger>
    </Style.Triggers>
    </Style>

    This definitely works:
    <Button Height="50" Width="100">
    <Button.Triggers>
    <EventTrigger RoutedEvent="Button.MouseEnter">
    <BeginStoryboard>
    <Storyboard
    Storyboard.Target="{Binding}"
    Storyboard.TargetProperty="MyNum">
    <DoubleAnimation To="3.0" />
    </Storyboard>
    </BeginStoryboard>
    </EventTrigger>
    </Button.Triggers>
    </Button>
    Viewmodel:
    public class MainWindowViewModel : DependencyObject
    public double MyNum
    get { return (double)GetValue(MyNumProperty); }
    set
    SetValue(MyNumProperty, value);
    // Using a DependencyProperty as the backing store for MyNum. This enables animation, styling, binding, etc...
    public static readonly DependencyProperty MyNumProperty =
    DependencyProperty.Register("MyNum", typeof(double), typeof(MainWindowViewModel), new PropertyMetadata(callBack));
    static void callBack(DependencyObject d, DependencyPropertyChangedEventArgs e)
    Console.WriteLine(e.NewValue.ToString());
    Hope that helps.
    Recent Technet articles:
    Property List Editing ;  
    Dynamic XAML

  • How to get and set the column order in SharePoint list forms

    Hi,
    I want to read the column order of the SharePoint list forms in SharePoint 2003 sites using any of the available web services and need to set the same order
    in the newly created list in SharePoint 2010.
    I am able to read the fields from SharePoint 2003 and creating the list with same fields in SharePoint 2010, but the column order is not maintaining in
    list forms.
    Also, I need to created the views from 2003 site to 2010 site.
    Please help me...
    Thanks in advance...

    Hi,
    Please try to use the following code to programatically change the order.
    SPList list = web.Lists["Example List"];
    if (list.ContentTypes.Count > 0)
    SPContentType ct = list.ContentTypes[0];
    string[] names = {"Example_x0020_One", "Example_x0020_Two", "Example_x0020_Three"};
    ct.FieldLinks.Reorder(names);
    ct.Update();
    Here is a similar thread for your reference:
    https://social.technet.microsoft.com/Forums/en-US/ce66fd65-2882-4bda-8142-89e116d8b90f/how-to-set-the-order-of-the-fields-in-list-forms?forum=sharepointdevelopmentprevious
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Joomla! on OS X: How to install and set up?

    Hi All,
    I am wanting to install/set up Joomla! on my PowerBook, and can't seem to find any clear, concise information on how this is done. What I want to do is set it up on my local machine, build a site using Joomla! and test it locally, then eventually publish it to a remote server.
    I'm not too experienced in web design/development so I don't know much - bear with me. Would anyone here mind breaking it down as step-by-step as possible?
    What do I need to download, what needs to be installed; where. If there are any Command Line commands, could you walk me through them?
    I do/did check out the Joomla! forums but no one seems to be able to provide a clear answer (or perhaps are more PeeCee oriented and don't feel confident in guiding a Mac user?).
    Thanks for your patience and time, I hope this isn't asking too much.

    Hi, M.
    1. Your question belongs on the Joomla Installation Forum. I presume you've read their Installation Guide which, in the typical fashion of Open Source projects, is rather terse and geared to either Linux or Windows users.
    You said you "did check out" their forums, but have you tried posting this question on their forums? I'd suggest that and, if you don't get an adequate response, then perhaps you'd be better served by using a different product.
    I don't mean to send you somewhere else, but you should be able to find help from Mac OS X users who've installed Joomla on their Installation Forum.
    2. You wrote: "I'm not too experienced in web design/development..."IMO, Joomla is not a product for you to begin with.
    You can try the following apps for free:
    - Site Studio It's only US$30.00 to purchase. It's designed for coding in HTML.
    - Freeway Express. It's US$89 to purchase and takes a graphical approach to Web design. <a href="http://www.softpress.com/products/freewayprointerf.php"">Freeway Pro</a> offers more functions, but Express may be enough if you're just starting and, if memory serves, you can upgrade from Express to Pro.
    If you are a student, you can get pro-level Web Design apps such as <a href="http://www.adobe.com/products/golive/main.html">Adobe GoLive CS2 and Dreamweaver at deep educational discounts, e.g. US$100 or less.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

Maybe you are looking for

  • Problem installing 9i on XP

    I have got ORacle 9i for WIN-NT/2000. I have now reformatted my computer and installed WIN-XP. But now I am unable to install Oracle 9i. Is there any patch available or any way out?

  • How Can I add other people to the group calling wh...

    Hi,  Could you tell me how can I do this? My laptop is broken and it's in the repair center now so I have to make a call by phone or tablet. However, everytime I have to add another person to the group calling, I have to ask other people to add him/h

  • IPhoto/Quicktime slideshow to Facebook

    I created a photo slideshow with music in iPhoto '08, which I then exported to iDVD and ended up with a Quicktime movie in QTP 7.5.5. I would like to post that video with sound to my Facebook page and thought I had successfully done so -- until I rea

  • Countdown timer on E51

    Hey! Is there no countdown timer on S60? I'm used to being able to type in some numbers then press options and choose countdown timer with my S40-mobile, why not on S60? Regards!

  • Help with External Hard Drive

    Ok, I have all my music on an external hard drive, and a brand new version of itunes that is completely blank. I'm trying to transfer the music from my external hard drive into Itunes but am having trouble. I've gone to file - add to library - and th