Change in Work item Text for Approval Workflow WS14000133

Hi,
I need to change the work item text for Shopping Cart Approval Workflow WS14000133.
I have created an Attribute in Business Object BUS2121 and called the same attribute in work item text.
In PFTC -> Redefine Work item text - > and i have defined the work item text as well called the attribute from the container.
what  the problem over here is - when I am passing the attribute in the work item text in the task, I am unable to see the work item text with the Dynamic Attribute but I am able to see the work item alone (not with the Dynamic attribut)
But when i debug the workflow from SWI1 then i can see the dynamic attribute in the Container of the workflow but nt in the approver's inbox in portal..
Can you please tell me - that why is this a strange behaviour that i can see the Dynamic attributed created initially in the workflow container of the Business Object but nt in the Approvers inbox either in Backend nor in the front end...
Thanks,

Hi,
Maybe this SAP note/KBA will help :
1470761 - How to change the text of the SRM approval links in inbox or UWL
Kind regards,
Siobhan

Similar Messages

  • Change N Step work item text

    Hi. We are using the N step workflow with SRM 4.
    We have got the workflow working fine and the approval preview is fine.
    However, all the approvals have the same text in the inbox "Approve shopping cart from ...... with value .......".
    We want the workflow text to contain the approval type from the approval preview.
    The text is in the original workflow but it is not passed to the sub workflow and the task that creates the work item in the users inbox.
    I could change the task and the binding to pass the description down, but won't that get overwritten by support packs?
    Is there any other way? I've tried method SET_APPROVAL_DESCRIPTION in the N step BADI but that does not do anything. It is called but it changes nothing that I can see.
    Does anyone know how we can get the step description into the work item text?
    Thanks a lot for your help,
    Dave.

    Hi,
    Customer defined workitem is available.
    Transaction: PFTC_DIS
    Menu: Edit -> Workitem text -> Redefine, Customer Definition
    Save.
    Transaction: SWU_OBUF, refresh buffer
    Regards,
    Masa

  • Work item text change

    Hi,
    I am using standard task 8057: INVOIC input error MM
    I want to display invoice number in place of work item text.
    we can assign any element present is task container  to work item text. But invoice number is not there in container of this task.
    I need to take the Idoc number present in the container and read invoice number from one of its segments. Where and how can I do this processing?
    Please help
    Thank you.

    hi,
    i have never worked with idocs. so would not be able to guide you for anything other than the workflow logic.
    i am also not aware how to get the invoice number from idoc no. but if you are able to do that then you can try the following solution.
    firstly, we will deactivate the link for the standard task 8057.
    then we will create a custom WF which will have the triggering event as same as that of task 8057.
    we will activate the link for this WF in SWE2 with BO IDOCINVOIC and event INPUTERROROCCURREDMM.
    this WF will have first step as an activity. this activity step will have a custom background task which in turn will call the custom method which will be used to find out the invoice no.
    this custom method will be present in the subtype object (z object that you have created).
    now you have the invoice number that you wanted.
    the 2nd step of the WF will be the custom task which will be a copy of the standard task 8057 wirth some changes.
    we will remove the triggering event from the custom task. (it will have no triggering event).
    then our job is done.
    one more thing needs to be taken care of. i.e., delegation between IDOCINVOIC and ZIDOCINV must be defined. by doing so we will be able to call the custom method of ZIDOCINV in our step 1.

  • How to display a message from program in work item text in workflow

    Hi,
    I need to display an error message in the work item text in workflow  . The error message is contained in the container t_container and the field in which the error message is contained is t_container-textvarfortextelements
    the text that is contained in the field " t_container-textvarfortextelements " is "Incorrect store mapping ".
    I need to display "Incorrect stor Mapping" in the work item text.
    I am working in 40B .

    4.0B?
    Just add a new element in the task container (input variable) and add the variable to the Task text. Don't forget to pass the value from the WF container to the Task.
    Regards, Uwe

  • Detecting change on header and item texts for sales order in user exit

    Hi,
    In the user exit of VA02, I need to identify/detect if header or item texts for sales order is changed or not.
    Please advise on this.
    Regards,
    Shreyas

    Normally system stores the old values in XTables and new values in YTables.  Check if you have access to these in your user exit.  If you give the user exit name, someone will be able to guide you.
    hith
    Sunil Achyut

  • REG : Workitem Text for Global Workflow Administrator

    Hi SRM Gurus,
    I have a requirement wherein if the approver id is invalid the work item should go to the GLOBAL WORKFLOW ADMINISTRATOR.
    I am achieving this in the RESP RESOVLER BADI, by checking the user is valid or not using the function module ' BBPU_CHECK_USER', in the in the method using the function module  'SWD_WF_DEFINITION_ADMIN_GET' and passing the same to the internal table ' rt_approver'.
    Everything is working fine and I am able to get the GLOBAL ADMINISTRATOR, but the requirement is when the WORKITEM is sent to the ADMIN, a custom Work item text should be sent to the WF Admin as 'Work item text is ‘Shopping Cart number xxxx Technical Completion Approver determination failed.'.
    Where should I give this text, I mean do I need to create an event along with an expression, and a new process level for the same.
    If yes, where should I code for the approver check, as this should trigger only when the user is invalid.
    Please help.
    Regards,
    Aakash Awasthi.

    Hi,
    Go to PFTC transaction and display the task.
    Menu Edit -> Workitem Text -> Redefine
    Synchronize runtime buffer by SWU_OBUF transaction.
    Regards,
    Masa

  • CREATE SUBSTITUTION RULE FOR u0093COPYING LINE ITEM TEXT FOR LINE ITEMSu0094

    Hi every body
    When user post transactions in FB60 we have give the line item text, Suppose no.of lineitems are there in tht instnace my client asked to create the substitution rule to “COPYING LINE ITEM TEXT FOR LINE ITEMS”
    pls tell me the processes how to create the substitution rule
    Plz can anyboby help me out...
    laxmi velaga

    sorry,
    link doesn't work:
    here's the content:
    you must add your rules at event 3 (complete document)
    in an exit of ZGGBS000:
    data htext type bseg-sgtxt.
    *find
      LOOP AT BOOL_DATA-BSEG INTO BSEG
                      WHERE    bseg-sgtxt <> space.
      move  bseg-sgtxt to htext.
      ENDLOOP.
    *copy
      LOOP AT BOOL_DATA-BSEG INTO BSEG
                      WHERE    bseg-sgtxt = space.
      move  htext to bseg-sgtxt
    *modify
      MODIFY BOOL_DATA-BSEG FROM BSEG.^
      ENDLOOP.
    http://help.sap.com/saphelp_47x200/helpdata/en/5b/d231a843c611d182b30000e829fbfe/frameset.htm
    please reward useful answers
    thanks and regards
    Andreas

  • Work item display for step : Deadline Missed

    Hi,
    Parked invoices for one of the vendor is not triggering the work item in the workflow inbox.
    But the status is showing as complete. Appreciate if provide guidance how to analyse the issue.
    The message is read as below:
    Deadline Missed: Invoice# 5106117758 PO# 4567819 Vendor# 10300 
    Work item display for step " Deadline Missed: Invoice# 5106117758 PO# 4567819 V " called...
    Message no. WL223
    Thank you

    Hello,
    "i looked in SWI1 to see who processed it. But it is not showing any parituclar agent name. "
    Maybe nobody has process it, which is why it went overdue and passed the deadline.
    If it's a dialog task and it's completed then there must be an agent attached to it.
    Look in the workflow builder to see how the deadline is set up for that step. It could be that it just issues a notification.
    regards
    Rick Bakker
    hanabi technology

  • New Screen Flow entry for Approval Workflow

    Hi,
    Can anyone please help me with this? I have a requirement where I need to provide a link on a JSPDynpage to the default approval workflow screen for any KM folder. We already have links to standard permissions and subscription screens which can be called via a url which looks something like this:
    http://<host>:<port>/irj/servlet/prt/portal/prteventname/HtmlbEvent/prtroot/com.sap.km.cm.command?Uri=/documents/Public%20Documents/Test%20Folder&isp=permissions
    For this we had created a new entry under Screen Flow (System Configuration->KM->CM Configuration->User Interfaces->Mapping->Screen Flow) and provided the java class for the Permissions screenflow. When I try the same for approval workflow however it does not work. In short, when I create a new Screen Flow Entry e.g. "approval" and specify the Java class for approval screenflow (com.sapportals.wcm.rendering.screenflow.cm.ApprovalScreenflow) and then use the URL
    http://<host>:<port>/irj/servlet/prt/portal/prteventname/HtmlbEvent/prtroot/com.sap.km.cm.command?Uri=/documents/Public%20Documents/Test%20Folder&isp=approval
    it does not work. Does anybody know why approval workflow works differently and how I can remedy the situation? Any help would be appreciated.
    Thanks,
    Shibendra

    Hi,
    The Custom Dialog Task No. you have to assign.
    1) Go to std. Workflow note all the Std. Task Maintain in SWFVISU, Note all the Parameters
    2) Similarly for the Respective Custom Task, Assign the Same for your Custom Workflow.
    Regards,
    Surjith

  • Change the SWF loading text for a single presentation

    This question was posted in response to the following article: http://help.adobe.com/en_US/Presenter/7.0/WS8815BC0A-5D22-4f29-87B9-D9047B5B57E4.html

    Hi,
      I have Adobe Presenter 7.0.5, in which with recently updating to 7.0.7 version.
    When I tried the fix of this "Change the SWF loading text for a single presentation" workaround fix, I passed to have the error:ReferenceError: Error #1069: Property ADOBE_PRESENTER not found on Pool_P75.Resource.UIText
    But before this error comes, I see that the loading text is changes from the original 2Adobe Presenter" to the one defined by me on the UIText, as the fix said.
    And what's happen is that the scrren with the loading text is not being changed by the learning first slide....
    Is there any workaround to correct that error?
    Many thanks in advance for any feedback from the adobe support team or from any other colleagues that are using Adobe Presenter (;-)).

  • Item text for Purchase order

    Hi All,
      I Wants to pick the item text for Purchase Order. in my prog i already picked the header text by Read_text FM .i wants to used the same FM for item pickup . Can you please tell the FM parameter Value, so that i can pick proper Item text value.
    <REMOVED BY MODERATOR - REQUEST OR OFFER POINTS ARE FORBIDDEN>
    Thanks in advance
    Moni
    Edited by: Alvaro Tejada Galindo on Sep 1, 2008 5:09 PM

    Hi Moni
    We can use the same procedure to retrieve texts of any document, just that the Name, Object and ID varies.
    To find the required parameters for each object and document do as below:
    1. Open an existing document
    2. Go to the required Text
    3. Double click on the same
    4. It takes you to the editor screen.
    5. Now use menupath: Goto->Header
    6. In the popup screen you will find the required paramters.
    For item texts the Name will be (PO Number + Item Number).
    Using the details, you can pass the same to FM: READ_TEXT and retreive the texts in programs.
    Regards
    Eswar

  • No work item found for workflow WS14000109 Urgent

    Hi,
    I am using Extended classic scenario, I have created a PO in SRM having a PO value of 100000 INR and the work flow which is triggered is WS14000109 i.e. spending limit worlflow.
    My approval limit is 25000 INR and I have three approver
    Approver A has approval limit 50000 INR
    Approver B has approval limit 75000 INR
    Approver C has approval limit 12500 INR
    Now the problem is that the PO has the status " Awaiting Approval" and when I checked the PO in transaction BBP_PD, I got the  message that no work item is found for all the three approver.
    I am not able to understand why the workitem is not being sent to appover A and later on to B and C
    Please help me out as this is really urgent
    Regards,
    Yatendra

    Hi Yetendra,
    You approval workflow task should be a general task.
    Make it a general task and you will work items flying around.
    Please reward few points if you feel this answer is helpful.
    Regards
    Pras Durafe

  • Need help to change line item text for 220 Line items

    Hi Specialists,
    The user has posted a reversal entry ( doc type : Manual Accrual) using TCODE FBS1.
    It has 220 line items.
    Is there a way in SAP he can change the text of All Line Items for a particular document number in one shot ( Mass Change).
    Pls note : Header text remains same . Only the line item text needs to be changed in one shot .
    For Eg :
      1 50 2758000047 Accruals for CAS               Accrl - Dec 08 / Nalini Marketing(Door Mats) - Oth
      2 50 2758000047 Accruals for CAS               Accrl - Dec 08 / SKC - M&E Repair
    Changed Description:
      1 50 2758000047 Accruals for CAS               Accrl - Jan 09 / Nalini Marketing(Door Mats) - Oth
      2 50 2758000047 Accruals for CAS               Accrl - Jan 09 / SKC - M&E Repair
    Thanks,
    Abhinav.

    Hi
    This is possible, please follow as below:
    If it is GL (FBL3N), Customer (FBL5N), Vendor (FBL1N) line item use the TCODE' mentioned.
    In the selection screen, if possible give all the document numbers (it is possible with addition selection).
    Once you get the output with the line item, select all line items and go to the menu options  there you can see the mass change option, it will give one popup screen give the new value in the text field and proceed further.
    VVR

  • SC in Awaiting Approval but no work item found for SC

    Hi
    We are in SRM 5.5 Extended Classic Scenario will item-based approval workflow for SC.
    A requestor has created a SC which requires several steps of approval.
    The shopping cart has status 'awaiting approval' but when we check via BBP_PD system gives 'No workflow item found .
    Why this occurs is already strange we have lots of SC every day and workflow item is created properly.
    But 2nd question is if there is a solution available to retrigger / restart the workflow for this SC ?
    Any help would be appreciated

    Hi,
      did you check in SWI6 or SWIA?
    Saravanan
    Edited by: Saravanan Dharmaraj on Nov 30, 2011 1:57 PM

  • Change tekst work item e-mail

    Hi all,
    We use SRM 5.0 with the classic scenario.
    I would like to change the tekst of a standard generated work item e-mail, for e.g. the mail send to the requestor when a approver changes/ disapproves a shopping cart.
    I can't find any threads about this issue. Note: we don't use offline approval.
    Hope you can help me.
    Kind regards,
    JvE

    Hi,
    Solved it my self:
    1. SAP Implementation Guide->SRM Server->Cross-Application Basic Settings->SAP Business Workflow->Maintain Standard Settings for SAP Business Workflow>Maintain Runtime Environment
    2. select Document Generation/Form Integration en press Execute.
    3. open WF Customizing: Document Generation and double click Edit Document
    4. Very important!! Default screen setting is Display, so set screen to Change mode first!
    Text can be changed in display mode, but the changes are discarded when leaving the tranaction.
    5. choose Other standard task
    6. Continue with asterisk
    7. search for object e.g:
    Approve SC: WebAppr20A1 or WebAppr20A2
    Accept or change rejection: TotRejectSC
    8. Edit text
    9. Save changes
    Good luck!
    Ten points for myself
    Regards,
    JvE

Maybe you are looking for