Stuck while using Light Framework feature of Portal

Hi All,
We are using the light framework feature of portal, having one level navigation layer, provided as tabs in the Top Level. The corresponding pages,iviews are being displayed in the detailed navigation layer.So far Further, navigation to iviews or pages present in different workset/page is being done using the Hashed short URL of the perticular iview.
Following are the things where we are stuck,
1)We have two webdynpro iviews available under different tabs.We can navigate between them but not able to pass any parameters. This is where we are stuck. We tried using passing it along with the short uRL, setting in cookie, nothing seems to be working...Also we We do not want to use EPCM navigation, so that we can avoid navigation using pcd location.
2) For some of the tabs in the first level, there is no detailed navigation i mean no inner pages/iviews. When we click on it, the page seems to be getting shifted towards right with blank space on the left side. This blank space seems to be occupied by the detailed navigation with no contents in it.the iviews are aligned properly if DTN has some links in it.
Please help, its bit urgent.

Hi Sujesh,
Thanks a lot for your answers.
1) Yah i know that params sharing in webdynpro is done thru context variables..What i want is to pass params from one WD iview to another WD iview embedded in the portal in differen worksets. SO in this case, context sharing can not be used, if i am correct. So for that we tried setting values in cookies/sessions, but of no help.Whats the correct ways to do it. Please help
2) For that tab, there is no further navigation, only one page,added as the top entry with some ivews embedded in it. When we open the tab, blank space of DTN size comes in the left.
Please help us..
Regards,

