How to change the priority of workitem

im using the task to trigger the work item.
normally the work item is coming with priority 5 that is medium. can i trigger the workitem with the priority decided by me in the method?
generally who will decide the priority of the work item ?
please suggest.
Raghu

You can change the priority at runtime using Function module
SAP_WAPI_CHANGE_WORKITEM_PRIO
or
you can define the priority in the Workflow step from the OTHER or MISCELLANEOUS Tab.
Thanks
Arghadip

Similar Messages

  • How to change the priority level of message sent to market place.

    Hi to all gurus,
              I have rasied a query at market place. I raised the query with medium priority and now want to change it to high or very high priority as user is badly in need of the module for which the query is raised.
           How can i changed the priority of this message while I have not yet got reply for the same from SAP and the status is under process.
    Thanks and Regards

    Hello
    The hotline number of your local Support Customer Interaction can be found in SAP note 560499 - Global Support Customer Interaction.
    Either phone call or email and they will raise the priority accordingly.
    Regards
    Michael

  • Dynamically change the Priority Group of Logical Table Sources in OBIEE 11g

    Hi All,
    I have 2 Logical Table Sources(LTS 1 and LTS 2 for a Logical Table in BMM Layer).
    Example: Logical Table : Sample
    LTS Source 1 : Sample 1(Priority Group Set to 1)
    LTS Source 2 : Sample 2(Priority Group Set to 0)
    I have set the Priority Group of Sample 1 LTS Source to 1 and Priority Group of Sample 2 LTS Source to 0.
    I need to dynamically change the Priority Group of Sample 1 LTS Source to 0 if my role is DEVELOPER where role is a column in database.
    If my role is not equal to DEVELOPER then the Priority Group of Sample 1 LTS Source will remain same(1).
    Please suggest how can i achieve this.
    Thanks,
    Soukath Ali

    hello Soukath Ali,
    didi you find a way to dinamically changing Priority Group?
    thanks,
    Maria Teresa Marchetti

  • How to change the status of test cases in Test Plan from Design to Ready using Excel VBA

    HI,
    How to change the status of test cases in Test Plan from Design to Ready using Excel VBA

    Thanks Florin,
    Your piece of code has worked alot, and it was very helpful in changing the Status of the Workitem to "READY" for all the Users fo the workitem.
    Points have been rewarded for your help.
    Process: We have acheived this using the "Work Item Exits", Usng "AFTER_EXECUTION" Method.
    Note: The Exit will be executed if "exit_cancelled"  statement is present/used in the work item method. if not it is not taking to the exit code. I'm unable to find the reason for it. Florin can u please explain this point.
    Please check the link for adding the code in Work Item Exits.
    http://wiki.sdn.sap.com/wiki/display/ABAP/ProgramExitsIn+Workflow
    Please find the Code:
    method IF_SWF_IFS_WORKITEM_EXIT~EVENT_RAISED.
    Get the context of the workitem
      me->wi_context = im_workitem_context.
    After execution of the workitem call the method AFTER_EXECUTION
      if im_event_name eq swrco_event_after_execution.
        me->after_execution( ).
      endif.
    endmethod.
    METHOD AFTER_EXECUTION.
    This method acts as the Event Handler for SWRCO_EVENT_AFTER_EXECUTION
      DATA: LCL_L_WID TYPE SWW_WIID,
            L_STATUS TYPE SWR_WISTAT-STATUS,
            L_NEW_STATUS  TYPE SWR_WISTAT,
            L_SWR_MESSAG  TYPE STANDARD TABLE OF SWR_MESSAG,
            L_SWR_MSTRUC  TYPE STANDARD TABLE OF SWR_MSTRUC.
    Get work item
      CALL METHOD WI_CONTEXT->GET_WORKITEM_ID
        RECEIVING
          RE_WORKITEM = LCL_L_WID.
      L_STATUS = 'READY'.
      CALL FUNCTION 'SAP_WAPI_SET_WORKITEM_STATUS'
        EXPORTING
          WORKITEM_ID    = LCL_L_WID
          STATUS         = L_STATUS
          USER           = SY-UNAME
          LANGUAGE       = SY-LANGU
          DO_COMMIT      = 'X'
        IMPORTING
          NEW_STATUS     = L_NEW_STATUS
         RETURN_CODE    = SY-SUBRC
        TABLES
          MESSAGE_LINES  = L_SWR_MESSAG
          MESSAGE_STRUCT = L_SWR_MSTRUC.
      IF SY-SUBRC EQ 0.
      ENDIF.
    ENDMETHOD.
    Thank You Once Again,
    Ajay Kumar Chippa

  • How to change the recipients in workflow?

    I'm not  a workflow expert. Please help me how to change the recipients in workflow.
    The approver already resigned and we would like to change it to a new approver.
    We already deactivated the user and I stiil see him in SOST.
    In some releases, he is the approver and we would like to change it.
    Hope you can help me. Just kindly let me know if you still have queries.
    Thank you!

    Ask your workflow admin to define a substitution and/or forward the workitems.

  • How to change the order of the buttons in MIDlet?

    Hi everybody,
    I need to put at the right side of my screen the button menu which includes �Save� and �Save Group� buttons and at the left side the button �Back�. I declared commends like these:
    private Command backCommand = new Command("Back", Command.BACK, 1);
    private Command saveCommand = new Command("Save", Command.OK, 3);
    private Command saveGroupCommand = new Command("Save Group", Command.OK, 3);
    and got the completely different order from what I need. I can�t change the order even if I try to change the priority of commends.
    Does anyone know how to solve this?

    You don't have any real control over the positioning of the Commands. The implementation decides where to put them. You can have some influence by using the command type and priority arguments. Usually type has more weight in that decision. For example, if a Command is of type BACK, then the implementation will usually do it's best to put it on the "negative" soft button (ie, the right soft button on Nokia handsets usually hold the negative commands).
    So playing around with the Command types you'll probably manage to arrange those Commands how you want, but giving the appropiate type will ensure that they are mapped in a way that's closer to the phone's native UI.
    shmoove

  • How to change process priority after its already started

    This question is also active in the Tiger forum... http://discussions.apple.com/thread.jspa?threadID=1491812
    I am posting here in case it is somehow different for Leopard.
    How can I change the priority of a program (say Handbrake) to be lower?
    I have tried "sudo renice 20 <handbrake PID>" but Activity Monitor doesn't seem to show any
    change in behaviour and the Nice CPU display is still zero percent.
    How can an app's priority be lowered and how can one verify that it worked?

    I saw this post in another thread
    poster: P Gierke
    thread: http://discussions.apple.com/thread.jspa?messageID=6662466
    nice and renice still alter a processes scheduling priority. You can see for yourself using the pridist.d dtrace script ( type sudo pridist.d ). This script samples at 1 kHz and spits out a scheduling priority distribution graph broken down by process.
    As an example, kick off a cpu intensive command that does nothing, like:
    dd if=/dev/urandom of=/dev/null
    renice it to -10, and run the dtrace script.
    Then, renice to 10 and run the script again.
    You should see a major difference in the priority distribution for dd in each case. In my case, scheduling priorities moved from 0-15 (niced at 10) to 80-90 (niced at -10).
    As a side note, nice values that are negative will increase the scheduling priority of a process, making them not so 'nice' to other processes.
    P Gierke iMac 20'' Mid-2007 Mac OS X (10.5)

  • How to change task priority?

    How to change task priority? Task has been created and user claim it. TaskManager do not have method to change priority

    That is exactly how I did it. I did have a space after the 10, and I dragged the application to the terminal window, and it responded with the "Not found" error message.
    I will try the renice when I get home tonight. At work I am using Windows 2000 and Lotus notes (AAAArrrrgh!). I also support 4 PDP-11s and 6 antique VAX systems and an old Stratus.
    I have renamed the title of my position to "Paleocybernetic Systems Administrator".

  • Change the priority of job SAPF100 Foreing exchange valuation

    Hi
    How can i change the priority of job for the programme SAPF100 (foreign exchange valuation)
    SAP version: 4.6C
    Pls suggest me
    Thanks
    Suresh

    Batch job priority (Job Class) can be set when creating a batch job using transaction SM36 or changed in SM37 before a job is active.  Job class can be set from C to A, where C is normal (low) and B (medium) and A (high) are higher priority.  Batch processes on the server are allocated based on job class.

  • How to change the OraSSO login link in webcache/load balance

    Hi
    we have 10gAsR1 installed as a Portal instance. We have 6-server
    load balancer => webcache as loadbalancer (listening port 80)
    Wb ch1 and wb ch2 => webcache (listening port 7777)
    portal1 and portal2 => Portal listening 7778
    infra =>Infrastruture with repository Portal/Oracle SSO (listening 7777)
    This set up is working fine for our intranet setup, now we need to open this for couple of external clients. Well initially we need to open on the load balancer server on port 80 for external team to access, it works fine when we make it publc access.
    Now when we need to make it SSO (siteminder) enables, when users click on login link it first goes oracle sso then it internally redirects the page to site minder sso.
    Well, I have noted that the sso server details are mentioned in global setting sso/oid details. Since we need to open this for external client we have to add a DNS entry for this so that we can allow its access over firewall..
    Now I have made DNS name change at my infrserver level, now I need to update the change at the load balancer server (where wheb chache is running).
    Any one know how to chang the URL at load balancer.
    I am struck at this point please suggest how should i proceed..
    Thanks,

    Extract from Personalization Guide - Page Footer - Personalization Considerations
    * If you wish to personalize the URL that points to the Privacy Statement for a page that displays a standard Copyright and Privacy (that is, its Auto Footer property is set to true), set the Scope to OA Footer, in the Choose Personalization Context page of the Personalization UI.
    * If you wish to personalize the URL that points to the Privacy Statement for a page that displays a custom Copyright and Privacy (that is, its Auto Footer property is set to false), set the Scope to Page in the Choose Personalization Context page of the Personalization UI. In the following Page Hierarchy Personalization page , identify and personalize the Privacy page element.

  • How to change the privacy statement link url

    I looked into the previous threads , could not find the answer to "Changing the privacy statement url to clients privacy statement url".
    I am talking about the privacy statement URL in the page that user see it as soon as user logs into the e-business suite.
    I have read the previous theads and developers guide regading how to show or hide this autofooter thing. but could not find any thing about how to change the one in the login page.I even looked ino personalization but could not find a place to change this url. please HELP.
    Another question is " is it ok to show privacy statement in just the first page and hide it in rest of the application pages?"
    Thanks
    karan

    Extract from Personalization Guide - Page Footer - Personalization Considerations
    * If you wish to personalize the URL that points to the Privacy Statement for a page that displays a standard Copyright and Privacy (that is, its Auto Footer property is set to true), set the Scope to OA Footer, in the Choose Personalization Context page of the Personalization UI.
    * If you wish to personalize the URL that points to the Privacy Statement for a page that displays a custom Copyright and Privacy (that is, its Auto Footer property is set to false), set the Scope to Page in the Choose Personalization Context page of the Personalization UI. In the following Page Hierarchy Personalization page , identify and personalize the Privacy page element.

  • How to change the default apex port

    hi,
    i am installed apex4.0 in EBS R12 DB with HTTP Server method. my apex is running from application server 10g and default port is 7777.
    URl: http://hostname:7777/pls/apex
    My EBS R12 running on http://hostname:8007.
    is it possible to change the apex port to EBS Apache port(8007) in R12 and finally i want to change above URL like this
    Before change : http://hostname:7777/pls/apex
    After Change : http://hostname:8007/pls/apex
    Thanks in advanace....

    How to Change the Default SSH Port from Terminal ?
    now showing default SSH Port 22 i need change it pls help me how can do

  • How to change the default Path of Prompt Played by MicroApp

    Hi
    I need to store all the Self Service application prompts in dedicated Media Server. I can modify location of all the Media files by passing the related URL form CVP application, however I need to know how to change the default location of Prompt file played by Play Media Microapplication in ICM Scripting.
    Currently the default location taken by Play Media Micro App is the Media _Server.variable path set for VXML Server location while I have a separate Media Server.
    Please advice how we can customize the MicroApp Media path.
    regards
    Kapil Kumar

    Hi Kapil,
    Try this in your ICM script, define set variables i.e.
    set Media Server= ip address of media server
    set Locale = en-us
    set input Type = DTMF only
    set App Media Lib = " you new location i.e. test "
    So, the application path will be
    http://media server ip address/en-us/test
    hope this helps.
    Cheers

  • How to change the default SSH port on Cat 6500 WS-SUP720-3B

    I have been net searching this question and I find answers relative to other Cisco products but not for the 6500 series. We are running
    entservicesk9_wan-mz.122-18.SXF17a.bin and would like to know how to change the default SSH listening port..
    Thanks in advance..

    Hi Neil,
    Normally this is achieved via the "ip ssh port rotary " but unfortunately, this command is not implemented on your platform so ssh will only work on port 22.
    Regards,
    Nicolas

  • How to change the Default login script and the USER login script in Netware3.12

    I need to cut down the disk map from Neware 3.12 in Win98 client's PC.
    please tell me
    how to change the Default login script and the USER login script in
    Netware3.12 ?
    Or is there any other ways to do this thing?
    Thanks a lot!

    On 4/6/2006 [email protected] wrote:
    > how to change the Default login script and the USER login script in
    > Netware3.12 ?
    Please repost in the discontinued.forums.
    Edison Ortiz
    Novell Product Support Forum SysOp
    (No Email Support, Thanks !)

Maybe you are looking for

  • GL account or cost element used when create PR in Cj20n

    Dear All, Should i put GL Account or cost element when i would like to create PR via CJ20n under network/activity? There is a field showing GL account but when i click the button it shows cost element. In other words, i would like to create PR using

  • Runtime error DBIF_REPO_SQL_ERROR in production server

    Hello All, I am recieving the following running time error in my Production system. Any help would be really appreciated. Runtime Error          DBIF_REPO_SQL_ERROR        Occurred on     06.09.2009 at   19:16:45 *SQL error 3114 occurred when accessi

  • Replacing any non english Characters

    How can I Replace any non english characters I have alot of the characters that look like a block. --John                                                                                                                                                 

  • So I wasted my money?

    Been a happy user of my 2nd gen ipod touch for the last year or so, but..... Recently tried to download an app which wouldn't load as it required 4.3 - no problem I thought, just go and get the update only to discover that the 2nd gen doesn't have a

  • I downloaded music from my icloud account on to my iphone and i can not delete them off my iphone

    I downloaded music from my icloud account on to my iphone and i can not delete them off my iphone