Retreive a list of workets,folders,iViews,pages from Roles

Hi all,
I have been working on retreiving the workset,folders,iview,pages from a role.
i am refering to the code given in the forum thread
Retreive a list of workets, iViews, pages from Roles
but i am facing some issue.
if the role has workset in it,its not able to read the iviews or pages from it.
its retreiving null.
please may i get some solution or some working code regarding this.
Regards,
Savitha

Hi all,
I have been working on retreiving the workset,folders,iview,pages from a role.
i am refering to the code given in the forum thread
Retreive a list of workets, iViews, pages from Roles
but i am facing some issue.
if the role has workset in it,its not able to read the iviews or pages from it.
its retreiving null.
please may i get some solution or some working code regarding this.
Regards,
Savitha

Similar Messages

  • Retreive a list of workets, iViews, pages from Roles

    Hello All,
    Im working on EP6 SP9 and trying to make an application which would retrieve following data of existing Portal users:
    1> User ID
    2> Roles assigned.
    3> <b>Workets, iViews and Pages that are attached/assigned to the roles (referring to point 2 above).</b>
    <i><b>Currently im able to retrieve a list of existing Portal users along with the roles assigned. But not being able to drill down further.</b></i>
    Please help me.
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu

    Use the following code.
    package co.ust.browserole;
    import java.util.Hashtable;
    import java.util.Iterator;
    import javax.naming.Context;
    import javax.naming.NameClassPair;
    import javax.naming.NamingEnumeration;
    import com.sap.ip.portal.service.ume.IUserManagementEngine;
    import com.sap.security.api.IRole;
    import com.sap.security.api.IUser;
    import com.sap.security.api.UMException;
    import com.sap.security.api.UMFactory;
    import com.sap.security.api.srvUser.IServiceUserFactory;
    import com.sapportals.htmlb.Form;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent;
    import com.sapportals.portal.pcd.gl.IPcdContext;
    import com.sapportals.portal.pcd.pcm.builder.IPcmEditObject;
    import com.sapportals.portal.pcd.pcm.builder.IPcmObjectBuilder;
    import com.sapportals.portal.pcd.pcm.builder.IPcmObjectService;
    import com.sapportals.portal.prt.component.IPortalComponentRequest;
    import com.sapportals.portal.prt.component.IPortalComponentResponse;
    import com.sapportals.portal.prt.runtime.PortalRuntime;
    public class display extends PageProcessorComponent {
         public DynPage getPage() {
              return new displayDynPage();
         public static class displayDynPage extends DynPage {
               * Initialization code executed once per user.
              public void doInitialization() {
               * Input handling code. In general called the first time with the second page request from the user.
              public void doProcessAfterInput() throws PageException {
               * Create output. Called once per request.
              public void doProcessBeforeOutput() throws PageException {
                   Form myForm = this.getForm(); // get the form from DynPage
                   // create your GUI here....
                   IPortalComponentResponse response =
                        (IPortalComponentResponse) this.getResponse();
                   IPortalComponentRequest request =
                        (IPortalComponentRequest) this.getRequest();
                   IPcmObjectService pcdFactory =
                        (IPcmObjectService) PortalRuntime
                             .getRuntimeResources()
                             .getService(
                             IPcmObjectService.KEY);
                   Hashtable env = new Hashtable();
                   env.put(
                        Context.INITIAL_CONTEXT_FACTORY,
                        IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
                   env.put(
                        Context.SECURITY_PRINCIPAL,
                        this.getServiceUser("pcd_service"));
                   IUser user = request.getUser();
                   Iterator role = user.getRoles(true);
                   String root;
                   while (role.hasNext()) {
                        try {
                             String rolestr = (String) role.next();
                             IRole r = UMFactory.getRoleFactory().getRole(rolestr);
                             root = r.getUniqueName();
                             response.write(
                                  "<b>" + r.getDisplayName() + "</b>" + "<br>");
                             recursive_role_content(root, pcdFactory, env);
                        } catch (Exception e) {
                             response.write(e.getMessage());
              public void recursive_role_content(
                   String root,
                   IPcmObjectService pcdFactory,
                   Hashtable env)
                   throws Exception {
                   IPortalComponentResponse response =
                        (IPortalComponentResponse) this.getResponse();
                   IPcmObjectBuilder pcmSrv = pcdFactory.getInitialContext(env);
                   NamingEnumeration names = pcmSrv.list(root);
                   while (names.hasMore()) {
                        NameClassPair nameclass = (NameClassPair) names.next();
                        String pcdurl = root + "/" + nameclass.getName();
                        IPcmEditObject pcmObj = (IPcmEditObject) pcmSrv.lookup(pcdurl);
                        response.write(
                             "Title: " + pcmObj.getTitle() + " Class Name" + pcmObj.getClass() + "<br>");
                        NamingEnumeration newnames = pcmSrv.list(pcdurl);
                        if (newnames.hasMore()) {
                             recursive_role_content(pcdurl,pcdFactory,env);
              public IUser getServiceUser(String username) {
                   IPortalComponentResponse response =
                        (IPortalComponentResponse) this.getResponse();
                   IUser serviceUser = null;
                   IUserManagementEngine ume =
                        (IUserManagementEngine) PortalRuntime
                             .getRuntimeResources()
                             .getService(
                             IUserManagementEngine.KEY);
                   IServiceUserFactory sufactory = ume.getServiceUserFactory();
                   try {
                        serviceUser = sufactory.getServiceUser(username);
                   } catch (UMException e) {
                        response.write(e.getMessage());
                   return serviceUser;
    <b>
    Portalapp.xml should look following.</b>
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb,com.sap.portal.pcd.glservice,com.sap.portal.pcmbuilderservice"/>
      </application-config>
      <components>
        <component name="display">
          <component-config>
            <property name="ClassName" value="com.ust.browserole.display"/>
            <property name="SecurityZone" value="com.ust.browserole/high_safety"/>
          </component-config>
          <component-profile/>
        </component>
      </components>
      <services/>
    </application>

  • Trigger Navigation an iView/Page from Portal component

    All,
    I am writing AbstractPortalComponent and after performing some logic, I have to forward the control to a iView/Page. Please let me know how I can trigger navigation to a iView/Page from within AbstractPortalComponent.
    Thanks,
    Prasad

    Hi Reddy,
    You can use EPCF Navigation API in response.write.
    response.write("<html>");
    response.write("<script language='javascript'>");
    response.write("EPCM.doNavigate('ROLES://<pcd location of the iview or page>');");
    response.write("</script>");
    response.write("</html>");
    Or you can use request.redirect(url) for this depending on your requirement. For request.redirect check this link.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b7/60b54066ea8531e10000000a1550b0/frameset.htm
    Regards,
    Vaishali

  • Need to re-download PSE9 and PRE9 following crash and reinstall of Windows 7.  But the programs aren't listed on my Adobe "Orders" page (from which I would download) but are on my list of products.  What do I do to get the downloads?

    Following a crash I had to wipe my "C" drive and re-install Windows 7.  I want to reinstall Photoshop Elements 9 and Premier Elements 9.  Both programs are listed on my products page on the Adobe Website, but not on the "orders" page (from which I would normally download programs I've bought from Adobe).  How do I get them downloaded?

    Downloads available:
    Suites and Programs:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  7 | 6 | 5
    Download and installation help for Adobe links  https://helpx.adobe.com/download-install.html
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Compose Model List shows no elements(iviews,pages)

    Hi VC Experts,
                        I am working on NW 2004s VC.I could not add anything in model and composer list is empty.I configured and installed all the reprequisites.
    When I looked into the source only a tag <GmlModel .This tag is <model> in EP 6.0 VC 6.0.Are there any special configurations needed for VC 7.0.Can you guide me on this.
    Thanks,
    V.

    Hi Friends,
                    I have solved this by downloading latest SVG Viewer from
    <a href="http://www.adobe.com/svg/viewer/install">http://www.adobe.com/svg/viewer/install</a> and assigning the permissions.
    It is Prakash Darji`s posts guided me.Thanks Prakash.
    Thanks,
    Viswanadh.

  • I want clear definitions of iviews, pages, worksets & roles

    hi
    Edited by: giridhar  rao on Sep 23, 2008 7:56 AM

    Hi,
    Iviews are Content Providers ( It provides the framework.They are basic building blks for Portal)
    ROLE ( group of worksets )
    WORKSET ( group of Pages )
    PAGES ( group of Iview )
    Refer the below thread.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/cb8bb4c4370cd5e10000000a1553f7/frameset.htm.
    For More Info :
    iViwes:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/df/bedca2076511d7b84500047582c9f7/content.htm
    Pages:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ac/c29d3f53055a7be10000000a11405a/content.htm
    Worksets and Roles:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4f/bceaffeb8c114ebef8255b63079c7c/content.htm
    Regards,
    Srinivas.

  • Retrieving iViews ,Pages and Worksets from roles

    Hi All,
    I am using the code given here..
    Retreive a list of workets, iViews, pages from Roles
    but while getting pcdFactory its giving class cast exception.
    Could anyone tell me what might be the mistake?
    Regards,
    Karthick

    Hi Karthick,
    I think I answered on another post, but here it is again:
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
    env.put(Constants.REQUESTED_ASPECT, IPcdAttribute.PERSISTENCY_ASPECT);
    env.put(Context.SECURITY_PRINCIPAL, request.getUser());
    env.put(IPcdContext.PCD_PERSONALIZATION_PRINCIPAL, request.getUser());
    InitialContext iCtx = null;
    String roleID = "pcd:portal_content/DanielContent/DanRole";
    try{
        iCtx = new InitialContext(env);
        IPcdContext attrSet = (IPcdContext) iCtx.lookup(roleID);
        response.write(attrSet.getAttributes("").get("com.sap.portal.pcd.gl.CreatedAt").get() +"--PP<BR>");
    Hope it helps.
    Daniel

  • Calling  an existing iView/page

    HI
    How to call an existing iView/page from a jsp page.
    Thanks
    Shashank

    Hi,
    You can call the iview directly with an URL..URL format looks like below.
    http://server:port/irj/servlet/prt/portal/prtroot/<PCD_LOCATION_URL>
    Replace the server with your host name and port with you port number and copy the PCD URL of an iview after prtroot in the above URL and change the PCD URL as mentioned below
    replace ':' with '!3a'
    replace '/' with '!2f'
    Hope this helps you..
    Jojo

  • Unable to create default IVIEW & Pages

    Hello,
    On one of the issue, SAP asked us to upgrade the portal component from EPPSERV 03 to EPPSERV 04(EPPSERV04P_2-10005915.SCA).
    After the upgrade I am not able to create any (default)iviews as well as pages. I am getting the following error
    005056BA329900770000024600000A1C00047A5063299BD0#1260385586313#com.sap.portal.prt.runtime#sap.com/irj#com.sap.portal.prt.runtime#Administrator#23436##n/a##d0c49c40e4f511de851e005056ba3299#SAPEngine_Application_Thread[impl:3]_7##0#0#Error##Java###11:06_09/12/09_0036_9340750
    [EXCEPTION]
    #1#java.lang.NoSuchMethodError: com.sapportals.portal.pcd.gl.PcdSearchControls.addExplicitAttributeCheck(Lcom/sapportals/portal/pcd/gl/IPcdAttribute;)V
         at com.sap.portal.pcm.iviewserver.cache.TemplatesCacheSrv.getPCDCatalog(TemplatesCacheSrv.java:184)
    Portal is on EHP1 SPO3.
    Thanks
    Edited by: Imran Mohammed on Dec 9, 2009 9:18 PM

    Hi Anil,
    I have cleared the Navigation cache & PCD cache as well..even restarted the server..but no help.
    Do you have any idea..whats going on
    Everytime when I try to create IVIEW/PAGE from template I get the following error
    java.lang.NoSuchMethodError: com.sapportals.portal.pcd.gl.PcdSearchControls.addExplicitAttributeCheck(Lcom/sapportals/portal/pcd/gl/IPcdAttribute;)V
        at com.sap.portal.pcm.iviewserver.cache.TemplatesCacheSrv.getPCDCatalog(TemplatesCacheSrv.java:184)
        at com.sap.portal.pcm.iviewserver.cache.TemplatesCacheSrv.refresh(TemplatesCacheSrv.java:589)
        at com.sap.newpage.pagewizardpanes.PageTemplateSelection.initTemplates(PageTemplateSelection.java:229)
        at com.sap.newpage.pagewizardpanes.PageTemplateSelection.wdDoModifyView(PageTemplateSelection.java:172)
        at com.sap.newpage.pagewizardpanes.wdp.InternalPageTemplateSelection.wdDoModifyView(InternalPageTemplateSelection.java:305)
        ... 50 more
    java.lang.NoSuchMethodError: com.sapportals.portal.pcd.gl.PcdSearchControls.addExplicitAttributeCheck(Lcom/sapportals/portal/pcd/gl/IPcdAttribute;)V
         at com.sap.portal.pcm.iviewserver.cache.TemplatesCacheSrv.getPCDCatalog(TemplatesCacheSrv.java:184)
         at com.sap.portal.pcm.iviewserver.cache.TemplatesCacheSrv.refresh(TemplatesCacheSrv.java:589)
         at com.sap.newpage.pagewizardpanes.PageTemplateSelection.initTemplates(PageTemplateSelection.java:229)
         at com.sap.newpage.pagewizardpanes.PageTemplateSelection.wdDoModifyView(PageTemplateSelection.java:172)
         at com.sap.newpage.pagewizardpanes.wdp.InternalPageTemplateSelection.wdDoModifyView(InternalPageTemplateSelection.java:305)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doModifyView(DelegatingView.java:78)
         at com.sap.tc.webdynpro.progmodel.view.View.modifyView(View.java:337)
    Thanks

  • When bookmarking a page, I can't get the complete list of bookmark folders to dropdown in order to select any folder in which to bookmark page. What do you set to get whole list of folders in Bookmarks to drop down?

    When bookmarking a page, I can't get the complete list of bookmark folders to drop down in order to select any folder in which to bookmark page. The 'Folder:' bar has 'Bookmarks Menu' showing. The arrow on the bar drops down 5 recent folders to which pages have been saved, but the pop down arrow to the right of the bar just opens to show the three categories and 'New Folder' button. What do you set to get whole list of folders in Bookmarks to drop down?

    To all, embarrassingly enough, I have discovered that I didn't know how to expand the three categories including 'Bookmarks Menu' in the 'Bookmark This Page' pop up interface. It was expanded by default on the initial Firefox opening and first page bookmark attempt. Next use it only showed categories. I clicked and double clicked the 'Bookmarks Menu' line, but failed to see the small, shaded triangle used to expand/collapse list. If it appears collapsed, just tap triangle at left of line to see all folders. It seems to open the same way after I do it for first time. Sorry for the inconvenience, and thanks for all the attempts to help.

  • List Additional iViews/Pages in EHP1.4 ESS/MSS

    We are planning to migrate our BP from ESS/MSS 600/603 to 633/630
    do we expect any changes in iviews/pages added in the content provided by sap for  ESS and MSS  BP?

    1450179 Note
    Check the note 1448100.
    ESS1.50 is WD ABAP
    Link to documentation:
    http://help.sap.com/erp2005_ehp_05/helpdata/en/25/340b05074341
    93adbfe3f8fc8896c7/frameset.htm
    MSS 1.51 is WD JAVA based still
    Link to documentation:
    http://help.sap.com/erp2005_ehp_05/helpdata/en/29/d78442056255
    51e10000000a1550b0/frameset.htm
    read here

  • Find the iViews, Pages and Folders assigned to Role

    Hi,
    Does any one has the idea about how to retrieve the worksets, pages and iviews assigned to a role.
    I found a piece of code that will retrieve the roles, worksets, pages and iviews from PCD.
    Here is the code, that is to retrieve the roles, worksets, pages and iviews from PCD
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, WDClientUser.getCurrentUser().getSAPUser());
    env.put(com.sap.portal.directory.Constants.REQUESTED_ASPECT, PcmConstants.ASPECT_ADMINISTRATION);
    InitialContext initialContext = null;
    DirContext dirCtx;
    initialContext = new InitialContext(env);
    dirCtx = (DirContext) initialContext.lookup("pcd:portal_content/");
    PcdSearchControls pcdSearchControls = new PcdSearchControls();
    pcdSearchControls.setReturningObjFlag(false);
    pcdSearchControls.setSearchScope(PcdSearchControls.SUBTREE_WITH_UNIT_ROOTS_SCOPE);
    dirCtx.addToEnvironment(Constants.APPLY_ASPECT_TO_CONTEXTS,Constants.APPLY_ASPECT_TO_CONTEXTS);
    // Gets the full path of the iViews from the PCD
    NamingEnumeration ne =      dirCtx.search("","(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.iview)",     pcdSearchControls);
    while (ne.hasMoreElements())
         IPcdSearchResult searchResult = (IPcdSearchResult) ne.nextElement();
         String location = "pcd:portal_content/" + searchResult.getName();
         wdComponentAPI.getMessageManager().reportSuccess("View ="+location);
    // Gets the full path of the pages from the PCD
    NamingEnumeration nePage = dirCtx.search("","(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.page)",pcdSearchControls);
    while (nePage.hasMoreElements())
         IPcdSearchResult searchResult = (IPcdSearchResult) nePage.nextElement();
         String location = "pcd:portal_content/" + searchResult.getName();
         wdComponentAPI.getMessageManager().reportSuccess("Page ="+location);
    // Gets the full path of the worksets from the PCD
    NamingEnumeration neWorkSet = dirCtx.search("","(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.workset)",pcdSearchControls);
    while (neWorkSet.hasMoreElements())
         IPcdSearchResult searchResult = (IPcdSearchResult) neWorkSet.nextElement();
         String location = "pcd:portal_content/" + searchResult.getName();
         wdComponentAPI.getMessageManager().reportSuccess("WorkSet ="+location);
    But my requirements is, if I have the role as "Sales Role", I want to find the iViews, Pages and worksets assinged to this role.
    Your help is really appreciated.
    Thanks in Advance,
    Chinna.

    Hi,
    All you need to do is to change the search root object:
    DirContext dirCtx;
    initialContext = new InitialContext(env);
    dirCtx = (DirContext) initialContext.lookup("pcd:portal_content/mypath/myrole");
    PcdSearchControls pcdSearchControls = new PcdSearchControls();
    pcdSearchControls.setReturningObjFlag(false);
    pcdSearchControls.setSearchScope(PcdSearchControls.SUBTREE_WITH_UNIT_ROOTS_SCOPE);
    dirCtx.addToEnvironment(Constants.APPLY_ASPECT_TO_CONTEXTS,Constants.APPLY_ASPECT_TO_CONTEXTS);
    all the rest stays the same.
    BTW - you can also retrieve all the objects using one search by putting
    (|(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.iview),(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.page),(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.workset))
    In the search query. Then you can get the type using PCM (portal content model) APIs.
    Hope this helps, Elisha

  • Cleaning up old iviews/pages/worksets

    Hello,
    We have a lot of old iviews/pages/worksets that we continue to leave in our existing portal content folder structure.  It makes it very difficult to find the current active iviews and know for sure you are working with the correct item.  What is the best practice for "archiving" this old portal content? I could just re-organize the folders in portal content so that the active items are together and the old items are in an archived folder area.  But should I do something to clean out this old stuff from our test and production systems?  Is it taking up space on our test and production system such that we should do something to have it removed?
    Thank you for your recommendations.
    Wendy Miller

    Hi Wendy
    I would not won't to answer your question with a definate answer but what you need is proper management of your portal content.
    to simplify
    1. Identify the iviews you are using and the iviews not of use.
    2. check if you have crated your own copy of the iview or its being used as delievered.
    3. once the list is ready start deleting the unused copied iviews.
    4. Its not a good idea to delete standard iviews however it doesn't mean that you can't.
    You need to sit with business and identify what you are currently using.
    Have company specific content repository and never use standard iviews without copying.
    good luck.
    - barin

  • How do you expand items in a list of items in jsp page

    I have this list of task items being retrieved from the data from master table:
         <%
         List taskList = (List) request.getAttribute("searchresult");
         if (searchresultList.size() != 0) { 
         for (Iterator itr=searchresultList.iterator(); itr.hasNext(); )
              TaskList  workList =
            (taskList )itr.next();
         %>     
         <tr>
              <td>
                     <a href="/taskItemDetail.do?itemId=<%=taskList.getId()%>" >
                    <%=taskkList.getId()%></a>
              </td>
              <td><%=taskList.getTask()%></td>
              <td><%=taskList.getDate()%></td>
         </tr>
    <%}%>
    now when I click on the above link I want to be able to get the detail for that item from
    the detail table and want to be able to show it inbetween the other master tables results.
    Kind of like when you expand an item in windows folders by clicking the plus sign (+).

    Basically you have two choices. You can include the whole, expanded list in your HTML, and use Javascript on the client side to fold and unfold sections, or you can maintain a list of folded items in your web app, and have transactions which alter this list and return an appropriate new page.
    Remember, JSPs are not interactive. All they do is generate HTML.
    Ideally, store the folding state on the page (e.g. encoded into a hidden field). You could put it in Session, but then if you have two browser windows open on the same browser windows can interfere with one another.

  • How to disable automatic loading of iView/Page in detailed navigation?

    Hello,
    We've upgraded our portal 7.0 from SP9 to SP12.
    I've noticed that SAP have added this change: Whenever a user is navigating between one role/tab to another in the top level navigation the first folder at the detailed navigation is automatically opened and the first content there is automatically loaded.
    I would like to disable this option - I've looked at the new properties that have been added to the detailed navigation iView between SP9 and SP12 and could only find these two: Display Parent of Hidden Node and Open Folder When Launched.
    These two are not solving this problem and they are disabled anyway.
    Any ideas...?
    Roy

    Roy,
    Role and Workset Hierarchy:
    Folders F1 and F2 (Roles) are defined as entry points and therefore appear on the first level of the top level navigation bar. What happen is when we click F1 (Role), the underlying folders F1a and F1b (Worksets) appear on the second level. On click on F1a the first entry F1a (Workset) of the second level is activated and its contents (iViews) are displayed in the detail navigation and the contents of the iView is displayed in the portal page of the content area.
    And same procedure happens with F2 role on the first level of the top level navigation bar. When we click on the F2 (Role) the underlying folders F2a and F2b (Worksets) appear on the second level of the top level navigation bar. On click on F2a the first entry F2a (Workset) of the second level is activated and its contents (iViews) are displayed in the detail navigation and the contents of the iView is displayed in the portal page of the content area.
    I think need to configure levels of TLN which includes top level navigation, detail navigation and content area and then need to define the entry points.
    Below are the links for configuring levels of TLN and right below it you will find link for define entry point:
    http://help.sap.com/saphelp_nw04/helpdata/en/5a/33befa45ca7f459b24d0c5d51d0749/frameset.htm
    Hope this time it helps you.
    Thanks
    Mona

Maybe you are looking for

  • IPhone 5s Default Text Size

    I have an iPhone 5s and am wondering if there is any way to increase the default text size.  By this, I mean everything from the font size of the text underneath apps, but especially for things like in the App Store.  The extremely small text size wi

  • OLAP 10g with Excel 2007 crashing problems

    We currently have a 10g database and 10g OLAP toolset. We have a user population split between Windows XP on Excel 2003 and Windows 7 on Excel 2007. We are distributing the Excel Add-In 10.1.2.3.0.2 version, but the Windows 7/Excel 2007 users are hav

  • How to handle Collections

    Hi all. I am exporting some methods as Web Services and find out that jax-rpc does not have collections serializers yet. So, because I don't want to write my owns, I thought that I should be able to change "on the fly" (on demand), lets say, an Array

  • Project system data source settings

    Hi All, I loaded all the data relating to Project Systems. The problem is any reports that are running on dates cube (0PS_C02) not returning any values. When i checked the SBIW (IMG on R/3) side, there are some application specific settings related t

  • WRT54GL loose connection - 3 different firmwares tried

    I bought a WRT54GL on recommendation but has been extremely disappointed. I have now tried 3 different firmwares, i.e. the latest versions of Linksys Original, Tomato and DD-WRT. After a successful start-up I normally can get an IP address, the route