Similar Messages

  • Add to favourites disabled when using light framework page

    Hi,
    When using the light framework page our "add to favourites" link is disabled. If we instead use the normal framework page add to favourites in the dropdown menu works. Does anyone have an idea why this could be?
    Regards
    Mattias

    Hi,
    The reason why I decide to use Light Framework, itu2019s because Iu2019m creating an EFP, and Iu2019m using the WPC to publish the content (articles, news, and link list), using the standard Web Forms.
    The problem is, after adding to a WPC Page something so simple like an article (using the Web Form Article), no Portal iView, HTMLB or other stuff included, the preview of the WPC Page using the Default Framework Page is ok, but when using the Light Framework Page, the text in the article doesnu2019t have the correct font-family. It looks like there are some styles missing in the Light Framework Page, that WPC content is expecting.
    Thanks and Regards,
    John

  • No style applied when using light framework and WPC content

    Hi,
    Iu2019m facing a strange behavior, and Iu2019m almost pretty sure that is an error in the WPC, but I decided to post it here, maybe someone can confirm it. When using both, Light Framework and WPC, for some reason, the text inserted in the WPC containers, using the Web Forms, doesnu2019t appear correctly (no style/font applied), but viewing the same information, using the Default Framework Page, it works correctly.
    Any hint?
    Thanks and Regards,
    John

    Hi,
    The reason why I decide to use Light Framework, itu2019s because Iu2019m creating an EFP, and Iu2019m using the WPC to publish the content (articles, news, and link list), using the standard Web Forms.
    The problem is, after adding to a WPC Page something so simple like an article (using the Web Form Article), no Portal iView, HTMLB or other stuff included, the preview of the WPC Page using the Default Framework Page is ok, but when using the Light Framework Page, the text in the article doesnu2019t have the correct font-family. It looks like there are some styles missing in the Light Framework Page, that WPC content is expecting.
    Thanks and Regards,
    John

  • Error while using Recruitment application in ESS Portal

    Hi Experts,
    We are facing  two   issues when we are using recruitment application.
    By this applicaton,the concerned can raise a requirement to the recruitment dept.
    Some users are uanble to use the application.
    After filling the data,some users are getting the error as "Unable to send E mail notification  and can not complete action.This activity could not be read.
    And another error  of the application is after completion of enrtering details some users are getting the error message as " HR Requisition request  successfully created with ID XXXXXXXXXX .Request is assigned to NULL.
    Kindly help me out for the resolution of the issues.
    Regards,
    Sairam.

    Hi Andy,
    Thanks for the reply.
    We are not using e-recruitment.
    We have developed a portal application called Recruitment application.
    By this user can raise the requirements in his deprtament and time to be filled.
    E mails were already  there in in communications infotype.
    Please advice me to resolve the problem.
    Regards,
    sairam.

  • Application error while using security.policy feature

    I am learning Java by reading http://java.sun.com/docs/books/tutorial/
    While studying the "Security/Quick Tour of Controlling Applications" part I compile GetProps.java example:
    import java.lang.*;
    import java.security.*;
    class GetProps {
    public static void main(String[] args) {
    String s;
    try {
    System.out.println("About to get os.name property value");
    s = System.getProperty("os.name", "not specified");
    System.out.println(" The name of your operating system is: " + s);
    System.out.println("About to get java.version property value");
    s = System.getProperty("java.version", "not specified");
    System.out.println(" The version of the JVM you are running is: " + s);
    System.out.println("About to get user.home property value");
    s = System.getProperty("user.home", "not specified");
    System.out.println(" Your user home directory is: " + s);
    System.out.println("About to get java.home property value");
    s = System.getProperty("java.home", "not specified");
    System.out.println(" Your JRE installation directory is: " + s);
    } catch (Exception e) {
    System.err.println("Caught exception " + e.toString());
    When I run it without security manger it prints all the property as it has to:
    E:\Test>java -jar GetProps.jar
    About to get os.name property value
    The name of your operating system is: Windows XP
    About to get java.version property value
    The version of the JVM you are running is: 1.6.0_03
    About to get user.home property value
    Your user home directory is: C:\Documents and Settings\mikhail
    About to get java.home property value
    Your JRE installation directory is: C:\Program Files\Java\jdk1.6.0_03\jre
    When I run it with security manager it prints the first two properties only and throws AccessControlException on user.home property as it has to either:
    E:\Test>java -Djava.security.manager -jar GetProps.jar
    About to get os.name property value
    The name of your operating system is: Windows XP
    About to get java.version property value
    The version of the JVM you are running is: 1.6.0_03
    About to get user.home property value
    Caught exception java.security.AccessControlException: access denied (java.util.PropertyPermission user.home read)
    But when I run it with security manager and security policy allowing access to user.home and java.home properties it nevertheless throws AccessControlException, in spite of that mypolicy file grants access to these properties:
    E:\Test>java -Djava.security.manager -Djava.security.policy=mypolicy -jar GetProps.jar
    About to get os.name property value
    The name of your operating system is: Windows XP
    About to get java.version property value
    The version of the JVM you are running is: 1.6.0_03
    About to get user.home property value
    Caught exception java.security.AccessControlException: access denied (java.util.PropertyPermission user.home read)
    Here is content of mypolicy file which I created by using policytool utility:
    grant codeBase "file:/E:/Test/" {
    permission java.util.PropertyPermission "java.home", "read";
    permission java.util.PropertyPermission "user.home", "read";
    My system:
    MS WindowsXP Professional, Servis Pack 2
    Sun SE JDK 1.6.0_03
    What am I doing wrong?
    Thank you, Mikhail.

    The last two days have been frustrating. The error above also appeared when I was trying to view one of the relationships in one of my entities.
    What seems to have been happening is Designer showed a relationship existing after it had been deleted. This seems to be a bug in Designer. These rouge links can be deleted in the RON (although if you try to look at their details the RON will crash with the error in original query). After this cleanup everything worked like clockwork.
    Hannah Fraser

  • Error while using parsley framework

    Hi,
      i am getting below error whilr running flex application in parsley framework .
    Error Details:
    param count mismatch,birt params=2 optional=2 mx.modules::IModuleInfo/mx.modules:IModuleInfo::load()
    Please help me
    param count mismatch
    Illegal override of ModuleInfoProxy in FlexModuleSupport.as$348.ModuleInfoProxy.

    I can see you have a problem, but It’s not clear if this is due to Parsley, Flex or LCDS. Could you provide more details to help narrow down this problem?
    Thanks,
    Anil

  • Problem with Absolute Navigation (External Window) and Light Framework Page

    Hi All,
    We are using Light Framework page for the portal devolopment. We have an application including two webdynpro iviews where absolute navigation is used to traverse from first iview to second iview (When user clicks a button on first iview). We are showing the second iview in external window (SHOW_EXTERNAL). When ever i clicks the button to traverse to second iview, i am getting an exception.
    When we are showing it in same window (SHOW_INPLACE), it is working fine. But the iview is appeared in half of the page with scrollbars. It is working fine with default framework page (with both options SHOW_INPLACE and SHOW_EXTERNAL) and dispalyed in original size as mentioned in iview properties.
    Could you please suggest us whether there is any work around for this.
    Thanks,
    Sudheer

    Hi Kathiresan
    I couldn't see the address bar of the window (In which second iview is getting displayed). But i can observe no parameters that i passed from first iview is visible in the view source of the second iview (When SHOW_EXTERNAL is used in absolute navigation). I could see all the parameters in the view source (when SHOW_INPLACE is used for absolute navigation). But i am using the same url for both the options (for SHOW_INPLACE and SHOW_EXTERNAL).
    I doubt about the url being passed when SHOW_EXTERNAL option is used. But when we checked in debug, The correct url is being triggered (Atleast from first iview). Is there any way that could display the second window with address bar. What is making difference  between SHOW_INPLACE and SHOW_EXTERNAL with absolute navigation and light framework page.
    Could someone please suggest.
    Thanks,
    Sudheer.

  • Problem in EPCM in Light Framework

    Hi All,
    We are using 2004s EP 7.0.
    We are implementing external facing portal using light framework for anonymous users. All the portal objects have anonymous authorization.
    We have an iView in framework with code:
    <a href ="javascript:open("ROLES://<pcd path>");">LINK</a>
    And in the script tags:
    <script language = "Javascript">
    EPCM.doNavigate(pageID);
    </script>
    The iview corresponding to the pcd path is assigned to a role. But when we click on LINK it opens the iview but throws an error in Top Level and DetailLevel navigation  Iview. But the same thing works fine in default framework.
    Thanks,
    Sarang

    Hi Sarang,
    Light Framework does not support EPCF. Light framework has some limitations and this is one of them. For more details about the limitations of LF, see the SAP note number: <b>853509</b>. You can also refer the documentation at help.sap.com
    Hope this helps you.
    Regards
    Ranjith

  • Web_article object of WPC within Light framework for an anonymous user

    When we place web_article object within a container of a page created in Web Page Composer. It causes error message:  Cannot render container : com.sap.engine.lib.xml.util.NestedException: Function with name 'wpc:getString' not found in context library.
    We use Light Framework.

    Vladimir,
    Please refer to this Note 1133788 - Com.sap.engine.lib.xml.util.NestedException in WPC
    Hope this helps.
    Cheers,
    Sandeep Tudumu

  • Can I hook my iphone 5 to a touchscreen monitor and use the touchscreen feature of the monitor. Would I have to use the lighting to hdmi?

    Can I hook my iphone 5 to a touchscreen monitor and use the touchscreen feature of the monitor. Would I have to use the lighting to hdmi?

    The connection of the phone to the monitor would allow you to see, but does not have the ability to translate the touch on the monitor to the phone through that cable.

  • R/3 Secure Store and Forward, while using SAP portal for SSO

    Hello,
    We are using SAP Portal UME for authentication, then SAP SSO tickets to log into the SAP R/3 system.  Initially we decided that the end users would have a "disabled password" so that they must use the portal authentication mechanism to get into R/3 and therefore could not log in straight to R/3 system via SAP GUI.
    All was working fine until during integration testing when someone tried to use the electronic signature function on a QM t-code (QA11) that prompted for an e-sig.  Since local passwords have been disabled, the user could not execute the e-sig. 
    We do not want to activate local R/3 passwords for the users.  Can anyone give some advice or a best practice regarding how to set up electronic sigs in R/3 while using an external authentication source? FYI, we are also trying to avoid using the LDAP connector from R/3 to our LDAP.
    Please comment for any clarity needed or comments,
    Thanks in advance,
    Ryan

    Good point - but I'm afraid of not knowning an instant answer.
    Well, theoretically one could make use of the fact that an NWAS ABAP can act as http client (submitting http requests to the NWAS Java to validate logon data); but that's just a rough idea.
    Regards, Wolfgang

  • The camera app on my iphone 4S is crashing and while using the rear video cam black wavy lines are appearing but only when exposed to flurescent light in addition to the front cam... can any one please tell me what is happening???

    the camera app on my iphone 4S is crashing and while using the rear video cam black wavy lines are appearing but only when exposed to flurescent light in addition to the front cam... can any one please tell me what is happening???

    Try resetting your phone by holding down the home and off button until the apple symbol comes up. Then if still doing, restore your phone in itunes from your backup.

  • New feature: pressing alt while using the anchor point tool

    Hello,
    New feature doesn't work at my side ==> pressing alt while using the anchor point tool would allow to pair the handles again while dragging a handle. But if i press alt or if i do not press it, it does not change the working of my anchor point tool or handles. When i press alt i see the little sign apearing next to my cursor and that's all. Someone an idea what could be the problem?
    Thank you for your help.
    Tommy

    thank you!!!!! I clicked and dragged before..didn't understood apparently the function of the new feature for 100% ;-)

  • Portal Light Framework

    Hi,
    I am using the light framework page, but currently on the right panel getting where you hover on this side of the page a "Content Area" label appear.
    This appears to be generated in a <span> tag.  Anyone know how this can be removed or changed??
    Is this part of the framework and the tag
    <workAreaContainer>
    Can this be changed?
    Thanks

    Created a normal iView and selected WDP template.

  • How is the processing speed while using struts,spring,and JSF framework

    Hi friends,
    As per earlier technology like Servlets,I mean that there would have much more performance speed than other new technologies like JSP,struts,spring and hibernate framework.Because,in new technologies,flow of processings implicitly via MVC2 basis will probably much more time than older one.
    Total goal is only for attaining MVC2 or any other purpose?
    Please clarify my doubt?
    With Regards,
    Stalin.G

    Home grown applications have a problem in that as more and more features are added, it becomes increasingly impossible to maintain the application and enhance it. This is especially true when the original programmers leave the company. A framework provides a standard design approach that other programmers can hopefully more easily pick up.
    A lot of work has gone into creating these frameworks and they have been used in web sites that have millions of hits from users per day. They have high preformance. Of course, programmers can still write bad code in them that slows down the system. I believe anyone using these frameworks should study them well before using them (such as reading books on them).

Maybe you are looking for

  • How to: have multiple users on reader and pro fill out same form

    I have a marking form that 5 users will use to mark to questions each and fill in.  Having an issue with the reader users that when they same they create a new file and can't save to the one form.  All the pro users can share the form fill in their t

  • HELP Data Recovery

    Hello everyone Please just tell me i am not Screwed, My 14" ibook G4 was acting up and so I ran the cd that came with it and erased my entire drive INCLUDING my 2005 TAXES that I made with turbo-tax is there any way I can get it back? If you can help

  • How to convert old Macwrite files in 10.6.8

    Years ago, users published suggestions on the Apple forums for converting MacWrite, MacWrite II and MacWrite Pro files to RTF or Word formats, but none of these suggestions seem to work anymore.  MacLinkPlus is no longer supported by its developer, a

  • Integrate Business Activity Monitoring (BAM) with Oracle Forms Recognition

    Hi All, As per project requirement, I have to integrate Business Activity Monitoring (BAM) with Oracle Forms Recognition. Does anyone have an idea how can this be achievable from OFR Verifier? Thanks, Moumi.

  • Oracle 10g XE crashes often

    Hello all, I am getting these messeges in the event log of windows 2003 server when oracle crashes. We googled around but, couldn't find solution.. Event Type: Information Event Source: Oracle.xe Event Category: None Event ID: 0 Date: 10/03/2008 Time