How to get portal themes???

Hello All,
where can i get the portal theme folder ie stylesheet folder.  i want to customize the WD themes as per portal theme.
please let me know.
Regards,
Chandra

Hi,
They'll be stored at <drive>:usrsap<SID>JC00j2eeclusterserver0appssap.comirjservlet_jspirj
ootportalappscom.sap.portal.design.portaldesigndata     hemesportal
Also check this:Portal Theme Classes
Greetings,
Praveen Gudapati
[Points are welcome for helpful answers]

Similar Messages

  • How to reference Portal Theme in Web Dynpro Application?

    Hi All,
    I have implemented a WDA that is being embedded into the Portal. My customer has designed his own Portal Theme.
    However, the WDAs embedded into the Portal do not appear in the style of the Portal Theme.
    Now, my question is which means are required in order to have the WDAs use the same Theme as the Portal?
    Can I provide WDA parameter WDTHEMEROOT with the URI of the Portal Theme? If yes, how do I get the URI of the Portal Theme?
    I guess parameter WDFORCEEXTERNALSTYLESHEET also is relevant in this matter... Please let me know how I get this working!
    THANKS
    Johannes

    Hi Johan,
    Please go through this links..
    Portal Theme in Webdynpro ABAP
    Re: Deriving Portal Theme
    also check this..
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/7015b1f9-535c-2910-c8b7-e681fe75aaf8?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDABAP/StylesheetforWDAwithoutintegratinginSAP+Portal
    Cheers
    Kris.

  • How to get Portal User Context  in Web Dynpro application

    I have successfully integrate a web dynpro app into SAP Netweaver Portal.
    Within my web dynpro app, how can I get portal user context information such as first name, last name, job title or some newly created ume attibutes.
    Is there any programmatical approach to get portal user context in my web dynpro. I not sure whether I can use the following codes in web dynpro?
    IUserContext userContext = request.getUser();
    String firstName = userContext.getFirstName();
    String lastName = userContext.getLastName();
    If yes, can someone point me the name of the jar file I have to import.
    Note : The SAP Netweaver installation that runs my web dynpro app is same with the SAP Portal.

    Hi ,
    you can use the below code to get User details and  add com.sap.security_2.0.0 > lib > com.sap.security.api.jar
    try
              IWDClientUser clientUser = WDClientUser.getCurrentUser();
    String firstName = clientUser.getFirstName();
    String lastname = clientUser.getLastName();
    catch (WDUMException e) {
                wdComponentAPI.getMessageManager().reportException("Error Retrieving User"+e.toString(),true);
    Regards,
    Sunitha Hari

  • How to get Portal Login User and Its Related BP in CRM?

    Hi,
    An ABAP Webdynpro program is called in CRM from Portal user by a portal link. How to get the user ID and its related BP in CRM? Thanks!
    The portal is integrated with ECC, and all users and BPs are maintained in ECC then replicated to CRM.
    Best regards,
    Hao

    Hi,
    Try the below code
    IUserFactory userfact=UMFactory.getUserFactory();
    IUser user=userfact.getUserByUniqueName(request.getUser().getUserId());
    String usrid=user.getUniqueName();
    And also you can get the groups assigned to user by using the below code
    Iterator groups = user.getParentGroups(true);
    while (groups.hasNext()) {
         String groupstr = (String) groups.next();
         IGroup g = UMFactory.getGroupFactory().getGroup(groupstr);
         response.write("Group name "g.getUniqueName()"<br>");
    Regards
    Suresh

  • How to get Old Themes into iDVD 7.1.2?

    I'm running iDVD 7.1.2 on an iMac running Mavericks 10.9.1.  When I open an iDVD project I have access to theme for iDVD 7 and iDVD 6.  When try to select an Old Theme a window opens inviting me to install additional themes by choosing Download Now.
    However, when I choose OK to download now the App Store opens to the Update screen and tells me there are no updates available.  What gives?  How are the old themes to be installed?

    Did you have all of the themes previously on the iMac?  Look in the Home/LIbrary/Applicatiion Support/iWeb folder or in the HD/Library/Application Support/iWeb folder to see if all the themes are there.
    Did your Mac or a previous Mac come with install disks and was iDVD preinstalled on it?  If so and you still have the disks you can use those disks  to do a custom install of iDVD's themes,  If you have trouble getting the disks to work you can always use  Pacifist to extract and install just the themes. 
    Otherwise you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailier like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago. 
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

  • How to set Portal Theme for WDA iView different from user's Theme

    Hi Experts!
    I have dual-stack system: ABAP server + Java. I have WDA application in ABAP server and I deployed it to NW Portal via iView (using template).
    There are two themes customized:
    1:  Standard - to be used for all iviews except WDA iviews. This theme is set as default for user.
    2.: WDA theme - to be used for some WDA iviews IRRESPECTIVELY what them is set in personalization settings of the user.
    So my question is:
    Can I somehow set the Portal Theme to be used for specific iView no matter what Theme user has selected in his personalization?
    Or if its not possible, can I set some specific Theme for WDA application?
    So taks is to overcome settings for default portal theme for user and replace it with different theme. Is this possible?
    Thanks in advance.

    Are you using an LDAP as your UME, or are the user records from from R/3 ?
    Apparently  (Ive never done it) you used to be able to force a default language by editing this file (back in the EP5 days):
    <J2EE root>\WEB-INF\portal\system\properties\prtDefault.properties
    Look at the following lines :
    This is the default language to be used when none is specified
    request.defaultlanguage=en
    request.defaultcountry=us
    If you prefer to have the same language for all users no matter their user locale, change the lines to this :
    This is the default language to be used when none is specified
    request.mandatorylanguage=en
    request.mandatorycountry=us
    I hope this works out for you

  • How to get serverid(theme) in cart.aspx?

    Hi
    how to get serverid in cart.aspx page its very urgent requirement, if there is any api function to call serverid in a
    page.
    ITS VERY URGENT PLS GUIDE ME
    Regards
    Kannan.D

    Hi Kannan,
    In this case, you might want to use a webflow, this will allow you to avoid having to fix it when you upgrade.
    Find the webflow in the admin->layout section.  You will need to set up the "Checkout" webflow.  There is a set of sample data on the cd to get you started.
    After the "addtocart" you will need to redirect to a page you create.  This page will do only one thing: redirect to the shipping.aspx?serverid=mytheme.
    Hopefully you can make sense of this.  It is really quite simple, but the webflow is confusing.

  • How to get Portal user from a standalone Java application

    Hi,
    I have a standalone Java application from where I need to fetch the Portal User Information like userid and email id.
    I am using the below line of code
    iUser = UMFactory.getUserFactory().getUserByLogonID("e017939");
    I have included the jar file com.sap.security.api , But it was giving me the below exception
    java.lang.NoClassDefFoundError: com/sap/tc/logging/Location
         at com.sap.security.api.UMFactory.<clinit>(UMFactory.java:55)
         at com.am.wcas.java.mailscheduler.kmaccess.FetchDataFromKM.getiUser(FetchDataFromKM.java:29)
         at com.am.ScheduleEmails.main(ScheduleEmails.java:89)
    and I am getting a pop Up message from the Java Virtual Machine Launcher, saying a Fatal Exception has occured and the Program will exit.
    Then I went throught he SDN threads and they asked me to include the
    logging.jar and com.sap.security.perm.api .
    I Included them, then also, it is giving me Exception
    java.lang.NoClassDefFoundError: com/sap/engine/lib/logging/LoggingHelper
         at com.sap.security.api.UMFactory.<clinit>(UMFactory.java:56)
         at com.am.FetchKMData.main(FetchKMData.java:30)
    Exception in thread "main"
    and I am getting a pop Up message from the Java Virtual Machine Launcher, saying a Fatal Exception has occured and the Program will exit.
    Kindly let me know if it is possible to access the User info using UMFactory in a standalone Java application. If yes kindly let me know where i am going wrong.
    Regards,
    Shilpa B.V

    Hi Shilpa,
    1. Check that you have added com.sap.security.api within the Your Project>Libraries folder (under navigation tab) and also added jars in the build path of the Your Project under project>properties>Build Path.
    2. In case you have a DC instead of Web Dynpro Project then you have to add the com.sap.security.api under Your DC>Used DCs and have compile time and runtime dependency added.
    Here java.lang.NoClassDefFoundError is caused basically due to only build time dependency added and reference to the jar missing at runtime. Rest the code to retrieve the current user id using UME API and getUserByLogOnID("....") method with/without portal environment would not be an issue at all.
    Regards,
    Tushar SInha

  • How to get Portal Login user ID and Groups using UME API in JSPDynpages

    Hi Experts,
    How can I get the portal logged user ID and bsed on that ID need to get his assigend groups.
    For this Initially I need to get the logged user ID using UME API.
    Can you drop the code to write and display using JSP Dynpages?
    Thanks
    Venkat.

    Hi,
    Try the below code
    IUserFactory userfact=UMFactory.getUserFactory();
    IUser user=userfact.getUserByUniqueName(request.getUser().getUserId());
    String usrid=user.getUniqueName();
    And also you can get the groups assigned to user by using the below code
    Iterator groups = user.getParentGroups(true);
    while (groups.hasNext()) {
         String groupstr = (String) groups.next();
         IGroup g = UMFactory.getGroupFactory().getGroup(groupstr);
         response.write("Group name "g.getUniqueName()"<br>");
    Regards
    Suresh

  • How to get Portal Session Time out values of CRM system

    Hi,
    I had a requirements to pass the Portal session Time out value to the External Configurator. How can I get that value. Is there any Function Module to get this value.
    If you go to SMICM and select services, we see HTTP details. I need to get the Time out value what its showing there. How can I get that value. Is there any FM to get that value or Is there any existing code.
    Please let me know if you need any further information.
    Thanks.

    Hi
    The session time out value for CRM WEBUI is controled by parameter RDISP/PLUGIN_AUTO_LOGOUT.
    Its value is got by BSP.
    Please check in SE80 BSP application CRMCMP_IC_FRAME view hideenview.htm.
    If you want to know the session time out value for portal, I am afraid that you need to raise questions in EP's forum.
    Best regards,
    Maggie

  • How to get Portal Session Time out values.

    Hi,
    I had a requirements to pass the Portal session Time out value to the External Configurator. How can I get that value. Is there any Function Module to get this value.

    Hi
    The session time out value for CRM WEBUI is controled by parameter RDISP/PLUGIN_AUTO_LOGOUT.
    Its value is got by BSP.
    Please check in SE80 BSP application CRMCMP_IC_FRAME view hideenview.htm.
    If you want to know the session time out value for portal, I am afraid that you need to raise questions in EP's forum.
    Best regards,
    Maggie

  • How to get a  Theme project in the File'Menu'

    Hi
    1. I was trying to follow the instructions ' how to edit themes' for a tutorial
    2. I have my NWDS in Sp13 and I downloaded the theme  editor and the theme folder for SP13.
    3. Copied the com.sap.ur* folders to the plugin folder under the sap/frontend / ..plugins folder.
    4. In NWDS, I tried to create a new theme project using the project wizard,, and donot see the UR Themes project  option to create...
    where am I missing ? thanks in advance...

    Dear satyanarayana,
    You have to copy it in eclipse\plugins folder .
    I think you have copied it in SAP GUI frontend's plugin folder.
    Copy them to the eclipse plugin folder and restart the NDS.
    It will be available in the projects list.
    Regards
    Bharathwaj

  • How to transport portal Themes ?

    All,
    I have 3 themes in EP6.0 and would like to transport the same to a newly installed 2004s box. Any help would be appreciated.
    Thank you.
    SAP Partner

    Hi,
      I think u can transport the themes as .epa file like other portal content objects.
    Choose System Administration -> Transport. Choose Export. Now under portal content, create a folder and then right click that folder and select New -> Transport Package. After creation of transport package, keep the package open and right click the theme one by one and choose 'Add object  to Transport Package'. Then click Export. After export is over, u can select 'Download Export file' and save the epa file in the client machine.
    Now login to the other portal and choose System Administration -> Transport. Choose Import. Select 'Client' radio button. Browse and choose the destination where u have saved ur epa file and import.
    All the themes will be imported.
    Regards,
    Harini S

  • How to get gtk themes working in Xmonad

    hey everyone
    I am trying out xmonad and i was wondering how do I get firefox menus and other application's menus to look good in xmonad ?
    thanks

    kunev wrote:
    If you're only using a window manager and not a full DE, just make sure you have the proper settings written in your ~/.gtkrc-2.0 and $XDG_CONFIG_HOME/gtk-3.0/settings.ini
    See here: https://wiki.archlinux.org/index.php/GTK%2B#GTK.2B_2.x
    or you could use lxappearance or something similar, to give you previews and what not.

  • How to get Portal page data in PL/SQL

    Hi,
    I have a oracle portal and i created a portlet in it. In its Pl/sql space i am writing a wrapper which calls a procedure in the database.
    I have dymaically created a html page through pl/sql.
    I am able to display the data in the form but my requriement is i have a text box in the form and i need to reteive that value in my Pl/SQL procedure to perform further operations.
    My problem is how do i retrieve a value present in the form in my Pl/Sql procedure
    Let me know for any concerns.
    Thanks
    Shubhadeep

    Perhaps, this is not a PL/SQL problem. This is your Oracle Portlet problem. You should see it's manual about the way to pass the data inside a procedure through form - i guess.
    Regards.
    Satyaki De.

Maybe you are looking for

  • Installation Issue with Adobe Reader 11.0.03.

    Hello, I am having issue getting Adobe Reader XI to install onto a machine and needing help resolving it. The machine itself meet and exceed the requirement for the installation. There was a previous version of it installed, but was remove via Group

  • Missing focus indicator for selectOneRadio

    Hello, I am using JDeveloper 11.1.1.6.0. I am working on a project that is required to meet accessibility standards and have run across an issue with the selectOneRadio. When there is no selection made in the radio (either by default or manual select

  • How much $$$ to fix a dead iPod?

    i accidentally dropped my iPod in water, i thought it was ok though because my sister dropped hers and its still working! but now my iPod is amost legally dead! when i turn it on the little on off switch turns green as usual but no other lights. when

  • How can i unlock my restrictions, i forgot my passcode?

    how can i unlock my restrictions without lossing my anything? i forgot my passcode.

  • Libc.so.6: version `GLIBC_2.16' not found

    Hey everyone, I haven't used my Arch system for some months now, thus I had to go through the updating marathon with all these issues. I've read threads on the forums, guides and asked google for help. I think that I'm close to the finish line. But n