Site studio contributor data files with sections

Is it possible to have sections with in site studio contribution data files and display list of section titles as hyper links in site studio site and show only that section content on click of section title.
Number of sections are vary from document to document (So we can't use one element as a single section).
Thanks...

I am not aware that out-of-the-box Site Studio would have such an options.
You do have sections (defined in Region Definition), so most likely you'd have to customize your user experience (so that only sections defined on the fly are shown). Note that Region Definition corresponds to a logical "object" (you may abstract that sections are object's attributes), so rather than show/hide sections you might also want to select a different region definition. I also remember that some time ago Site Studio was able to do "lazy load" (display a section only if user asked for it - this requirement tried to address slow loading times of the page); unfortunately, I'm not sure how this feature can be turned on.

Similar Messages

  • Any one noticed issues when UCM contributor data files indexing in GSA

    Hi Guys,
    We are using Google search appliance to crawl UCM content (native documents).
    We don't have any issues with search results in this way. We are using dynamic converters to convert these documents into HTML in site studio web sites.
    But we have plans to move to site studio contributor data files (XML format).
    From your experience, any one noticed any issues in search results with UCM site studio contributor data files indexed by GSA.
    Thank you in advance.
    Edited by: 958795 on Oct 8, 2012 10:50 AM

    Hi Don,
    Thanks for the reply. I would discard the first one, because
    I already built the whole site using XML Data Sets, and the idea
    from the start was to use my own Atom feed to update the site. But
    the second one seems like a good choice, but I'm a bit puzzled. I
    was already using Spry:content for the pages that don't index
    correctly, putting them on an empty <span> tag so that they
    hid unloaded references... could you elaborate on that second
    choice, then, please?
    Here's a sample of the code:
    <!--start main content-->
    <div id="secondary-content" spry:detailregion="dsBase"
    class="wrapper">
    <div id="leftnav" class="frontpage">
    <div spry:state="loading">Loading content. Please
    wait...</div>
    <ul spry:repeatchildren="dsBase">
    <li class="Frontpage"><span
    spry:content="{title}"></span></li>
    <li class="subtitleFront">Posted on <span
    spry:content="{simpleDate}"></span></li>
    <li class="post"><span
    spry:content="{content}"></span></li>
    </ul>
    <p align="left"><br />
    Click <a href="archive.html">here</a> to see
    older posts.</p>
    </div>
    <div id="content-right" class="frontpage">
    <div class="wrapper">
    <h4 align="center">Featured art :</h4>
    <p align="center"> </p>
    <p align="center"><a
    href="gallery.html?row=4"><img
    src="images/tns/tn-AgainstAllOdds.gif" alt="Against All Odds"
    width="81" height="160"/></a></p>
    <p align="center">&quot;Against All
    Odds&quot;<br />
    Tobías Bartolomé</p>
    <p align="center"><a
    href="gallery.html?row=4">See more art at the
    gallery!</a></p>
    </div>
    </div>
    <div style="clear: both"></div>
    </div>
    And here's the link for the main page and Google's index for
    the site:
    http://www.cosmicollective.org/
    http://www.google.com/search?q=site:www.cosmicollective.org&hl=en
    Thanks again!
    Tomas

  • RIDC code reading Contributor data files

    Hi experts,
    Please share me a sample RIDC code for reading contributors data file, with following all the best practices. Any sample application/code will be highly appreciated.
    Thanks

    You can refer Jonathan's Blog - http://jonathanhult.com/blog/2012/12/ridc-examples/
    - Anand

  • Programmatically creating Contributor Data Files

    In WebCenter Portal 11g PS5 and WebCenter Content PS5, doing something similar to Yannick's great tutorial here:
    http://www.yonaweb.be/webcenter_tutorial/using_content_presenter_templates
    A customer using a WebCenter Portal is not very enthousiastic about switching to the Site Studio Contributor to create and edit Contributor Data Files.
    Is there a way to programatically create these files from within our portal (via, say, a custom task flow and RIDC) or a custom service in UCM?
    Seems like Site Studio is doing a LOT in the background (SS_CHECKIN_WEB_ASSET, SS_GET_CONTRIBUTOR_STRINGS, then SS_CHECKIN_NEW) and not just checking in a new file which adheres to the Region Definition.

    Thanks Jonathan, below provided information was useful. Now I have further queries:
    Below is the code that I got from net but having some doubt about some classes like "TextCustomElement", "Field ", "CustomDataElement ". Are these classes available in RIDC APIs or not because I was not able to find out? Also let me clarify the steps that need to perform for updating the values of CDF file are mentioned below:
    First CheckOut the CDF file
    Execute the service "SS_SET_ELEMENT_DATA" by setting the element values
    CheckIn back with new revision of this CDF file
    Are these steps correct?
    Is it possible for you to correct the below code and paste again in forum or send me the corrected file at [email protected]?
    Thanks a ton for your help.
    DataBinder oldBinder = clientConfig.getIdcClient().createBinder();
                   oldBinder.putLocal("IdcService", "SS_SET_ELEMENT_DATA");
                   oldBinder.putLocal("dDocName", oldBinder.getLocal("dDocName"));
                   oldBinder.putLocal("dID", oldBinder.getLocal("dID"));
                   DataResultSet columnResultSet = new DataResultSetImpl();
                   Field elem = new Field("element");
                   Field value= new Field("value");
                   Field isList = new Field("isList");
                   columnResultSet.addField(elem, "element");
                   columnResultSet.addField(value, "value");
                   columnResultSet.addField(isList, "isList");
    for( CustomDataElement e : elementi)
                        DataObject valueList = new DataObjectImpl();
                        if( e instanceof ListCustomElement)
                             ListCustomElement listel = (ListCustomElement) e;
                             valueList.put("element", "cpsAttachmentIdList");
    //                         valueList.put("value", "");
                             valueList.put("isList", "1");
                             List<CustomListRow> listRow = listel.getListRow();
                             DataResultSet listResultSet = new DataResultSetImpl();
                             Field idAttNode = new Field("ATTACHMENT_ID");
                             listResultSet.addField(idAttNode, "ATTACHMENT_ID");
                             for( CustomListRow r : listRow)
    //                         list sub-elements
                                  DataObject valueElement = new DataObjectImpl();
                                  Set<String> keySet = r.keySet();
                                  for(String k :keySet)
                                       TextCustomElement textCustomElement = r.get(k);
                                       valueElement.put("ATTACHMENT_ID", textCustomElement.getValue());
                                       listResultSet.addRow(valueElement);
    //                         name of the element
                             oldBinder.addResultSet("sub-elements", listResultSet);
                        if( e instanceof TextCustomElement)
                             TextCustomElement textel = (TextCustomElement) e;
                             valueList.put("element", textel.getName());
                             valueList.put("value", textel.getValue());
                             valueList.put("isList", "0");
                        columnResultSet.addRow(valueList);
                   oldBinder.addResultSet("SSElementData", columnResultSet);
                   response = executeService( oldBinder);

  • Site Studio Contributor not opening in firefox

    I am trying to open site studio contributor form in firefox and its not opening.
    As soon as I clicked Shift+Ctrl+F5, on webpage, it asks me for login credentials, after sucessull login, i am not getting any option (icon) to edit region defination etc
    Before entering into site studio contributor entries are like:
    var _U = "undefined";
    var g_HttpRelativeWebRoot = "/idc/";
    var SSContributor = false;
    var SSForceContributor = false;
    var SSHideContributorUI = false;
    After going into contributor entries are like:
    var _U = "undefined";
    var g_HttpRelativeWebRoot = "/idc/";
    var SSContributor = true;
    var SSForceContributor = false;
    var SSHideContributorUI = false;
    I am using site studio designer (Version 10gR4 10.1.4.5.0 and component version 7.7.0.1 Build 9.0.0.470).
    Please provide if you have any solution or information to fix the issue, I have tried the using different systems/machines having firefox, but facing the same problem

    This seems to be covered by the support note 1465975.1 (Unable to Enter into Site Studio Contribution Mode After Upgrading to Firefox 13)
    The solution from the note:
    If on an 10g system upgrade to Site Studio 10gR4 build 9.0.0.793 or greater.
    If on an 11g system upgrade to Site Studio 11g build 11.0.0.786 or greater. For example the 11g MLR 11 for a .6 system has this fix and the 11g MLR 18 for a .5 system has this fix.
    If the version is not available with the current patchset on the 10g Content Server please open a new Service Request with Oracle Support and reference this Note ID and the build will be provided.
    (there are few more notes with similar issues, in case this remedy won't help, but it'll do no harm to start with it either way)

  • Styling items in Site Studio Contributor

    Hello,
    Similar to the way that contributors can style text by assigning predefined CSS classes through the style drop-down menu in a Site Studio Contributor form, I would also like to give them the ability to style ordered lists and tables (border-type, mainly). Is this possible? I have tried specifying these styles to be added in the style drop-down menu with no luck, as it seems to ignore any non text-based styles with some exceptions. If accomplishing this is not possible, is there a way to pre-format these lists/tables and give contributors options to pick from? Using WYSIWYG elements is not an acceptable solution for me because most of my contributors do not know anything about HTML and CSS. I come from an Interwoven system that has many features available for administrators to set (which CSS classes are available, context-sensitivity of classes, etc.). I am wondering if there is something similar in UCM.
    If I am unclear, please let me know and I will elaborate.
    Thank you for your time.

    This seems to be covered by the support note 1465975.1 (Unable to Enter into Site Studio Contribution Mode After Upgrading to Firefox 13)
    The solution from the note:
    If on an 10g system upgrade to Site Studio 10gR4 build 9.0.0.793 or greater.
    If on an 11g system upgrade to Site Studio 11g build 11.0.0.786 or greater. For example the 11g MLR 11 for a .6 system has this fix and the 11g MLR 18 for a .5 system has this fix.
    If the version is not available with the current patchset on the 10g Content Server please open a new Service Request with Oracle Support and reference this Note ID and the build will be provided.
    (there are few more notes with similar issues, in case this remedy won't help, but it'll do no harm to start with it either way)

  • Converting Contributor Data File to PDF

    Hi,
    I have a requirement where end users should be able to download the content from a website(created using sitestudio) as PDF. I have configured the IBR,created Provider in Content server,I am able to convert xml to PDF. But it is showing raw content in pdf. How can I convert Contributor data file to PDF along with the rich content.
    Any pointers would be helpful.
    Thanks in advance.

    In that case, can you please tel me,how it can be done? Is it converting xml to HTML & then the HTML to pdf??
    I am new to UCM. Request you to elaborate more.
    Is this possible using any UCM provided components for conversion. If yes,which component would be suitable?
    Thanks
    Edited by: RR on Jul 25, 2011 4:08 AM

  • Site Studio Contributor as a form

    I have a requirement where end users need to fill in a short form (1 x plain text field, 1 x WYSIWYG field) and submit it as an xml file to the content server. We cannot use the Site Studio Contributor in this scenario, but wanted to hook into the Site Studio services/methods/functions mainly for security i.e. cross site scripting etc.
    Does anyone know if documentation for services/functions to use? Any tips would be much appreciated.
    We using 11gr3

    Hi,
    I have created the custom componenet through component wizard. I have created resource, template file and service as hello_user.
    I have referred the site
    http://books.google.co.in/books?id=TiUzMYbpg2MC&pg=PA133&lpg=PA133&dq=content+server+custom+component&source=bl&ots=mIpxohCXKw&sig=slBafW2vpwIL75KzUYpTUToDjVQ&hl=en&ei=14RISuPeI9SxsgbspLXXCQ&sa=X&oi=book_result&ct=result&resnum=2
    When I ran the service using url. http://<mycontentserver>/idc/idcplg?IdcService=HELLO_USER, it showed me the error as below
    Content Server Request Failed
    Configuration error for request 'HELLO_USER'. No dynamic HTML page.
    I hope you get the problem details.
    Thanks,
    Shyamal

  • How to load unicode data files with fixed records lengths?

    Hi!
    To load unicode data files with fixed records lengths (in terms of charachters and not of bytes!) using SQL*Loader manually, I found two ways:
    Alternative 1: one record per row
    SQL*Loader control file example (without POSITION, since POSITION always refers to bytes!)<br>
    LOAD DATA
    CHARACTERSET UTF8
    LENGTH SEMANTICS CHAR
    INFILE unicode.dat
    INTO TABLE STG_UNICODE
    TRUNCATE
    A CHAR(2) ,
    B CHAR(6) ,
    C CHAR(2) ,
    D CHAR(1) ,
    E CHAR(4)
    ) Datafile:
    001111112234444
    01NormalDExZWEI
    02ÄÜÖßêÊûÛxöööö
    03ÄÜÖßêÊûÛxöööö
    04üüüüüüÖÄxµôÔµ Alternative2: variable length records
    LOAD DATA
    CHARACTERSET UTF8
    LENGTH SEMANTICS CHAR
    INFILE unicode_var.dat "VAR 4"
    INTO TABLE STG_UNICODE
    TRUNCATE
    A CHAR(2) ,
    B CHAR(6) ,
    C CHAR(2) ,
    D CHAR(1) ,
    E CHAR(4)
    ) Datafile:
    001501NormalDExZWEI002702ÄÜÖßêÊûÛxöööö002604üuüüüüÖÄxµôÔµ Problems
    Implementing these two alternatives in OWB, I encounter the following problems:
    * How to specify LENGTH SEMANTICS CHAR?
    * How to suppress the POSITION definition?
    * How to define a flat file with variable length and how to specify the number of bytes containing the length definition?
    Or is there another way that can be implemented using OWB?
    Any help is appreciated!
    Thanks,
    Carsten.

    Hi Carsten
    If you need to support the LENGTH SEMANTICS CHAR clause in an external table then one option is to use the unbound external table and capture the access parameters manually. To create an unbound external table you can skip the selection of a base file in the external table wizard. Then when the external table is edited you will get an Access Parameters tab where you can define the parameters. In 11gR2 the File to Oracle external table can also add this clause via an option.
    Cheers
    David

  • Want attach the XML data file with layout template in Oracle 10g

    Hi All,
    I need a help from you genius guys.
    I am genrating reports in BI with xml the procedure which I am following is as below.
    1. generating XML from the RDF
    2. creating a template in .rtf format
    3.after that loading the xml to the template then getting the required report.
    This all is doing through the given buttons
    But now my requirement is to create the gui from user can select the report and get the desire output file so how we would be able to attach the XML data file with layout template in Oracle 10g.
    If you require more detail please let me knnow.
    Thanks,
    Harry

    I am not using Oracle apps.
    I am using oracle 10g reports and I get something in it like one patch I downloded and one java code is having which creates the batch file ...still I am working on it ..
    If you will get some please share so that it will be helpful.
    Thanks,
    Harry

  • SQL Loader - CSV Data file with carraige returns and line fields

    Hi,
    I have a CSV data file with occasional carraige returns and line feeds in between, which throws my SQL loader script off. Sql loader, takes the characters following the carraige return as a new record and gives me error. Is there a way I could handle carraige returns and linefeeds in SQL Loader.
    Please help. Thank you for your time.
    This is my Sql Loader script.
    load data
    infile 'D:\Documents and Settings\user1\My Documents\infile.csv' "str '\r\n'"
    append
    into table MYSCHEMA.TABLE1
    fields terminated by ','
    OPTIONALLY ENCLOSED BY '"'
    trailing nullcols
    ( NAME CHAR(4000),
    field2 FILLER,
    field3 FILLER,
    TEST DEPT CHAR(4000)
    )

    You can "regexp_replace" the columns for special characters

  • LabVIEW created .DAT file with saving only new data on existing files

    I can successfully create and save a .DAT file using LabView and Diadem.   The save command I am using (in Labview) only overwrites existing files, I would like it to save only the new data from the last save.  Overall I would like to save the data every 1hr and since my test will last for many hours, the further along in the test the longer it would take to save the full file.  I know Diadem has the capability to save in such a manner, so I have thought about after I write to Diadem have a small Diadem application save periodically, but I haven't found a way to save the .DAT file, with out any signals coming into the save function.  I have attached the example .DAT file creater and saver I am using to figure it out.  thanks for your help!

    Howdy New Guy -
    I am not sure if you are looking to append to a file, or if you would
    like to overwrite a file.  In either case, you can take a look at
    the "Append To File.vi" example for DIAdem. 
    Either way, you may be experiencing problems because you are only using
    the "DIAdem Simple File Write.vi" (found on the DIAdem >> DAT
    Files palette).  Instead, you can use the "DIAdem File Write.vi"
    (located on teh DIAdem >> DAT Files >> DAT Files Advanced
    palette).  This VI can be set to overwrite or append to file.
    I hope this helps in your development!
    Andrew W. || Applications Engineer

  • Can someone help with a previous post labeled "Writing to a data file with time stamp - Help! "

    Can someone possibly help with a previous post labeled "Writing to a data file with time stamp - Help! "
    Thanks

    whats the problem?
    Aquaphire
    ---USING LABVIEW 6.1---

  • UNICODE data files with SQLLDR

    how can i load UNICODE data files with SQLLDR.
    my Oracle instance is on UNIX with NLS_CHARACTERSET WE8ISO8859P1.
    I have .dat files extracted from SQL Server using bcp utility with -w option.
    When i use -c option i'm not getting the european characters correctly like the a and e with 2 dots on top....
    when i load UNICODE (-w) file with CHARACTERSET UTF8 in my control file, it doesnt go thru. Any solution for this ? Thanks !

    I just created a unicode textfile on windows with some westeuropean characters and imported it into we8iso8859p1 database on linux using controlfile parameter CHARACTERSET UTF16.
    They got all properly converted.
    As Justin mentioned, unicode on windows means generally UTF16 Little Endian.
    Best regards
    Maxim

  • Create XML format file in bulk insert with a data file with out delimiter

    Hello
    I have a date file with no delimiter like bellow
    0080970393102312072981103378000004329392643958
    0080970393102312072981103378000004329392643958
    I just know 5 first number in a line is for example "ID of bank"
    or 6th and 7th number in a line is for example "ID of employee"
    Could you help me how can I create a XML format file?
    thanks alot

    This is a fixed file format. We need to know the length of each field before creating the format file. Say you have said the first 5 characters are Bank ID and 6th to 7th as Employee ID ... then the XML should look like,
    <?xml version="1.0"?>
    <BCPFORMAT xmlns="http://schemas.microsoft.com/sqlserver/2004/bulkload/format"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <RECORD>
      <FIELD ID="1"xsi:type="CharFixed"LENGTH="5"/>
      <FIELD ID="2"xsi:type="CharFixed"LENGTH="2"/>
      <FIELD ID="3" xsi:type="CharFixed" LENGTH="8"/>
      <FIELD ID="4" xsi:type="CharFixed" LENGTH="14"/>
      <FIELD ID="5" xsi:type="CharFixed" LENGTH="14"/>
      <FIELD ID="6" xsi:type="CharFixed" LENGTH="1"/>
    </RECORD>
    <ROW>
      <COLUMNSOURCE="1"NAME="c1"xsi:type="SQLNCHAR"/>
      <COLUMNSOURCE="2"NAME="c2"xsi:type="SQLNCHAR"/>
      <COLUMN SOURCE="3" NAME="c3" xsi:type="SQLCHAR"/>
      <COLUMN SOURCE="4" NAME="c4" xsi:type="SQLINT"
    />
      <COLUMN SOURCE="5" NAME="c5" xsi:type="SQLINT"
    />
    </ROW>
    </BCPFORMAT>
    Note: Similarly you need to specify the other length as well.
    http://stackoverflow.com/questions/10708985/bulk-insert-from-fixed-format-text-file-ignores-rowterminator
    Regards, RSingh

