CRM Error in MW_BDoc processing , Type BUPA_REL (work flow messages)

Hello,
We have Messages cominin to our workplace from workflow!! saying RM Error in MW_BDoc processing , Type BUPA_REL..and other info messages..
I can go and check the error from SMW01... But i dont want these messages to be sent to users.
Can you please suggest me how can i make the seting?
thanks and regards,
Lata.

Hi Latha.
You can find a button with pencil sign. It says maintain configuration. When you click on that it will take you to next screen where you can maintain the user information to whom you want to send the mail.
E-Mail Address of Receivers : email-id
E-Mail Type : U
Make sure that your basis admin has maintained the batch job : SWWERRE  which actually sends the mail. You can check in transaction SOST to see if the email was sent or not if you were expecting it to send the mail.
Regards
Apoorva

Similar Messages

  • Getting status as ERROR while instantiating Business Object in work flow?

    Hi,
    Getting status as ERROR while instantiating Business Object in work flow.
    How to rectify it.
    Tahnks in Advance.
    Moderator message: please have a look at the dedicated Workflow forum on SCN.
    Edited by: Thomas Zloch on Jan 19, 2012

    Hi,
    Go to SWDD and create a new workflow. This workflow will have two steps. This is just for test purpose so we are not going to define any triggering event etc.  First step will instantiate (creating a runtime object) a business object and second step will use that runtime object to execute one of its method. We know that to instantiate any BO we need the object key to be passed. Key uniquely identifies a runtime instance of Business Object (henceforth we will refer it as BO or business object interchangeably). 
    use Business Object SYSTEM and method GENERICINSTANTIATE to instantiate any Business Object in workflow

  • Error in Decision Process Type Transport ( process chain)

    Hi,
    I have used a decision process type in my process chain and hence used the BW formula builder to create the logic for the "if then else" conditions of the decision process type. I have collected the process chain with all the required components like the process chain, the start process type, the decision process type and the corresponding formulas.
    The trasnport went in fine with a warning (return code 4), but the formulas didn't get transported. The transport log reads like "An error occurred when deleting formula XYZ version A" at the RS_RSFO_AFTER_IMPORT.  The overall status is a 4 and even though the log reads like "An error" it is in yellow indicating that it is just a warning.
    I checked in target system ..other objects are transported except for the formulas. The table RSAFORMMAP doesn't contain any record for the formula ID XYZ in the target system whereas the sender system has corresponding entries.
    Transport requests are colleceted properly.. i able to see formula ID , all object table in TR. but stll its not moving to target system..
    what will be the issue?
    Regards
    Rajesh

    HI,
    I found SAP NOTE 0000884385  for this issue. but is there any otherway to rectify this issue
    Regards
    Rajesh

  • Custom Process Types not working in SAP BPC 10.0

    Hi Experts,
    We have migrated from SAP BPC 7.5 NW to SAP BPC 10.0 NW.
    We have three Custom Process Types created in BPC 7.5NW using the super class CL_UJD_SIMPLE_ACTOR as super class.
    It has been made Obsolete and Final class in BPC 10.0NW and the Custom Process types are not running as expected.
    Can you please suggest if there is any alternative for using the existing custom process types? Or do we have any alternative for creating custom process types?
    *Note: We have tried replacing the superclass with CL_UJD_ACTOR instead of CL_UJD_SIMPLE_ACTOR but of no use.
    Regards,
    Balraj.

    Hi Inl,
    The statement looks fine, just confirm:
    Your CATEGORY dimension is named CATEGORY? Is it really has property COMPARISOIN?
    Can you show the screenshot of UJKT run of script?
    What is your core BPC SP?
    Vadim

  • Error in Custom Process Type Howto

    I have been following along the lastest howto document for custom process types (BI 7.0):
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/509f3ae6-e36e-2910-48a8-ab43dc167dd9
    I copied its code and everthing compiles fine, but when executed, the program crashes when you click on the green arrow to confirm the selected variant. The method call to RSPC_GET_CHAIN seems to be wrong:
    Type conflict when calling a function module.
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was
    not caught in
    procedure "IF_RSPC_GET_VARIANT~GET_VARIANT" "(METHOD)", nor was it propagated
    by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    The call to the function module "RSPC_GET_CHAIN" is incorrect:
    The function module interface allows you to specify only
    fields of a particular type under "I_CHAIN".
    The field "L_S_TABLE-VALUE" specified here is a different
    field type
    1 METHOD IF_RSPC_GET_VARIANT~GET_VARIANT.
    2   DATA: L_T_CHAINID TYPE RSPC_T_CHAINID,
    3         L_S_CHAINID TYPE RSPC_S_CHAINID,
    4         L_T_CHAINT TYPE RSPC_T_CHAINT,
    5         L_S_CHAINT TYPE RSPCCHAINT,
    6         L_S_CHAIN TYPE RSPC_S_CHAIN,
    7         L_T_TABLE TYPE TABLE OF SVAL,
    8         L_S_TABLE LIKE LINE OF L_T_TABLE.
    9
    10 * ... Read Process chains from control table an
    11   READ TABLE I_T_CHAIN INTO L_S_CHAIN INDEX 1.
    12   L_S_TABLE-TABNAME = 'ZPROCESS_CONTROL'.
    13   L_S_TABLE-FIELDNAME = 'ZCHAIN_ID'.
    14   L_S_TABLE-VALUE = '*'.
    15   APPEND L_S_TABLE TO L_T_TABLE.
    16   CALL FUNCTION 'POPUP_GET_VALUES'
    17     EXPORTING
    18       POPUP_TITLE = 'Process Chain to Check'
    19     TABLES
    20       FIELDS      = L_T_TABLE.
    21
    22 * ... Check selected process chain
    23   READ TABLE L_T_TABLE INTO L_S_TABLE INDEX 1.
    >>   CALL FUNCTION 'RSPC_GET_CHAIN'
    25     EXPORTING
    26       I_CHAIN         = L_S_TABLE-VALUE
    27       I_OBJVERS       = 'A'
    28       I_WITH_DIALOG   = RS_C_TRUE
    29       I_ONE_NO_DIALOG = RS_C_TRUE
    30     IMPORTING
    31       E_T_CHAIN_IDS   = L_T_CHAINID
    32       E_T_CHAINT      = L_T_CHAINT
    Does anyone know how to fix this?
    Thanks,
    Dennis

    I was able to fix it myself:
    CALL FUNCTION 'RSPC_GET_CHAIN'
    EXPORTING
    I_CHAIN = L_S_TABLE-VALUE(25) " <- this is the fix
    I_OBJVERS = 'A'
    I_WITH_DIALOG = RS_C_TRUE
    I_ONE_NO_DIALOG = RS_C_TRUE
    IMPORTING
    E_T_CHAIN_IDS = L_T_CHAINID
    E_T_CHAINT = L_T_CHAINT

  • Error inALE service (Segment type not maintained in Message type) status:29

    Hi all,
    Need your help.
    I have a added the a segment to the message type and which is linked in WE82( Message type:Debmas,basic type:debmas06 and extensionZxxx). And the segment is also set for release.It is an outbound senario. When i process it manually in WE19 using the basic type with the enhancement and via message type (with the message type and the extended type) I can process the idoc and the segment whic i have added with the following fields are displayed. But when i post the customer in BD12 with the message type I am getting the error in BD87 as " error in ale service Segment type ZXXX does not exist in message type DEBMAS".
    PLease do the needful. Its since 2 days I am struck with the same and was trying but I could not get any. Hope you guys might help me.
    Anything else to be refreshed or anything else to be done except we31.we30, we81
    Thanks in advance.
    Edited by: Farhy Farhy on Aug 2, 2010 12:29 PM

    Thanks for your reply Mr. Das.
    I have tried all the things and did not find any solution..
    Posted after checking all the things and the procedure. I did not write any custom program. Earlier I created the extension type and deleted and created the new extension type. But now it is taking the same old extension type and giving the error as the extension type is not maintained in the message type.
    I have deleted the old extension type completely but the old is onle getting reflected. Anything to be done to refresh.
    Waiting for the reply.

  • CS5  Batch Processing Photo Editing work flow

    I am relatively new to CS5 and I am intested in automating the correct  gross  photo editing work flow process [ie., levels contrast, color , noise, sharpening etc] once I have made RAW corrections for each photo.I hope this is as simple as refering me to a tutorial
    Tank

    Not sure exactly your are looking for, a template or an action to apply to other images. In Bridge/tools/photoshop there are a number of options.  The image processor is quite powerful.  There is also the option to make a metadata template to apply settings to other images.
    Do a google search for batch process edits Bridge and see what suits your fancy.

  • "Error Occured" after Task completed at Work flow status in threestate-work flow of Sharepoint list

    Hi There,
    I have created a list as Alerts where we have Threstate workflow to assign the task to the user. Everything is working fine as expected but sometime the Workflow status getting "Error Occured" by User ID "System Account" after completed
    the review task ,
    Please help me to address the same, FYI we have 1.5 lakhs items in this list, the error is occuring very rare cases for random user even for some users of the same who get the WF status completed may get the Error occured also
    Thanks
    Rehman

    Hi Rehman,
    Whether this issue occurred for other lists. Please create a new list with the three-state workflow, compare the result.
    Also, create a new three-state workflow for the problematic list, compare the result.
    Please check the log file to find whether there is some message about this error. The log file is: C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\LOGS.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Process types

    Hi gurus,
             what are the process types available in process chains? suppose if u find one process is failed with red request, then how do u correct and reschedule that process.is there any thing like right clk of that process and after that which screen we will move.pls xplain me in detail.if possible send me some screen shots of correcting the errors.
    Thanks in advance.   my id is [email protected]

    Hi,
    There are quite a lot process types which will be available for a process chain. There process types are devided into basically 6 types. 
    1. General services
    2. Load process and post processing
    3. Data target administration
    4.Reporting agent
    5.Other BW processes
    6. Others
    You can drop down each and see indvidual process types. Of supose one of your process type is red, then first you can see the display message or the job log. Right click and u see diaplay messages. Depends on which process type it is, the messages for failures will be listed. Suppose iif its a dataload process, then right click and goto display messages and in process tab and click on process monitor and u will see the details monitor screen.
    You see the error, correct the error and if requered load the IP seperately. Once its through, then u need to click on repeat on the next process so that ur process chain continues.
    Sriram

  • Work flow management - SD

    Dear Friends,
    1.Can somebody throw light on Work Flow management?
    2.How is SD integrated with Work flow and what are the business processes that needs work flow in SD?
    3.Is it like a Work flow consultant is required to handle this or can we handle the workflow from SD end itself?
    Thanks
    Isaac

    Hi,
    Few points on workflow was prepared by me and screen shots are not there. You can refer
    ALE, EDI and IDOC Technologies for SAP by Arvind Nagpal
    For further detail.
    if the requirment is minimal then SD consultant can handle otherwise Workflow consultant is required.
    Introduction
    The workflow management system provides procedural automation of steps in business process. A business process can consist of several steps. Historically the tasks have been coordinated manually or by some means of communication (sticky note, email, shouting and so on). The common problem in these approaches is in efficiency; each lacks a way to trace where a task is, who executed (or executing) it, and how much time is required.
    In contrast, workflow management system ensures that the right work is sent to the right person at the right time in the right sequence with the right information. The ALE/EDI interface mainly uses workflow for exception (or error) handling.
    Application of Workflow in ALE/EDI
    Error Notification
    Error notification is the primary use of workflow. When exceptions are raised in the outbound and inbound process workflow is started and handled as shown in the below flow diagram.
    Active Monitoring
    Active monitoring allows you to specify threshold values for the state of the system. If the system crosses the threshold limit, a person responsible for the system problem can be notified. For example you can have some one notified when the number of failed invoice IDOCS in the system exceeds 50.
    Rule Based Inbound Flow
    This application of workflow in ALE/EDI does not under the category of error handling. You can set up workflow to handle processing of an inbound IDOC. Normally, an inbound IDOC starts a function module that invokes the posting program to create an application document from the IDOC.       
    In contrast, if you use a workflow, you can set up to do whatever is needed for your business process. SAP doesnu2019t provide standard workflows for the inbound ALE/EDI process, but you can develop your own workflows and tie them to the ALE/EDI process.
    For example an incoming order change IDOC can be routed via workflow to a person for review. If the change requested are acceptable the IDOC can be posted.                                                                               
    The Architecture of ALE/EDI Workflow
    The components used in ALE/EDI workflow fall into two categories:-
    u2022     PD-ORG (organizational) object
    u2022     Workflow object
    You can view and maintain these components by using the T-code SWLD (Area Menu for workflow).                    
                             PD-ORG
                                                                                    Workflow
    PD Organizational Objects
    PD ORG object is used to represent the companyu2019s organizational structure in SAP. The following are the PD ORG objects.
    u2022     Organizational Units (O)
    An Organizational Unit can represent a department, physical location, division or subsidiary.
    u2022     JOBS(C)
    A job involves performing one or more business tasks. For example, sales order clerk, secretary and manager. Although it is possible to assign individual task directly to a position, it is advisable to group tasks together in a job and to assign the job to the position.
    u2022     Position(S)
    A position in a company represents his or her rank. If an employee is promoted, that person leaves his or her current position and is assigned to another position. For example, sales order clerk plant 1000, secretary of company code 1000 and manager of accounts.
    u2022     Users (US)
    A user is a person who has been granted access to the SAP system to use various functions.
    All the above mentioned PD ORG objects can be created, changed and displayed by using following T-codes.
    u2022     PPOCE  Create mode.
    u2022     PPOME  Change mode.
    u2022     PPOSE  Display mode.
    Screen shot1.
    Work Flow Objects
    Business objects
    A business object represents a business entity that has a definite state and various properties. You can carry out various functions on the object. A business object encapsulates the entire functionality of an object. A business object is given a name in SAP.
    For instance, a standard material is assigned the name BUS1001006; it has properties such as material number, description, and material type. These properties are represented using attributes of the business object. The various operations that can be carried out on an object are implemented with methods. For example, if you want to create a material, you can call that business objects create method. An object also has different states. It exposes its various states by publishing events. For example, the material object has created event that is published whenever a new material is created.
    The T-code for Business Objects is SW01.
    Screen shot2.
    Tasks (T or TS)
    A task defines a piece of work that can be executed and tracked in the system. Technically, a task points to a method of an object as shown in the below screen shot. In addition, a task defines the text the purpose of the task, the triggering event based on which the task is started, the terminating event that marks the completion of the task, and a role that contains the rules to identify the person who is responsible for executing the task. A task can be started in response to an event triggered in the system. Tasks are categorized as
    u2022     Standard  Task
    Standard Task is provided by SAP and is client independent.
    u2022     Customer Task
    Customer Task is client dependent and is developed by customers.
    The T-code for Tasks is PFTC.
    Screen shot3.
    Roles
    Roles are workflow objects used to determine the person responsible for carrying out a specific task. Each task has a role assigned to it.
    The T-code for Roles is PFAC.
    Screen shot4.
    Work item
    A work item represents an instance of a task that needs to be executed. The work item can have various states that govern the operations allowed. The following table describes the various states of a work item and its effect on usability.
    Status      Description
    Ready     A work item is created and is visible to all selected agents.
    Reserved      A work item has been reserved by a user and disappears from all the inbox of other selected users.
    In process     A work item is being worked on and can be seen in the inbox of the user who started working on it.
    Completed      A work item is complete and cannot be seen in the inbox of any user
    The SAP INBOX
    The SAP inbox is an interface to manage workflow items and SAP office documents. The below screen shot shows a list of work items in a useru2019s inbox. The SAP inbox contains separate buckets for office documents and workflow items. Office documents are email documents and workflow items are work items. You can display and execute the work items from the inbox. The inbox is highly configurable.
    Screen shot5.
    Error Notification Process
    The error notification process comprises the following steps:-
    u2022     Determining the task to be started.
    u2022     Routing the error to a responsible agent as a work item.
    u2022     Processing of the work item by the responsible agent.
    Possible Agents versus Selected Agents versus Actual Agents
    A task has three types of agents based on rights to execute:
    u2022     Possible agents
    Possible agents represent persons who can execute a task. Not all the possible agents get a work item when a task is started.
    Possible agents are configured in the system by assigning a task to
    several HR objects (job, position, Org unit). A task can be set to
    General task, which means that it can be executed by any one.
    u2022     Selected agents
    Selected agents are the users who get a work item in their inbox. They
    are determined by role resolution logic. Selected agents must be a
    subset of possible agents. If the selected agent is not found, the work
    item is sent to all possible agents. The selected agents are configured
    in the partner profile and the IDOC administrator in T-code WE46.
    u2022     Actual agents
    The actual agent is the person who executes the work item from the inbox. A work item can have several selected agents but only one actual agent. When a selected agent executes a work item, the actual agent for the work item is established, and the work item immediately disappears from the inbox of other selected agents. However, if an actual agent realizes that he or she cannot resolve the problem, the user can replace the work item, causing it to reappear in the selected agentu2019s inboxes.
    Level of Agents in ALE/EDI process
    Level 1
    If a partner profile is located for the problem, the organizational object specified at the message level (inbound or outbound) in the partner profile is notified.
    Level 2
    If level 1 is cannot be identified because of the problem locating the record, the level 2 organizational object specified in the General View of the Partner profile is read.
    Level 3
    If neither level 1 nor level 2 can be identified, the system reads the EDICONFIG table for IDOC administrator and sends a notification.
    Processing by the Responsible Agent
    u2022     The steps necessary to fix an error for which a work item is generated are as follows.
    u2022     Execute work item to display the error. Examples of errors include problems in the control record, errors in IDOC data, and incorrect configuration.
    u2022     The cause of the problem can usually be determined from the error message. If applicable, additional error information is also available for certain type of errors (for example application errors).
    u2022     After the cause of the problem has been determined, it must be fixed outside workflow (or in some cases, within workflow). The recovery procedure depends on the nature of the problem.
    -     If the error is in the IDOC data, the IDOC can be edited and then reprocessed from workflow.
    -     If the error requires restarting the process from the beginning, the IDOC has to be marked for deletion to stop it from further processing and to clear the work item from the inbox.
    -     If the error involves an IDOC that has not been created yet, the work item merely informs the person about the error.
    Important T-codes
    T-code      Description
    SWLD      Area menu for work flow
    SBWP or SO01     Sap inbox
    SW01     Business object builder
    PFTC      Task/ Task Groups
    PFAC      Roles
    SWU3     Maintain standard settings for SAP business workflow
    PPOM     To change ORG structure
    SWUS      Start workflow(Test Environment)
    SWI15     
    SWI13     Task profile for user
    Books Referred
    ALE, EDI and IDOC Technologies for SAP by Arvind Nagpal

  • RE:WOrk flow in abap

    Hi,
    Can any one tell me with an example for workflow.Also the step by step process.
    Regards,
    Alex.

    Hi,
    Check the following
    Check the below PDF file on Workflow:
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    www.sapfaq.com
    sap.ittoolbox.com
    www.sapTOPsites.com
    http://www.sap-press.com/product.cfm?account=&product=H950
    I am giving you links for Workflow....
    /people/ginger.gatling/blog/2005/12/01/link-workflow-business-objects-to-your-collaboration-tasks
    http://help.sap.com/saphelp_erp2005/helpdata/en/fb/135962457311d189440000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_erp2004/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    http://help.sap.com/saphelp_bw33/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw31/helpdata/en/8d/25f94b454311d189430000e829fbbd/content.htm
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://www.sapgenie.com/workflow/index.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Go through the following:
    1) Goto Tcode PFTC : Standard Task > Create Button>Workflow Templete
    For Create Container
    Element : ZBUS1001006
    Name : ANy Name
    Description
    Data Type & Properties
    Data Type:
    select Object Type : BOR Object Type for BUS1001006
    Properties:
    Parameter Settingd : check all Import, Export & Mandatory Checkboxes
    Basic Data :
    Abbr : Create_View
    Name : Some Name
    Work Item Text : Create View Material & -
    Click on DELE Button & Select Material From The List
    Object Catagory : BOR Object Type
    Object Type : BUS1001006
    Method : View
    Triggering Events
    Obj Catagory Object Type Event
    BOR Object BUS1001006 View
    activate it
    Enter on BUS1001006 Object Type you will get Quadratel<> Button after that
    double click on Quadratel<> button you get green button
    after that the system will generate the task No.
    check in the Event linkage Tcode : SWETYPV
    if you find an entry with your Workflow and linkage active
    goto Tcode : SWEC click on New Entries
    Change Doc Obje Obj Cat Obj Type Event on create
    Material BOJ Obje BUS1001006 View Option Button(Checked)
    save this
    goto Tcode : SWEC
    Change Doc Object : Material
    Obj Catagoty : BOR Type
    Obj Type : BUS1001006
    Event : View
    Check with On Create Button
    Goto SWETYPV
    Obj Catagoty : BOR Type
    Obj Type : BUS1001006
    Event : View
    Receiver Type : Some Work Flow No: WS80000431 like this
    Click on Work flow Builder
    Regards,
    Padmam.

  • Oracle Work flow/e-Biz Events

    Hi All,
    Need some info regarding Oracle Workflow and E-Business Suite R12 events.
    We have defined a business event in a E-Biz R12 and its subscription is of type ‘Launch Work Flow’ to launch a node(activity) of the work-flow. This activity is not the start node(activity) of the wf. Name of the activity is ‘Receive data’
    ‘Receive data’ is defined as an ‘receive-event’ type of activity. We’ll invoke the workflow from back-end, it will halt at the ‘Receive data’. When e-Biz event is raised, workflow will be resumed.
    We’ll be running different instances of work-flow. So, how do I inform e-Biz event to resume a particular instance of work flow?
    My assumption is:
    Work-flow (wf) instances are distinguish based on item-key while e-Biz event takes event-key as an input parameter when it is raised. E-Biz event will match the event-key with item-key of workflow and resume the correct instance of wf. Is it correct?
    All pointers are appreciated.
    Thanks,
    MK
    Edited by: MK on Apr 12, 2012 11:18 PM

    So to do this:
    1. Create an activity in the WF process so that it is a event-receiving activity and specify the event name that will make it resume
    2. Define the event and subscription in BES Studio. Create a subscription for the event so that it resumes/starts a workflow process
    3. Raise the business event by specifying its EVENT_KEY as the WF process item type
    When the BES gets the event it will identify the item type from the event subscription and will look for an activity waiting for an event and will resume that activity if the process item key corresponds to the event EVENT_KEY.
    Regards

  • Approval work flow for Role based and Resource based

    Hi All,
    We have to implement approval work flow for the following things in OIM 9.1.0.1
    Approval work flow for Functional Roles (Groups in OIM) (Approvalsrequired for users to get these roles)
    IT Roles (Resources in OIM) (Approvalsrequired for users to get these resource)
    Functional Role (Group) contains policy1,polici2. Polciy1 contains res1,res2 and Policy2 contain res3,res4.I want to create approval work flow for this Functional Role to achieve the following
    User raise a request for the functional role, then it should wait to get manager approval. then once its gets approval, that user account should create on all resources which are involved in that group.
    And, I have to define approoval work flow for all individual resources to get users account creation on target with approvals. These resources may include in the groups as well.
    After getting approval for functional role (Group), then Will OIM starts the approval flow for all resources involved in the group? becase, all resources have approval workflow at resource level also.
    My Goal: Approval work flow for Group, should not process the approval work flow for resource. can we do it in OIM 9.1.0.1?
    And can we do the same in OIM 11g also?
    Please help me and do let me know, if you need any information from my end.
    Thanks.

    Thats configurable buddy ! ! And possible in 10G and 11G both versions.
    Functional Roles : These are the groups/roles in OIM 10g/11g with access policies attached at the backend.
    - Create a dummy resource and name it Request Role or anything as you like. Attach an Object Form to it and have form field for Role Name, this would be a lookup type field linked to all OIM groups (leave system values using lookup query). So a user can select any OIM Group in this request as per configuration. Have approval workflows defined on this dummy resource Request Role and in its Provisioning Process make user/s a part of the requested group.
    - Now once the user is made a part of the group, the associated access policy would be invoked automatically and thereby provisioning. The only thing you need to keep in mind is that create the access policy without approval (there is a check box). If you do this the approvals would never be invoked even if you assign a group manually to the user coz it suppresses all the approvals in this access policy.
    IT Roles : These would be linked to the resource and you can define individual approvals on the resources as required.These approvals would be required if someone raises a request for these resources individually.
    Thanks
    Sunny

  • Urgent : Work flow  in ABAP

    Hi friends,
                  kinkly send me about Work flow. Also send me step by step procedure on how to do work flow. Thanks in advance.

    Hi,
    check the below links
    REfer this link:
    There is a good book from SAP Press that I would
    recommend as a starting point.It's called Practical Workflow for SAP and it is by Alan Rickayzen.
    http://www.sap-press.com/product.cfm?account=&product=H950
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Go through the following links on FORK :
    http://help.sap.com/saphelp_nw04/helpdata/en/24/e2283f2bbad036e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/25f1e7454311d189430000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/c5/e4a930453d11d189430000e829fbbd/content.htm
    http://www.insightcp.com/res_23.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    Work Flow
    1) Goto Tcode PFTC : Standard Task > Create Button>Workflow Templete
    For Create Container
    Element : ZBUS1001006
    Name : ANy Name
    Description
    Data Type & Properties
    Data Type:
    select Object Type : BOR Object Type for BUS1001006
    Properties:
    Parameter Settingd : check all Import, Export & Mandatory Checkboxes
    Basic Data :
    Abbr : Create_View
    Name : Some Name
    Work Item Text : Create View Material & -
    Click on DELE Button & Select Material From The List
    Object Catagory : BOR Object Type
    Object Type : BUS1001006
    Method : View
    Triggering Events
    Obj Catagory Object Type Event
    BOR Object BUS1001006 View
    activate it
    Enter on BUS1001006 Object Type you will get Quadratel<> Button after that
    double click on Quadratel<> button you get green button
    after that the system will generate the task No.
    check in the Event linkage Tcode : SWETYPV
    if you find an entry with your Workflow and linkage active
    goto Tcode : SWEC click on New Entries
    Change Doc Obje Obj Cat Obj Type Event on create
    Material BOJ Obje BUS1001006 View Option Button(Checked)
    save this
    goto Tcode : SWEC
    Change Doc Object : Material
    Obj Catagoty : BOR Type
    Obj Type : BUS1001006
    Event : View
    Check with On Create Button
    Goto SWETYPV
    Obj Catagoty : BOR Type
    Obj Type : BUS1001006
    Event : View
    Receiver Type : Some Work Flow No: WS80000431 like this
    Click on Work flow Builder
    ~~Guduri

  • Need help on how to put condition in the work flow

    hi friends,
    I want to check the conditions whether the customer is available in the server or not .
    If YES i want to do one process in the work flow
    or
    If NO i want to do one process in the work flow. Please help me out on this.
                    Ex:
                       KUNNR
             YES                NO
        1stProcess             2nd Process.
    Pls send me the screen shots or solution for this i searched a lot in this but I could not find...
    Thank you,
    Vikram.c

    Hi,
    you can use a CONDITION step to achieve this requirement. Try the following link, it may not exactly match your requirement but will give you a clear idea on how to proceed,
    [http://www.****************/Tutorials/Workflow/ConditionStep/Condition.htm]

Maybe you are looking for

  • Removing family members phones from my iTunes account.

    Here is the issue...all my grandkids have registered their computers/devices to my iTunes acct.  I want them all to set up their own accts because I cannot add my own phone because it says I already have 6 devices registered and cannot add more.  Her

  • Old problem with a new twist !

    My Ipod mini is frozen on the do not disconnect screen (not flashing) I accidentally disconnected it without ejecting/stopping the device I have tried to reset it several times using the - toggle hold press menu/play - method and the 5 r's method (ex

  • Users created in CUA does not distribute to child systems

    Hi I searched this forum and after pulling my hair for 2 days I am asking this question. I created a user in CUA and gave him child system access with the necessary roles. I was under the impression that the user will get replicated / distributed aut

  • Multiple invoices created in periodic billing

    Hii All, We are facing a problem in periodic billing. When i remove the billing block for 1 period in a sales order and try to raise the biling for the same, the system raises the billing doc for all the periods. e.g. I have 4 billing blocks in a yea

  • Does anyone know anything about EchoLink?

    I am using an iMac with wireless Airport, which my husband also uses on his XP. He would like to hook up to EchoLink. The information says: Allow UDP(source port any, destination ports 5198-5199)from Internet to PC Allow UDP(source port any, destinat