Sitestudio - Set the property of a section automatically

Hi,
I am using Sitestudio 10gR4.
Is it possible to set the "URL Directory Name" property of a section automatically?
I want to set the "URL Directory Name" equal to the "Section Id" property. Please let me know if someone has an idea.
Thanks
Bodhy

the problem is, that the "url directory name" is set automatically equal to the "label". But I want the "url directory name" to be set to the "Section ID".

Similar Messages

  • Setting the property "Cache Level" of the pcd object to "None".

    Hi all
    I have an EP 6.0 on NW04 SPS 17. I need to solve a problem and found note 960975. My question is, how could we change the setting the property "Cache Level" of the pcd object to "None"? Where should I go? Is it on the NWA, Visual Admin, Configtool or somewhere else?
    Many thanks before.
    Regards
    Agoes
    Message was edited by:
            Agoes Boedi Poerwanto

    Hi Agoes,
    By using the tool Support Desk -> Portal Content Directory -> PCD Administration you can do this. Please note that this tool should only be used in debugging situations.
    There is a new section "Release a Unit from the cache cluster wide" in this tool. With this new functionality, you can remove an object from the cache on all nodes in the cluster. If the object is still in use, it will be reread immediately from the database
    Releasing the entire PCD cache can severely affect performance. Hence, if there are inconsistencies suspected with a single object, e.g. a role or an iview, the new section "Release a Unit from the cache cluster wide" can be used to evict the given object from the cache on all nodes in the cluster.
    Cheers,
    shyam

  • Exception setting the property 'dbcFile' on the DataSource. Exception:

    Hello,
    I just upgraded 12.1.3. and I could not see my loging page(Non SSL)
    oracle.oc4j.sql.DataSourceException: Exception setting the property 'dbcFile' on the DataSource. Exception: java.lang.reflect.InvocationTar
    getException
    Any one had this problem before or had some experience, Please share some info
    Thanks
    Prince

    Prince,
    oracle.oc4j.sql.DataSourceException: Exception setting the property 'dbcFile' on the DataSource. Exception: java.lang.reflect.InvocationTar
    getException
    Any one had this problem before or had some experience, Please share some info Please see these docs.
    How to Configure OTA For XML Gateway in Release 12 [ID 418926.1]
    Oracle E-Business Suite Integrated SOA Gateway Troubleshooting Guide, Release 12 [ID 726414.1]
    Cannot Start OXTA After Upgrade To R12.1.x [ID 1087499.1]
    OXTA Not Starting In R12 [ID 1267410.1]
    Troubleshooting and Known Issues for EBS SOA Suite Deployment in R12.1.1 [ID 797596.1]
    Thanks,
    Hussein

  • The time on my iphone 5C is constantly changing, regardless of me setting the correct time manually or automatically, all iOS is up to date and phone is not damaged, any ideas?

    The time will stay correct for an hour or so, then jump backwards for no reason. I have tried setting the time manually and automatically and still get the same problem, and have tried with wifi on and off and it still does it. All my software is up to date and tried contacting EE who said to ask Apple. Phone is about 11 months old and have had no previous problems.

    Hi jennehbear,
    Thank you for using Apple Support Communities.
    Your time jumping backwards an hour sounds like an issue with the time zone. Take a look at this article to troubleshoot the issue.
    iOS: Troubleshooting issues with date and time - Apple Support
    Regards,
    Jeff D. 

  • Setting the property of a managed bean

    Hello,
    I have just started working on a project that I would like to use Java server Faces. I am very new to JSF so please forgive the question if it is too obvious.
    We are doing a login form with a username, password and key. The key is an image that contains randomly generated characters that the user needs to type in what is in it to verify that it is a human and not an automated system trying to log in.
    So my loginForm managed bean contains four properties (get/set) username, password, key, userkey (this is what the user types in and needs to equal key for the login to work).
    The user will enter in (using <h:inputText />) the username, password and userkey but I need to know how to set the key to the randommly generated characters that I used to create the image with.
    I know I can use <h:inputHidden /> to set the value but that would defeat the purpose because an automated system could read the page an know what the image contains (because the value would be in the HTML code sent to the browser).
    The random characters and the image is generated in a servlet and the key is set in a session variable.
    How can I take that session variable that contains the key (characters randommly generated) and put it in my managed bean so I can verify that the user entered the correct information?
    I have been searching on Google all morning. I probably do not know what to put in for the search to get the correct information out.
    Thanks in advance for any help you can provide.
    Jon

    Since your key is already in a session variable, you don't really need to make it a property of your managed bean, but just access it directly. For example, you could have a property called "keyCorrect" with a getter something like this:
    public boolean isKeyCorrect()
        String key = FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("key");
        return getUserKey().equals(key);
    }

  • Setting the height of detail section with RAS SDK

    Hi, all,
    is it possible to locate a section (CrystalDecisions.ReportAppServer.ReportDefModel.Section) in a reportk you and set its maximum height?
    When I find a detail section in question like so section = reportClientDocument.ReportDefController.ReportDefinition.DetailArea.Sections[counter];
    it just gives me the height of one row.
    Is there a way to set a maximum size of it?
    Thank you!

    Hi Jelena,
    see the below sample to add a new section to the report.
    http://scn.sap.com/docs/DOC-6025
    in the sample, see below code how the section properties are set.
    //Set the properties for the section
        boSection.Kind = CrystalDecisions.ReportAppServer.ReportDefModel.CrAreaSectionKindEnum.crAreaSectionKindDetail;
        boSection.Name = "Detail2";
        boSection.Height = 1000;
        boSection.Width = 11520;
    Refer to above sample and write your own code to identify the section and then set the properties.
    Othe RAS SDk samples are here.
    http://scn.sap.com/docs/DOC-28646
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

  • How to set the current row in table automatically when tabout from one row to next row

    Hi
    I'm using jdev 11.1.2.0.0
    How can we set the  row(in which row focus is)  as current row in the table?
    If we create a table with single row selection, then whichever row we select, that row becomes current row because of the selection listener(#{bindings.xxvo.collectionModel.makeCurrent}).
    Then if we do tabout from one component to another component in table and moved to next row, then the focus would be on another row .
    when focus is shifted from one row to another row, then how can we make the focused row as current row or selected row.
    Any suggestion would we appreciated
    Thanks.

    Add clientListener inside table component and set client listener type to dblClick with method as a JavaScript method name.
    <af:clientListener method="dblclk" type="dblClick"/>

  • Problem while setting the property of column in ALV

    Hi ,
    I have created a alv dynamically and setting the properties of the column like column header text but its not getting updated .
    see the below code for ref.
    lr_column_settings ?= lr_config_table.
      data:
        lt_columns type salv_wd_t_column_ref.
      lt_columns = lr_column_settings->get_columns( ).
      data: lr_column      type ref to cl_salv_wd_column,
        lr_header      type ref to cl_salv_wd_column_header,
        ls_column type salv_wd_s_column_ref.
      loop at lt_columns into ls_column.
        case ls_column-id.
          when 'MOIST'.
            lr_column = ls_column-r_column.
        lr_header = lr_column->get_header( ).
        lr_header->set_text( 'Moisture %' ).
    I am able to set the alv properties like  visible row count etc ..
    can anybody help out in this issue
    Regards
    Yash

    I was just able to change my headers with the following:
    data:
        lt_columns     type salv_wd_t_column_ref,
        ls_column      type salv_wd_s_column_ref,
        lr_header      type ref to cl_salv_wd_column_header.
      lt_columns = lo_value->if_salv_wd_column_settings~get_columns( ).
      loop at lt_columns into ls_column.
        lr_column = ls_column-r_column.
        lr_header = lr_column->get_header( ).
        lr_header->set_ddic_binding_field( if_salv_wd_c_column_settings=>ddic_bind_title ).
        lr_header = lr_column->create_header( ).
        case ls_column-id.
          when 'CNT_LINEITEMS'.
            lr_column->r_header->set_text( 'Line Items' ).
          when 'VAL_OPEN'.
            lr_column->r_header->set_text( 'Open Amount' ).
          when others.
        endcase.
    endloop

  • Digital Signature Turns Invalid while setting the Property Dynamically to an Input Field

    I have an Input box that turns mandatory only if a check box is clicked.
    The Script goes Something Like This;
    if(chkbox.rawValue === 1){
         inputField.mandatory = "error";
         inputField.mandatoryMessage = "This Field cannot be left Blank";
         inputField.presence = "visible";
    } else {
         inputField.mandatory = "disabled";
         inputField.mandatoryMessage = "";
         inputField.presence = "hidden";
    I am working with Assembler Service and the Signature field is placed in the cover page after which this form is attached.
    Any clue of why the property change Invalidates the Signature?
    Note: The stand alone form where the Check box and Input field is present doesnot have a preSign event as this form doesnot contain a Signature field unless its merged using assembler. This Script is added to the Click Event of the Checkbox.
    Cheers
    Mahesh Krishnan

    weblogic.common.resourcepool.ResourceDisabledException: Pool mds-soa is Suspended, cannot allocate resources to applications ..Check server logs to find out why mds-soa is suspended. Make sure that datasource mds-soa is up and running on SOA servrs before deploying an application.
    Regards,
    Anuj

  • Ever since the update to the  IOS7 my ipod will not keep the time. I have reset everything you could reset I have even reset it back to factory settings. I have tried setting the time and date to automatic and manual multiple times but nothing is working.

    Please help!

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             

  • How to set the cardinality property as 1..n for a dynamically created node

    Hi...everybody
        I am creating Dropdown by index UI element and the
    context atrributes dynamically.To bind multiple data to a dropdown
    the cardinality property of the node should be 0..n or 1..n,
    But i could not set the property of the dynamically created context node to 0..n ...
    can any body suggest me..
    I implemented the following code in WDDoModify View
    IWDTransparentContainer tc=(IWDTransparentContainer)view.getElement("RootUIElementContainer");
    IWDNodeInfo node = wdContext.getNodeInfo().addChild("DynamicNode",null,true,true,false,false,false,true,null,
              null,null);
    IWDAttributeInfo strinfo=node.addAttribute("Value","ddic:com.sap.dictionary.string");
    dbyindex.bindTexts(strinfo);
    tc.addChild(dbyindex);
    I could successfully display one value in the drop down,by adding the following code before the line tc.addchild(dbyindex);
    IWDNode node1=wdContext.getChildNode("DynamicNode",0);
    IWDNodeElement nodeElement=node1.createElement();
    nodeElement.setAttributeValue("Value","Hello");
    node1.addElement(nodeElement);
    but when
    i am trying to bind multiple values i am getting Exception ,,,,

    hi
    you are getting the exception because of cardinality property.
    i.e   true,false and
    you are trying to add morethan one element.
    so,if you want to add morethan one than one element you have to set the cardinality property to true,true (or) false,true.
    In your code do the following modification for changing the cardinality.
    For 0..n -->false,true
          1..n-->true,true
    IWDTransparentContainer tc=(IWDTransparentContainer)view.getElement("RootUIElementContainer");
    IWDNodeInfo node = wdContext.getNodeInfo().addChild("DynamicNode",null,true,true,false,false,false,true,null,
    null,null);
    IWDAttributeInfo strinfo=node.addAttribute("Value","ddic:com.sap.dictionary.string");
    dbyindex.bindTexts(strinfo);
    tc.addChild(dbyindex);
    hope this will solve your problem.
    In addchild(..) the parameters are
    addChild("Name ,
                    Element class for model node ,
                    Is singleton? ,
                    Cardinality ,
                    Selection cardinality ,
                    Initialise lead selection? ,
                    Datatype ,
                    Supplier function ,
                     Disposer function);
    Regards
    sowmya

  • Setting a property of a Media-instance crashes the browser

    Hello,
    I want to change some properties of a javaFx-Script via javascript.
    All works, but when I want to set the Property "source" concatenating with "{FX.getProperty("javafx.application.codebase")}", the JVM crashes:
    This is the relevant snippet from my xhtml-page:
    <script type="text/javascript">
    function setSource(source) {
        var app = document.getElementById("myJFXApplet");
        app.script.source = source;
    </script>
    This is my JavaFX-Main.class, where the Stage-Instance exists:
    var codebase:String = "{FX.getProperty("javafx.application.codebase")}";
    var source:String = ""
    // This results the JVM-Crash: I only want that the source is concatenating with the codebase
    var source2:String = bind "{codebase}{source}"

    The reason it fails the first time is because there is no text in the string indicator to act upon. On the second and subsequent executions, if the text is left in the indicator, the property change will take effect. To test this, clear the indicator between each run, you will see that it does not set the colors as you desire.
    So, put the text into the indicator first, then change the properties. Attached is a modification of your vi.
    Tim
    Attachments:
    Setting_Substring_Colors_MOD.vi ‏35 KB

  • Set the NumericFormat property

    Hi,
    I am writing a C# Programm  that is supposed tocreate a Teststand sequence  with some steps. One of the steps is a Numeric Limit Test. Since i want to test several types ( Hex,integer, Real )  i want to customize the Numeric Format (fractional Digits, Field With) for each Test, so that the Step can handle and  display the numbers with the right format.
    I tryed to set the Property NumericFormat, but i became the error Expected Number, found Container   .
    I hope somedy can help me.
    I am using Teststand 3.5.
    Regards,
    Noubissi André
    Teststand 3.5
    Visual Studio 2005

    Hi,
    You have to make sure you have an property object to the Step.Result.Numeric, or the Step.Limits.Low or Step.Limits.High properties.
    If you use say the Step.Limits property you would get the error 'found container' if you try to set the format.
    Hope this helps
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • How to set the size for height of iView tray?

    Hi,
    I have created a ABAP webdynpro component and integrated this comp with iView. Then i integrated iView into Page in portal. That is working fine.
    But the size of tray/window which is displayed in the page is very small.
    How to increase the height of that Tray/window/iView containing my component?

    Hi,
    By changing the maximum automatic height and Minimum automatic height property of the iview you can set the size for height of your iview.
    to do this follow the setps:
    goto content administrator -> portal content -> your folder where you created your iview or directly to your iview -> right click -> open -> object,
    and now in property category choose appearance-Size from the drop down menu and set the above properties to your required height.
    if you want the end user to modify this property set the property to read/write .
    *********please reward points if the information is helpful to you********************

  • How do you set the size / bounds of a waveform chart at run time?

    I have a plot area that I would like to fill with as many waveform charts as the user specifies (at run time). The "bounds" property is read only and I haven't noticed an additional "size" property for a waveform chart as there is for a button. Is there a way to set the size of a waveform chart at run time, and if not, why not? (Labview 6.1)

    Look at it a little more carefully, I suspect that your assumption is only half wrong. The property does only resize the plot area--LV resizes the frame to fit the resized plot on it's own.
    You'll need to bear this in mind when you're figuring-out what size to set the property to.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

Maybe you are looking for

  • Compatibility between PSE8 and bridge CS4 with mac OS 10.7.5

    good morning I work  actually with mac OS10.7.5 and i  use everyday PSE8 with a classification in adobe bridge CS4  I would like to change my mac OS for at least 10.8 or mavericks or even with yosemite which is coming soon can you tell me if there is

  • Procure KIT with Purchase order but 15 different materials - how?

    Hi SAP MM Guru's, I have a requirement There are 15 different mateirals which are maintained in Material master seperately with different numbers but all will have to be procured from one vendor same time and issue is each material is consumed on the

  • Adobe Content Viewer/no interactivity or animation

    We're running InDesign CS5.5 I work at an advertising agency and just had my IT department update my extensions to: Folio Producer Tools v.1.10.1 Folio Panel v.12.2.2.1 I also updated my Adobe Content Viewer App on my iPad 2. My problem: The pages sh

  • Cookies - delete When by default?

    I want to: delete all cookies upon (a) leaving a website or (b) exiting Firefox. I want to: preserve my browsing history. It looks like: no way to auto clear cookies upon exit FF, unless entire history is cleared. Question(s): is this option only ava

  • Execute FM in background for every 10K records

    I've a report which retrieves all the data from the master table using the open fetch cursor with the packet size 10,000 FOR EXAMPLE: If there are 50,000 records(total) For each 10,000 records it should trigger a job  (am trying to call a common func