RCDC and userEnabled checkbox

hi all
I want to display the userEnabled checkbox in the user creation GUI in FIM portal. I tried to copy the xml code from user editing RCDC file and paste it into user creation xml file.
But I get an error: There's an error in the Person display configuration.
I have done this procedure for other attributes and it worked fine, are there any dependencies I have not thought of?
This is the code snippet I pasted in:
<my:Control my:TypeName="UocCheckBox" my:Name="userEnabled" my:Caption="{Binding Source=schema, Path=userEnabled.DisplayName}" my:Description="{Binding Source=schema, Path=userEnabled.Description}" my:RightsLevel="{Binding Source=rights, Path=userEnabled}">
<my:Properties>
<my:Property my:Name="Required" my:Value="{Binding Source=schema, Path=userEnabled.Required}"/>
<my:Property my:Name="Checked" my:Value="{Binding Source=object, Path=userEnabled, Mode=TwoWay}"/>
</my:Properties>
</my:Control>
Andre

Hello Andre,
When you copy some control to another RCDC, be aware that sometimes, data sources are not presents in the current RCDC.
For you, the data source "rights" is not present (and not avaible) for RCDC in creation mode.
Try to remove this occurrence:
my:RightsLevel="{Binding Source=rights, Path=userEnabled}"
Regards,
Sylvain

