Content Area migration

Hi All
We have developed a portal on (9.0.1) version with some content area.Now we have to migrate it to Portal Release 2 (9.0.2) .Does the Release 2 support content area .If not,then can we use those content area somehow in Release 2.
Regards
Ashok K sharma

Ashok,
In Release 2, content areas are replaced by page groups. When you upgrade to Release 2, your existing content areas will become page groups. The scripts to upgrade to Release 2 are not yet available, but there is a paper (Preparation for Upgrade to Oracle9iAS Portal Release 2) on Portal Center that details how to prepare for upgrade. Select Product Information, then Export/Import, Migration and Upgrade.

Similar Messages

  • Export of items in a content area

    We have items of type image in a content area. In the
    browser the image url appears as follows:
    /pls/portal30/docs/1234.gif
    When migrating content areas does the item content
    also get migrated (eg: the image file) and also
    are the appended numbers eg: 1234.gif and itemids
    kept the same in the new instance or are they changed.
    Also is the correlation between the image and the number
    maintained in the new instance.
    Thanks,
    Suzanne

    Yes. All these correlations are automatically taken care.

  • Content Area doesn't appear although Import Successful

    I am testing an export/import of some Portal objects to prepare for a migration from development to production. I am using Portal 3.0.9.8.3. I am exporting using Doc ID: 146645.1 as a guide (exporting and importing in the documented order). Everything indicates a successful Export/Import. Both the export and import logs show records being exported and records being imported with the message "Import terminated successfully without warnings." in both logs. When I get back into Portal on the Prod machine, the Content Area and Page are not there. Also, the tables which indicated records being imported by the import log file, have no rows in them. What's going wrong?
    John

    I have this same problem. I am trying to export/import certain parts of my development portal to my production version. I have successfully run the scripts to export a content area from my development machine and then sucessfully ran the import script on my production machine. Yet I can't see the content area on my production version. I suspect this is because the two portals have different DAD's. The development DAD is crp1_portal30. The production DAD is imsi_portal30. I have tried going into the Listener Gateway Settings Page, but it comes up asking for authentication. I have tried every username/password in the system and can't get in.
    1. What is the default username/password for this. We didn't set this up. It was set up by 11i Rapid Install.
    2. Do you think that's why my content area won't show up?
    3. How can I create a new instance of portal, i.e. have multiple portals on the same machine.

  • BCS external content type migration

    Hi, 
    We are migrating from SP 2010 to SP2013 via simple content db backup restore method.
    2010 site has external lists connected to SQL DB via BCS. 
    When we took backup of whole 2010 content db and restored to 2013 n done upgrade. Post that I have noticed none of External content type is available in 2013. All the external lists are broken. 
    Is any way to migrate External content types from 2010 to 2013. 

    Hi Praful,
    The external content types are stored in the Business Connectivity Services(BCS) application database, so if you only migrating content database the external content types will not be available in the new environment.
    You need to detach the BCS application database from the old environment and then copy and attach the database to the new environment.
    More references:
    http://technet.microsoft.com/en-us/library/cc262483(v=office.15).aspx
    http://technet.microsoft.com/en-us/library/jj839719(v=office.15).aspx
    If you only need to migrate the external content types, you can follow this link:
    http://msdn.microsoft.com/en-us/library/office/gg650431(v=office.14).aspx
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Remove bad dll reference after content data migration sharepoint 2007 - sharepoint 2010

    I have 400 subsites under one root site and we need to remove one DLL reference from default.aspx Home page of each sub site.
    Assmbly ref like this.
    <%@ Register TagPrefix="WpNs0" Namespace="DS.DSQueryWebPart" Assembly="DS.DSQueryWebPart, Version=1.0.0.0, Culture=neutral, PublicKeyToken=709ed70a96eaa5cb"%>
    This assmebly is not used anywhere .
    This assembly is reflecting in subsite default.aspx after the content database migration sharepoint 2007 to sharepoint 2010.
    Is there any way we can remove this bad reference through database query or any other way around
    sarav

    Hi,
    If are sure that this is the only customization in the default.aspx page, then you can safely  go into Site Settings -> Site Actions -> Reset to site definition -> Select Reset specific page to site definition version and enter the default.aspx
    page url. This will replace the customized page with the original site definition page. The process can be automated using PowerShell/C# Code. Here is an example:
    using (SPSite site = new SPSite("http://aissp2013/sites/Team/"))
       foreach(SPWeb web in site.AllWebs)
      using(web)
      SPFile file = web.GetFile(web.Url + "/default.aspx");
      if (file.Exists)
      file.RevertContentStream();
    The main part here is to get hold of the default.aspx file and use RevertContentStream() to reset it to site definition page.
    However, if there are other customizations as well, then you will need to get hold of the Project or WSP file and remove the reference there and then run update-spsolution powershell command to update to new WSP.
    Thanks,
    Nadeem
    Please remember to up-vote or mark the reply as answer if you find it helpful.

  • How to transfer content area from 3.0.9 to R2

    Is there any tools that allow me to migrate my existing content area from 3.0.9
    to 9.0.2. As I content more than 1000 od files in my 3.0.9 content area.
    Thanks
    So

    So,
    Please refer to the document Preparation for Upgrade to Oracle9iAS Portal Release 2. Upgrade scripts for migrating from Portal 3.0.9 to Release 2 are currently in development.

  • How to pass variable to content area from a PL/SQL procedure

    Hi,
    Can somebody tell me how to create a(Content area) folder based on a PL/SQL procedure that takes a variable as a
    parameter and returns data based on value of that parameter to the folder . Any help would be appreciated .
    Thanks and regards.
    Neeti.

    Somewhere, in one procedure, build a session identifier and save your variable there. If no session with that identifier is previously stored, it will create a new session instance with that ID for you.
    declare
    l_sess portal30.wwsto_api_session;
    varvalue number;
    begin
    varvalue := 100;
    l_sess := portal30.wwsto_api_session.load_session('MYSESSION','VARIABLES');
    l_sess.set_attribute('VAR_NAME',varvalue);
    l_sess.save_session;
    end;
    In your other procedure, or anywhere else needed within that same session, simply load the session and reference the variable. To reference the variable, use the following.
    -- assuming new procedure, so re-defining session variable and reloading session into it
    declare
    my_session portal30.wwsto_api_session;
    my_new_variable number;
    begin
    my_session := portal30.wwsto_api_session.load_session('MYSESSION','VARIABLES');
    my_new_variable := my_session.get_attribute_as_number('VAR_NAME');
    end;
    This will let you reference parameters across multiple portal applications and indirect calls.

  • Sub folders content are not getting displayed using KM Navigation iView.

    Subfolder contents are not being displayed for KM Nvaigation ivew
    Posted: Feb 15, 2006 1:01 PM        Reply      E-mail this post 
    Hi
    I created CM repository and did all settings.i could able to see the folder and subfolder contents under Content administration>KMContent>root-->KMPublications(my own folder).
    -->using Administrator user i could able to see all folders/subfolders correctly and could able to edit.
    -->now i created KMNavigation iview and created new role called "KMRole".then i assigned iview to page,then page to Role .this "KMRole" is assigned to user called "prasad".
    >for folder "KMPublications" ,using context menu Details>settings-->permissions ,i added "KMRole" for "Read" only.
    -->when i logon to portal with user "prasad" ,it is showing all root directory content and subfolders.when i click on subfolder called "foods",it is showing me exception.this problem is not coming if i logon as "Administrator".can anybody helpme out.
    Note:if i chnage the Path to display value to subfolder ,it is only displaying subfolders content only.if i click on its subdirectory ,it is giving null pointer exception.
    i checked default trace file,it is giving following information
    #1.5#001560AB529E0068000001130000050000040CDA8CF94AE8#1140032714402#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#sriram#586##epdev1.corporate_EPD_4605550#sriram#8ba54e509e5b11da9930001560ab529e#Thread[PRT-Async 0,5,PRT-Async]##0#0#Error#1#/System/Server#Java###Exception ID:02:45_15/02/06_0007_4605550
    [EXCEPTION]
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : pcd:portal_content/KMEx/KMRole/KMExPage/KMNavigationiView
    Component class : com.sapportals.wcm.portal.component.base.ControllerComponent
    User : sriram
    at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:377)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:390)
    at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sapportals.portal.prt.component.PortalComponentException: Exception during PageProcessorComponent.doContent()
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:139)
    at com.sapportals.wcm.portal.component.base.ControllerComponent.doContent(ControllerComponent.java:73)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    ... 7 more
    Caused by: com.sapportals.htmlb.page.PageException: null (java.lang.NullPointerException)
    at com.sapportals.wcm.app.controller.ControllerDynPage.doProcessBeforeOutput(ControllerDynPage.java:81)
    at com.sapportals.wcm.portal.component.base.KMControllerDynPage.doProcessBeforeOutput(KMControllerDynPage.java:56)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:123)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    ... 11 more
    #1.5#001560AB529E006D0000001C0000050000040CDA8E1777DD#1140032733168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###Exception reading project list. Error was Cannot get item /etc/xmlforms/XFBuilderConfig/ProjectsTimestamps.pref#
    #1.5#001560AB529E006D0000001D0000050000040CDA8E17786B#1140032733168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###com.sapportals.wcm.repository.InvalidUriException#
    #1.5#001560AB529E006D0000001E0000050000040CDA91E8084B#1140032797168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###Exception reading project list. Error was Cannot get item /etc/xmlforms/XFBuilderConfig/ProjectsTimestamps.pref#
    #1.5#001560AB529E006D0000001F0000050000040CDA91E808D9#1140032797168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###com.sapportals.wcm.repository.InvalidUriException#
    can anybody help
    prasad
    Prasad

    Maybe there is approval set up on this folder. Order time based publishing. Both can cause the read users to see nothing.
    The first means that read users can only see published documents. If no document is published the result is a empty folder.
    Same for the second feature. If timebased publishing it can be that all documents are hidden for the read users because the documents are out of there time interval.
    Hope this helps. Check both in folder > details > settings.
    Frederik

  • How to enlarge and centralise the 'Content Area' in an Office 365 webpage

    Hi, I'm relatively new to O365 and I'm working on our webpage
    The issue I have is that you have the Content Area but that seems to be about 1/2 an inch in from the left hand screen and only covers approx. 75% of the screen, what I want is the content area to be about 1000pixels wide and centralised.
    I've tried looking at the CSS style sheet but there doesn't seem to be anything that helps me to do either of the above tasks.
    Any help would greatly be appreciated, thanks.
    Jason

    Hi Jay Dog,
    This questions is definitely not about Office client, if you are customizing your own website, I suggest you post the question in Office 365 Community to get specific support:
    http://community.office365.com/en-us/f/default.aspx
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Portal Content area not displaying in Portal

    I tried to disable Portal favorites option from Content admin -> Default Frame work Page -> Detailed navigation. Instead of only disabling the default navigation I have disabled the entire Portal content area and I am now not able to see any content  in the Portal except the masthead area and the Top level navigation.
    Can any one please help me on this.
    Thanks.

    Hi,
    Check the content area iview in the Desktop inner page in framework page.If this iview is not there then it will not show the content area.
    If desktop inner page is deeted then also you will not see the content area.
    If so please add the content area iview indside the Desktop inner page then you can see the content area for the users.
    Content area iview will be available under the following path of the portal
    Content Administration > Portal Content > Content provided by sap > Admin Interfaces > Admin Iview Templates > Content Area (view).
    Thanks,
    Regards,
    Rudradev Devulaplli

  • Images present in datagridview not exporting to file only text contents are generating into PDF file..

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M
    Hello,
    Since this issue is mainly related to iTextSharp which belongs to third-party, I would recommend you consider posting this issue on its support website to get help.
    Maybe the following forum will help.
    http://support.itextpdf.com/forum/26
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • UI element in Webdynpro to align the content area at the center of the page

    Hi Experts,
    I am looking for a UI element in webdynpro which can keep the entire content area aligned to the center of the page as well as can provide the borders along the content area.
    Please suggest if there exists any such UI element in webdynpro.
    P.S. We are using NWDS Version: 7.01.00
    Thanks in advance for the replies.
    Regards,
    Anurag

    Hi Anurag,
    What you can try is to put all of your UI elements in Group and then do the alignment. Set the visibility property of the group header to invisible. This will give you a border.
    Hope this solves your problem.
    Regards
    Abhinav Sharma

  • Display the reports under all subfolders at a time in the content area?

    Hi All,
    In SAP EP portal,We have a requirement to display few reports wherein we have 7 roles with the same names but different ID's and they are merged together so that even if the users have 7 roles assigned he will see only 1 tab in the first level navigation and uder that there will  be one folder at the second level.Now the requirement is like this
    1st level navigation : Role Name
    2nd level navigation :Folder Name
    Detailed Navigation : Folder Name
                                     Sub Folder Name
                                     Sub -sub folder1 Name
                                     Reports   --(one or many)
                                     Sub -sub folder2 Name
                                     Reports   --(one or many)
                                     Sub -sub folder3 Name
                                     Reports   --(one or many)
    Under al the sub-sub folders a workset map iview is added to display the reports with a pictogram in the content area.In the detailed navigation, as soon as the user clicks on the Sub folder the user should be able to see the reports under all the Sub-sub folders( Sub-sub folder1,Sub-sub folder2,Sub-sub folder3) .But currently the user has to explicitly click on each of the Sub-sub folders to view the reports(thrice in this case).Plz give a solution in which all the reports under the 3 Sub-sub folders should appear simultaneouly in the content area at a single click on Sub Folder
    Thanks & Regards,
    Sowmya
    Edited by: Sowmya B on Jan 4, 2010 2:14 PM

    Resolved

  • Moving a folder, Linking between content areas

    I have 2 problems:
    1) So far we developed all our content in a single content area. We would now like to split the information into multiple content areas. The MOVE or COPY command on the folder only allows me to copy within a content area. I have hundreds of documents to move. Is there any way i can move a folder to a different content area?
    2) What is the best way to link a folder from 1 content area to a folder in another content area? I found that the FOLDER LINK ITEM allows me to connect only within a content area.
    (I would prefer not to use an URL since the content publishers may not be able to construct complicated paths or the paths may change leading to broken links.)

    Suraj
    1) The only way to do this currently is to create an export of the content area, import it back into the portal and remove the duplicate content. We are planning a bulk action feature in a future release that would allow you do to selectively copy/move one or more folders into a new content area.
    2) Currently folder links are scoped within a content area; the only option is to link to the folder through a URL folder type. If you use the generated URL that contains the folder ID, you shouldn't run into any problems if the target folder is moved. I have submitted an enhancement request to extend the folder link to 'remote' folders outside of the 'home' content area.

  • Problem with Checking In/Out Items in Content Area

    I've been reading the Portal On-Line help pages in regards to
    checking in/out items. The help states that when an item is
    checked out, the item is locked and a message "Checked out by:
    UserName" is displayed next to the item. When I check out an
    item, I do not see this "Checked out by" message. However, I do
    see the checkout icon. Note - I am doing this through the
    Content Area Navigation page. Is there something that I am
    missing? (I have seen other threads in regards to the
    checkin/checkout icons not displaying when the Content Area is
    published as a portlet. We are having this problem as well.)
    However, the lack of the "checked out" message happens in both
    the Content Area Navigator and the published portlet.
    Also, is there a way to get Portal to automatically generate
    version numbers when a new version of an item is created. I see
    that you can create a unique name or description .... but I'd
    like to have Portal generate the version number for me. This is
    done in the Application component section when you build forms,
    menus, or reports.
    Thank you for any assistance that you can provide.

    The "checked out by" message only appears to other users - you
    won't see it if you are the user who checked out the item.
    The version number is planned for a future release.
    Regards,
    Jerry

Maybe you are looking for

  • Calendar and Contacts just stopped working

    I have an odd issue creep up that Apple Enterprise support and I cannot seem to remedy, I am hopeful someone here might give me some insight. Mac Mini Server, Running OS X Server 10.8.4. A few users (no Open Directory) Each user has their own contact

  • Purchase and Alert

    Can someone confirm if you purchase a song and you try to purchase again it will alert you that you already did so and you can download again even if deleted?  Maybe I dreamed this up - who knows.  I thought it would tell you and wouldn't charge you

  • Field INV. PARTY in MIRO

    Dear Friends, I need to make the field Inv. Party from the transaction MIRO Details tab to be set as non-editable. Can someone give me idea how can we set it to display only. But, not always there should be a possibility for the buyer to do the chang

  • Backup controlfile to trace as 'c:\prod_ctl.txt'

    Hi All, 11.2.0.1 I am examining the output of the trace file, because I want to simulate or test this process. This file has two(2) sets of command. one(1) is for the intact online logs and the other one(1) is for damage online logs. Questions: 1. Wh

  • Get Calling Application Name

    How can I get the name of the Application I use to connect to the DB from within a procedure/view? The user ID used has no DBA or system privileges, so it can not use v$Session.... Thanks in advance for any help Jerome