Is it possible to have an attribute whose label is dynamic on an Entity Screen?

Hi,
I have an entity control on a screen that has an attribute which uses a label(say, %label%) as the question text. This text is supposed to change dynamically depending on the value selected for another attribute on the same screen. This doesn't seem to be happening, the attribute displays "%label%" in all the entity instances instead of the dynamic text. Is there a work around for this problem?
Thanks in advance,
Shwetha

You must use custom javascript or some other means to modify the appearance of a screen without submitting it (i.e based on something on the same screen).  In OPA, an attribute only has a value once the screen is submitted, not at the time when the HTML control is edited.  Subsequent screens can use values of attributes from prior screens for dynamic labels, but not on the same screen.

Similar Messages

  • Hey is it possible to have a slideshow of our camera roles as our lock screen background in an update??

    Hey is it possible to have a slideshow of our camera roles as our lock screen background in an update??

    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.

  • Why isn't possible to have ID attribute with a root tag

    Hi ,
    Why is it not possible to have a id associated with a Root tag ??
    Thanks in advance.

    CustomClass.mxml
    <Canvas id="i_got_a_root_tag_id" >
    </Canvas>
    Now remember , the id is declared when we declare the class right so even though we don't specify the id in the Application.mxml class , it is a property of the CustomClass.
    Main.mxml
    <Application>
      <CustomClass />
      <CustomClass />
       <Script>
         public function somethingFunction():void
            i_got_a_root_tag_id.addEventListener(Do.SomethingEvent , handleEvent);
    So in the previous example , which instance gets the listener added to it ?  See how root id tags hurt everyone everywhere ?
    If this post was helpful please mark it as such.
    Sincerely ,
      Ubu

  • Is it possible to have undefined attributes for an item type...see more in the messag

    I want to create an item called 'book' with attributes like title, date of publish, language, pages....and author, but i want that users can assign many authors (as much as users want)....is this possible?? How can I realize it??? Could I create author like a item type too?
    Thanks for all

    You can have any number of multi table mappings in an item descriptor.
    Take a look at the following example
    http://docs.oracle.com/cd/E23507_01/Platform.20073/RepositoryGuide/html/s1204repositoryexampleconetomanywitha01.html
    You can also open any repository in dyn/admin say userProfile.xml in ProfileAdaptorRepository and see the existing one to many (multi table) mappings.
    It just depends on how many multi properties you have in your requirements, create as many multi table relationships.
    ~Gurvinder

  • E72 - Possible to have more than 2 email accounts ...

    E72
    So is it possible to have more than 2 email accounts shown at the home screen?
    Currently one is set as primary and the other as secondary.. I have 4 email addresses I want shown at the main screen..
    Please help.

    jane999 wrote:
    Basically I want to share A1 with somebody else and we both use yahoo email. So I need to sign out before she can sign in. Any way to do that? 
    Thanks in advance for any help!
    You didn't specify whether you are using the "official" Yahoo mail app, or some other email application like K-9.  But either of those allow for the specification of multiple email accounts, and you don't even really need to sign in/out.  Once you set up the accounts within the app, just select the email account that you want to view.  It might be a little more problematic if you want to prevent each other from being able to see the other's email, however.

  • RE: DropLists in ArrayFields - is it possible to have adifferent sele

    Richard;
    Here you go....
    newList : Array of ListElement = new;
    { add elements }
    row : Integer = { get your row };
    column : Integer = { get by name or just know the number }
    // poof! Watch that down cast!
    (DropList)(<arrayField>.BodyGrid.GetChildInCell(row,column)).SetElementList(
    newList);
    You can also change FieldWidget settings....
    <arrayField>.BodyGrid.GetChildInCell(row,column).FillColor =
    C_BLUE;
    My array field doesn't scroll (lucky me!). See if the AfterFieldScrolled
    event fires at the right time to recalculate the widget state. I haven't
    played with it and I'm far from a Forte GUI guru, but I suspect that you are
    altering the column template and the visible widget is separate from the
    data. So as you scroll, the data would scroll but the new settings stay
    put. That's not what I would want/need. The widget reflects something
    about the data. When the data scrolls, so should the presentation
    properties!
    What may be needed is to somehow derive the presentation state settings
    dynamically from the mapped data. So when the data scrolled, the dynamic
    settings change on the new presentation row.
    Let me know.....
    Scott Irwin
    -----Original Message-----
    From: Richard Finegan [SMTP:[email protected]]
    Sent: Monday, August 24, 1998 1:38 PM
    To: 'Forte Users Mailing List'
    Subject: DropLists in ArrayFields - is it possible to have a
    different selection list per row?
    I have a DropList in an ArrayField column. Is it possible to have a
    different list of selections for each DropList in a different row?
    (ex.
    DropList #1 in row #1 can choose from a/b/c, whereas a DropList #2
    in row
    #2 can choose only from d/e/f, etc.) Technote 4996 seems to imply
    that it
    isn't possible, and everything I've tried so far has failed as well.
    Any insight appreciated.
    Richard Finegan
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    One way to do this is to get at the specific dropList widget in the
    arrayField by calling the getChildInCell(Row,Column) method on
    <..theArrayField..>.BodyGrid. This widget can then be assigned any
    dropList you want. Depending on the uniqueness of the individual
    dropLists, each data row specific dropList can be coded as an attribute
    (array of ListElement) on the mapped class, which can then be assigned
    to the dropList widget.
    A code snippet to do this would be -
    method refreshArray
    begin
    for displayRow in 1 to <myArrayField>.VisibleRows do
    dataRow : integer = displayRow + <myArrayField>.TopRow - 1;
    myDropListWidget : dropList =
    dropList(<myArrayField>.BodyGrid.getChildInCell(displayRow,
    <..columnNumOfDropList..>));
    myDropListWidget.setElementList(myArrayField[dataRow].myElementList);
    end for;
    end method;
    This method has be called only when the user scrolls the arrayField, as
    in -
    when <myArrayField>.AfterFieldScrolled do
    refreshArray();
    Hope this helps.
    Prashant.
    From: Richard Finegan[SMTP:[email protected]]
    Reply To: Richard Finegan
    Sent: Monday, August 24, 1998 11:38 AM
    To: 'Forte Users Mailing List'
    Subject: DropLists in ArrayFields - is it possible to have a
    different selection list per row?
    I have a DropList in an ArrayField column. Is it possible to have a
    different list of selections for each DropList in a different row?
    (ex.
    DropList #1 in row #1 can choose from a/b/c, whereas a DropList #2 in
    row
    #2 can choose only from d/e/f, etc.) Technote 4996 seems to imply
    that it
    isn't possible, and everything I've tried so far has failed as well.
    Any insight appreciated.
    Richard Finegan
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Error : Sales Org.Unit does not have these attributes -- Urgent

    Hi, Team,
    I am unable to create a service order with serivce material ( Only installation visit charges ) for w/o warranty product .
    I am getting error : " Sales Org.Unit does not have these attributes "
    I had checked the related Org data of respective sales org , already the sales area combination is also maintained from R/3 with required attributes "
    Pls revert with possible solution .
    Regards,
    VCS

    PePe :
    Thanks for reversion !!
    Basically it is a product Service Material (Servicing Charges), where in I had checked in the transaction ,   Though the required sales area  is well maintained in the R/3 System and is being replicated to the CRM . 
    When I checked the product Service material , the required comination is missing and could find other sales area combinations .
    Pls guide , how to go to get this resolved .
    Regards,
    VCS

  • Spry tabbed panels and "The tag: "li" doesn't have an attribute: "tabindex" ..."

    Hi,
    I've been using the DW CS4 "Spry Tabbed Panels" on a few pages. When I validate the website (with DW tool for that), I get the following messages for each use of the tabbed panels: The tag: "li" doesn't have an attribute: "tabindex" in currently active versions. [XHTML 1.0 Transitional].
    Should I worry about this? I'd like to have a code as clean and XHTML valid as possible. Is there a way to fix this so the message doesn't come up anymore?
    Emilie
    Example of code this message is linked to:
    <div class="TabbedPanels" id="TabbedPanelsADMS">
      <ul id="TabUL" class="TabbedPanelsTabGroup">
        <li id="TabLI1" class="TabbedPanelsTab" tabindex="0">About</li>
        <li id="TabLI2" class="TabbedPanelsTab" tabindex="0">Assets</li>
        <li id="TabLI3" class="TabbedPanelsTab" tabindex="0">Input</li>
        <li id="TabLI4" class="TabbedPanelsTab" tabindex="0">Output</li>
        <li id="TabLI5" class="TabbedPanelsTab" tabindex="0">Support</li>
        <li id="TabLI6" class="TabbedPanelsTab" tabindex="0">Purchase</li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <!-- TabLI About -->
        <div class="TabbedPanelsContent">
          <!-- end #TabbedPanelsContent TabLI About -->
        </div>
        <!-- TabLI Assets -->
        <div class="TabbedPanelsContent">
          <!-- end #TabbedPanelsContent TabLI Assets -->
        </div>
        <!-- TabLI Input -->
        <div class="TabbedPanelsContent">
          <!-- end #TabbedPanelsContent TabLI Input -->
        </div>
        <!-- TabLI Output -->
        <div class="TabbedPanelsContent">
          <!-- end #TabbedPanelsContent TabLI Output -->
        </div>
        <!-- TabLI Support -->
        <div class="TabbedPanelsContent">
          <!-- end #TabbedPanelsContent TabLI Support -->
        </div>
        <!-- TabLI Purchase -->
        <div class="TabbedPanelsContent">
          <!-- end #TabbedPanelsContent TabLI Purchase -->
        </div>
        <!-- end #TabbedPanelsContentGroup -->
      </div>
      <!-- end #TabbedPanelsADMS -->
    </div>

    Should I worry about this? I'd like to have a code as clean and XHTML valid as possible. Is there a way to fix this so the message doesn't come up anymore?
    If validation is important to you, you need to remove tabindex. Should you worry about it? Not really. Sometimes it makes sense to ignore validation to achieve a particular goal, which is why Spry widgets use tabindex in a technically invalid way.
    The explanation as to why Spry does that can be found here: http://blogs.adobe.com/spryteam/2007/03/spry_widgets_and_tab_index.html.

  • Is it possible to have CFTREE auto expand? (with binding)

    Hi there,
    ColdFusion newbie here so please bear with me.
    I'm doing some tutorials on CFTREE right now, so far it works
    well as is, but I have a question:
    Is it possible to have the whole tree expanded automatically
    when the user first open the page? I know there is the "expand"
    attribute for the "cftreeitem" element, but it is not allowed when
    using dynamic data bindings.
    I know I could probably do the manual looping of queries to
    achieve this, but it would be nicer if we could use the binding
    mechnism and still have ColdFusion automatically go through
    different levels.
    The data I intend to use the CFTREE on is of quite managable
    amount, so I don't think performance would be a big problem here.
    Any tips or hints will be appreciated, and many thanks in
    advance!
    Billy

    I've never used it but it seems that there is an attribute
    called expand in the cftree items- I imagine the tag is something
    like
    <cftree>
    <cftreeitem value = "Travel Assistant" display = "Travel
    Assistant" parent = "Emp_ID" queryAsRoot = "No" expand = "yes">
    </cftree>
    good luck

  • Is it possible to have a clickable hyperlink as a field under Products?

    As the subject says, is it possible to have a clickable hyperlink setup as a field in the Products table somehow? Basically I have a field that automatically constructs a hyperlink based on an assignment and I'm wondering if there is a way you can set it up so that you can just click on it and have it open up Internet Explorer as opposed to having to copy the link and paste it in a browser.
    Thanks!

    Ryan,
    Have you looked into trying to use the Web Pane URL for your scenario?
    <a href="http://help.sap.com/saphelp_mdm550/helpdata/en/8c/ca6d92fe624549a2809c8d02ab063c/frameset.htm">Web Pane URL</a>
    <a href="http://help.sap.com/saphelp_mdm550/helpdata/en/43/79696a7c9c6fcae10000000a1553f6/frameset.htm">Web tab</a>
    This will allow you to create a URL to search Google for example based on the data contained your fields/attributes. You need to create the custom URL in the Console and then activate the option from the configuration settings in the Data Manager. This will then activate the Web tab for this link, all internal to MDM.
    Let me know if you need more detail.
    Thanks,
    Tim

  • DropLists in ArrayFields - is it possible to have adifferent selection

    I have a DropList in an ArrayField column. Is it possible to have a
    different list of selections for each DropList in a different row? (ex.
    DropList #1 in row #1 can choose from a/b/c, whereas a DropList #2 in row
    #2 can choose only from d/e/f, etc.) Technote 4996 seems to imply that it
    isn't possible, and everything I've tried so far has failed as well.
    Any insight appreciated.
    Richard Finegan
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    One way to do this is to get at the specific dropList widget in the
    arrayField by calling the getChildInCell(Row,Column) method on
    <..theArrayField..>.BodyGrid. This widget can then be assigned any
    dropList you want. Depending on the uniqueness of the individual
    dropLists, each data row specific dropList can be coded as an attribute
    (array of ListElement) on the mapped class, which can then be assigned
    to the dropList widget.
    A code snippet to do this would be -
    method refreshArray
    begin
    for displayRow in 1 to <myArrayField>.VisibleRows do
    dataRow : integer = displayRow + <myArrayField>.TopRow - 1;
    myDropListWidget : dropList =
    dropList(<myArrayField>.BodyGrid.getChildInCell(displayRow,
    <..columnNumOfDropList..>));
    myDropListWidget.setElementList(myArrayField[dataRow].myElementList);
    end for;
    end method;
    This method has be called only when the user scrolls the arrayField, as
    in -
    when <myArrayField>.AfterFieldScrolled do
    refreshArray();
    Hope this helps.
    Prashant.
    From: Richard Finegan[SMTP:[email protected]]
    Reply To: Richard Finegan
    Sent: Monday, August 24, 1998 11:38 AM
    To: 'Forte Users Mailing List'
    Subject: DropLists in ArrayFields - is it possible to have a
    different selection list per row?
    I have a DropList in an ArrayField column. Is it possible to have a
    different list of selections for each DropList in a different row?
    (ex.
    DropList #1 in row #1 can choose from a/b/c, whereas a DropList #2 in
    row
    #2 can choose only from d/e/f, etc.) Technote 4996 seems to imply
    that it
    isn't possible, and everything I've tried so far has failed as well.
    Any insight appreciated.
    Richard Finegan
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Why doesn't af:switcher have PartialTrigger attribute?

    Hi OTN,
    af:switcher is definitely one of the most dynamically changed "layout" component.
    And I'm really surprised not to find PartialTrigger attribute for the switcher.
    Why doesn't it have the attribute? I need to enclose it into additionaal container like panelStretchLayout and set Partialtrigger - WHAT FOR?
    Should I file an ER for this feature?
    Thanks.
    JDev 11.1.1.4

    To further what Timo says - filing an ER for this will not help you. The reason for this is that in order for a component to have a partialTrigger, it must be rendered on the client side; you may have seen this when you try to use partial triggers on a component with rendered=false - it cannot work because of the way PPR works. The tag docs for af:switcher say, in fact (as Timo says):
    The switcher is a purely logical server-side component. It does not generate any content itself and has no client-side representation (no client component). Hence switching which facet of the switcher renders requires a server round-trip.which does imply, albeit indirectly, that PPR wouldn't work. As Timo says, you would need to PPR a parent component of af:switcher.
    If you wanted to file an SR with Oracle, my best guess is that this should be a doc bug, and it would be helpful to add some info to the af:switcher document to explain that PPR is not possible.
    John

  • Possibility to have BI reports as a Gadget in igoogle

    Hi Guys,
    Would you know if it is possible to have bi reports as a gadget in igoogle and if yes, how I would do that?
    Regards
    B.

    Hi Vasu,
    If I understand you correct, you want to group the data on Region level and add a Region parameter on the report. If I have anything misunderstood, please point it out.
    In MDX, there is no direct equivalent to a "GROUP BY". Currently, adding a Region attribute is by far the easiest way to do this. With an attribute the query is trivial and it will work in other client tools like Excel. If you want to achieve it on query
    level, you have to manually generate members to aggregate each Region. I am afraid it will be much more complex. Here is a blog about GROUP BY query on MDX, please refer to the link below.
    http://geekswithblogs.net/darrengosbell/archive/2009/01/28/mdx-equivalent-of-a-filtered-group-by-in-sql.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • Is it possible to have an empty column title in a configTable?

    Hi all,
    is it possible to have an empty column title within a configurable table (chtmlb:configTable)? Whenever I change the title with the config tool to empty and save the changes it seems that it doesn't take effect.
    The problem is that the column width is too less to display the whole text and I don't want to have "A..." displayed there.
    Best regards
    Ben

    Hi,
    Not possible directly but possible programatically.
    The Column titles come from the data-element description. To override this, you will need to change the data element nd its fairly simple. Create a data element similar to the std. data element domain but put your description and then in GET_M method of that attribute, use this Z data type.
    For example, suppose its searhc result Displaying addresses in a table view, then for states, you get name as "Region".
    In most of asian countires, instead of region, "state" this word is used. So if i want to disply the colum header as states and not region,
    1) i will find which is the doain of std. region field.
    2) i will create a data element with this domain but i will give different description to my data element, This description would be States
    3) In the GET_M method of that particular column attribute, i will change the type to my data element.
    an i am done.
    Thus you can create your data element with shorten and more meaningful text . I think system does not allow you to save a data element or domain w/o a description hence i doubt if blank will be possible..need to check it out.
    Hope this helps
    Thanks & Regards,
    Suchita

  • Is it possible to have fonts larger than 72pt?

    Have been looking for a work around for this problem for awhile now but can't seem to get anywhere. Is it possible to have fonts bigger than 72pt? If not that is a massive fail.

    I see what you mean now, it seems to be an issue with artwork PDF forms, I don't have a problem with a standard PDF form.
    I did get the font size to stick, https://acrobat.com/#d=RnEQbNdhe26z-bPYyVnEYQ is my sample.
    But I had to edit the XML Source (from the View menu), so the line;
    <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p>99</p></body>
    became
    <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p style="font-size:300pt">99</p></body>
    That is I added the font-size style attribute.
    Hope that helps.
    Bruce

Maybe you are looking for

  • How to use special characters in regular expression

    HI all, I am new to regular expression. Can any one please tell me the regular expression for characters which are used in regular expression like " [({. tetc.Is there any particular expression to prefix before using these characters                 

  • Does driver jar file needs to be extracted before giving java command?

    I wrote a JDBC program, where it will pull the data from Sybase and Push into Oracle. That program is working fine in Eclipse IDE. But when i tried to make it make it work from the command program, by giving javac and java commands..., it didnt work.

  • How do I view hidden folders?

    I recently did a clean install of Lion on my MacBook Air and I have a copy of my previous home folder sitting on my desktop. How do I view the hidden Library folder that is in the previous home folder on my desktop? I'm sure there is an easy "Go to F

  • Problem With Starting Mac

    Hi I have this problem with my Powerbook that Im trying to solve without having to reinstall the operating system. Heres what happened. I was using the Mac when an update popped up that was for the PowerPC and so i clicked install. As the update was

  • Photo slideshows exported to 1080p using Quicktime

    I'm looking to export a High Definition quicktime file of my photos. I'm testing now so when blu-ray or HD-DVD discs become available, I can start archiving my thousands of digital photos. While the overal look of what I've done isn't terrible, it's