Portal Theme in Webdynpro ABAP

Hi Experts,
     I want my portal theme to get applied to the webdynpro abap application.But WDA application is not adapting the portal theme.
This is the version of the theme's style sheet in portal=7.1.3.0.1;ur=7.1.3.0.1;7.1.3.0.0(Major version.minor version.SP.patch.generation run)
The version of Webdynpro abap theme is 7.11.3.2.0.
Portal Version is NetWeaver 7.0 Ehp1
and SAP Basis Version is 701 and level 5.
Is there  version incompatibility?
How can I solve this.
Thanks and Regards
M.Karthiheyan.

Hi M.Karthiheyan,
Please follow below steps to apply Portal theme in Webdynpro ABAP.
1. Go to transaction SE80 and navigate to the MIME Repository
2. Create a folder in the MIME repository that will contain all the custom theme files. Make sure the folder is created in following directory /SAP/PUBLIC/BC/UR/<theme_name>
3. Go to the Repository browser in SE80 and select u201CProgramsu201D from the drop down list.
4. Enter BSP_UPDATE_MIMEREPOS in the input field and hit Enter
5. Execute the program and enter the MIME repository path to the folder that is to contain the custom theme. Our custom theme is located in MIME path /SAP/PUBLIC/BC/UR/<Theme Name>
6. Execute the program and select root folder that contains all the custom theme files.  The custom theme can be directly pulled down from the file server on portal or can be exported from Portal Theme Editor and imported into Eclipse Theme Editor in order to generate the necessary css files. We only need the root folder that contains the actual css files and images. The upload process might take a while depending on the size.
7. Once the upload is complete, go back to the MIME Repository and check if the files were uploaded.
8. To specify a theme at the global level you can execute WebDynpro component WD_GLOBAL_SETTING. Maintain parameter u2018Stylesheet URIu2019 with the MIME Repository path of the custom theme (i.e. /SAP/PUBLIC/BC/UR/<custom_theme>).
9. Enter the path under "Stylesheet URI:" and select the check box which says "Force use of External Stylesheet".
Thanks.
Sushil S Aher

