Navigation  should be limited only to content area

Hello,
I am importing roles from ECC into the portal.
The transactions are getting displayed in the content area of the portal.
However I would like to  traverse forward and backward only for the content displayed in the content area.
Likewise I would also like to display a save button in the masthead (or in the page title bar) so that the transactions displayed in the content area get saved using the button in the masthead , instead of using the regular F3 +CtrlS.
I would also prefer to have forward and backward buttons for traversal of content viz; transactions in the content area.
Can anyone suggest me the possible alternatives to implement the above functionalities.
Regards
Pooja

Please avoid posting the same question to different forums.
Main thread and possible answers are / should go here: Navigation in page title bar

Similar Messages

  • Refreshing only portal content area and not the naviagtion area.

    Hello all,
              I want to refresh only portal content area without refreshing the navigation contents.
       Eg;- When i click on the any document present in the REPORTS folder in Detailed Navigation Area only the portal contents should get refreshed.

    Links on DTN?Are they on a custom Iview?? Then u control with url mode.
    If they are page links, i don think u cud restrict one WD application not to refresh when the whole page getz refreshed.
    <b>Plz don forget points, if it helped.</b>
    Regards,
    P.

  • 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.

  • In Central Configuration manager only few contents are coming

    Hello,
    I have installed BO XI 3.1.
    I have installed freshly & i am facing some problems in Central configuration manager .
    In Central Configuration manager only few contents like :
    Apche Tomcat 5.5.2.0
    OracleOraHome92HTTPServer
    WinHTTP Web Proxy Auto-Detective Service
    World Wide Web Publishing Service
    are coming rest all are not coming , can anyone help me to resolve this issue.
    Thanks
    Priyanka

    Hello Priyanka,
    I think you are looking for the server list.
    With BOE R3 and the introduction of the SIA the servers are managed be the SIA.
    If you need to see the serverlist go to the CMC or clicl in enable/disable server.
    I recommend to post further queries to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Central Configuration manager only few contents are coming

    Hello,
    I have installed BO XI 3.1.
    I have installed freshly & i am facing some problems in Central configuration manager .
    In Central Configuration manager only few contents like :
    Apche Tomcat 5.5.2.0
    OracleOraHome92HTTPServer
    WinHTTP Web Proxy Auto-Detective Service
    World Wide Web Publishing Service
    are coming rest all are not coming , can anyone help me to resolve this issue.
    Thanks
    Priyanka

    Hello Priyanka,
    I think you are looking for the server list.
    With BOE R3 and the introduction of the SIA the servers are managed be the SIA.
    If you need to see the serverlist go to the CMC or clicl in enable/disable server.
    I recommend to post further queries to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Tree Navigation and Link  - Open iview in Content Area

    Hi,
    this is maybe trivial, but I can't find anything about it right now:
    I created an iview in Java that shows a custom tree in the detailed navigation area.
    Now I have an iview ( a BW apps), that should be behind this link on the inner tree level, and, when clicked, should show up on the inner desktop.
    What is the java code that needs to be put into the nav iview to do this? How do I identify the URL that is behind the BW apps that I need to call?

    You could also let your custom link in the masthead point to a "quicklink" then you do not have pass any url as parameter you just call as it is and you get what you need.
    Do not forget to set the "target" property of the link tag to "_top"
    Cheers,
    Benjamin

  • 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

  • Content area & search portlet

    Hi Everyone,
    I have a couple questions and hope that some of you can give me some insight, thank you so much in advance!
    I need to implement a search portlet. I realized that there is one built-in portlet that came with the 9iAS. But it does not provide all the functionalities that I need. For example, I would like it to be customizable, therefore the drop-down-list lists only the content areas customized by the users and it only searches in those areas.
    Here are the questions:
    1) It seems that the built-in Search portlet uses the database provider. am I right? Where can I find its provider and also its jar files (I am guessing it is written in Java).
    2) If I have to write my own Search portlet, then I need to get the information about the content area such as which table the content area objects are saved to and how many content areas and in the area etc...
    Any insight will be greatly appreciated.
    Thanks,
    Vince

    There are some secure views that are available as part of the Pl/Sql PDK. They are listed here:
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/plsql/doc/sdk23vws.htm
    The views work by using information from the session context (see the wwctx_api package). Typically the session context will be set automatically by the portal framework if the request comes to the Portal Database via mod_plsql or the PPE.
    To find the content areas in which the user has access to folders, you'll need to join the WWSBR_ALL_CONTENT_AREAS view with the WWSBR_USER_FOLDERS using the ID and CAID columns, respectively.
    Content Areas don't have descriptions so a presume you meant the display name rather than the unique name. The display name can be found from the WWSBR_USER_FOLDERS view be joining WWSBR_ALL_CONTENT_AREAS to WWSBR_USER_FOLDERS again but choosing the root folder (select id, caid, language, display_name from WWSBR_USER_FOLDERS.ID = 1). You'll also need to restrict by language.
    Please write again if you need more info.

  • Tabbed Panels: Two content areas?

    Hi, I want to set up my Tabbed Panels so that when a certain tab is clicked, the content displayss in one content area/div and an image shows in another content area/div. Is that possible? If it is, will it change the CSS? On most pages, I want to use the same CSS style for tabbed panels, but only one content area.
    Thanks very much,
    Mike

    You could do 2 things.
    1) include the "area" inside the tabbed panels content, and use position:absolute; to position it everywhere that you want on your page
    2) create onclick function on each tabbedpanel tab that will display the content for you.

  • Share Feature - Document Library - Contribute Users getting: Only a limited amount of people are allowed to share this content

    Hi
    I am getting the following error when users with contribute permissions try to share an individual document from a document library.
    If I upgrade the user to full control they are then able to Share the file ok and not get the above error.
    So what I am wondering is should users with contribute access be able to Share the document? If not then why is the Share option available?
    Which permission level if I edit the contribute permission levels do I need to add, I cannot see any Share specific permissions for lists and reluctant to give contribute users access to modify permissions?
    I'll continue troubleshooting to see if I find the solution but wondered if anyone in the community had come accross this? Googling the error message
    Only a limited amount of people are allowed to share this content brings up nothing.

    Today I fixed this issue by enabling Site Access Requests on the SharePoint sites with this problem. (http://blog.cloudshare.com/2012/12/09/how-to-configure-the-site-access-request-in-sharepoint-2013/)
    Personally I think this is created by design, because it happens a lot that content is shared with users which do not have access to a SharePoint site and/or library. So I guess we do not have another option..
    Programmatically the above could be done by setting the "SPWeb.RequestAccessEmail" property with a valid e-mail address. For example the site owner's e-mail address. Setting the "SPWeb.RequestAccessEnabled" property is not allowed and
    is automatically done by settings the "SPWeb.RequestAccessEmail" property

  • Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .

    Why when I do a permission's repair (disk utility) do I see various foreign languages needing to be repaired.. i.e.
    2012-06-22 17:09:10 -0400: Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    2012-06-22 17:09:10 -0400: Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    2012-06-22 17:09:11 -0400: Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    2012-06-22 17:09:11 -0400: Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib".
    2012-06-22 17:09:11 -0400: Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    2012-06-22 17:09:11 -0400: Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib".
    2012-06-22 17:09:16 -0400: Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    2012-06-22 17:09:16 -0400: Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b".
    2012-06-22 17:09:16 -0400: Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Do I need to turn foreign languages off somewhere, will never use them, press #1, english only please.  :^)

    They really don't require repair. They are part of the ARD update. Ignore them as they are harmless. They will recur everytime you repair permissions.

  • How make the Top-level Navigation and Content Area in one page as a whole?

    I want to make the Top-level Navigation and the Content Area in the one page as a whole displayed in user interface.In the default framework,the Top-level Navigation and the Content Area were contained  in 2 pages, So the vertical scroll bar could only control the Content Area. I want to control the full page with  one vertical bar like the page of "www.sdn.sap.com" Web.

    Hi Jianguo,
    One advantage of the external facing portal solution (SP14) is that the framework page is displayed in a single frame. Perhaps this could be of use to you.
    Hope this helps.
    Daniel

  • IViews in dynamic navigation take up whole content area

    Hi,
    I'm having a problem using dynamic navigation. I've created two Web Dynpro iViews A and B. I've added B to the dynamic navigation of A and put A into a role. Know when I want to view A, I can see the iViews loading, B in the navigation panel and A on the right of the panel. But once they are loaded, B is shown in the content area, "above" A (effectively hiding it). Once I remove B from the dynamic navigation, A is shown fine.
    Any ideas to solve this?
    thanks,
    Lieven

    Hi Lieven!
    I can only guess, that the WebDynpro integration-IView is designed to run in the content area alone and forces so.
    Did you try to run other (sap provided) WebDynpro iviews from the dynamic navigation?
    Regards,
      Jürgen

  • Navigation Panel and content Area can not any more be displayed

    Hello Gurus,
    we have a very big prolem with our Portal in the Development.
    A new colleague has probably changed some settings in the portal. Now by logging into the portal, i can only see the header Area (Masterhead, Tolls, Top-Level Navigation, Page title Bar). By clicking on the role like system Administrator, nothing is showing.
    The Navigation Panel and the content area are gone. How can i restore them back?
    Any Workaround?
    Thanks in advance
    Cheers

    Hi Anja, Puneet,
    thank you very much to have replied.
    through the SAP Note and you path, i can access the portal again. I am not using the standard framework.
    We have a customized Destop Page, Framework and after a check they still exist. Could you once advice where could be the error. Or where someone chnage the settings?
    many thanks in advance.
    Cheers

  • 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

Maybe you are looking for

  • Customer down payments

    hello,   In f-29 when i am entering the customer it's saying that the vendor is nto defined in that company code , and i am enetering an exisitng vendor then it say that No special G/L acct defined for acct type K sp.G/L ind. A recon.acct 2010010, i

  • New iPod work with PB G4 400 Titanium?

    I assume my PB is not USB 2.0 (I can't see how to tell), but that just means the new iPod will sync slower, right? It will work, just slower? Planning to buy one of the video iPods and want to ensure it will work. Thanks.

  • Cannot install itunes on computer says system configure

    Trying to install itunes on computer keeps comming up with system configure error please help

  • Creating LOV in Forms Personalization

    Hi Friends, I have the requirement to create LOV for the 'Description' field in Standard Form. That Description field doesn't have LOV. I want to create LOV for that field thru Forms personalisation. Is it possible. Pl. tell me the steps. I'm using 1

  • Mustek scanexpress a3 usb 2400 pro

    Hi, So at work I was trying to hook up this scanner I have near my station, a mustek scanexpress a3 usb 2400 pro, but I can't detect it. I downloaded the latest drivers off the Mustek website and I tried using Vuescan, Image capture and Photoshop to