Custome theme to custom applications and BSP pages

Hi all,
I would like to know how I can apply the same custom theme thats coming up with the standard applications.. to be applied to the custom ABAP WDP applications.
And also want to apply the same theme to the EREC and LSO BSP pages.
We have already created our own theme and applied that, we are able to see the modified theme in our standard ESS applications. But its not reflecting the same to the custome ABAP WDP applications.
Do let me know where i am going wrong ...
Thanks,
NR

NR,
If you are displaying WDA from portal you need to follow the below mentioned steps to assign portal theme to WDA
1.for assigning custom theme to the WDA pages you need to create configuration
2.go to the webdynpro component-right click on the webdynpro application for that componet and create/change configuration.
3.give some name and click on create
4.go to properties tab and select external portal style sheet and save it
5.go to iview properties for that WDA in portal and fill the configuration name with the name u created above
6.stylesheet value to controls and select yes for support portal stylesheet.
if you are executing WDA from backend itself then you need to pass a parameter to the application like sap-wd-configid=<name of the theme>
for BSP applications change the iview properties
stylesheet value to controls and select yes for support portal stylesheet.
reward points if helpful

Similar Messages

  • Passing data from PCUI application to BSP page

    Hi,
    From CRM PCUI application, a BSP page is called for displaying a report. The behaviour of the report has to be different based on a data (field value) in the PCUI application.
    How can I pass the data from PCUI application to the BSP page?
    Thanks & Regards
    G.Raja

    Hi Gregor,
    The weblog was very useful. Thank you.
    In the current scenario, in the PCUI application there is a button, on clicking which a bsp page is displayed. This is implemented via the Navigation (URL generation) in CRMC_BLUEPRINT table. In the BSP page, on entering the details and clicking on a button, different APIs have to be called based on a flag. The flag is set in PCUI application but I couldn't pass the information from there to the BSP page. Can you please let me know how I can achieve this.
    Thanks & Regards
    G.Raja

  • Info on HTMLB and BSP page development needed

    Hi,
    Can someone please tell me some good books and websites where I can get learning material for HTMLB and BSP page development.
    Thanks
    Rehmat

    Don't forget:
    These examples in SE80 as well as thoughs mentioned above!
    SBSPEXT_BSP
    SBSPEXT_TABLE
    IT00
    There is also a fantastic book called <a href="http://www.sap-press.com/H959.html">Web Programming with the SAP Web Application Server</a>

  • I,m new to Mac book. Have used Pages and written 49  chapters of a novel. How can I get them into one doc. and have Pages number them?

    I'm new to Mac book.  Using Pages I have written 49 chapters of a novel.  Can anyone tell me in simple terms how to put them into one document and have Pages number them?   I am lost.

    Hello, Lost! Yes you are a bit; try the Pages forum here; https://discussions.apple.com/community/iwork/pages
    While I do use Pages, I don't know the answer to that one, but I'm sure you'll soon get help in the right forum.

  • Apply custom themes to WebDynpro 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.

    you can try these links for adding Themes to a Web Dynpro Application ... You can create your own theme with your company logo ... Optionally there are a few sample themes available ..
    1) http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d2b1d790-0201-0010-25b7-d1fb059a8ad9?overridelayout=true&quicklink=index
    You can check this link below in which they have discussed about adding themes to the WD application ..
    2)Re: Want Colorful WebDynpro Theme to download
    For portal themes you have already applied it but still
    http://help.sap.com/saphelp_ep60sp2/helpdata/en/1a/d7c1617dd29e4d85064b467636fada/frameset.htm
    this link might help .

  • HR programming and BSP pages

    Can't get some simple HR programming to Work with BSP pages.  I've tried defining field "zevnt1" just about every way I can think of and I can't get the following to work.  Below I've added 1 example that I tried to define "zevnt1".
    How do I define zevnt1 so this will work? 
    I keep getting an error message saying that "wa_pa0041-dar01 AND zevnt1 are type-incompatable" 
    DATA: BEGIN OF zevnt1,
           darxx TYPE pa0041-dar01,
           datxx TYPE pa0041-dat01,
          END OF zevnt1.
    LOOP AT i_pa0041 INTO wa_pa0041.
      DO 12 TIMES
      VARYING zevnt1 FROM wa_pa0041-dar01
                     NEXT wa_pa0041-dar02.
      ENDDO.
    ENDLOOP.

    Hi,
    The syntax should be like this:
    DATA: zevnt1 TYPE pa0041-dar01,
          zevnt2 TYPE pa0041-dat01.
    LOOP AT i_pa0041 INTO wa_pa0041.
    DO 12 TIMES
    VARYING zevnt1 FROM wa_pa0041-dar01 NEXT wa_pa0041-dar02
    VARYING zevnt2 FROM wa_pa0041-dat01 NEXT wa_pa0041-dat02.
    ENDDO.
    ENDLOOP.
    Greetings,
    Vincent

  • Function opening Custom Application and Internet Page

    Client has a requirement wherein they want to :
    1. open custom Application ( passing parameters) using a Function /Menu Setup.
    2. open new Browser having link to internet page using a Function /Menu Setup.
    Can anybody throw some light on how is it possible?
    I tried all the different types of Function with Web HTML Call defined. No Success.
    I know the there is an option to create a pl/sql procedure and call from web html call..but don't know the exact details. Any Document?
    Any document/Help/Pointers is appreciated.
    Thanks,
    Sunit

    I haven't created anything new, but I have had to fiddle around the edges of the OracleOASIS pl/sql package with the RunDiscoverer procedure. Basically the procedure generates a URL and uses the OWA_UTIL.REDIRECT_URL call to open the page. Your function will need to be set up as type "SSWA plsql function", the parameters (if any) go in the Parameters column and the PL/SQL procedure to call in the HTML Call.
    An alternative, which I know nothing about, is writing a jsp page, but others on this forum have talked about using jsp pages to open URLs in new windows (which the pl/sql package method does not do).

  • Value tables and BSP-Pages

    Hello,
    how is supposed to work the value table or the search help that a field has behind it ?? When the end user enters a non-valid value in a field, the system should mark the frame of the field in red. For some fields in our BSP application it works, for some others it doesn´t. Probably we forgot to declare something in the structure in SE11 but can´t work it out.
    Has anyone an idea ??  Thanks a lot.

    Hi Jorge
    You are creating F-4 HELP and getting possible values in a pop-up.(say AAAA,BBBB).how can user select(HHHH) from that pop-up.
    Now let us assume you are not disabling the field to which you want to insert value via pop up.
    Now user is inserting value in that field without getting values from F-4 help.
    As you said it simply saves the record without checking whether user is inserting proper value or not.
    Now when you save that value in the record,just before that validate it.
    example:
    SELECT SINGLE <field-name> from <table> into <wa> where
    <field_name> eq <input_field_value>.
    if sy-subrc eq '0'.
    --success.
    else.
    --failed.
    endif.
    if it is success,then you should allow it to save record.
    else.
    Do the desired, Show a message....
    I assume,i understod the problem right way..
    cheers
    Vijay,

  • Application and start page for service professional (copy of SERVICEPRO)

    Hi,
    Can u pls advice me as to what should be the values for the following parameters for the business role SERVICEPRO:
    1. Role Configuration key
    2. Technical profile
    for the selected technical profile:
    - Startup application
    - Start Page
    I would want this profile to allow all the service related transactions. Kindly advice an approach.
    Regards,
    DP.

    No response hence closing thread!

  • Location of custom themes in Portal 7.4

    Hi,
    Our Portal is upgraded from 7.01 to 7.4 recently.We are using the good old portal theme editor.(UI Theme Designer from portal is not activated). I  Created a theme based on a standard theme. In the earlier versions of the portal,all the theme related files(images,CSS etc) are stored in the following location in the file system of the portal server
    <harddrive>\usr\sap\<instance>\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\portalapps\com.sap.portal.design.urdesigndata\themes\portal\
    There used to be  folder for each theme in the above location.But in the 7.4 portal, I did not see the custom theme folder under the above mentioned location, However, it shows some standard SAP themes and the custom themes that were existent before upgrade, But not the new custom theme that I created post upgrade, Does anyone know where new custom themes are stored in portal 7.4,when they are created by using the theme editor.
    Regards
    Veera

    Hi Veera,
    You can find newly created custom theme under WRR(Web Resource Repository), which is newly introduced in new release like 7.4 you are using. It provides a single storage location for all portal application resources and branding resources and enables NW Portal administrators to upload, download, view, and modify these resources, without the need to redeploy applications to see the results of the modifications.
    You can find custom themes under:
    Portal -> Content Administration -> Web Resource Repository -> Portal Content -> Web Resources -> theming -> Portal -> "Your custome theme"
    All custom theme resouces are saved here. But please remember only custom themes are saved in WRR.And you can easily download these theme files like .css file. You can refer to below link for more information:
    http://help.sap.com/saphelp_nw73/helpdata/en/51/1fcc73dba141888489f3f316b1026f/content.htm
    Regards,
    Herman

  • Incorrect JFrame icon display with custom theme

    I created a JFrame with custom icon and theme.
    The problem is the transparent color of icon
    doesnt not display correctly.
    Can anyone help?

    Hi,
    As you said, the custom theme appears when applying seatle.master page, but not when applying a custom master page.
    It might be an issue of this custom master page.
    As a common practice, I would suggest you inspect the “Change the look” page source code when applying the seatle.master page using IE Developer Tools, compare it
    with the page when applying that custom master page, to see if it will give you more information about this issue.
    Another suggestion is that, you can create a new custom master page by copying the seatle.master page, verify the custom theme preview in the “Change the look” page,
    then add other customization one after one, keep verifying during the process. By doing this, it will be easier to find out the root cause.
    About using the F12 developer tools:
    https://msdn.microsoft.com/en-us/library/ie/bg182326%28v=vs.85%29?f=255&MSPPError=-2147217396
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • The customer themes not working after installing support package.

    Hi,
      In a Web dynpro ABAP aplication that i made in a project, we have a customer theme. We transported the development of a new host that had a higher level of support package, and it has stopped working properly the customer theme. We´ve gone from 7.0 sp 9 to sp 20. Well, when you run the programa WD_THEMES, in the ALV appeared to me not the customer theme. So I exported the standar themes and with Eclipse, I´ve copied and re-created the customer theme by modifying the latter.
    Once changed, I try exporting to the test environment and it is here that the level of support package was sp18. I could not import it because the version was not the same.In the development environment was 7.0.19.1 and in the test environment was 7.0.15.1.
    The question that comes to me is when we have a customer theme in a environment and upgrade the level of support package, is the version of all themes listed in the program updated or only the standar themes?. If this is so, if we upgrade the level of support package we will have to re-export the standar themes, copy one of theme and go back to redo our theme, right?.
    Thanks and hope your answer.

    Hi Karthik,
    Let me clarify on "Not working"
    It showned synchrozation successuffly but no data transfer between client and middleware and vs.  For instance, the user never receive any new work orders, or their times never got transfered back to R/3.  Even though, there is no error on the client.
    It appear that step 1-4 are required otherwise, you get ABAP Runtime error (using ST22):
    Runtime Error          CALL_FUNCTION_NOT_FOUND    
    Except.                CX_SY_DYN_CALL_ILLEGAL_FUNC
    Date and Time          02/07/2007 08:12:27        
    After we performed step 1-4 but there were data transfer between client and R/3.  The only way to get it working, we had to delete client and re-assign MAM 2.5 back to each users.
    No, we didn't apply client patch SP19.  We are still using SP16.
    As we speak, everything is working because we had to re-assign MAM 2.5 for every users. but I hope we don't have to do this next time we apply another Support Package.
    Thanks.
    Dai Ly

  • Keynote - Changing chart textures in a custom theme

    I know there are a couple different textures for the charts in the regular themes. I have created a custom theme for my company and I would like to be able to change the texture on the charts. But I can't seem to figure out how to choose which texture is used.
    Does anyone know how to do that?

    Darin, this is covered in the Keynote User Guide (p.179 in the KN3 guide). To quote:
    To set default chart attributes:
    1 In the slide organizer, create a new slide based on the master slide you are designing.
    2 Place a chart on the slide canvas.
    3 Select the chart and set its attributes. (For more information, see Chapter 6, “Creating Charts.”)
    4 To define defaults for another chart type, copy the chart and paste it on a new slide, change the chart type, and set the chart attributes. Repeat this step for each chart type.
    5 When all the charts are formatted as you wish, select each of them, one at a time, and make the new properties the default by doing one of the following:
    - To make the chart’s attributes the default for the current master, choose Format > Advanced > Define [chart] for Current Master.
    - To make the chart’s attributes the default for all the masters in the current theme, choose Format > Advanced > Define [chart] for All Masters.
    - To make the chart’s type the default for all master slides in the current theme, choose Format > Advanced > Make [chart] the Default Chart Type.
    6 In the dialog that appears, specify the total number of series for which you are defining attributes.
    7 Delete the charts from the slides.
    PowerMac G5   Mac OS X (10.4.4)  

  • How to figure out a BSP page application in Sicf

    Hello Experts,
    We are facing some issue in a BSP application,
    We are trying to implement SRM in our proj. The main page called as registration page ,
    for which we need to do some changed...
    but who can i find which funtion module or which application that BSP page is running on,
    I.e.
    what i acctually need to do is that,
    After the supplier fill the form it is getting saved i need to know what event  is getting triggered in backend for saving that data..
    can u help me on this...where do i find it.
    please give the steps
    Thanks IN advance!!!

    Hello,
    BSP name as service name in SICF...
    To know how it is handling event - it depends on which type of application is..
    1. If it is following MVC model, please look in DO_HANDLE_EVENT for detailed logic
    2. If it is not MVC and having ;Page with flow logic' concept - then look in event handler tab...
    Thanks

  • Domain redirecting to an apex application and page

    Hi,
    Sorry if this thread has been posted before but I did a search on the forum and couldn't find any answers.
    Basically I've set up a new domain name and I've got an installation of Oracle Apex running. I want this domain name to be redirected to my application and 'home' page when the user types my domain name into their browser.
    I've seen examples of how this is done in this forum using virtualhost in the http conf files for standalone versions of htmldb, but not found any info on how to do it in APEX (since these files are installed for apex).
    Is it possible to perform this type of domain redirect in apex??
    I'm using Oracle Apex version 2.01.
    Any info would be greatly appreciated.
    Cheers,
    Kev

    Kev,
    When you say ApEx...do you mean ApEx or do you mean XE?
    You can use the same method shown for a virtualhost section in the main section of your Apache configuration. The apache directives are valid both inside and outside of a virtualhost section.

