Need to restrict Tasks to come to Task list for Leave Request approval.

Hi all,
Can anybody guide me to resticting  the Task to come to Tak list For the Leave RequestApproval.
As soon as we create a Leave Request  a task is generated and it is visible in task list.
Here the requiremnet is the task which are generated for this LEave Request functionality should not  be seen in the task list.
I have removed the task from UWL Configuration in XML code.
Thanks and Regards,
Anand

Hi all,
Can anybody guide me to resticting  the Task to come to Tak list For the Leave RequestApproval.
As soon as we create a Leave Request  a task is generated and it is visible in task list.
Here the requiremnet is the task which are generated for this LEave Request functionality should not  be seen in the task list.
I have removed the task from UWL Configuration in XML code.
Thanks and Regards,
Anand

Similar Messages

  • Approve Button not visible in Tasks for Leave request in Tasks- MSS

    Dear gurus,
    Approve Button not visible in Tasks for Leave request in Tasks- MSS, anything missing on config end????
    Any suggestions....
    regards,
    Rajasekar.

    hello Bala,
    there was some config missing in UWL, now it is working and here we have got some button launch dynpro ..this is leading to pop where we can approve or reject....
    Thanks alot Bala..
    In this we are getting more info, Display details in SAP GUI, View History, View all Time Approval and Attachments of Documents which leads to leave request details. These may be too flashy for the Manager who are from the typcial production centers....industries...So is there any way out for Hiding these.
    Regards,
    Raj

  • Second approval level for leave request needed

    Is there a best practise solution to modify the standard leave request WF12300111, so that a second level of approval is possible?
    It is necessary that first the team leader approves the request.
    After him the department head has to approve the request as well.
    The department head (line manager) can be determinated through the organizational management (OM) in the way it is done in the standard WF12300111.
    But how to determinate the team leader who isn't labled in the OM unitil now?
    Is it necessary to create a new link in om, which links the team lead to his team members and vice versa?
    Or do you suggest a better way to solve teh problem?

    as in all own implementations you should copy the sap workflow to an own one, like Siddharth proposed. I didn't try this, i never needed second level approval so take what i say with a grain of salt.  Copy the task that deals with the approval (the one showed in the UWL of the first manager) for the next approval (second manager). It should be then inserted in the workflow after the first approval. Between the original approval task and the second one you should insert a step where you call your own abap class to set the new processor of the workflow - copy the one used by SAP in the first approver task and remove what you don't need, modify the stuff that you could use.
    You might be able to get the approval in the approval application using the BADI proposed by Siddharth but I am not sure using that BADI will create a UWL entry for the second approver.
    @SAP: a propos the class used for workflow task methods--> stop creating final classes !

  • Need multi level approval for Leave request workflow in ESS

    Hi All,
    Our requirement is for 5 levels of approvals for the leave request raised in ESS  means After employee raises leave request ,it has to be approved by 5 managers one after the other. In standard system only 1 level of workflow and approval  is available so please anybody suggest the solution . Thanks in advance.

    in addition to the above content your workflow consultatn have to create this ask him to
    refer this document
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    for multiple level of aproving the leave reqest and  and orgstructure have to be well formed
    ravindra

  • Asset history sheet, assets do not come to a list for a spesific user

    Hi SAP gurus,
    we run AR02 (asset history sheet) report for two users. for one of them, the whole list come to screen however for other user some assets do not come to the list.
    i think this is an authorization issue, but do not find authorization object (probably related with query)
    any suggestions?

    Hi,
    For the second user, for whom you thought that there is an authorisdation issue, ask him to type transaction /nsu53 immidiatly after getting the output.
    Then system will show if there is any authorisatrion issue for his user profile.
    And kindly make sure that, both users are having same authorisation roles in their profiles.
    Thanks,
    Srinu

  • Need to restrict 1 value in standard F4 Help for vbrk-fkart

    Hi Friends,
                   The requirement is that in the selection screen ,when we are pressing F4 for the field billing type , one value should not appear i.e. if 24 billing types are coming then we want only 23 billing type. The billing type that we donu2019t want is ZFBL ( Which isclient business specific and we donu2019t require now ). Is there any way to handle in any event before displaying the values other than deleting the value from the master table.
    SELECT-OPTIONS:
        so_fkart FOR vbrk-fkart no intervals OBLIGATORY.
         Your help is highly appreiciated.
    With Regards,
    Ajit Prasad.

    Hi Bro,
         copy the data into an internal table .. delete the required entry and pass it to the F4 help Function module (F4IF_INT_TABLE_VALUE_REQUEST) under the event AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_fkart-low..
    cheers,
    jacks.

  • Restricting the values in Drop Down list for ESS application

    Hello Experts,
    We are trying to restrict the values in the drop down list box for payment method field for direct deposit iview.
    Here Payment is the Zlsch field.
    here we are trying to have only 3 vlaues in the drop down. Do I have to do it from java code or can this be restricted on the ECC side?
    Plese let me know.
    Thanks,
    James.

    James,
    What you have to do is create a DropDown ByIndex element instead of by Key and create a context node PaymentMethodNode and a value attribute PaymentAttribute under it ....then write the following code in the wdDoInit() method as :
    //Add whatever values you want in the DropDown
    String[] priority_options= new String[]{"Payroll/Corp/Partner Check","Employee Payroll ACH(PPD)"};
              List ListOfPriorities = new ArrayList();
              for(int i=0;i<priority_options.length;i++)
                   IPrivateDetailView.IPayment_MethodNodeElement pr= wdContext.createPayment_MethodNodeElement();
                   pr.setPaymentAttribute(priority_options<i>);
                   ListOfPriorities.add(pr);
              wdContext.nodePayment_MethodNode().bind(ListOfPriorities);
              for(int e=0;e<wdContext.nodePayment_MethodNode().size();++e)
                   wdContext.nodePayment_MethodNode().setSelected(e,e>=0 && e<=1);
    and then write the following code in wdDoModifyView() method:
    IWDDropDownByIndex di =(IWDDropDownByIndex)view.getElement("DropDownByIndex");
             di.bindTexts("Payment_MethodNode.PaymentAttribute");
    then create an Action and bind it to the onselect property of the DropDown and write the following code in the onAction method :
    if(wdContext.currentPayment_MethodNodeElement().getPaymentAttribute().equalsIgnoreCase("Payroll/Corp/Partner Check"))
        wdContext.currentSelectedInfotypeElement().setZlsch("C");
        else
         wdContext.currentSelectedInfotypeElement().setZlsch("P");
    I am sure it will work..

  • Need to create a printable order sheet (wish list) for restaurant website

    I'm looking for an extension that will allow the user to select entees from an online menu to go onto a form that can be printed out and faxed for takeout orders. Using CS3. Please make a recommendation. I have the WebAssist suite, but is that overkill for something this simple?
    I'd appreciate your comments.

    I do not know the complete capabilities of the web assist suite, but it may be a starting point if you ask them how. You could save the selection to a database or cookie then place the items into the final wish form, from one or both of these.
    The web assist forum is at - http://www.webassist.com/forums/ and they try to respond within 24 hrs.
    The cookies solution may possibly be the easiest to implement, but it will require you to know some javascript, the database will be more complicated as this requires both a server side language (possibly php) and a database.
    PZ

  • Need to Get In progress planning window tasks in programetical way

    thanks for this reply ... I am in another trouble .Here I need to show those tasks that comes in Planning window (In progress) view for My Tasks .... what is the logic behind to get those tasks or any other programmatically way to find those tasks
    Regards
    Piyush
    piyush mishra

    Hello,
    You wont get the exact code Microsoft use but you will have to play with the logic until you match that view. What is missing / different from your view? Just update the code / logic to include / exclude those tasks that are missing / including.
    I can't give my work email address as this forum isn't for generating work leads etc. I would contact your local Project and Portfolio Partner if you need support / consultancy with Project Server development if this forum isn't helping. The link to
    pinpoint is below:
    http://pinpoint.microsoft.com/en-GB/companies/search?q=Project
    You might need to update the location etc.
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Need to keep Tray Icon on the task bar permanent

    Hi everyone;
    I wrote a Java program which creates an tray Icon on the taskbar and whenever the user clicks on the icon, a website on the default browser is open. When this program is executed, this icon is created and when the computer is rebooted, the icon is disappeared and next time I need to run the program again to create this icon. I'm guessing that this icon is disappeared because JVM is turned off.
    I need to have this icon on the task bar every time that the computer turns on. I need somehow to automatically run my Java program when the computer turns on. I'm wondering if you know how to do this.
    Thank you for your help in advance.

    If you are under windows, you can put a link in the startup folder.

  • Need help on Task Scheduling  using Timer task

    Hi all,
    Does any body know how to schedule a task at any given time using Timertask. Say i want to execute a task at 4:00 AM. but the timer task is executing the task at 4:00 AM and as well as at 4:00 PM also. But i don't want to execute the task at 4:00 PM. So how to specify the start time exactly as 4:00 AM only. How to specify the exact start time for timer task . please refer the following code how i have implemented
    Looking for any kind of help or hints or suggestions.
    Thanks in advance
    Date startTime = getExecutionTime(4,0);
    timer=new java.util.Timer();
    ImportingTask task = new ImportingTask();
    timer.scheduleAtFixedRate(task,startTime,interval);
    private Date getExecutionTime(int hours,int minutes ){
    GregorianCalendar present_Cal = new GregorianCalendar();
    GregorianCalendar result = new GregorianCalendar(
    present_Cal.get(Calendar.YEAR),
    present_Cal.get(Calendar.MONTH),
    present_Cal.get(Calendar.DATE),
    hours,
    minutes );
    return result ;
    class ImportingTask extends TimerTask{
    public void run(){
    executeScheduledJob();
    }

    I also have a similar problem.
    I used timer.scheduledAtFixedRate(MyTimerTask, start date, period). The start date is today 6:00AM and the period is 24 hours. It works fine. My problem is that I would like the user to enter a specific number of minutes or hours before it should start again.
    The current program starts initially at 6:00AM then it stops after 24 hours (which is 6:00AM the next day) and runs again.
    What I would like is that after 24 hours, the user can input, say, 5 mins......thus, the program should run at 6:05AM. Then it should run again at 6:10AM the next day and so forth.
    Can scheduledAtFixedRate handle this? Thanks in advance!

  • Change Request Management  "There is no task list for this project"

    Hello!
    I would like to use the functionality of CharM in SOLMAN 4.0.
    When I enter the Tcode /n/tmwflow/proj I receive the waring/error "There is no task list for this project" (/TMWFLOW/TRACK_N114)
    If I create my own task list via Task list --> create
    I get the warning "You cannot change task lists in the SAP namespace"
    What are the steps to define task list for my project?
    Do I need to configure SPRO ... --> Extended Configuration --> Schedule Manager?
    The second warning I get: "NO CTS projects created yet" or
    "The Solution Manager project does not have an active CTS project yet".
    How can these warnings/errors be corrected?
    Thank you very much!
    regards

    Hi,
    Pls click the check button(next to activate button)
    see the SLG1 log generated remove the errors shown in red.
    One it is done u press the refresh button & thn u cn create the task list
    chk
    https://websmp202.sap-ag.de/~sapdownload/011000358700000657692007E/ECTS_CHARM_SP12.PDF
    /people/dolores.correa/blog/2008/07/26/first-steps-to-work-with-change-request-management-scenario
    http://help.sap.com/saphelp_sm32/helpdata/en/0c/5b2160f6fa4b83a3674a210b1cdeb0/content.htm
    Regards
    Prakhar

  • Difference between Due Date for All Tasks and Duration per task in an approval workflow

    Hello,
    I'm starting to read up and learn about approval workflows in Designer 2010.  I am confused by the fields "Due Date for all Tasks" and the "Duration per task".  I understand that the Due date for all Tasks is the date that all
    of the tasks in the workflow must be completed by.  And I understand that the duration means each task has x number of days to complete.
    But I dont know whey we need them both.  If I have the task duration set to two days and there are 3 tasks involved, then wouldn't the due date be 6 days from the start?  Why would I have a due date for all tasks that is completely different than
    the sum of the duration of days for each task? 
    Please help shed some light!

    Hi Michelle,
    Due date for all tasks, this setting specifies the date by which all tasks are due. It’s used for serial and parallel
    task.
    Duration per tasks, this setting specifies the date by which an individual
     task is due, it’s used for serial workflow participants.
    Note, when you create an approval workflow, select task process participants(approvers oob approval workflow), we can also
    select once at a time(serial) or all at once(parallel).
    For more information, see
    http://office.microsoft.com/en-us/sharepoint-server-help/use-an-approval-workflow-HA101793831.aspx
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • ESS Leave request Visual Parameters for the Tasks

    Dear All,
    I have a basic dought about ESS Leave request Workflow process.
    We have used  WS9100004  TS12300097 for this Visual Parameters are 
    Visual Parameters        Visual Parameter Value
    APPLICATION                     LeaveRequestApprover
    PACKAGE                    com.sap.xss.hr.lea.appl
    For Task TS12300116
    Visual Parameters            Visual Parameter Value
    APPLICATION                    com.sap.xss.hr.lea.appl
    PACKAGE                    LeaveRequest
    In the same way I have to use another workflow for canceling the leave request
    Workflow number is  WS12400005  in which I have used
    TASKS  TS 12400028, TS04200011, TS04200007, TS01000162, TS04200008 
    For above tasks what are the visual parameters I need to maintain. 
    Visual Parameters     Visual Parameter Value
    APPLICATION              ?
    PACKAGE              ?
    Please suggest me on this.
    Regards,
    Kishorekumar.R

    Hi Siddharth Rajora,
         With you r help i was able to resolve the issue. Thanks for the information.
    Regards,
    kishore.

  • Using dummy task to synchronize other tasks

    Hi,
    Environment: NIDAQmx 7.4 - ANSI C
    Is there a way to use a dummy task to synchronize the starting of other tasks?   What I need to do is to make sure that multiple tasks (AIN, CTRs) are simultaneously started.   I was hoping that there might be some way to route the start trigger from the dummy task to a terminal (e.g. RTSI-2) and then have all my other tasks (armed and waiting for a pulse to come along on RTSI-2) start when RTSI-2 pulses.
    In the past I would setup my counters to gate off of an RTSI pin, and then routine my AIN tasks's sample clock to the same RTSI pin.  I would then start the CTR tasks first, followed by the AIN taks.   This all worked OK until I got a "DMA error" (-20078)  when using E-series cards.  The error text suggests that I need to start the AIN task before the CTR task.  But doing so adds a time skew between the AIN and the counter cards.   I am hoping to circumvent this by having ALL tasks gate off a signal (e.g. RTSI-2), and using a dummy task to pulse the RTSI pin.
    Is this possible?  If so, can you point me to some documentation on how to do this?
    Thanks in advance,
    -bill

    Hi Bill,
    You can definitely synchronize multiple tasks from a same start trigger. You can do this using the RTSI cable but also you can use the internal signal sampling clocks as start triggers.
    First you will have to configure your RTSI in MAX. This can be done by right-clicking on Devices and Interfaces -> NI-DAQmx Devices and choosing Create New NI-DAQmx Device -> RTSI Cable. Then, for each device that is connected to the RTSI cable, use MAX to edit its properties and in the "RTSI Configuration" tab, specify the RTSI cable. This will allow NI-DAQmx to automatically route signals of the RTSI cable.
    Actually, the discussion forum http://forums.ni.com/ni/board/message?board.id=250&message.id=9743&requireLogin=False explains in detail how setup the time bases and synchronize the each of the tasks using the DAQmxGetMasterTimebaseSrc function. Please also refer to synchronization examples in the C:\Program Files\National Instruments\NI-DAQ\Examples\DAQmx ANSI C\Synchronization.
    Also, if you decide just to use the internal sampling clock option, when you set up the timing for the task by using the function DAQmxCfgSampClkTiming(), for the source parameter you can specify the same start trigger for all tasks (for example Dev1/ao/Start trigger). Daqmx will automatically synch the start of all tasks once the source is specified.
    Regards,
    Natasa

Maybe you are looking for

  • Check for Null vaules in query output

    I am querying a database for user info. I want to display the users e-mail address if there is one, if there is not an e-mail address, i want to alert the user of this, and offer them the chance to enter one. I figured i would use an if statement, bu

  • Calling standard Report from a zprogram

    Hi Experts, We want to call ME5J transaction code from a zprogram using Submit statement. We used following code to call the report SUBMIT RM06BKPS WITH TCNT-PROF_DB EQ '000000000001' WITH CN_PROJN IN PROJECT  EXPORTING LIST TO MEMORY AND RETURN. Aft

  • Short Dump in CO02 Transaction

    Hi ,      I am getting short Dump in CO02 Transaction .  Please see following detail .      Runtime Errors         MESSAGE_TYPE_X     Trigger Location of Runtime Error     Program                                   SAPLCOKO1     Include               

  • How to identify Shopping cart status ?

    Hi Experts, I need your inputs regarding how to identify the status of the shopping cart ( like Awaiting approval, pending) passing through GUID of the shopping cart.. Pls provide me if any classes or anythin in such related are available..

  • Folio Total Size

    I did some searching on the forum and figured out how to find the file size of individual articles inside a folio (Acrobat.com), but I can't figure out a way to check the entire folio size (all articles added together). Is there a way to do this shor