Query regarding task container elements

Hi,
im very new to workflows,
in task container ther r some default elements like WIgroup_ID,_workitem
WIOBJECT_ID etc..........
can any one tell the use of them,wher do we use them genrally

This r my Mail IDs
[email protected]
[email protected]
[email protected]

Similar Messages

  • Add task container element

    I have a deceison step and in the container task I add a variable , and add this variable  to the description of the task , i triger the WF and it is working OK ,
    put when i try to do the same thing with new variable ( add another variable to the task container ) 
    and add it to description it dosnt appear .
    I do a new bindig to the step task
    any help please
    thanks and regardes

    Hi,
    U have created one new elemnet in task conatiner n it is not cming in task desc.
    For this, first check that d element which u created have right import,export properties.
    u have already created one element.....i.e. u know d procedure.
    then delete dis 2nd element n create it again....sometimes it helps
    hope it helps u!
    Regards,
    Mamta

  • Regarding Create container element ....in ......RWB.

    Hi All,
    can  anybody have a idea about say  while  creating a new container element by clicking CREATE button in container we have several options like
    Element:
    name:
    short descreption:
    object type :
    ABAP dict reference:
      structure:
      field:
    ABAP dict datatype:
      table name:
    what details i need to fill here .........(as i am trying to send alert using BPM for this i am configuring all Alert steps in RWB)
    Regards,
    Azeez

    Hi chirag,
    can i have ur email id so that i can explain in breif about my sceanrio and kind of errors i am looking for it would be very help full .....my email id
    thanks for the reponces.
    Regards,
    Azeez
    Please read the Forum's Rules of Engagement,
    i.e.,
    [/thread/117188 [original link is broken];
    and refrain from using email correspondence as the main objective of the Forums is to share knowledge.
    SDN PI/XI Forum Moderator
    Edited by: Kenny Scott on Mar 3, 2008 6:09 PM

  • Wat is the task container element

    hi ,
    im using a task and  sending a work item .
    if i want to find the person to whom the workitem is triggerd,
    which task container elment  hold this value..
    olease suggest me ..
    Raghu

    I think you can use Function Module
    SAP_WAPI_WORKITEM_RECIPIENTS
    to retrieve the agents that has been assigned provided you have the workitem Id. In the Task container it will not be reflected unless you have designed like that.
    Yes if the step is executed then the WI_ACTUAL_AGENT container element of the relevant task container will store the agent who executed it.
    Thanks
    Arghadip

  • Reg: Access the container element value inside the Task's description tab

    Hi All,
          I need to call one of my container element into the task's description tab as text symbols.
    Please let me know how to do it.
    Regards,
    Selva.

    define an importing element in the task container.
    map this importing element with the element in the workflow container.
    now you can use this task container element in your description text box. (method exxplained in the previous post to this problem)
    rgds,

  • Container elements in Alerts

    HI Experts,
    why we need to create a Container element in Alerts and there are some standard elements like SXMS_MSG_GUID, SXMS_RULE_NAME etc. wht is the purpose of these std. elements and mostly where they are applicable?
    Pts will b rewarded.
    Regards
    Faisal

    Hi,
    Container element is just a element which hold the values.
    its like a strucutre which is used to hold the values in this case SXMS_MSG_GUID will hold the SAP message ID.
    Some of the example are:
    Have u created data type in XI what u do is u give some name to data element and then specify the type now that element will hold the value which is coming to XI.
    Similarly for IDOC strucutre.
    chirag

  • Properties of the element of a task container.

    Hello there,
      The element I am binding from workflow to the container element doesn't allow me to change its property to 'import'
    When I check the binding. I get this diagnostic message:
    <element-name> is not an import element and is hence not to be changed
    Message no. SWF_BND_001016
    Diagnosis
    The current binding instruction is aimed at an expression whose basis element <element-name> is not an import parameter. Only import parameters should be filled.
    Procedure
    If the value has to be sent, the element <element-name> should be marked as an import parameter and thus included in the interface.
    Can anybody tell me how to fix this.
    Thanks and regards.

    Hi,
    From the problem that you have I assume that you are doing the binding from the Workflow container to the Task container. If that is right then check the following:
    1. The task container is nothing but a reflection of the method parameters. When you define your method in SWO1 then these parameters usually get generated automatically if you use a function module or a BAPI. You have the option of adding them as well. There you have the check boxes of Import, Export and Multiline. You can change them but since they are auto generated you should not change them as they are a reflection of the interface parameters of the Function module.
    2. If you want to change the entire container's property then go to the respective task either from the workflow builder or PFTC and then go to the tab "Container", select the container nd go to the properties tab and change the properties. However this applies to the container elements you have created and not the generated one (_WI_OBJECT_ID).
    Hope this helps,
    Sudhi

  • Get container element of task container

    Hi,
    in my method of a Business Object I need to get the value of the element WorkitemID of my task container.
    I tried the following to read the value of the element:
    swc_get_element container 'WorkitemID' lv_wiid.
    But I don't get the workitemID of the task.
    What am I doing wrong here?
    Thanks for your help.
    Regards,
    Martin

    Hi Martin,
    Are you making a call to the BO method from the task you are using?
    If yes, then in the binding between the task container and the method container, pass the workitem element you need to pass to the method.
    In the BO method, add an input parameter 'WorkitemID' of the same type as the workitem element.
    Now create a data element in the method code of name 'lv_wiid' of the same type as WorkitemID.
    Then use the code:
    swc_get_element container 'WorkitemID' lv_wiid
    to fetch the value of the element in the code.
    Hope this helps!
    Regards,
    Saumya

  • Container element not available when task is background

    Hi All,
    We have a task and method. the method works fine when tested individually, returns the correct values.
    However when the task is executed in background mode, the element in container is not updated. If the processing mode is foreground, the element is rightly updated in container.
    Clearly it has nothing to do with binding since I get the elements when I execute the task in foreground.
    any ideas would be welcome.
    thanks,
    Gautam

    Actually, I believe the problem is related to binding.
    When called in the foreground, object references (and data references) are present in memory for all subsequent processing.
    You probably need to make the CONTAINER "Persistent".
    In your code, call the macro SWC_CONTAINER_TO_PERSISTENT <container name here>.   For example:
    SWC_CONTAINER local_container.
    SWC_CREATE_CONTAINER local_container.
    "  Set you Container elements
    " SWC_SET_ELEMENT local_container 'Element01' lv_element01.
    " SWC_SET_TABLE local_container 'Element02' lt_table02.
    SWC_CONTAINER_TO_PERSISTENT local_container.
    " Start your workflow passing local_container.
    Something like this...
    Hope this is relevent . . . Apologies if not . . .
    Regards,
    Tom Carruth

  • Regarding container elements

    please tell me how to transfer container elements from rule container to workflow container and can we debug rule

    HI,
    its like normal task <---> workflow container binding only. And, yes, you can debug the rule. If you are using Rule with FM, then it's just anyother FM debugging.
    1 . Rule binding is same as task binging only , we need to     pass all the import parameters  correctly , make sure that all neccessary parameters are passing correctly then will get exact Agent .
    2. we can dubug the Rule by putting  /h  or
    by putting Break point inside the Function module
    For this we need to Go to PFAC tcode there u can put directly /H  - > Debug
    other wise select Function module then put Break- point Inside the Fm and Debug.
    Regards,
    Vijaya

  • How to round value of container element in task description

    I am trying to round the value of the container element from 3 decimals to 2 decimals for display purposes.
    The command symbol in the task description is &_WI_Object_Id.OverallTotalCost&. I have looked at SAP Help and I have tried the suggestion of &_WI_Object_Id.OverallTotalCost(.2)& and &_WI_Object_Id.OverallTotalCost(Z.2)& with no success.
    I have also searched the sap-wug mailing list and SAP ITToolBox and found no references rounding a container element in a task description. I have seen code assigning a value to a packed decimal variable to round. But I have not been able to get this to work as a command in a description for a task.

    I created a new element in the container as suggested by Glauco and added the element binding in the workflow / task binding. Biggest hassle was finding a business object that had a type of 2 decimal places to use for the new container element.
    The reason why the SAPScript symbol for reducing the number of decimals does not work in Task texts is because the container elment symbols are resolved first as text. Therefore only the SAPScript commands that apply to text will work like length.

  • Container element in task item text and task description inconsistent

    We use the purchase order release workflow 20000075: Workflow for release of purchase order
    The container element Release indicator (&_WI_Object_Id.ReleaseIndicator&) is used in the PO release effected task TS20000168 in work item text (title) and task desription (body text). 
    When we release the PO a workflow notification is send to the PO creator, the title text shown Release indicator = Z (released) and task body text shown release indicator = Z (same). 
    However, we do a cancel (undo) to the release of the PO, now when we view the same workflow nofication again the task work item text (title) shown Release indicator = Z (released) and task body text shown release indicator = X (blocked) -latest status.   
    In this scenario the title text does not updated with the latest release indicator value, the task body text does. Task work item title text and task body text is inconsistent for the release indicator. When we view the workflow notification at this point is confused with the release indicator Z and X (approved in task tile  and Blocked in task body text).
    Please help how to resolve this issue, any way to make the body text release indicator does not change once the notification is generated??

    This is very weird!!!!!  I will suggest you to check the binding such that the PO Object is binded from Workflow to Task and viceversa.
    Thanks
    Arghadip

  • Container element is not being displayed in email

    Hi Experts,
      I inserted an element from container into email text as below
    The task has been pending in inbox for more than &ins_num& days.
    The value of &ins_num& in container is 9
    In output I get
    The task has been pending in inbox for more than  days.
    Please let me know what is wrong. The binding works fine. No error in workflow.
    Thanks.

    Hi Miak,
    Greetings..:-)
    > I inserted an element from container into email text as below
    > The task has been pending in inbox for more than &ins_num& days.
    > The value of &ins_num& in container is 9
    > In output I get
    > The task has been pending in inbox for more than days.
    > Please let me know what is wrong. The binding works fine. No error in workflow.
    Check on the Following things:->
    1> The Container Element has Initial Value defined, If Yes - it should symbolise in Green Colour.
         If 'Not', then check the WF Log and see whether this Container Element is fetching the Values orr   not.
    2> If the Values are not being Fetched, then the Problem lies with the Binding of these WF Containers.
    Let me know if you are still facing Issues.
    Regards,
    Kanika

  • Query regarding updation thru a Procedure

    Hi,I have a query regarding updation.
    1.I invoke a procedure in Oracle called submit thru my Java application.
    The submit procedure saves the XML data in the database
    and displays this data in a Front End GUI.
    2. Now,I make a change in my Java application by adding new elements to the same row.This row now contains additional XML elements.
    I would like to display the new row with the new elements in the GUI.
    What is a better option for doing the above?
    1.Delete the row being shown,save the new row with the changes in the database,and re display it?
    2.Or,Update the row dynamically and refresh?
    Any suggestions
    Thanks,

    Hi,I have a query regarding updation.
    1.I invoke a procedure in Oracle called submit thru
    my Java application.
    The submit procedure saves the XML data in the
    database
    and displays this data in a Front End GUI.
    2. Now,I make a change in my Java application by
    adding new elements to the same row.This row now
    contains additional XML elements.
    I would like to display the new row with the new
    elements in the GUI.
    What is a better option for doing the above?
    1.Delete the row being shown,save the new row with
    the changes in the database,and re display it?
    2.Or,Update the row dynamically and refresh?
    Any suggestions
    Thanks,If you delete (it seems to me yours this process is regular and frequent) and re insert the new updated one record then High water mark will cause to scan yours table which may cause to degrade the performance.AFAIK you should go with update.But hold down dont implement it as i suggested lets see what are others solution here which may be more precious then mine.
    Khurram

  • Error while creating container Element in WF

    Hi,
    I have created a container element with field vbeln, and specified an initial value. Created mail step and activated it.  I have given the mail subject and content  as "value given : &vbeln&".  When I try to test this I couldn't find the container element in " Input Data" tab  of the Test Data and getting the message as "Contnr elem. VBELN  is for read purposes only. No values are assigned to it." 
    Could anyone suggest me to correct this, because I am new to WF.
    Thanks,
    AA

    Hi AA,
    You would probably need to create more than one containers.
    In workflows, we have following types of containers:
    1. Workflow container
    2. Task Container
    3. Event Container
    Now, since you need the element VBELN, try the following:
    1. Create a WF container for VBELN. Make it as both input and output parameter.
    2. Create a container for the Mail Step, again with VBELN field as an input parameter.
    3. There would be a button for binding in the mailstep. Bind the Field VBELN from Work flow container to the Mail Step container.
    Once binding is done, save it and Activate the Workflow.
    Hope this helps.
    Do get back in case of any issues.
    Regards,
    Sonal