Similar Messages

  • Check for text in a text field and make checkbox mandatory

    I have a text field where if the user has entered a value, then the checkbox that follows must be mandatory. I have this script that works (sort of), but I'm not sure which event to use to get the results I want. I want the message and the checkbox to be mandatory only if something is typed in the field.
    Here's the script:
    if ((this.rawValue != "null") || (this.rawValue != ""))
         CheckBox3.mandatory = "error";
         app.alert("Please indicate that you have reviewed the similar profile and approve it");    
    else if ((this.rawValue == "null") || (this.rawValue == ""))
         CheckBox3.mandatory = "disabled";
    Thanks,
    MDawn

    That worked. Thank you. I have another problem now. If the user deletes the information typed in the text field, the message box still displays and the checkbox is still outlined in red indicating it's required and it shouldn't be.
    Thanks,
    MDawn

  • How to populate a textfield based on a dropdown list and a checkbox

    Hi Guys,
    I need help.
    first step: I have a dropdown list if i click in dropdownlist "a" and put in numeric field a number bigger than 99 the, checkbox should be marked and  second step: a textfield1 should be visible.
    the first step works perfectly but the second doesnt work.
    this is my coding for the second step in event : change java script
    if ((DropDownList1.rawValue == "a") && (this.rawValue == 1))
    TextField1.presence = "visible";
    else
    TextField1.presence = "hidden";
    does anybody have any idea why?
    thanks!!
    Diana

    Hi,
    I would put the following in the exit of the dropdown and the checkbox:
    if 
    (DropDownList1.rawValue == "a" && CheckBox1.rawValue == 1){
    TextField1.presence
    = "visible";}
    else
    TextField1.presence
    = "hidden";}
    (the script is all over the shop, but should be OK in the form).
    Then in the exit event of the numeric field (after the changing of the checkbox value) you could call the checkbox exit event.
    Good luck,
    Niall

  • Use of Creatable ,Updateable and deletable checkbox for entityset in ODATA

    Hi Experts,
    i have created one entityset without specifying creatable,updateable and deletable checkbox, and i am able to perform create,update and delet  entity operation. Then what is the use of those checkbox.
    Regards
    Saumya

    Hi,
    Refer this document SAP Annotations for OData Version 2.0 and Creating Data Objects - SAP NetWeaver Gateway - SAP Library and Entity Sets - SAP NetWeaver Gateway Foundation (SAP_GWFND) - SAP Library
    Check for the default value mentioned in SAP Annotations for OData Version 2.0 for creatble, updateble etc attributes.
    Regards,
    Chandra

  • Workshop 8.1 - netui-data:repeater and netui:checkBox

    Hi everybody.
    How can i use netui-data:repeater and netui:checkBox to build a group of checkboxes ? I need something like Struts "indexed and mapped properties" (http://struts.apache.org/struts-doc-1.1/faqs/indexedprops.html)
    I've tried something like this
    == FORM ==
    public List getSearchResult() {
       return searchResult;
    public void setSearchResult(List searchResult) {
       this.searchResult = searchResult;
    }== JSP ==
    <<netui-data:repeater dataSource="{actionForm.searchResult}">>
    <<tr bgcolor="#ffffff" class="text8b">>
    <<td>><<netui:checkBox dataSource="{container.item.selected}" />><</td>><</tr>>
    <</netui-data:repeater>>
    I can see the values inside this page but when i submit this form, my list is empty (null).
    What is the right way of do it ?
    Thanks in advance.

    Hi Daniel
    There are 2 ways you can acheive this.
    1) Using something called Pageflowscoped form for this. This will let you use arrays for checkbox group.
    The main part will be that you need to define a member varaible of the form at the pageflow level there by the data will not be lost
    2) Using Request scoped form like you have now but need to modify the getter method to populate the "searchResult" object.
    public List getSearchResult() {
    if( null == searchResult){
    System.out.println(" Pouplate the searchResult here. ");
    searchResult= new ArrayList();
    //populate the default values.
    return this.searchResult;
    More info at:
    http://e-docs.bea.com/workshop/docs81/doc/en/workshop/guide/netui/guide/conReqScopedVsPageScopedBean.html
    I have a sample with pageflowscoped bean and requestscoped bean that I can send you if you provide your email address.
    Unfortunately we cannot attach files in the newsgroup.
    Thanks
    Vimala

  • How do I get rid of the message "To use this machine for downloads, enter you Apple ID and password" which I now see twice since I downloaded the latest version of iTunes? Once is enough and no checkbox exists to say "do not show this message.....".

    When I start iTunes, how do I get rid of the message "To use this machine for downloads, enter you Apple ID and password" which I now see twice since I downloaded the latest version of iTunes.  Once is enough and no checkbox exists to say "do not show this message....."

    Does this apply?
    If you're asked for the password to your previous Apple ID when signing out of iCloud - Apple Support

  • I have Firefox 28.0 and need Checkbox mate, but it won't sync, can this be done?

    I have Firefox 28.0 and need Checkbox mate, but it won't sync, can this be done?

    Sorry, I am not familiar with how that extension stores its settings or data, but most extensions needed to be edited or code added to make use of Firefox' ability to Sync extensions and their preferences and data.
    You need to contact the developer of that extension and suggest that feature be added. Mozilla builds the API and framework for syncing of extensions, it is up to each extension developer to make use of what Mozilla provided.

  • Problem with Jtree and a checkbox

    Hello,
    I have a problem with my tree implementation.
    I create a tree and i want to add a checkbox in each node.
    this is my code :
    DefaultMutableTreeNode root;
    root = new DefaultMutableTreeNode(new JCheckBox());
    DefaultTreeModel model = new DefaultTreeModel(root);
    _tree = new JTree(model);
    eastpane.add(tree);
    THe problem is that my checkbox doesn't appear. And a message appears
    instead of my checkbox.
    But my tree appears.
    Can anyone help me .
    Thanks

    You can provide a cell renderer to the JTree to paint the checkBox.
    The following code checks or unchecks the box with each click also:
    _tree.setCellRenderer(new DefaultTreeCellRenderer()
      private JCheckBox checkBox = null;
      public Component getTreeCellRendererComponent(JTree tree,
                                                    Object value,
                                                    boolean selected,
                                                    boolean expanded,
                                                    boolean leaf,
                                                    int row,
                                                    boolean hasFocus)
        // Each node will be drawn as a check box
        if (checkBox == null)
          checkBox  = new JCheckBox();
          checkBox .setBackground(tree.getBackground());
        DefaultMutableTreeNode node = (DefaultMutableTreeNode)value;
        checkBox.setText(node.getUserObject().toString());
        checkBox.setSelected(selected);
        return checkBox;
    });

  • ALV Grid - Hiding the values of a feild and disabling checkboxs

    Hello,
    I have a report that requires the need to hide certain fields in an ALV report as well as checkbox in certain rows.
    So example I want to turn the ALV's output from ....
    PO Number
    PO Item
    450000001
    001
    450000001
    002
    450000001
    003
    450000002
    001
    450000002
    002
    [   ] = checkbox
    to the desired output below ...
    PO Number
    PO Item
    450000001
    001
    002
    003
    450000002
    001
    002
    so baically I want to do 2 things
    1. Hide the values of certain fields if the value from the previous row is identital and ...
    2. .... only include checkboxes for each new value of that column by either hiding (preferable) or disabling them.
    Hope to hear from all of you soon.
    Thank you all and good day.

    Hi Chad Cheng,
    U have a variable IT_SORT in the FM REUSE_ALV_GRID_DISPLAY.
    IT_SORT -fieldname = ur fieldname 1.
    IT_SORT-up = 'X' or IT_SORT-Down = 'X'.
    Append it_sort.
    IT_SORT -fieldname = ur fieldname 2.
    IT_SORT-up = 'X' or IT_SORT-Down = 'X'.
    Append it_sort.
    awrd points if helpful
    Bhupal

  • Create PDF directly from Excel and paste checkboxes automatically

    Hi,
    I have a problem when creating a PDF. I want to convert a template from Excel into an interactive PDF with text boxes and check boxes. Text fields are automatically generated. Is there a way, to automatically create checkboxes? E.g. I already deliver in Excel a notice that the cell in the PDF form is a checkbox? I use Adobe Acrobat X Pro.
    Sincerely
    Ben

    Is this what you are referring to?
    http://dtputils.com/products/view/2

  • Use of Match(X)or Copy and Install checkboxes in Business content

    Hi,
    What is the use of checkbox selection under Match(X) and install in L.H.S of Business content while we try to install an object?
    Thanks in advance

    Hi,
    Have you seen same question posted on today:
    Installing Business Content - How to Deselect Match (X)/Copy Column ???
    the help says that:
    <i>The active version is overwritten with the delivery version if
    1) the match indicator is not set and
    2) the install indicator is set.
    In other words, the delivery version is copied to the active version.
    If the Install indicator is not set, the object is not copied or matched. In this case, the Match indicator has no effect.</i>
    With rgds,
    Anil Kumar Sharma .P
    Message was edited by:
            Anil Kumar Sharma

  • Transient VO and UIX checkBox tag

    I have created a VO that uses several attributes from an EO. In addition, it contains several transient attributes. The transient attributes work fine when editing with the textInput tag - the values are stored and displayed as expected.
    However, I cannot get a checkBox to work with them. I have used the checkBox numerous times in other parts of the application where the data is stored and recovered from a database.
    Can someone tell me if they have seen any problem with checkBox tags with transient attributes? Any suggestions on what might be the problem?

    Ok. I found the problem.
    The way I was testing this was by leaving the textInput field on the form with the checkBox. I assumed that there would not be a conflict. However, there is and when I commented out the textInput tags everything worked fine.

  • DRQ: Isolate the Daily, Monthly and Yearly CheckBoxes in Selection Criteria

    Module: Financials => Financial Reports => Accounting => General Ledger
    Request to Isolate the Daily, Monthly and Yearly Check Boxes in the General Ledger - Selection Criteria screen, instead of an option in the report window.
    Problem:  If there is BP/General Ledger having long transaction list, then once user un-check any of the check boxes system takes long time to remove/hide those rows which contains Totals. Which is effecting the performance of the report also.  Also those checkboxes appeared with check marked by default.
    If user has an option in the selection criteria screen, then they can choose which Total they want before previewing the report and mark accordingly.
    Thanks & Regards
    Anjan Bhowmick

    Being reached to 10 open question, I am forced to close this thread

  • Tabular forms, referencing current row and using checkboxes

    I've searched through the whole forum and read over 50 threads on referencing other columns in a tabular form only to find this impossible. Many of these threads were outdated so I would like to ask it again.
    Can I use references between columns of tabular forms? So that value of one column equals the other's. (select a, b from c where d=othercolumn)
    How can I get a workaround for lack of checkboxes in dynamically created tabular forms? (Standard tabular forms come with checkboxes for deleting multiple rows, can they be used in the same way but without writing manual reports?)
    Please do not send me to
    http://htmldb.oracle.com/pls/otn/f?p=18326:54:17962256093711784584::::P54_ID:1282
    I am looking for strictly dynamic, apex-like solution. Thanks in advance.

    That supposed to be a query for LOV, should have mentioned that probably. By dynamically created tabular form I mean the wizard-created form which transforms query results into a form on the fly. I consider the HTMLDB_ITEM-style the manual way. After all, I'll probably stick to the manual method because I am creating this form on a view with INSTEAD OF triggers so the processing still needs to be done separately.
    The question I asked referred to the internals of tabular forms' processing, behind the screen wizards there has to be some loop based on the query, I just wanted to reference other columns on the current iteration. (wwv.g_f01(0) ?...)

  • Storing and Fetching checkbox values in APEX 4.0

    Hi,
    I am trying to store and fetch values of multiple checkboxes which i have created as items inside multiple regions.
    What could be the most efficient way to store the checkbox state values in the database table, when creating a new record in my application and to show the checkbox state by fetching the state value,when viewing an already created record??
    Thanks.

    Yes, the list is presented as items.
    I have got the list of values using a SQL queries for different regions and i have presented the output in the form of checkboxes.
    I am trying to store the values of checkboxes from multiple regions inside database along with other details of form.
    Also, i want to fetch the stored values and view them for already created records.
    My exact question would be that which API or feature is used to achieve this in APEX 4.0 and how can it be done successfully??
    Thanks.

