Changes to Webui.properties

This file sitting on ifs1.1/settings/oracle/ifs/clients/webui/properties . This file suppouse to configure what to display on webui clients , but after changes in this file restaring iFS and Apache server nothing changes on display ???

got it to work...

Similar Messages

  • Changing the field properties (editabel/greyed out) dynamically?

    Hello
    I am developing an Adobe interactive form. My requirement is dynamically changing the filed properties based on the other field values/selections/inputs.
    1) For example in the form, if user puts value_A in field_1, then, the field_2 should be greyed out.
    2) If user puts value_B in field_3, then, system automatically populate the value_C in field_4 in order to let the user make easy- user friendly
    3) If user puts value_D in field_5, then, only allowed value in field_6 is value_E, if by mistake user puts value_F in field_6, then, system should throw error message
    Pls. let me know how to achive this DYNAMIC functionality in the FORM or do we need to handle from WEbDynPro ABAP side?
    Thank you

    Hi,
    Everything you have mentioned is possible in the form itself. Just write the valid script at valid event of valid field.
    1) For example in the form, if user puts value_A in field_1, then, the field_2 should be greyed out.
    Ans: Write on change event of Field1:
    if($.rawValue eq "value_A")
    then
    Field2.access = "readOnly"
    Field2.fillColor = "192,192,192"
    endif
    2) If user puts value_B in field_3, then, system automatically populate the value_C in field_4 in order to let the user make easy- user friendly
    Ans: Write on change event of Field3:
    if($.rawValue eq "value_B")
    then
    Field4.rawValue =  "value_C"
    endif
    3) If user puts value_D in field_5, then, only allowed value in field_6 is value_E, if by mistake user puts value_F in field_6, then, system should throw error message
    Ans: Write at exit event of Field6:
    if(Field5.rawValue eq "value_D" and $.rawValue ne "value_E")
    then
    xfa.host.messageBox("Wrong Value", "Error", 0)
    endif
    For such type of scripts you can refer to designer help also. So please check there before posting your query that would save your time.
    Regards,
    Vaibhav

  • Can't seem to change the Document Properties Advanced Reading Options in a Form that was created in Adobe LiveCycle. This option has been "greyed" out - anyone know how to update this to English so I can pass Accessibility Testing?

    Can't seem to change the Document Properties > Advanced > Reading Options in a Form that was created in Adobe LiveCycle. This option has been "greyed" out - anyone know how to update this to English so I can pass Accessibility Testing?

    LiveCycle forms use a very different approach to create a PDF form than Acrobat and that approach makes many features for processing PDFs non-functional.
    You might want to ask this question in one of the LiveCycle product forums.

  • How do I change the default properties for Replace(Ins)?

    Acrobat Pro X
    Comment tools: Annotations
    All tool icons EXCEPT Replace(Ins) show "Tool Default Properties" as an option when right-clicked.  When I right-click a particular replacement in the document and select "Properties," there is no option to set current as default.
    So, how do I change the default properties for this annotation tool?  I need to change the Author and the color.
    Thanks,
    Nancy

    Create customized controls for your graphs and controls and setup your favorite attributes .
    Use your custom controls instead of the canned controls.
    Do a search on UI and you will find a community that already created custom controls.
    Visualize the Solution
    CLA
    LabVIEW, LabVIEW FPGA

  • How to change default text properties and text box properties

    I'm adding text to a PDF document by using the text box tool. The default is to put a border around the box and also the font is red and larger than I'd like. I think I found how to change the default box properties (so it has no boarder).
    For the text/font, I can pull up a menu to change the font properties, but so far I'm having to do this for each box I create. One workaround is to cut and paste new text boxes with the formatting I want, but I still want to know how can I set the defaults to the font, size and color of text I want?
    I'm using AA 8 Professional
    Best, David

    This is one of Acrobat's less intuitive areas!
    For defaults, right-click on the text box that is as you want it: then select menu item 'Make current properties default'
    Use Ctrl-E to bring up the Properties toolbar: its content will change depending on whether you have the box or the text selected, and selecting the box or text can be a bit clunky.
    Steve.

  • After updating to newest, firefox the change icon in properties (bookmarks) is missing, can I get it again somehow? Since I like to make my own icons in bookmark toolbar

    I have made a bookmark toolbar with all my fav sites, a lot of sites have not made a icon logo, so I make one,,, By using the change icon in properties (right click on the icon) But this feature is not in the newest firefox update.
    How can I get it again? is there a specific extension fx??

    Perform the suggestions mentioned in the following articles:
    * [[Latest Firefox issues#os=mac&browser=fx9|Icons missing in the Bookmarks menu]]
    Or use this extension to restore missing Favicons --> '''CheckPlaces 2.6.1'''
    * https://addons.mozilla.org/en-US/firefox/addon/checkplaces/
    Check and tell if its working.

  • Adding an Attribute to a VO changes the custom properties of the existing

    Adding an Attribute to a VO changes the custom properties of the existing attributes of the VO.
    We had a requirement to add an extra column in the VO.
    We modified the underlying EO to include the new column from the table, and modified the VO as well.
    Jdeveloper was changing the custom properties of the existing attributes in the VO. Our fix was not working as expected.
    Could anyone please inform us:
    1. On what logic does Jdeveloper determine to modify the existing custom properties of other VO attributes.
    2. Can this behavior of Jdeveloper be controlled through any mechanism.
    Thanks in advance,
    Rahul.

    Hi,
    which version of JDeveloper and how to reproduce ?
    Frank

  • Changing the Custom Properties of Custom Webpart in Sharepoint 2013.

    Am working on a requirement , where i need to create a quick poll , for that i am using some Third party webpart,
    http://www.amrein.com/apps/page.asp?Q=5755    , this is the link of that Polling webpart , where the source code is not available.
    Question : where by default we have to open the edit properties of that webpart in UI and then can configure those properties. But am facing a requirement like there should be UI with textboxes ,like in a form view in a page itself , and
    after if we could enter those details, guess there is a button in a name " create a poll" ,
    So in a click event , i could add this third party  webpart to the page and now i need to change the custom properties based on the values we enter in the textboxes , how i can access the custom properties after if i got the instance of the that third
    party webpart in a page using splimitedwebpart manager programmatically....??
    Any One can guess this scenario...?? 

    Hi,
    If you use Third party web part, I suggest you contact the author of this web part to extend some custom requirements.
    From your description, my understanding is that you want to create a quick poll.
    Here are two solutions from codeplex with the source code for your reference. You can refer to the source code and customize your own solution base on your requirement. 
    Opinion Poll SharePoint 2010 Web Part
    https://opinionpoll.codeplex.com/
    SPUserPoll - SharePoint Poll Web Part
    https://spuserpoll.codeplex.com/releases/view/104374
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • If we change cube specific properties does we need to delete data in Prod

    Hi All,
    We have changed cube specific properties like display of InfoObject  in dev. to transport to prod does we need to delete data from cube or not required . Please help.
    I am assuming that data deletion not needed as we haven't changed the structure of cube. please advise us.
    Regards,
    Chandra

    the only reason for which data is to be deleted from a cube before an import of changes, is if a Infoobject is removed from the cube (for any reason). so in your case, no need to delete data. Anyway this is a trial and error case. leave the data and import. if the import dumps, then you have a big chance that you need to delete the data. do this and import again.
    but, i don't think it's necessary in this case.

  • Change Mouse Default Properties

    How can I change mouse default properties in software simulation projects?

    Hello,
    I don't know of a way to do this before capture, because the mouse has no object style in the Object Style Manager, and is not included in the Modes settings for capture. However changing the properties when editing can be done rather quickly:
    Select one Mouse object, use Options accordion to change its properties
    Use the small curved arrow button top right of that accordion, to apply the changed properties to all mouse objects.
    Didn't check it out if it could be saved in a template... but then you'd have to use that template for each project. Please, could you also mention the version you are using when posting a question? For this question it was not that important, if you have a version later than 4.
    Lilybiri

  • Change the displayed properties of the StandardSearchResultRender

    Hey,
    I would like to change the displayed properties in the StandardSearchResultRender of the SearchResultSet
    (SearchResultLayoutSet  --> StandardSearchResultRenderer --> Displayed Properties).
    I need a new Link such as Displayed Name of a document (rnd:displayname(contentLink/[1;2-3]/alignTop/space-right=30)).
    For this i made two new properties witch called "newdisplayname" and "newlink". In the StandardSearchResultRendere I added the line "rnd:newdisplayname(newlink/[5;2-3]/alignTop/space-right=30)" in the displayed properties. When I apply my changes the Portal shows me an error (The current configurable is invalid ). I don't know why it's invalid.
    Can anybody help me? How can I made a new link with an reference? Thanks.

    Hi Misel,
    > Is it right, that I can create my own modifier, if I modificate the code?
    In general, yes, but one should have heavy experience if starting to modify SAP code.
    > If yes, where must I modifie the code
    There are different classes, one example would be  com.sapportals.wcm.rendering.resource.cm.ResourceRenderer (that is almost supported to "modify", at least it is supported to create your own ResourceRenderer)
    > Is ther anywhere an example, or an document ore something else?
    No, absolutely not. This is really deep-digging into foreign code which in general is not supported at all by SAP.
    > Or is there an other option to show a link with an other caption?
    The easier way would be to create a property renderer and to implement that or the resource renderer by yourself; this also is officially supported: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/com.sap.km.cm.docs/library/nw/NetweaverDevelopersGuide2004s/NetWeaverDevelopersGuide2004s_Documents/KM_articles_new/howto/km/flexui/Flexible%20UI%20Components.html
    Hope it helps
    Detlev

  • Where can I change the System properties permanently

    Instead of
    System.setProperty("name","new-value");
    to change the system properties in run-time.
    How can I change it in a config file? Where is it?
    Thx.

    Hai,
    We can't directly set the system properties values using config/properties file. But, if you wish to use <b>Spring </b> framework, there is an option to load system properties through a config file.
    Regards,
    Loga

  • Change multiple object properties at one time

    I'm using Universal Designer and I have to manually change the properties of over 100 objects.  Does anyone know how I can change multiple object properties at one time?

    Hi,
    This links may be helpful to you,
    http://forumtopics.org/busobj/viewtopic.php?t=94828&sid=1eb4a78e88c26b14418c354d1321e350
    http://www.forumtopics.com/busobj/viewtopic.php?t=21029
    All the Best,
    Madhu...

  • EVS  , change some default properties

    Hi ,
    I am using EVS for input filed .
    I want to change some default properties  , like :
    1. The EVS arrange the results in 6 values every page , i want to decide  how many results each page .
    2. The EVS display 2 columns , the setFieldLabel () method, set the lable of the "key" column.
    Which method change the lable of the  description field ( I already tried : setDescription && setColumnLabel ) ?
    Thanks ,
    F.F

    Hi FF
    Please go through these links
    Re: Extended Value Selector
    /people/valery.silaev/blog/2006/03/10/minus-evs-plus-ovs-value-help-smart-input
    Re: Extended Value Selector
    regards
    kalyan

  • How do I change Desktop folder properties?

    I recently purchased a macbook pro. I used migration assistant to transfer all files, from my g4, via firewire. Now, when I attempt to download from the internet, I get this error message: "Downloading/users/myname/Desktop/filename could not be saved, because you cannot change the contents of that folder. Change the folder properties and try again, or try saving in a different location". How do I change desktop folder properties?
    mac book pro Mac OS X (10.4.7)

    Control-click or right-click anywhere on your desktop picture, and select Get Info from the contextual menu. Then expand the Ownership & Permissions section. You need to set the drop-down menus like this:
    You can: Read and Write
    Owner: <your username>
    Access: Read & Write
    Group: Staff
    Access: No Access
    Others: No Access
    If that doesn't work, log in as an administrator, open Terminal, and enter these commands (assuming your username is "bigalive"; change appropriately:
    sudo chown bigalive:staff /Users/bigalive/Desktop
    sudo chmod 700 /Users/bigalive/Desktop
    That should fix it.

Maybe you are looking for

  • Is it itunes or the ipod?

    I have been successfully using a second generation ipod on my Toshiba Satellite laptop for many months. I bought one for my wife and set up her own profile on the laptop. The ipod syncs fine and itunes imported music from my portable hard drive. The

  • Multiple Order Panels as JInternalFrames in one Form as a JDesktopPane

    I have a JClient application which consists of a form(JFrame) which opens a JDesktopPane. Within this desktop pane the user may open different panels(as JInternalFrames), one of them being a panel to create a new order. I want to have the ability for

  • Webdynpro ABAP layouteditor:Can't drag&drop UIelements from toolbar to view

    Hi there, i have a problem with the Webdynpro for ABAP layout editor in SE80. When i'm editing a view, i see the UI elemnts toolbar, but i cannot "drag&drop" any elemet of the toolbar to the view, it'S only possible to add elements using right click

  • Is Photoshop CS 5.1 and Elements 9.0 compatible with IE11?

    Is Photoshop CS 5.1 and Elements 9.0 compatible with IE11?

  • Select Tree Node

    Hello, I have a jquery tree and want to create a dynamic action which should pick the id of the selected node (alert (this.triggeringElement.id)). Nothing simpler than that. The dynamic action is running on click of a jquery selector - I used li ther