Maybe you are looking for

  • Query Regarding Occurance in xml structure

    Hi frnds, I have an xml structure like this both on inbound and outbound MT_ORDER1 -- Node1 (0:1)      Val;period(1:10) ---Node2 (1:1) While trying to test this when i dont give any value for node1 its throwing up an error saying dont have enough val

  • ALV Popup in userexit

    Hi, An ALV Grid Popup has to be displayed and the code for this has to be written in the user exit. The requirement is such that when a particular button is clicked on the cat3_iscr transaction the ALV Grid popup should appear with still the cat3_isc

  • Can I use ReadXML/WriteXML to change Meta Data Set Type?

    Has anyone successfully changed which Meta Data Set an asset is using? In the XML description of the asset there's this entry: <mdValue fieldName="Metadata Set" dataType="string">paassetmedia</mdValue> but if I try to change it by using this XML stat

  • Videos from iTMS will not sync

    Movies and TV shows that I have purchased from the iTunes Store will not sync to my TV. I have a few a video I have made myself in iTunes and those copied perfectly fine, but the videos from the iTunes Store will not transfer. I have tried restartin

  • Huge Oracle Problem please help!

    Hi All, Our PB app that has been working for the past 8 years all of sudden (today) seems to have a huge problem with Oracle: when one record is updated, 23000 other records are being updated with the same data! That's why I am still at work at midni