Maybe you are looking for

  • Function Modules / Classes to change cProject item

    Hello, I'am searching for function modules or classes to change the cProject item. Ich want to change some fields in the task of cProject. Can everbody help me? Kind regards Axel

  • How to find Document flow / Relationships to a support message

    Hi Friends, I am new to Solution manager. I would like to know how to find Document flow of a Support message. For example I have a Support message, there are few Change requests and tasks linked to it. This can be viewed from CRMD_ORDER transaction

  • SUS Vendor Replication Error (CL_BBPX_TRADING_PARTNER_SUS_IN)

    Hi SRM Gurus! We are in the process of replicating our SRM vendors to SUS via XI and we are encountering some error. After running tcode BBP_SUPP_INI, we checked tcode SXMB_MONI in SUS and we found 2 flags, one is checkered (processed successfully) a

  • Message no. PA271

    hello friends, how to view the following message no. which was occured during applincant correspondence via word processing Faxing and e-mailing only possible for standard text in SAPscript Message no. PA271

  • CUPS 6.0.6 Exchange Calendar Integration Configuration

    Just setting up a connection from CUPS 6.0.6 to our exchange 2003 deployment.  Following the Cisco Unified Presence Deployment Guide Release 6.0(1) for setting up the configuration. We run OWA internally without any SSL certs, and externally using SS