ESS 1.50 WD ABAP application Customization

Hi Experts,
We have deployed ESS 1.50 on our Portal 7.02  system.
This ESS 1.50 version is completely WebDynpro ABAP Based.In which we need to make changes in ESS application.
So,kindly share some pointers on how to make changes in WD ABAP application.As of now we are focusing only making changes in User Interface.
Thanks & regards,
Hanif

Hi Pramod,
Thanks for the reply !!
Well we want to make following Changes in User Interfaces.
1. Hide Tabs
2. Change Label Text
One more thing i want task you that in, from Portal when we are accessing ESS 1.50 Role,we are not able to open specific ESS iView in Portal.i..e Personal Information iView, Personal Details,Family Details,Etc.
Not even a single iView is getting open from Area Group Page.
Can you please put some light on this.
As when we click on the Resource Service, it gives error at task bar :: "java script void(0)"
Regards,
Hanif

Similar Messages

  • How to Pass personal number(pernr) to the ESS Webdynpro ABAP Application

    Hi,
    How to pass personal number of employee to the standard ESS webdynpro ABAP application as application parameter of iview.
    Thanks
    Srikanth

    Hi
    For WebDynpro application in iView there is a property to set Parameter for WebDynpro application.
    Handel these passed parameters in Default plug of Interface Controller.
    Note string passed as parameter in iview is case sensitive.
    Try this code to get URl of Deployed application
    String appURL = null;
    try {
         WDDeployableObjectPart currentAppPart =wdThis
                                  .wdGetAPI()
                                  .getComponent()
                                  .getApplication()
                                  .getDeployableObjectPart();
    appURL = WDURLGenerator.getApplicationURL(currentAppPart);
    } catch (final WDURLException ex) {
    wdComponentAPI.getMessageManager().reportException(
                             new WDNonFatalException(ex),
                             false);
    Mandeep Virk

  • Regd. ESS and CATS in ABAP webdynpro

    Hi Friends,
    Currently we are under ECC6.0 with the following SP13.
    SAP_BASIS     700     0013     SAPKB70013     SAP Basis Component
    SAP_ABA                     700     0013     SAPKA70013     Cross-Application Component
    And iam looking is the ESS and CATS are available in ABAP webdynpro , i know thta these are available on JAVA side.
    If i want to get ESS and CATS in ABAP Web dynpro , what we have to do ???
    Could you send me useful links for ESS and CATS in ABAP webdynpro on Portals side.
    Srinivas.

    Hai,
    Please find the below links.....
    http://help.sap.com/saphelp_nw04s/helpdata/en/77/3545415ea6f523e10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c2fad86f-0401-0010-91ac-bdb38595a735
    /people/heidi.geisau/blog/2005/12/21/web-dynpro-abap-goes-live
    http://help.sap.com/saphelp_nw04/helpdata/en/dd/e9863596db1d23e10000009b38f889/frameset.htm
    Regards,
    Yoganand.V

  • Webdynpro ABAP application to open a document saved in KM

    Hi All,
    Need your help.
    I have the following scenario to work on it:
    My client wants to upload the form16 of all employee to EP and and wants to give a link in ess for that file to it's employees. The form16 will in PDF format and the total number of files will be 30,000 as my client have 30,000 employeess and there will be one form16 file for each employee. My client wants to upload all forms16 (30,000 files) to EP every year by replacing the old one for previous year.
    I understand that mass upload of files is required as one by one file upload is not possible for 30,000 files. I also understand that after uploading the files to KM, I will need a Web Dynpro ABAP application to download a perticular file from KM to local pc and open it for the logged in employee. And for that the file name should be the employee number so we can get a perticular file for perticular employee.
    now, I have the following questions:
    1) What solution should I provide to my client for mass upload of 30,000 files to KM so that they can upload those files every year and remove the old files.
    2) In Web Dynpro ABAP how can I down load the single file related to loggin user from KM to local (user's) pc and open it in adobe acrobat reader.
    I request you to suggest me in this matter.
    Thanks in advance.
    Vikrant

    Hi Thomas,
    thank you.
    1) What solution should I provide to my client for mass upload of 30,000 files to KM so that they can upload those files every year and remove the old files.
    I will put my above question to portal forum.
    2) In Web Dynpro ABAP how can I down load the single file related to loggin user from KM to local (user's) pc and open it in adobe acrobat reader.
    For my 2nd question, thank for the solution. I have tried with LinkToURL elemtnt and it worked. But I have one more question about the same. I have uploaded one pdf file to km and tried to open this file using LinkToURL element in Web Dynpro ABAP. In the 'reference' property of LinkToURL element I have given path to the document. This path I got from portal when I opened the settings->property of uploaded file, which was something like this:
    http://<%hostname%>/irj/go/km/docs/documents/RComm/PDF%20Files/FAQs%20CTC.pdf
    In this I have replaced the
    <%hostname%>
    with actual host name:port number.
    So in this case I have hardcoded the hostname:port number.
    Is there any way or function module using which I can get the host name and the port number of the portal so in future, if
    it changes, I will not need to change the code.
    Thanks again.
    Vikrant

  • Modification in standard webdynpro abap application

    Hi
    In my portal for some of my ESS applications are used in webdynpro abap for example travel expense and travel request now i have a requirement like i have to make the create travel expense button disable based on the condition llike i only he has to click create travel expense after creating travel request .So can anybody let us know how to do modofications in the standard webdynpro abap application.
    Thanks in advance.

    Hi
    For making changes in the standard web dynpro compoenent, you need to create and implement enhancement.
    For this you can find many links in SDN  on how to create enhancement.
    Now coming to your specific requirement.
    Here what you can do is open the standard component.
    1. press ctrl +F4, It will open a popup there give some name to your enhancement.and desicrption . then press Enter.
         Assign it to teh package you want.
    2. Go to the view where you want to disable the button, There go to the layout and find the ID of the button. say it is 'BTN'.
    3. Now go to methods tab, scroll right and selct post exit method of wddomodifyview emthod.
    4. there write the code with the condition you want.
    if  flag  eq 'yes'.
    data  lv_btn type ref to cl_wd_button.
    lv_btn ?= view->get_element( 'BTN' ).
    lv_btn->set_enabled( abap_false ).
    endif.
    5. one last thing is you can create a attribute named flag of type string and set its value to 'yes' when you want the button to enable.
    Thanks
    Sarbjeet Singh

  • Webdynpro abap application for HCM

    Dear all,
    In enterprise portal->Content Administration->PortalContent->Content provided by SAP->line_manager->Manager Self-Service->iviews->HCM-> there is a PCR application by name "personnel change request". this is a webdynpro java application.
    I have installed latest business package of ESS/MSS. so there should be both dynpro java and dynpro abap application. kindly tell me that for the personnel change request PCR application in which package can i find the wendynpro abap application.
    Regards,
    Bharath

    Dear Bharath,
    I am no expert on the topic but i can definitely answer your last question.
    Yes, Webdynpro ABAP applications are available in the latest versions.I have seen this in ECC Enhancement Package 3 (ECC 603).
    I can't really tell you much abt PCRs but the Requisition forms(SRQ3) in 603 are based on WDA application.If interested you can check the Recruitment work center in MSS.
    Also, please ensure that the relevant Business Function/Services are activated when using the enhancement packages to see the relevant functionalities.
    I think you need to activate the HCM administrative services BF available as of 602 . This definitely uses webdynpro ABAP applications in the portal.
    Regards,
    Sowmya
    Edited by: Sowmya Kadambi on Dec 23, 2008 3:23 PM

  • 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

  • Adjusting portal theme of Web Dynpro ABAP application

    Hi,
    can the style of all UI elements in our Web Dynpro ABAP application changed in the style sheet editor of the portal?
    Or shall we avoid some already in the application?
    And can we also use the Eclipse Portal Editor to change the theme for our ABAP application in the portal?
    Thanks, Regards
    Susanne

    >
    Susanne Steib wrote:
    > Hi,
    > can the style of all UI elements in our Web Dynpro ABAP application changed in the style sheet editor of the portal?
    > Or shall we avoid some already in the application?
    >
    > And can we also use the Eclipse Portal Editor to change the theme for our ABAP application in the portal?
    > Thanks, Regards
    >
    > Susanne
    Most all UI elements can be changed by the Theme Editor.  Not all aspects of each UI element is customizable.  You will need to look through the theme editor to see what all it supports.
    You can use the Eclipse Portal Editor (unsupported by SAP) to change the them of WDA applications.

  • Web dynpro abap application on Portal does not work via internet access.

    Dear All,
    I have created a web dynpro abap application and deployed the same on Portal.
    The issue I am facing is that the webdynpro application works fine when the end user logs into Portal from Local Network,
    However when the Portal is accessed from outside the local N/W via Internet, Portal is working fine for other applications like ESS
    but the web dynpro application dont work.
    Is this some configuration issue on the portal / abap development or any workaround is possible.
    Regards
    Abhinav Dagar

    Hi
    Please try to use the [HTTP Watch 5.0 Basic |http://www.httpwatch.com/download/] tool to trace that WD Application link from the portal and you can easily find out the problem.
    Regards
    Prakash T

  • WD ABAP Application exists in SE80 but not in SICF

    Hi,
    how could I make my WebDynpro ABAP applications available in the services list of SICF?
    My problem is, that the WD applications from the WebDynpro Component "FITV_FPM_START" (e.g. FITE_EXPENSES), which I need for my ESS in portal, appear in my ABAP Workbench but not as services in SICF.
    Anyone knows what could be the reason?
    Thanks for your help in advance.
    Best regards
    Joachim

    Also check related note Note 1088717 - Active services for Web Dynpro ABAP in transaction SICF.
    Regards

  • I-view for custom WD ABAP application opening in new page

    Hi,
    We have created a new i-view and page in ESS for a custom WD ABAP application.
    Our requirement is that all i-views open in the same page (i.e. portal content area). I have set the property - launch in new window as ' display in portal content area'. The work protect mode settings for opening in the same window have also been done.
    Yet, the i-views that have been created for custom WD ABAP applications are opening in a new page while the standard i-views are opening in the same page.
    Would appreciate pointers on how can this issue can be resolved.
    TIA.

    hi,
    check your homepage configuration and makesure nothing is there on window name in the resource.
    thanks,
    pkv

  • POWL UI Element in ESS- My Trips and Expenses Application

    Hi Experts,
    There is an application My Trips and Expenses in ESS. The WD ABAP component for which is FITV_POWL_TRIPS. In the application we can see a TabStrip UI element on which there is an ALV on "All My Expense Reports" Tab. I want to hide the "Attachments" Column on this ALV. I have not worked on POWL UI element before. So please suggest how to hide it. As its needed urgently.
    Thanks & Regards,
    Vaibhav Tiwari.

    HEllo Pooja,
    In the feeder class(NAme of feeder i donot know), You can get from POWL_TYPE tx.
    There is method get_field_catalog ( ), you can do there.
    Other way, Go To POWL_QUERY Tx,
    Open the Query, click on settings and save the Query.
    Run report POWL_D01 and run.
    Best regards,
    Rohit

  • How can I call a java object from Web dynpro ABAP application?

    I made Web dynpro ABAP application and posted it to SAP EP.
    For certain business purpose, we need to call external 3rd party java object using 3rd party's java api in Web dynpro application.
    Is there anybody who experienced this kind of java interface issue?
    I know Web dynpro Java environment can fully support this kind of requirement. but regarding Web dynpro ABAP, I couldn't find any clue for this.
    Any comment or suggestion would be greatly appreciated.
    Thanks,
    Raymond, ABAP Consultant

    if you have jco configured, then you can make calls to java api from ABAP .
    check out this weblog.
    /people/gregor.wolf3/blog/2004/08/26/setup-and-test-sap-java-connector-outbound-connection
    Raja

  • Error in opening webdynpro abap application

    hi All,
    I am facing below issue in opening webdynpro abap application, this is first WDA application in production system, please help me in resolving this issue.
    ============================================================================
    Error when processing your request
    What has happened?
    The URL http://grp.mysap.pg.com:9500/sap/bc/webdynpro/sap/zgpuvstapp/~ucfLOADING was not called due to an error.
    Note
    The following error text was processed in the system GRP : A request for server adln5412 has been sent to server adln5411; see Note 1364846
    The error occurred on the application server adln5411_GRP_10 and in the work process 3 .
    The termination type was: ERROR_MESSAGE_STATE
    The ABAP call stack was:
    Method: PREPROCESS_REQUEST of program CL_WDR_CLIENT_ABSTRACT_HTTP===CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_WDR_MAIN_TASK==============CP
    Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
    Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
    Module: %_HTTP_START of program SAPMHTTP
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system GRP in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server adln5411_GRP_10 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 3 in transaction ST11 on the application server adln5411_GRP_10 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 400 -u: BS6402 -l: E -s: GRP -i: adln5411_GRP_10 -w: 3 -d: 20100929 -t: 140306 -v: ERROR_MESSAGE_STATE -e: A request for server adln5412 has been sent to server adln5411; see Note 1364846
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    ============================================================================
    Edited by: brahmanandam ausali on Sep 30, 2010 4:11 AM

    Hi Shibli,
    I'm facing the same issue with the POWL only if called from a part of the network outside our country (Italy) so I think it would be a network configuration problem as you suppose. Can you explain us the configuration of the balancer and dispatcher to solve the issue?
    Thanks
    Mattia

  • Automate Customization of "Application customization class name" in BPM

    Hi,
    I am from BPM Process Accelerators team.
    We are trying to automate the "Process Accelerator" install process in DTE.
    As part of PA post install tasks, we have to add the value *"oracle.bpmpa.global.model.WorkspaceExternalApp"* against the *"Application customization class name"* field in Application Preferences page in BPM.
    We have to automate this activity by writing appropriate script/code.
    Any suggestions on how we can achieve this ?
    Thanks,
    MD

    Hi Madhusudan,
    See if this might help: http://java.net/downloads/oraclebpmsuite11g/Samples/bpm-CustomizingWorkspace/BPM-CustomizingWS.pdf
    Dan

Maybe you are looking for

  • AutoFS + Samba share problems when share not online (especially in itunes)

    I'm trying to look into having some or all of my media on a server for a couple of my macs, the main one of interest right now being a mac mini working as a HTPC under a tv, being operated 99% of the time with just the apple remote and frontrow. A fr

  • New 27 inch iMac used as monitor for PS3

    Greetings! I am trying to use my 27 inch iMac as a display for the Play Station 3. I have a Mini DisplayPort to HDMI cord connected to both and the iMac does't do anything. I looked at the display in system preferances and there is no AirPlay Mirrori

  • Dvd drive in early 2009 failure

    I have an early 2009 24" iMac. The DVD drive in it failed around 16 months ago and had it replaced free of charge with Applecare. While upgrading to Mountain Lion today I discovered the newer drive has failed. Doesn't read or write DVD's but regular

  • Samba on Linux with Tiger clients

    Maybe someone can help me with this, I am not sure if this is the place to ask or not... I have a new Linux (SuSE 10) server running Samba. My issues are two-fold. My Tiger clients have to authenticate manually -twice in order to be able to log in. S

  • Just talked to Apple about bluetooth connecting iPhone to iMac, blocked by

    Apple and AT&T have blocked the possibility of connecting our iPhones to Our iMacs or any other Mac, because I guess there are things we would be able to do with them that would cut into their company merchandise. I don't know what they are because I