Standard WDA Application - Change UI element image

Dear All,
SNC 5.1 Out of Box solution provides its Web UI in the form of WDA appications.
1. How do I change the image of a UI element for such a Standard WDA Application.
2. Also, is it possible to do the modifications in such a way that only a certain group of users can see the modified UI element and the rest see the standard Out of box solution?
Thanks and Regards,
Ashwin

Worst case scenario, you could use the Enhancement Framework to extend the existing application.  You can't modify existing UI element - but you can hide existing ones and then add a custom one. You could also add pre- or post- method implementations. Here is some details on the Enhancement Framework specific to WDA:
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/c5/f4b9422e0fb911e10000000a1550b0/frameset.htm
However you might find that you can acomplish what you want using Customization.
http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/b170d256293c5ce10000000a421937/frameset.htm

Similar Messages

  • How to change the field label text in standard WD application

    Hello All,
    I have a requirement to change the filed label text in standard WebDynpro  application.
    Application Name: /SAPSRM/WDC_UI_DO_BIDDER
    View: V_DO_BIDDER_SEARCH_C
    I want to change the label text from "Last Name" to "Vendor Name".
    Can anyone please provide me the possible options to change label text?
    Thanks in Advance.
    Regards,
    Shyam

    Thread closed...Found the solution ... 

  • Changing a standard BSP application

    Hi,
         We are using a SAP provided standard BSP application. We need to replace the header.jpg with client's specific JPG and also need to change text of some lables. Can anyone guide me how to do these things.

    Hi,
    You can create a "Thema". See below.
    http://help.sap.com/saphelp_nw04/helpdata/en/46/bb1844ab4811d4968100a0c94260a5/content.htm
    Regards,
    Alexandre

  • How do I change the raw image to jpeg with element 6

    How do I change the raw image to jpeg using element 6?  I am using a canon 10D camera.

    From the Editor choose:
    File >> Open
    Then navigate to your raw file
    When the image appears in the converter use the sliders to make your raw adjustments, then click open image.
    From the Editor use:
    File >> Save As >> jpeg
     

  • Enhancing standard BSP application by using WebDynpro components

    Hi all,
    We have standard BSP application delivered by SAP; we need to enhance the functionality and some new views to meet our requirement. We have planned to develop new things in WebDynpro ABAP and attach those to BSP.
    Is it good practice to use WebDynpro component instead customizing BSP application?
    If any body has fair knowledge on BSP and WDA, please let me know.
    Regards,
    Rajesh

    hi
    good
    BSP->
    It is a set of pages that represent a user interface (layout and page flow definition). The layout part of a page normally contains ABAP or JavaScript code which is inserted into the HTML structure. They can contain server-side scripting code in either JavaScript or ABAP. BSP applications use all the conventional ABAP technologies, such as Open SQL and internal tables, allowing developers to create Web pages quickly. This enables existing SAP logic, data structures, and interfaces to be directly used in Web applications.
    http://www.thespot4sap.com/Articles/SAP_WAS_BSP_Apps.asp
    WDA->
    Web Dynpro for ABAP or Web Dynpro for ABAP (WD4A, WDA) is the SAP standard UI technology for developing Web applications in the ABAP environment. It consists of a runtime environment and a graphical development environment with special Web Dynpro tools that are integrated in the ABAP Workbench (SE80).
    Web Dynpro offers the following advantages for application developers:
    ●      The use of declarative and graphical tools significantly reduces the implementation effort
    ●      Web Dynpro supports a structured design process
    ●      Strict separation between layout and business data
    ●      Reuse and better maintainability by using components
    ●      The layout and navigation is easily changed using the Web Dynpro tools
    ●      Stateful applications are supported – that is, if the page is changed and the required data remains intact so that you can access it at any time throughout the entire application context.
    Note that stateless applications are not possible.
    ●      Automatic data transport using data binding
    ●      Automatic input check
    ●      Automatic operation of the Web Dynpro application using the keyboard
    ●      User interface accessibility is supported
    ●      Full integration in the reliable ABAP development environment
    http://help.sap.com/saphelp_nw04s/helpdata/en/77/3545415ea6f523e10000000a155106/content.htm
    thanks
    mrutyun^

  • Change webdynpro element position during runtime.

    Hi Experts,
    For one SAP standard screen there are 4 input field in the webdynpro view. Is it possible to change the position/order of these standard elements by enhancement or during run time?
    Thanks

    Hi Srinivas
    Yes, this is possible !
    You can create a component configuration(CC) from the context menu of the related Web Dynpro Component (Create/Change Configuration).
    Enter an id for new CC eg., ZTEST and click Create.
    In the next screen, click on the last tab labeled Web Dynpro Built-In. Hierarchy of UI elements will be displayed. Click on the Container UI element that contains your 4 input fields and then click on Re-sort link that appears on the right hand side. Now you can sort the input fields. Save your Comp Config. Run the standard WD application using newly created comp config by passing parameter 'ZTEST' in the URL.
    Hope this helps.
    Regards
    Lorraine

  • Problem in ECM involving HRECM00_PLANNING_OVERVIEW(standard WDA component)

    Hi Guys,
    I am currently working in HR module(ESS/MSS).Here we will have to use the standard WDA component HRECM00_PLANNING_OVERVIEW to implement the budget approver application.
    If you launch it in portal and select a budget owner that gets populated in the first screen and click on "Review Details" button it basically calls a java web dynpro application which shows all the employess under that particular budget approver.
    If you open  HRECM00_PLANNING_OVERVIEW in se80,and goto the method "onactionopen_planning"(method which gets fired when "Review Details"  button is clicked) you will see the last stament as-
    ELSE.
              wd_this->launch_planning_ui( ).
            ENDIF.
    Double click and go inside  aunch_planning_ui().
    method LAUNCH_PLANNING_UI .
      DATA fpm                  TYPE REF TO if_fpm.
      DATA navigation           TYPE REF TO if_fpm_navigation.
      DATA key                  TYPE fpm_s_navigation_key.
      DATA target_key           TYPE string.
      fpm = cl_fpm_factory=>get_instance( ).
      " Store table of pernrs in memory so that comp planning UI can read it
      wd_assist->write_memory_for_planning(
        EXPORTING
          crevi               = wd_this->selected_crevi
          planning_pernr_tab  = wd_this->planning_objec_tab ).
      " Navigate to Compensation Planning iView
      key-key1 = 'HRECM'.
      key-key2 = 'HRECM_LAUNCH_PLANNING'.
      navigation = fpm->get_navigation( is_key = key ).
      target_key = navigation->get_key_from_alias( iv_alias = 'ECM_WDJ_LAUNCH' ).
      navigation->navigate( iv_target_key = target_key ).
    endmethod.
    This is the standard code for the method.
    navigation = fpm->get_navigation( is_key = key ). In this line its callin get_navigation and getting all the navigation parameters for the java wd application i beleive. If you go inside method get_navigation you will find in the last line its assigning
      APPEND ro_navigation TO mt_navigation.
    in mt_navigation if you go deep inside the class attributes at debug mode and see the attibute mt_target you will get an attribute application_params inside which the portal path(in bold) is getting fetched.
    application_params
    LINK_TEXT |Review Details                                                 |
    OBLIGATORY|X                                                                  |
    APPLICATIO<POP                                                               |
    APPLICATIO<ECM_WDJ_LAUNCH                                                 |
    PATH_TO_PA<ROLES://portal_content/com.sap.pct/line_manager/com.sap.pct.erp<
    Parameter_<                                                               |
    disabled  |                                                               |
    invisible | 
    I want to know from where it is getting the portal path(path_to_pa)?Because i have to change the portal path for my use.
    Please help experts.
    Thank,
    Saikat.

    Oops....forgot to close the thread.
    solved this a long time back.It can be configured by the transaction lpd_cust.
    thnx,
    saikat.

  • ABAP Web Dynpro Application changes in Administation Mode no longer working

    Hi Gurus,
    To apply customizing to a standard SAP Web Dynpro application we used to simply run the application in administration mode. After we changed a parameter to allow for theme application this adminstration mode no longer works. Right-Click simply acts as if you are running the application normally. We have tried to remove our parameter but this had no effect.
    How can we "fix" this error without creating a new custom configuration which will cause the URL to change?
    Thanks,
    Garth

    Hi,
    how did  you  open in administrative mode?
    to open in adminstrative mode do as follows:
    In se80 ,i.e in the menu bar:
    Web Dynpro Application->Test->Test in Administation mode.
    i hope u can see the option "Settings for surrent config" .
    you can refer the thread.
    [Re: ABAP Web Dynpro Application changes in Administation mode]
    Priya.

  • Application copied from disk image not recognised as correct arch by Finder

    Hi,
    occasionally, when I download a disk image ".dmg" that contains an application bundle ".app", I can run the application from the Finder by double-clicking on the icon of the application on the disk image, but when I copy the application to my harddisk, either with the Finder or with "cp -rP", and try to start the copy, the Finder gives me "You can't open the application xyz because it is not supported on this architecture".
    However the size of the application bundle, as measured with "du(1)" did not change, and sure enough the copy works just fine when I directly launch the application binary from the shell... The latest example of this behaviour was with the supertuxkart-0.6.1a-full-osx.dmg that I just downloaded.
    Anybody seen something similar and/or know what causes this strange behaviour?

    I have had a similar problem simply making a copy of a .app file. I spoke with Apple support about it and they said this is the desired behaviour when the application is not a universal application.
    You can check by opening the info window for the application and seeing if it says Universal next to Application in the Kind field.
    If it says Universal, it should copy without problem, if not, then it won't. Apple support wasn't able to give me a clear reason as to why this is, though.

  • Change WBS element from Sales order

    Hi...
    I have created one sales order with WBS element assignment then I have created billing document and released to accountingu2026.
    Accounting and controlling documents are fineu2026
    After creation of accounting document system is allowing to change or delete the WBS element at sales order item levelu2026same time profit centre field does not allow to change or delete
    We donu2019t want to user to change WBS element after creation of accounting documentu2026that field should be shown in greyu2026
    Please help me to solve this issueu2026
    Thanks,
    Raj

    Hi,
    You can create a Transaction Variant for the transaction VA02 in which you have to maintain the WBS Element field as output only.
    1. Go to SHD0, enter VA02 in Transaction & give a name to the transaction variant and press Create.
    2. Enter an order no., go to the item "Account Assignment" tab.
    3. Check "Output Only" against WBS Element in the screen listing all the tabstrips & Fields.
    4. Exit & Save.
    You will be returned to the SHD0 screen.
    Select the "Standard Variants" Tab under "Standard Vriants" tab. Press activate to activate the Transaction Variant.
    Go to VA02 to test the variant. You will get the WBS Element disabled.
    Revert in case of any doubts.
    Regards,
    Vijay

  • How to change data element of IDOC segment

    HI Experts,
    I have copied a segment E1ISU_MEASUREMENT_MEA to ZE1ISU_MEASUREMENT_MEA.
    Now i want to change data element of one of the field of the segment.
    Please guide me how i can do it?
    is there any disadvantages of doing this?
    can we do it easily?
    please give me step by step instructions if possible .
    thanks in advance
    Anit

    Hi,
    When you want to modify the segment details of a particular IDoc, you could do the same by editing the segment details via t-code, WE19. Once you edit, click on, Outbound or Standard Inbound if your IDoc is Outbound or Inbound respectively. A new IDoc will get generated. The generated IDoc will be in "yellow" status, ready to be picked up by a batch job if there exists one. Else you need to manually process the IDoc via the respective program.
    ~ Bineah

  • Changing color of Image in PSE 8.0

    I have a logo design that is black on white.  I'd like to change the black to another color - in this case, blue.  I wqas able to do it, but it ended up being quite convoluted.  What are some simple ways to change the color of a selected area in Elements 8.  I'm using a PC, BTW.
    Thanks!

    Thank you.  I found another way that's even simpler.  I chose the paint brush, set the mode to lighten, and then just painted over the image with blue - the white didn't pick up any of the blue, but the black did.
    Date: Tue, 22 Feb 2011 17:02:09 -0700
    From: [email protected]
    To: [email protected]
    Subject: Changing color of Image in PSE 8.0
    1. Select the black (use the magic wand if it's all one color).
    2. Layer>New Adjustment Layer>Hue Saturation.
    3. Turn on the colorize checkbox in the layers panel, and move the sliders till you see the color you want.
    >

  • WDA application differs across application servers

    Hi,
    when transporting from dev to Q, with Q running on 4 different app servers, we see different behaviour of our WDA application. This manifests itself as (for instance) columns of tables not being in the same positions, and also different column widths within the same tables.
    It may be down to the different app servers running different versions of the WDA application, but then my question would be: how do we ensure all app servers are "synchronized" whenever we release a new transport? As of now, the users report conflicting test results based on the app behaving differently depending on which app server they happen to be routed to...
    OSS doesn't seem to hold any clues to this kind of behaviour. Would a simple flush of the browser cache be sufficient, or is this to do with the app servers themselves (cache, memory, whatever...?)
    Regards,
    Trond

    I don't believe that the app servers holding different versions of a program, it should be same across the systems.
    Pl check with the following:
    Column's width changes based on its content if no width is set to the column.
    also,
    Users can always personalize the column positions, if personalization is set.
    Thanks
    Abhi

  • A Problem when calling a new WDA Application

    Hi,
    i am opening a new wda application with link in a html page using that code;
    in a html;
    <a href = "http://domain/sap/bc/webdynpro/sap/zhr_105_user_pass_control" />  Link </a>
    in "zhr_105_user_pass_control" wda application;
    METHOD onactioncall .
      DATA : lv_url TYPE string.
      CALL METHOD cl_wd_utilities=>construct_wd_url
        EXPORTING
          application_name = 'ZNEW_WDA'
        IMPORTING
          out_absolute_url = lv_url.
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component  TYPE REF TO if_wd_component.
      DATA lo_window         TYPE REF TO if_wd_window.
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      CALL METHOD lo_window_manager->create_external_window
        EXPORTING
          url    = lv_url
        RECEIVING
          window = lo_window.
      lo_window->open( ).
    ENDMETHOD.
    But this is opening wda application in new window and standard sap sessions couldn't starting so the login screen is opening.
    How can i redirect my wda application to another wda application with started sessions?
    Can somebody help me please?
    Thanks.

    Hi,
    Here you r using below code
    CALL METHOD lo_window_manager->create_external_window
        EXPORTING
          url    = lv_url
        RECEIVING
          window = lo_window.
      lo_window->open( ).
    It's occuring the external window each time that's why opening Log-On window.
    Skip this code and use the code for keep the same window.
    -Rick

  • Disabling "User settings" option from all the WDA applications.

    Hello Experts,
    We have implemented SRM business package.We want to disable right click "User settings" option from all the applications presented in SRM BP.
    I know a way of disabling "User settings" by passing WDDISABLEUSERPERSONALIZATION  parameter. We dont want to follow this approach as there are many applications and it would be difficult to change all the applications.
    My question is do we have any settings ( may be in sicf ) which could disable "User settings" centrally for all WDA application on that particular server?
    Thanks
    Surender singh Dahiya

    Hi surender,
    Check this..
    http://help.sap.com/saphelp_nw70/helpdata/en/7b/fb57412df8091de10000000a155106/content.htm
    Cheers,
    Kris.

Maybe you are looking for