Modifications in the standard ESS WD abap application

Hi
I have a requirement in the travel request of ESS application which is webdynpro abap.
When i select create travel request and in the first screen give the travel details and after clicking on review button at the bottom it is navigated to other screen in which we find Final action section where there are two radio buttons 1) Save 2)Save and send for Approval .
Now my requirement is we have two remove those two radio buttons completely and place the static save and save and send for approval buttons at the bottom.
For these static buttons i have to perform action where i found  in the standard application  it is not directly calling standard methods at the controller level but it is performing action based on the dynamic text of the " forward" button on action navigate-> start navigation ..........so how can we perform the similar action with the static buttons in created in FITE_REVIEW component .
Thanks in advance.

Have you checked the feeder class and see if you can perform the changes there.

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

  • Customizing the standard web dynpro ABAP travel application

    Dear All,
    Scenario :
    We want to modify the existing travel application------> Create Travel Request should open an interactive adobe form
    which will capture all the data and update the backend table , instead of the web dynpro screen and similarly for plan trip .
    I wanted to know what is the best practice or approach for this and how to go about it.
    Regards,
    Geet

    Hi All,
    Need your valuable inputs on this.Also when I was trying to replace the standard web dynpro abap screen for create travel request...coudnt find the view.I mean on the overview of Trips and Expenses there is a button for Create Request but I am unable to find the view where this button is placed....I think its getting created dynamically.
    My concern is how to call my interactive form when the button for create request is clicked...dont know where to place it.
    Regards,
    Geet Bijlani

  • How can i replace the standard ESS iview with my own iview

    I want to replace standard ESS addr iview with my own WD developed by ABAP
    I added the iview(my WDA) into standard ESS addr page.
    (pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.pages/com.sap.pct.erp.ess.personal_information/com.sap.pct.erp.ess.cn/com.sap.pct.erp.ess.addr/com.sap.pct.erp.ess.addr)
    And make it visible.
    But I got this error in ESS PA addr :
    WebDynpro Exception: Application PER_ADDRESS_CN Does Not Exist
    Here is the error code :
    Error code:ICF-IE-http-c:100-u:AC_WANGFZ-l:1-s:CE1-i:SAPCE101_CE1_01-w:0-d:20070514-t:172301-v:RABAX_STATE-e:UNCAUGHT_EXCEPTION
    So , how can i replace the standard ESS iview with my own iview?
    Thanks

    Can you see any Javascript EPCF code in the old iView  ?  You are surely just going to have to find it  (if our hunch is correct) and analyse it and copy it into your new iView so that it functions in some way that at least does not error

  • Customizing standard ESS Leave Request Application

    Hi,
             We are using standard ESS Leave Request application in our project. I need to set a default value to " Type of Leave" to  some value say "Vacation".
        Anyone kindly let me know is it possible to set some default values in SAP standard applications and how can we do that.
    Regards
    Pavan

    Is this a repeat?
    Re: Customizing standard ESS Leave Request Application
    Yash

  • Java legal stuff-  modifications to the standard library

    I have been programming with Java for about a few months now. I find Java to be a wonderful language. Now I am wondering am I allowed to make a modification to the standard library and use that modification in my programs? Refering to Sun Java SDK. I am just wondering.

    Thank you for the code, never tought about usign reflection. I tend to stay away from reflection as much as I can. Btw: very nicely done.
    We have a really silly task to in Java as part of the lab excersizes for the lessons in programming. We have to make a program that simulates the motion of balls in a panel, the trick is that the balls ofcourse bounce off the enges of the panel but they also collide and bounce of each other. Ok, no problem, soo I did the task with just one Timer. It workd very well. But the assistant didnt accept my solution. Since it was written in the description of the excersize that each ball must be moved by a thread. How stupid is that! Soo I didnt have any good idea on how to achive that. But I do think that a Barrier is the best way to go in this unfortunate circumastance. If you have a better idea please I will be very interested. I mean what I do is I create a barrier and then each ball has
    while(true){
    move()
    barrier.await()
    in the run method. That means each out of n balls will move and then wait. When all the balls will move then I will do collision detection, redraw the panel and pause the frame for about 30 ms thus achivieng the illusion of having about 30 fps and then repeting the process. Soo the Barrier pattern I think should do good in this case. Well I have just been programming for a few months in Java soo I really can only speculate. Now the tricky part is that what if I add a new ball? What I want is simply to increment the nr of parties that the barrier has to n + 1. That will not cause any problems. If I were to decrement there might be some problems. But I dont want to create a new CyclicBarrier everytime a new Ball is created. Soo one way I think might work is to get the source of the CyclicBarrier and add an incrementParties method. Again I am a very inexperienced java beginner soo ....

  • Editing Standard ESS Travel Abap Webdynpro Application

    Hi All,
    We used to edit ESS Java webdynpro  applications by taking a copy of the standard application
    with the help of Track created in Enterprise Portal.
    Now we have switched Travel Application from Java Webdynpro to Abap Webdynpro.
    and there is a requirement come up which requires the modification of standard WDA Application
    for Travel Request.
    Please let me know the procedure.
    Can we take the copy of that Entire package and do the necessary changes in the copied Application
    or can we proceed by editing the standard code ?
    If we are taking the copy of the Entire package does the configuration will affect on copied Application?
    Warm Regards
    Hari Sankar M

    Hi Hari Sankar,
    I have done this in my last project. You can enhance the WD Component only if you are adding functionality. Be careful to find the right component and methods. You usually do not make the change on the application itself. 
    If you want to tweak what the standard code does, that is a modification. If that, then I would advise you look into the configuration capabilities and the personalization if that meets the requirement.
    Copying the component is going to be very hard. I would definitely not get into that at all costs since the Travel WDA uses the FPM framework as well. The links between the components are very complicated to simply copy and edit the z compoenent. It does not work like that.
    Another thing: The specific challenge for the travel request is that the component you will need to change is being shared by the Expense report. It is the general data visual component. Be careful with that as you will have to differentiate in the code that you are calling it for the travel request.

  • How to Call the RFC in Webdynpro abap application

    Dear Experts,
    Good Evening to all...
    I have to add two numbers using RFC in webdynpro abap application. If we give the numbers in the input screen then the RFC should add it and give it in the output screen. This is the application for that I have created the RFC.
    But the problem is i don't know how to call the RFC in that Webdynpro abap application and how to link the input view and output view with that RFC...? I am new to Webdynpro abap. Please kindly help me on this... I am struggled here... I need your help in this....
    Thank You.

    Hi Jaga,
    You asked the same question again.
    Without closing the [previous one|Re: Where SAP store the uploaded files?].
    I think Abhi has answered your question.
    If not please elaborate on the problem.
    The solution btw is to create a Service Call.
    Sumit

  • Business Process Monitoring - Modification of the standard alert mechnisms

    Hi All,
    Am using Solution Manager 7.0 BPMON and the alert mechanisms used is the email notification from BPM_NOTIF.
    Would like to know if the email format can be modified Some e.g of the modification which I am looking at
    1) The subject as of now is the standard the Solution name. Can the sbuject be modified to suit what kind of alert this is.
    2) In the body there a couple of details which may not be used and some other details may need to be added for e.g for a dialog performance monitor the user  id which has hit the threshold is not visible in the alert hence can this be added to the email alert?
    Thanks.
    Rgds,
    Letchu

    Hello,
    with ST400 SPS23 and hence ST-SER 701_2010_1 it is directly possible to influence subject and body of an email in BPMon. Additionally you can use other BAdIs to further enrich your notifications or trigger "real" auto-reactions. Please refer to the following SDN blog /people/johannes.fleig/blog/2010/06/02/create-your-own-auto-reaction-messages-in-business-process-monitoring-via-badi-exit
    Best Regards
    Volker

  • Editing the standard ESS package.

    Hi,
    I'm customizing the existing ESS code. The flow doesn`t move from Detail VAC to review VAC when i add a UI element. But the flow is smooth when i do not make any changes to the standard code delivered.
    Can someone tell me where I'm going wrong? Do i need to make any other changes when i try to add UI elements apart from binding?
    Regards,
    Chaitanya

    hi Chaitanya,
    See the trace file for some error. there will be some error/exception thrown.
    Regards,
    Sharadha

  • Error with the standard ESS, Travel & Expenses

    Hi All,
    We have deployed a ESS package in the portal. And we are able to view some services.
    We are getting the following error, with the Travel and Expense(All My Trips). Actually all the services under Travel and Expenses are giving some kind of errors. But i want to check the My Trips and Expenses one. It is giving the following error.
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: no jcoMetadata found for RFC function 'PTRM_WEB_CCNUM_MASKING'! Please verify, that your model is consistent with the ABAP backend: 'RDX'.
    Our HR SP is 34 and EPortal 7(NW 7) and ECC6 is SP 14.
    Can anybody suggest us in correcting this error.
    Thanks & Regards,
    Ravi

    Hi Ravi,
    The problem may be due to versions mismatch or you may need to apply SAP notes,
    check these
    Regarding Leave & Team calender
    /thread/824753 [original link is broken]
    Regards,
    Siva

  • How to modify the Standard BSP sales contract  application.

    Hello,
    we need to do some modification on User Interace as well as on backend level of Sales contract module which is called from CRM_BSP_FRAME BSP application.
    To do the User Interface changes we have CRMDesigner but,
    How to copy the sales contract module from CRM_BSP_FRAME BSP application to do backend changes?
    Regards
    ravi

    Hello,
    as Brian already mentioned, theres no simple answer to that, but copying the whole application seems not to be a useful solution.
    I'm trying to give you some hint/ideass (no ready build solution). Doing it that way will work without modifaction. But you stille have to be ware of changes in the superclasses.
    In the customizing for the PC UI you can change the involved classes, structures and so on.
    If you want to insert a new field on a screen, you can copy the original structure for the field group and make an append.
    You can then change the structure for the Business Object (for a specific event and view) in "Define Application Layout". Don not forget to enter change mode and import the table entries!
    e.g.
    Original Fieldgroup: ACT_ADVANCED_SEARCH_F4
    Bus.-Obj.: CRMD_BUS2000126_F4
    Event:     Init
    Position:  Search Area
    Do not forget to rerender the layout structure afterwards (Customizing - Fieldgroup - Layout generation)
    For bringing in a new class try the following.
    Take the existing class as the superclass for your new one... Let's say ZCL_CRM_BSP_AM_HEADFM_1O will derive from CL_CRM_BSP_AM_HEADFM_1O.
    Redefine the needed methods.
    Last step is to replace the "pointer" to the new class.
    Go to Customizing - Application set, Choose the Business Object and go to Model Access. Here you can enter your ZClass.
    Voila.
    Hope that helps.
    kind regards
    Frederic Heinemann

  • How to allow modification of Country key in standard ESS "Adress" Iview ?

    Dear all,
    In the standard ESS Personal Information Iview and especially "Adress" Iview, the COUNTRY drop down list can't be modified, modification is deactivated, Country drop down list isn't accessible. But I need to let people select their country when they indicate a new adress (emergency, foreign adress, secondary adress...).
    In SPRO>ESS>Personal data/information -->I use country 06, infotype 0006, application case 1 permanent residence.
    I tried the CTRL+right click method but I can't activate the country "modification" (no button to solve my issue).
    I looked at the below thread but I do want to know if there's really no standard way to allow people to modify that usual field?
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?spaceKey=profile&title=ESSPersonalInformationUIenhancementwithoutmodification&decorator=printable
    Many thanks by advance for your advices!
    BR
    Blandine Landais

    Many thanks for your answer!
    I've tested it on another system (EHP3 this time) and you need, indeed, to activate business functions (new releases of EHP) in the customizing to allow editing of other country forms. The address iview is a new one too, so no way on an ECC6.0. We tried to search a solution within the abap way but it would generate such a big specific development that I'm not sure we will implement it..
    Thanks again for your helpful answer.
    BR

  • Validation in Personal Data application of standard ESS

    Hi expert,
    I want put some validation on standard ESS personal data application.I have imported the DC and create project with the it.
    But now I am unable to understand how to implement the validation. I want to put validation on First Name & Last Name as it is accepting Nos also.
    I want this to accept only Characters.
    Please teel me where and how to put the validation.
    Please answer me as early as possible.
    Thanks & Regards,
    Aniruddha Bhattacharya.

    Hi,
    Thanks for your reply.
    I have the code. My problem is not with the code. I am not able to understand where in standard code in Personal data application I need to write the validation code for First Name or Last Name.
    Please suggest me where I need to put the code. Or Is it possible to do  the validation part from BADI HRPAD00INFTYUI.
    please help me.
    Regards
    Aniruddha

  • Style sheet of the SAP standard ESS package.

    Hi,
    Our client installed the standard ESS package and after adding a theme to portal the dropdowns , calendar widgets doesn't take the style sheet correctly and therefore the dropdowns , calendar widgets  and other display attributes doesn't appear properly.
    It would be great if any one provide the solution why this is occuring.
    Thanks
    Ritushree Saha

    Hi Ritushree,
    we experienced the same thing a couple of month ago. Some of the ESS/MSS GUI elements were not properly rendered after we applied a new SP (SAP NW 7.0 SPS 9 or SPS 11). As far as I remember SAP promised to fix the probleme in the next SPs.
    As a workaround we configured the affected ESS/MSS iViews in a way that they did not use the Portal Theme. As a result the iViews had a slightly different design but the GUI elements were working again.
    Best regards,
    Martin

Maybe you are looking for