Change the description of workflow/task

Hi Workflow experts,
I am working on CATS workflow, where the requirement is to change the description of task. As in my case, as the workflow comes into the inbox of supervisor, the description it shows should contain the short-text which is maintained in CATSDB table for the respective entry. Is there any FM to change that. It is not displaying the vriable, which i am passing through binding from workflow to TASK.

Hi Santoshi,
I have a workflow, i have a task and rule and methods associated with that also.  CATS workflow is created by me according to the requirement. Now a new requirement has come up where i have to display the value of CATSDB-LTXA1 also.
In task, there is a tab of task description. Here we write text which gets displayed when a workflow comes to the inbox. Along with the hard-coded text, i need to display value of CATSDB-LTXA1. I am paasing this variable through the event container to the task container (in triggering event tab of task). & i am giving it in task's description tab. But it is not getting displayed when the workflow comes to the inbox.
Please let me know if there is any FM to change the text of Task's description dynamically. I will use that in the method.

Similar Messages

  • Change of description in standard task TS 10407929

    How to change the description for standard task TS 10407929 in T code  pftc_chg, it says, to maintain the object TS 10407929 in its original language Deutsch.

    hi George,
    use the TX pftc, select the task 10407929 and view (not change).
    Basic Data Tab you will have a button "redefine work item text"
    As far as I know this should work also in english language

  • Is it possible to change the description of an attribute in the local view

    I have a characteristic in a query which has multiple attributes. In the global view I am able to change the descriptions on the attributes. But the local view does not show the updated descriptions - it shows the descriptions from the multiprovider? Any way I can match up the local and global view for the attribute descriptions ?

    Hello,
    Just close and open ur analyzer. Problem is that it is not getting refresh

  • How to change the description in CV03(N) transaction ?

    How to chnage the long test description in CV03N transaction  
    Posted: Jan 10, 2010 11:36 PM     Edit          Reply 
    Hi Friends,
    I have a requirement as below:
    1. Excecute the transaction CV04N
    2. Give Document value(s) and Excecute
    3. Double click on any row on the ALV generated which takes you to CV03N transaction
    4. Here in the additional data Tab, I need to concatenate Subject1,Subject3,Subject3 values and this value need to be put Description in the Document data Tab.
    Ex:
    If Subject1 = Test1, Subject2 = Test2 and Subject3 = Test3 then i have to change the description as Test1
    Test2 Test3 When the change followed by save is clicked.
    Please drop your suitable answers ASAP.
    Below is the code i have used using the BADI 'DOCUMENT_MAIN01' and the method 'AFTER_SAVE'.
    Below is the code :
      TYPES:
        BEGIN OF ty_ausp,
          objek TYPE ausp-objek,        "Key of object to be classified
          atinn TYPE ausp-atinn,        "Internal characteristic
          atwrt TYPE ausp-atwrt,        "Characteristic Value
        END OF ty_ausp.
      DATA:
        w_objek      TYPE ausp-objek,
        w_ltext(120) TYPE c,
        w_name       TYPE thead-tdname,        "Name
        wa_drat      TYPE drat,
        wa_ausp      TYPE ty_ausp,
        wa_tline     TYPE tline,
        wa_draw      TYPE draw,
        t_ausp       TYPE STANDARD TABLE OF ty_ausp,
        wa_thead      TYPE thead,              "SAPscript: Text Header
        t_tline      TYPE STANDARD TABLE OF tline.
      CLEAR w_objek.
      w_objek+0(3)  = draw-dokar.
      w_objek+3(25) = draw-doknr.
      w_objek+28(2) = draw-dokvr.
      w_objek+30(3) = draw-doktl.
      SELECT objek                         " Key of object to be classified
             atinn                         " Internal characteristic
             atwrt                         " Characteristic Value
        INTO TABLE t_ausp
        FROM ausp
       WHERE objek = w_objek
         AND atinn IN ('0000000858', '0000001038', '0000001039' ).
      IF sy-subrc = 0.
        SORT t_ausp BY objek atinn.
      ENDIF.                               " IF sy-subrc = 0.
      LOOP AT t_ausp INTO wa_ausp.
        CONCATENATE w_ltext wa_ausp-atwrt INTO w_ltext SEPARATED BY space.
      ENDLOOP.                             " LOOP AT t_ausp INTO wa_ausp.
      CLEAR w_name.
      MOVE draw TO wa_draw.
      w_name+0(3) = wa_draw-mandt.
      w_name+3(3) = wa_draw-dokar.
      w_name+6(25) = wa_draw-doknr.
      w_name+31(2) = wa_draw-dokvr.
      w_name+33(3) = wa_draw-doktl.
      REFRESH t_tline.
      CALL FUNCTION 'DELETE_TEXT'
        EXPORTING
        CLIENT                = SY-MANDT
          id                    = 'LTXT'
          language              = 'E'
          name                  = w_name
          object                = 'DRAT'
        savemode_direct        = ' '
        textmemory_only        = ' '
        local_cat              = ' '
       EXCEPTIONS
         not_found              = 1
         OTHERS                 = 2.
      IF sy-subrc <> 0.                    "IF sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.                               "IF sy-subrc <> 0.
      wa_tline-tdformat = '='.
      wa_tline-tdline = w_ltext.
      APPEND wa_tline TO t_tline.
      wa_thead-tdobject = 'DRAT'.
      wa_thead-tdname = w_name.
      wa_thead-tdid = 'LTXT'.
      wa_thead-tdspras = 'E'.
    wa_thead-tdtitle = w_ltext.
      DATA:
        w_function TYPE c,
        wa_newheader  TYPE thead.
      CALL FUNCTION 'SAVE_TEXT'
        EXPORTING
         CLIENT                = SY-MANDT
          header                = wa_thead
          insert                = ' '
         SAVEMODE_DIRECT        = 'V'
        OWNER_SPECIFIED       = ' '
        LOCAL_CAT             = ' '
       IMPORTING
         function              = w_function
         newheader             = wa_newheader
        TABLES
          lines                 = t_tline
       EXCEPTIONS
          id                    = 1
          language              = 2
          name                  = 3
          object                = 4
          OTHERS                = 5.
      IF sy-subrc <> 0.                    "IF sy-subrc <> 0.
    Raise message
      ENDIF.
      REFRESH t_tline[].
      CLEAR wa_thead.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
        CLIENT                        = SY-MANDT
          id                    = 'LTXT'
          language              = 'E'
          name                  = w_name
          object                = 'DRAT'
        ARCHIVE_HANDLE                = 0
        LOCAL_CAT                     = ' '
       IMPORTING
         header                        = wa_thead
        TABLES
          lines                         = t_tline
       EXCEPTIONS
         id                            = 1
         language                      = 2
         name                          = 3
         not_found                     = 4
         object                        = 5
         reference_check               = 6
         wrong_access_to_archive       = 7
         OTHERS                        = 8.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Please help why it is not getting effeted OR
    Give a differnt way of Solving this issue.
    Please drop your suitable answers ASAP.
    Regards,
    Rama.P

    Hi Claud,
    Go to SPROSRM ServerCross App Basic SettingsNumber rangesDefine transaction typesSelect BUS2200 and double click on transaction typesHere you will see BID (transaction type)--Just double click on this and in the screen that follows change the description.
    PS: The system will generate a transport request.
    Regards,
    Nikhil

  • Change the description of the line in the EMOLUMENTS PAID in the FORM16

    Hello Seniors,
    A small issue regarding the change the name of the FIXED DA to DEARNESS ALLOWANCE in the EMOLUMENTS PAID in the FORM16.
    my client asked me to change the description of the DA.
    how can i change this, programm HINCF160 is SAP STANDARD it is not changeable.
    please help me regarding this.
    thanks & regards,
    praneeth kumar

    Hi Praneeth,
    Even i m trying the same at my company, but it is without ESS...so doing RND on tht... Just check this link out...it may be helpful for you...also i dnt found ur E-mail ID in ur Business card...
    http://help.sap.com/saphelp_46c/helpdata/EN/53/6e693fa14411d19d450000e8215202/frameset.htm
    Regards,
    Prasad Lad

  • Change the  description of the change request number" in SE10 after release

    Hi All
    Is there way to change the
    "description of the change request number" in SE10
    after releasing the change request number?
    appreciate your feedback
    Thanks you
    Iver

    Hello
    I do not know a way to do it in se10 but a simple program could do the trick.
    Include the following code in your program.
    update e07t set as4text = 'your new description'
          where trkorr = your_cr and langu = 'E'.
    Of course you will have to wrestle with the 'moral issue' of directly updating SAP delivered tables
    Regards
    Greg Kern.

  • Changing the description of the created referenced Char. in COPA(Urgent!!!)

    Hi Gurus,
    Can we change the description of the created referenced characteristics in the COPA.
    Thank You.
    Points will be rewarded for sure.

    Hi!
    Since, the description is in the display mode, while being in editing mode, can't be able to change it.
    Is there any way out to change it.
    Thank You.
    Ravi

  • Change the description of the field

    Dear All
    I have a requirement where in i have to change the decription of the field " sales district" to "cluster" in the customer master.Can anybody please guide me how to do that??I have tried to go to SE11 against the table KNVV & searched for VKBUR field to change the description but wasnt able to navigate further to resolve the issue.

    Hi,
    use transaction cmod.  In the menu point GoTo -> Text enhancements -> Keywords -> change. You will see a pop up Key in your data element. Now you can change the field describtion.
    Regards
    William

  • Change the description of the product attributes

    Hi,
    I want to change the description of the product attributes from 1 - 6(Check Box)  in MM02 in the SALES : Sales Org 2 Tab.
    How to do this.
    Kindly let me know.
    Regards
    Manoj

    Hi dude,
           You can try Text Enhancements for ur Data Element  in CMOD.
           Tcode  CMOD, Goto>text enhancements>Data Elements-->NewDEcust Doc.
    Regards
    Srikanth M

  • How to change the description of Transaction Type

    hi ,expert
       i want to change the description of Tansaction type.
        eg, change the description of BUS2200 :'RFx  '   to 'RFQ' . 
        please give me some advice. thanks in advance.
         regards
                claud

    Hi Claud,
    Go to SPROSRM ServerCross App Basic SettingsNumber rangesDefine transaction typesSelect BUS2200 and double click on transaction typesHere you will see BID (transaction type)--Just double click on this and in the screen that follows change the description.
    PS: The system will generate a transport request.
    Regards,
    Nikhil

  • Access permission to the Project server workflow tasks in project server 2013.

    Hi All,
    I am creating an OOB Project server workflow, where it contains few phases and each phases have some stages, there are few approval levels of the workflow. 
    Scenario - 1st stage - when project is submitted, a task is assigned to resource, when the resource click on the task link provided in mail, it redirects to the project server workflow task list.
    1) When users view the task list, for all user the delete Item and approve button is enabled even we have given permission as edit,view permission in sharepoint group for that user.
    2) Task list should be viewable by specific user but in my case even after giving the permission it can be apporved by any one who is not authorised also.
    3)  then i tried below things
    1. deleted the user in pwa
    2. deleted the user in sharepoint site.
    even after doing the above, the user able to do all activity in the stie content page, have access to the sharepoint portal. how this is possible?
    When checked with not existing user permission there are few defalut permission set for that user after AD sync. because of this he as access, even if he is not in pwa or in sharepoint site. how to retrict this?
    Can anyone faced the same issue?
    How to fix this permission issue?
    Thanks in advance.
    Sunitha

    Hello Treb Gatte,
    I ma creating Data Connection from SSRS Report, and then creating Data Set for "Project
    Server Workflow Tasks".
    And then when I pull data from the database, it is returning empty. For any other sharepoint list this
    is working absolutely fine. I am facing issue only wrt "Project Server Workflow Tasks" list.
    Thanks,
    Shanky

  • IOS 8: The textbox to change the description field of the iCloud email account no longer exists

    The textbox to change the description of the iCloud email account that existed in all previous versions of iOS, and is available for all other types of email accounts under iOS 8, appears to have been removed.  Without this textbox, it is not possible to change the default description of "iCould", or to change a description that was set with a previous version of iOS.  The description field still exists, as the value that I set on a previous version of iOS is still being used by some of my iOS devices, but there is currently no way to change it via the current iOS 8 UI.  The description field is available to change for all other kinds of email accounts.

    Confimed.  And I hope they put it back soon.
    I used an iCloud backup to transfer everything on my iPhone 5s to my iPhone 6.  The (modified) description for my iCloud account transferred and appears the way I want it to appear on my iPhone 6.  However, it cannot be changed.
    Alternatively, I also have a new iPad Air 2 that I set up as a completely new iPad (i.e. I did not transfer anything from an older iPad).  The iPad shows the description for my iCloud account as the default: "iCloud."  It, too, cannot be changed.
    True, this is only a minor annoyance, but it would be less of an issue if Apple had not removed a feature that previously existed in iOS 7.
    I'm not sure if the removal was intentional or unintentional, but, again, I hope this gets fixed soon.  In the meantime, I would be interested in anyone can find a workaround.

  • Can you change the description in contacts from iCloud\

    In contact can you change the description from "icloud" to a differant name?? I have several accounts and want them to have a unique name. Any Help?

    You mean in the Music App .... And you can't. You can only view songs in a list.

  • 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.

  • Changing the description field in AP Invoice

    Hi is it possible to change the description field in an 'open' posted AP or AR invoice?  I assume you have to credit note the invoice and re enter it with the new line item description which seems a long way around when only the text is being changed and not the coding or amounts.
    thanks judi

    Hi,
    All marketing documents, whether closed/open, do allow the user to change the remarks/narrantion. This field is located in the Footer Fields - left corner of the form.
    Pls check out.
    Assign points if useful.
    Thanks,
    Srikanth

Maybe you are looking for