Maybe you are looking for

  • I have problem with upgrading OS X Maverick.  Why Maverik cannot be installed in my disk?

    I want to upgrade my old Mac OS X (10.6.8) to Maverick, but after download Maverick from apple store I can not select my disk to install Maverick.

  • Free RAM on X6

    This thread is just a log of amount of available free ram on the X6. Although there are many such threads for other devices, I couldn't find one for X6. In my case: After restart: 38-43 After hours of Heavy use: 24-37 I used handy taskman to keep tab

  • Redefining Shortcut Key Commands??

    How would i go about redefining the R key (currently set to record) to Zoom In? I am so used to the ProTools shortcut keys, I rebound them in Logic Pro 7.2, but they seem grayed out in the "Logic Pro > Preferences > Key Commands" Menu I can't figure

  • System-wide font problem (malware?)

    Hello all, I have a brand new air here, and tried installing Microsoft Office. Since there is a 30 day trial, I tried uninstalling it. I downloaded and used the tool from this website: http://www.fixkb.com/2011/06/completely-uninstall-microsoft-offic

  • HT201302 how do I make sure the 3,000 + pics that are in my photo library are on my computer ??

    I have over 3,000 photos showing in my photo library not on my camera roll.  I can't seem to find ALL the pics in the photo library on my pc computer, we did lose some pics when we changed computers but I was told that somehow maybe during that time