Maybe you are looking for

  • What's wrong with my AIR or Lion - won't wake up properly?

    If I do a 'scracth and sniff' type of scratch with my trackpad, I can find the log-in box and log in. Otherwise I am stuck. Any suggestions what might be causing this?

  • List of Open Transfer Requirement(TR)

    Hi all I want to know about report : List of Open Transfer Requirement(TR). Where i have to get the details. ie. Which table i have to get it? Can any one explain that reports briefly? Any Standrad T.code is there ?

  • System won't boot up

    Help please. I have a kt6 delta running an athlon 2700+ xp chip, 512 mb ddr 400. When I set the fsb at the correct speed for the chip (166) the system won't boot hard drive led lights up constant. dvd drive  and cd-r drive each run but the system won

  • No panels, shortcuts etc in InDesign CS6

    Hi all, Just installed InDesign CS6 on my machine (MacBook Pro, 10.8.3) and ran all updates but when I fire up InDesign I cannot see any panels, have no shortcuts and the menus are incomplete. I have CS5 and 5.5 on the same machine. I've tried reinst

  • XCreateIC fails intermittently on Solaris utf-8 locale

    Hi, I'm using motif 2.1 and Xlib of Solaris 8 (i.e. /usr/openwin/lib/libX11.so). In my application I'm using Drawing Area widget for text editing. I'm trying to create a input context for Root-Window input style. The following XCreateIC() call fails