Similar Messages

  • Apply custom themes to WebDynpro ABAP application in Portal

    Hi,
    We have just upgraded the E-Recruitment to EHP4. We have two instances of ECC in which one acts as HR instance and the other one for E-Recruitmet. We have created custom themes for portal and need to apply the same for the WebDynpro ABAP applications for E-REcruitment. I have downloaded the theme and from portal and uploaded the same in MIME folder using SE80 transaction. I have also added the parameter sap-cssurl=/sap/public/themes/<my custom theme folder name>.
    Also tried giving the url in application parameter as
    SAP-EP-THEMEROOT=http://<hostname>/irj/portalapps/com.sap.portal.design.portaldesigndata/themes/portal/customer/<custom theme>
    Is there any other way to apply themes for WD ABAP applications. I dont want to customize the standard applications and just want to apply the themes.
    Any suggession on this is highly appreciated.
    Kind Regards,
    Vivek.

    Hi,
    to create theme for webdynpro abap application, use Eclipse Plugin.  Please remeber to check the version of theme file before using theme.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/10d5ef40-465e-2c10-9ca9-f548bfc3f236
    setup custom theme for webdynpro abap application.
    FEATURED EVENTS
    Regards
    Baby

  • Access Portal groups in webdynpro ABAP component

    Hi Experts,
    I have a requirement to access portal group in web dynpro ABAP application and based on whether user is assigned to particular group or not further processing for application will be done.
    Are there any UME API or some other API's available to access portal groups in Webdynpro ABAP component?
    Thanks in Advance..!!
    Regards,
    Shruti Shah

    This might be a question better suited to the portal forum. The WDA Portal APIs do not have such functionality.  You might be able to take the Java Portal APIs and wrap them in a web service so that they are callable from ABAP.

  • Can I get the portal rol thought webdynpro abap?

    I am working webdynpro abap and I need to get the rol portal.
    Can I get the portal rol thought webdynpro abap?
    Tkanks and best regards.
    Maria Elena

    I am working webdynpro abap and I need to get the rol portal.
    Can I get the portal rol thought webdynpro abap?
    Tkanks and best regards.
    Maria Elena

  • Calling a portal page from WebDynPro ABAp application

    Hi,
    I would like to call a portal page (any type) from a WebdynPro ABAP application. I have the PCD location of the page.
    Which call shall I make :
    Absolute Navigation
    Relative Navigation or
    OBN.
    Also, can anyone send me short code snippet on the following.
    The package SWDP test examples are not working.
    Best Regards
    Sid

    Hi Siddharth,
    Well, to start with you can go for ABSOLUTE NAVIGATION.
    Secondly, you can find the snippet here
      DATA LO_API_COMPONENT  TYPE REF TO IF_WD_COMPONENT.
      DATA LO_PORTAL_MANAGER TYPE REF TO IF_WD_PORTAL_INTEGRATION.
      DATA L_NAVIGATION_TARGET TYPE STRING.
      LO_API_COMPONENT = WD_COMP_CONTROLLER->WD_GET_API( ).
      LO_PORTAL_MANAGER = LO_API_COMPONENT->GET_PORTAL_MANAGER( ).
      MOVE 'pcd://portal_content/com.xxxx.zpof_f_XXXXportalcontent/com.xxxx.test/com.xxxx.folders.MaintenanceBusinessPackage/com.xxxx.test.mt.pages.Pages/com.xxxx.pages.MaintenanceTasks'
        to l_navigation_target.
      CALL METHOD lo_portal_manager->NAVIGATE_ABSOLUTE
        EXPORTING
          NAVIGATION_TARGET   = L_NAVIGATION_TARGET
    *      NAVIGATION_MODE     = IF_WD_PORTAL_INTEGRATION=>CO_SHOW_INPLACE
    *      WINDOW_FEATURES     =
    *      WINDOW_NAME         =
    *      HISTORY_MODE        = IF_WD_PORTAL_INTEGRATION=>CO_NO_DUPLICATES
    *      TARGET_TITLE        =
    *      CONTEXT_URL         =
    *      POST_PARAMETERS     = ABAP_FALSE
    *      USE_SAP_LAUNCHER    = ABAP_TRUE
    *      BUSINESS_PARAMETERS =
    *      LAUNCHER_PARAMETERS =
    Above it, the examples of SWDP will not work if you test them from SE80-ABAP WAS...I suggest you to create a WDA IView in Portal and test it in Portal itself.
    Hope this should solve your problem.
    Regards
    <i><b>Raja sekhar</b></i>

  • Portal Eventing in Webdynpro ABAP

    Hello,
    I am trying to implement Eventing in Webdynpro ABAP using 2 components ,Com1 serving as the source component and Com2 serving as Target. In Com1 I created a Inputfield and a button ,and then tied an action to the button and called the FIRE method of the IF_WD_PORTAL_INTEGRATION and sent the value in the Inputfield as the eventing parameter.
    In Com2, i subscribed to the event in the wddoinit() method and then defined an action for the same and got the parameter value sent in the Com1 and set the value in the context attribute in the Com2 which is bound to the inputfield.
    But still the value sent in Com1 is not displayed in the Com2 Inputfield.
    Any help would be highly appreciated.
    Thanks.

    >
    SAPEPDeveloper wrote:
    > Hello,
    >
    > I am trying to implement Eventing in Webdynpro ABAP using 2 components ,Com1 serving as the source component and Com2 serving as Target. In Com1 I created a Inputfield and a button ,and then tied an action to the button and called the FIRE method of the IF_WD_PORTAL_INTEGRATION and sent the value in the Inputfield as the eventing parameter.
    >
    > In Com2, i subscribed to the event in the wddoinit() method and then defined an action for the same and got the parameter value sent in the Com1 and set the value in the context attribute in the Com2 which is bound to the inputfield.
    >
    > But still the value sent in Com1 is not displayed in the Com2 Inputfield.
    >
    > Any help would be highly appreciated.
    >
    > Thanks.
    Hi I assume the following, please correct me if my understanding is not correct.
    1.First of all you try this in Portal.
    2.The moment you fire the event, the comp-2 view is active and subscribed to the portal event.
    If the above are true then tell me if the portal eventing enter into the action ?Have you checked in bebug that your action is triggerred on portal_event ?
    If portal event is action handler is called then if you have a importing parameter portal_event_parameter then your input value should be there.

  • Portal theme pageheader - WD Abap

    Hi,
    after upgrading our Portal from NW7.0 SP18 to NW7.01 SP6, our Custom Portal Theme shows a difference in the WD Abap Pageheader Control in some integrated WD Abap applications.
    The WD Abap Pageheader colour resp. underlying gif changed.
    Does anybody know how to influence this control via Portal theme editor.
    Thanx,
    Andreas Lorinser
    SAP Integration Services (Common Services)
    AXA Group Solutions
    Gärtnerstrasse 2, A1.124
    8400 Winterthur, Switzerland
    Tel.: +41 52 261 6717

    Hi,
    Within the iView of WD Abap application go to the property Support Portal Stylesheet select 'yes', if it is set to No it will take the theme defined in the ECC System.
    You can find the SAP Delivered themes in the Program WD_THEMES using the same you can upload your custom theme.
    The theme loaded using WD_THEMES can be found in SE80 under the path defined below:
    Mime Repository - SAP/PUBLIC/BC/UR/nw5/ themes/CUSTOM/
    And all the object including the headers are stored under the location mentioned above.
    And if you want to replace the standard theme with your custom theme please make the changes in the application below:
    WD_GLOBAL_SETTING
    Change the Application Parameter - Stylesheet URI: /SAP/PUBLIC/BC/UR/nw5/themes/CUSTOM/xxxx
    xxxx is the new custom theme you uploaded.
    Please ensure the WD Abap iView property Support Portal Stylesheet is set to 'No'.
    Hope this helps.
    Cheers-
    Pramod

  • Portal theme & web dynpro abap popup

    Hi all,
    I have a Web Dynpro ABAP application inside the SAP Portal, with WDTHEMEROOT & WDFORCEEXTERNALSTYLESHEET parameters typed.
    Everything is ok, any UI control that I used in the views is formatted according to the Portal Theme.
    But right now, I want to launch a popup for a message. I use methods from if_wd_window_manager, like create_popup_to_confirm or create_window, but the popups are showed in a standard style, not the Portal theme (like the rest of the applicaton).
    Anyone knows why??
    The same method (create_popup_to_confirm) is used in a WD Java application and gets the Portal theme.
    Thanks!
    Miguel Angel.

    Hi Shanti!
    Yes, I did it, but the problem still remains...
    The fact is that most of the elements get the portal theme (dropdownbyidx, labels, transparentcontainers, buttons...) but when I call a popup through if_wd_window_manager it appears like the standard look&feel (blue color, etc...). The popups doesn't get the portal theme.
    It happens only in WD ABAP, I mean, we have other applications in WD JAVA with the same portal theme & the same popup function, and it works...
    The only elements that doesn't get the portal them are the popups!
    Thaks!
    Miguel Angel.

  • WebDynpro ABAP Pop-Ups don't pick up the theme

    Hi everyone,
    I've developed a WebDynpro ABAP component that makes use of a Freely Programmed Input Help.
    This input help is shown in a pop-up which doesn't inherit the portal theme. Actually it inherits only parts of it and not the whole look and feel (for instance labels are rendered fine but page background is the standard blue colour).
    Unfortunately I cannot use the parameter:
    WDFORCEEXTERNALSTYLESHEET=X&sap-cssurl=
    because I have no control on the window (free style Input Value Help Windows are opened automatically by the framework and I parameters can't be added to the URL).
    Any ideas?
    Thank you.

    Hi,
    Refer Portal Theme in Webdynpro ABAP
    This might give you some idea.
    Thanks,
    Chandra

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

  • WebDynPro ABAP iView not picking Portal Theme stylesheet

    Hi,
    We are facing issues in integrating the WebDynPro ABAP application in Portal . The WebDynPro ABAP iView is not picking the portal theme. It is picking its actual color.
    We are in EP 6 SP 14.
    Can anyone let me know what can be the reasons.
    Best Regards
    Sid

    Hello,
    for the web dynpro for abap application you can create a application configuration. To create the configuration
    right click on the application -> create/Change Configuration -> and once you create the configuration, it will open up in browser and you can see 2 tabs structure and parameters
    In parameters tab you will find an option Force Use of External StyleSheet check the box and save the configuration. Once done with this process.
    Go to the iView Properties of the applications and set the application configuration name and it would take the Portal Theme.
    hope this helps.
    Pramod
    reward points if helpful.

  • Webdynpro ABAP content authorization object in SAP portal ?

    Hi
    We are on EHP 6.06 , we have an authorization problem in sap portal for the webdynpro abap content. our standart users got the error "page can not be found" for the services provided from webdynpro abap. when I assign the user to administrator group in sap portal the services working fine. I also checked the SAP ERP roles no problem is there.  I guess I should create a new portal role for them cause its the only difference between users who can reach or not but have no idea what to put in it in SAP portal. Any idea ?

    in portal content directory => double click on the Content provided by sap folder. Than you should have a dropdown somewhere where you can select "Authorizations". You should add the group endusers and check the checkbox.

  • Calling Portal iView from a WebdynPro ABAP application

    Hi ,
    I have a requirement where I need to call an iView in my portal from the Webdynpro application also existing in the portal.
    Can anyone provide me the method with source code( if possible ) to call an iView existing in the portal from the WebDynPro ABAP application.
    Best Regards
    Sid

    Hi Siddharth,
    Well, I think you can go for Portal Navigation concept.
    Please check the required source code in WDR_TEST_PORTAL_NAV Web Dynpro component. That will illustrate both Page based Navigation and Object based Navigation.
    Hope that should solve your problem.
    Regards
    <i><b>Raja Sekhar</b></i>

  • Webdynpros aren using the portal theme

    Hi
    I need advice
    I have web dynpros that are displayed in portal but aren't picking up the custom there i designed for them...
    My portal is EP7 SP14
    ans backednd system is ECC6 SP13
    Please help

    Hi Patrick,
    You need to do the following settings which has been provided in the page 9 and 10.
    Also if the property If sap.useWebDynproStylesheet = True &#1048774; Portal uses this theme in a WebDynpro iView. Otherwise it will take the default portal theme for WebDynpro iViews.
    For your reference
    1. Go to visual administrator and server>services> Configuration Adapter> WebDynpro>sap.com> tcwddispwda> Property Sheet Default.
    2.Open it in edit mode.
    3.Select the property sap.theme.default and set the following custom value.
    4. /irj/portalapps/com.sap.portal.design.urdesigndata/themes/portal/<THEMEID>
    5.when we restart the server and deploy our WebDynpro applications the new custom theme will be applied.
    Thanks
    Pankaj

  • Portal themes for SAP GUI for HTML

    Dear SDNs,
    We have a portal theme designed with good and look and feel, but most of our applications are SAP Transaction iViews for HTML GUI. can we apply the same theme to HTML GUI applications? or at least can we change the background color and windows color of HTML GUI applications?
    I have tried with ITS Theme generator, but it is just showing the tabs and others as image we need to change. Please provide inputs if any of you having the related information.
    Can we also change the GUI for WIndows colors for multiple users? i know to change for one user's local layout, but how can we make one cusotm color for all the users.
    Your inputs will be appreciated,
    Thanks in advance,
    Lakshmi.

    Hi
    I think we cannot apply Portal themes for SAP Transaction Iviews. However, there is a property called Stylesheet for each iview. Play with that property and let me know. The success rate is 50:50.
    But I would recommend to migrate them to webdynpro ABAP. Do not still recide in 1995. Come and enjoy the 2010 Web2.0 look and feel and enhanced usability of Webdynpro.
    Regards,
    Chiranjeevi.

Maybe you are looking for

  • MSI 865PE NEO2-V showing wrong RAM timings

    Hi I have a MSI 865PE NEO2-V motherboard with Corsair TWINX2048-3200C2 DDR-DIMM 2048MB Kit w/two matched CMX1024-3200C2 DIMMs now and try to put the timings of the RAM to 2-3-3-6 in the bios. According to http://www.corsairmemory.com/corsair...h_resu

  • Make a Cd of photos in an album on iphoto

    I Want a CD of an album in iPhoto. How do I do it?

  • DBMS bug in Oracle 10g Relese 2

    It seems some bug appeared in Oracle 10g Release 2. We have a single installation of that release on a Linux system. Therefore we don't know if the bug also exists on Windows or Mac platforms. It will be appreciated if someone can give some advice or

  • SQL Connection Failed for SCCM 2012 R2 (Unable to load user-specified certificate)

    We've recently completed an upgrade from SCCM 2012 SP1 to 2012 R2 and have been running in the new environment for about a week. As of this morning, The consoles failed to connect to the CAS' and one of the Primary Site's database. The issue was reso

  • Gray Rectangular Box in Emails

    Yesterday a gray, rectangular box appeared in my emails.  It doesn't move - it's smack in the middle.  I can read through the box, but it's extremely annoying.  Did I inadvertently do something to my settings (I can't find anything there...)?