Could we restrict ability to approve hours in CATS_APPR_LITE and CAT7?

Hello everybody,
we're looking for the way to restrict ability of users, that access to CATS_APPR_LITE transaction, to approve hours only entered by specific CID(s).
Is there a specific authorization object that drive the ability to approve hours?
and is there a similar object that drive the users accessing CAT7 to transfer data in controlling (data about hours in WBS)?
Thank you,
Patrick

Hi Martin, thank you for response...I used authorization trace and executed the CATS_APPR_LITE transaction...I didn't find a specific authorization object that could help me to restrict approval of hours of specific CID(s)...
the BADI solution how could be implemented? Do we need the creation of some customization tables (approver CID-->CID to be approved)?
in CATS_APPR_LITE could we create and set specific LAYOUT that restrict the view of only specific hours for specific approvers?
Thank you,

Similar Messages

  • Restricting access between the hours of 9am and 5pm

    i need help in creating policy to restrict access between office hours. i have created the function,
    but don't know how to link this up with my database. below is the function i created
    create or replace function office_hrs_only
    (p_schema IN VARCHAR2 DEFAULT NULL,
    p_object IN VARCHAR2 DEFAULT NULL)
    return VARCHAR2
    AS
    BEGIN
    RETURN 'to_char(sysdate,''HH24'') between 9 and 17';
    END;
    regards,
    christina

    Hi, Christina,
    christylong wrote:
    i need help in creating policy to restrict access between office hours. i have created the function,
    but don't know how to link this up with my database. below is the function i createdAre you trying to implement a row-level security policy? If so, you need to call dbms_rls.add_policy, as shown in the Packages and Types manual:
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28419/d_rls.htm#i1000830
    create or replace function office_hrs_only
    (p_schema IN VARCHAR2 DEFAULT NULL,
    p_object IN VARCHAR2 DEFAULT NULL)
    return VARCHAR2
    AS
    BEGIN
    RETURN 'to_char(sysdate,''HH24'') between 9 and 17';
    END;Remember, TO_CHAR returns a string, so you should compare it other strings, not numbers. Try this:
    RETURN  'to_char(sysdate,''HH24'') between ''09'' and ''16''';If you make the upper limit '16', then people will be able to use the table as late as 16:59:59, that is, one second before 5:00 PM.
    That's not completely intuitive, is it? Maybe it would be better if you said:
    RETURN  'to_char(sysdate,''HH24:MI:SS'') between ''09:00:00'' and ''17:00:00''';Edited by: Frank Kulash on Aug 21, 2011 12:11 AM

  • CATS_APPR_LITE - restricting ability to approve own time

    I have a question regarding transaction CATS_APPR_LITE.  Is this transaction intended to be used only by "master" time administrators?
    My reason for asking is that I cannot find a way to restrict a user who has access to this transaction from approving their own time.  I can restrict this capability when they use CAPS, but the same P_PERNR and/or P_ORGIN authorization objects restrictions don't seem to work in CATS_APPR_LITE.  To give you some more background, I've created three levels of security around time entry/approval.  The first level restricts the user to only enter their own time.  This role is assigned to all users.  The second level allows a user to enter time for another employee in the same organizational key.  This role is assigned to all managers and admin assistants (in addition to the first level role mentioned previously).  The third level allows a user to approve time within their organizational key.  This role is assigned to department managers (in addition to the two previously mentioned roles) so they can approve their staff's time but not their own (at least when they use CAPS to approve time).  However, we also have CATS_APPR_LITE included in this role so users have an option between the two time approval transactions.  Should we just disallow using CATS_APPR_LITE or am I missing something in my authorization object restrictions?  I would think these two time approval transactions would perform identical authority checks but they obviously don't.  Does anyone have any suggestions?

    I ran traces for both CAPS and CATS_APPR_LITE while trying to approve my own time.  For CAPS, there appears to be several more auth checks performed than with CATS_APPR_LITE.  I'm not sure I understand the significance of lines with RC=0 versus RC=4.  Are RC=4 lines auth checks that failed?  How do I determine which auth values to include?
    Here is the trace results for CAPS:
    P_ABAP     RC=4      REPID=RCATSC01;COARS=2;
    P_ABAP     RC=0  REPID=SAPDBPNP;COARS=2;                                     
    P_PERNR    RC=4  AUTHC=R;PSIGN=*;INFTY=0328;SUBTY=' ';                       
    P_PERNR    RC=4  AUTHC=R;PSIGN=E;INFTY=0328;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=I;INFTY=0328;SUBTY=' ';                       
    P_ORGIN    RC=4  INFTY=0328;SUBTY=' ';AUTHC=R;PERSA=;PERSG=;PERSK=;VDSK1=;
    P_PERNR    RC=4  AUTHC=R;PSIGN=*;INFTY=0328;SUBTY=' ';                       
    P_PERNR    RC=4  AUTHC=R;PSIGN=E;INFTY=0328;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=I;INFTY=0328;SUBTY=' ';                       
    P_PERNR    RC=4  AUTHC=R;PSIGN=*;INFTY=0328;SUBTY=' ';                       
    P_PERNR    RC=4  AUTHC=R;PSIGN=E;INFTY=0328;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=I;INFTY=0328;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0000;SUBTY=' ';                       
    P_ORGIN    RC=4  INFTY=0000;SUBTY=' ';AUTHC=R;PERSA=;PERSG=;PERSK=;VDSK1=;
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0000;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0000;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0001;SUBTY=' ';                       
    P_ORGIN    RC=4  INFTY=0001;SUBTY=' ';AUTHC=R;PERSA=;PERSG=;PERSK=;VDSK1=;
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0001;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0001;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0002;SUBTY=' ';                       
    P_ORGIN    RC=4  INFTY=0002;SUBTY=' ';AUTHC=R;PERSA=;PERSG=;PERSK=;VDSK1=;
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0002;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0002;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0007;SUBTY=' ';                       
    P_ORGIN    RC=4  INFTY=0007;SUBTY=' ';AUTHC=R;PERSA=;PERSG=;PERSK=;VDSK1=;
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0007;SUBTY=' ';                       
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0007;SUBTY=' ';                       
    P_PCLX     RC=0  RELID=B2;AUTHC=R;                                           
    P_PCLX     RC=0  RELID=B2;AUTHC=R;                                           
    P_PCLX     RC=0  RELID=B2;AUTHC=R;                                           
    P_PCLX     RC=0  RELID=B2;AUTHC=R;                                           
    S_ALV_LAYO RC=0  ACTVT=23;
    S_GUI      RC=0  ACTVT=61;
    S_GUI      RC=0  ACTVT=61;
    P_PERNR    RC=4  AUTHC=D;PSIGN=*;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=E;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=I;INFTY=0328;SUBTY=' ';                                        
    P_ORGIN    RC=4  INFTY=0328;SUBTY=' ';AUTHC=D;PERSA=;PERSG=;PERSK=;VDSK1=;                
    P_PERNR    RC=4  AUTHC=D;PSIGN=*;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=E;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=I;INFTY=0328;SUBTY=' ';                                        
    P_ORGIN    RC=0  INFTY=0328;SUBTY=' ';AUTHC=D;PERSA= ;PERSG= ;PERSK= ;VDSK1= ;                
    P_PERNR    RC=4  AUTHC=D;PSIGN=*;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=E;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=I;INFTY=0328;SUBTY=' ';                                        
    P_ORGIN    RC=0  INFTY=0328;SUBTY=' ';AUTHC=D;PERSA=1000;PERSG=2;PERSK=01;VDSK1=10000000004141;
    P_ORGIN    RC=0  INFTY=0328;SUBTY=' ';AUTHC=D;PERSA=2000;PERSG=2;PERSK=01;VDSK1=10000000004141;
    P_PERNR    RC=4  AUTHC=D;PSIGN=*;INFTY=2002;SUBTY=0800;                                       
    P_PERNR    RC=0  AUTHC=D;PSIGN=E;INFTY=2002;SUBTY=0800;                                       
    P_PERNR    RC=4  AUTHC=D;PSIGN=*;INFTY=2002;SUBTY=0800;                                       
    P_PERNR    RC=0  AUTHC=D;PSIGN=E;INFTY=2002;SUBTY=0800;                                       
    P_ORGIN    RC=0  INFTY=2002;SUBTY=0800;AUTHC=D;PERSA= ;PERSG= ;PERSK= ;VDSK1= ;               
    P_PERNR    RC=4  AUTHC=D;PSIGN=*;INFTY=2002;SUBTY=0800;                                       
    P_PERNR    RC=0  AUTHC=D;PSIGN=E;INFTY=2002;SUBTY=0800;                                       
    Here is the trace for CATS_APPR_LITE:
    P_ABAP     RC=4  REPID=RCATS_APPROVE_ACTIVITIES;COARS=2;                                      
    P_ABAP     RC=0  REPID=SAPDBPNP;COARS=2;                                                      
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0000;SUBTY=' ';                                        
    P_ORGIN    RC=4  INFTY=0000;SUBTY=' ';AUTHC=R;PERSA=;PERSG=;PERSK=;VDSK1=;                
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0000;SUBTY=' ';                                        
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0000;SUBTY=' ';                                        
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0001;SUBTY=' ';                                        
    P_ORGIN    RC=4  INFTY=0001;SUBTY=' ';AUTHC=R;PERSA=;PERSG=;PERSK=;VDSK1=;                
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0001;SUBTY=' ';                                        
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0001;SUBTY=' ';                                        
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0002;SUBTY=' ';                                        
    P_ORGIN    RC=4  INFTY=0002;SUBTY=' ';AUTHC=R;PERSA=;PERSG=;PERSK=;VDSK1=;                
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0002;SUBTY=' ';                                        
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0002;SUBTY=' ';                                        
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0007;SUBTY=' ';                                        
    P_ORGIN    RC=4  INFTY=0007;SUBTY=' ';AUTHC=R;PERSA=;PERSG=;PERSK=;VDSK1=;                
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0007;SUBTY=' ';                                        
    P_PERNR    RC=0  AUTHC=R;PSIGN=*;INFTY=0007;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=*;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=E;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=I;INFTY=0328;SUBTY=' ';                                        
    P_ORGIN    RC=4  INFTY=0328;SUBTY=' ';AUTHC=D;PERSA=;PERSG=;PERSK=;VDSK1=;                
    P_PERNR    RC=4  AUTHC=D;PSIGN=*;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=E;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=I;INFTY=0328;SUBTY=' ';                                        
    P_ORGIN    RC=0  INFTY=0328;SUBTY=' ';AUTHC=D;PERSA= ;PERSG= ;PERSK= ;VDSK1= ;                
    P_PERNR    RC=4  AUTHC=D;PSIGN=*;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=E;INFTY=0328;SUBTY=' ';                                        
    P_PERNR    RC=4  AUTHC=D;PSIGN=I;INFTY=0328;SUBTY=' ';                                        
    P_ORGIN    RC=0  INFTY=0328;SUBTY=' ';AUTHC=D;PERSA=1000;PERSG=2;PERSK=01;VDSK1=10000000004141;
    P_ORGIN    RC=0  INFTY=0328;SUBTY=' ';AUTHC=D;PERSA=2000;PERSG=2;PERSK=01;VDSK1=10000000004141;
    S_ALV_LAYO RC=0  ACTVT=23;
    S_ALV_LAYO RC=0  ACTVT=23;
    S_GUI      RC=0  ACTVT=61;

  • HT1553 What is the best system for a real time cloud back up of documents?  My MacBook crashed, and I lost 2 hours of writing and could not find a way to restore it.

    My MacBook Pro crashed while I was rewriting a book, lost more than an hour of work and could not find a way to restore it.  Did not have Time Machine set up, but it appears that Time Machine does not have Real Time back up and documents must be manually stored.
    I need an automatic, real time back up to keep this from happening - I'm not happy my MacBook has crashed twice now.   What is the best cloud system for Real Time backup?   Thanks to anyone who can help me, I'm not the most astutde computer guy... James

    One way would be to use Dropbox, or a similar sync service, and just keep your critical documents in the appropriate folder. Dropbox, at least, keeps a local copy of everything and syncs automatically to the cloud whenver a change is made. Dropbox is free for up to 2GB of data.
    There are also true backup services such as CrashPlan+:
    http://www.crashplan.com/consumer/crashplan-plus.html
    which provide automatic backups whenver a change is detected. It's not free, but usually such services aren't too expensive unless you need to back up a lot of data.
    Regards.

  • Approved hours in CATS works as Good Received in MM

    Employees from subcontractors are working at projects defined in PS. They are using CATS to write the project hours on projectactivities. When these hours are approved by the manager the hours are loaded into PS. Is it possible to load the same approved hours in MM as a good receipt by a purchase order. The purchase order is created to monitor the purchased hours from subcontractors. How can I fix this.
    kind regards, Henk Kat

    Hi
    If you want to default the order then enter the value in IT315 or else just maintain the field in the data entry profile and there you can choose what ever order you want to according to the Activity type and the it can be transfered to MM thru CATM tran code
    Ravee
    +91.99206.33669

  • IMessages and FaceTime could not be used.is there any restrictions in oman for usage ?, iMessages and FaceTime could not be used.is there any restrictions in oman for usage ?

    HiiMessages and FaceTime could not be used.is there any restrictions in oman for usage ?, iMessages and FaceTime could not be used.is there any restrictions in oman for usage ?

    Answer would be no unless application provided such feature. Numbers does not as far as I know.
    Note that even if you have complete list of formulae used in a table, identifying formulae referencing any given cell is not simple.
    E.g., cell T20 is referenced not only in
    =T20+1
    but also in
    =SUM(T)
    =SUM(20:20)
    =SUM(S19:U22)
    =OFFSET(S1,19,1,1,1)
    =INDIRECT("T"&(10*2))
    In order to identify such formula, we have to actually evaluate it to see if it references the given cell. Especially such formula as OFFSET() and INDIRECT() may not be found by static parser because their parameters can be dynamic.
    Sorry to be the bearer of bad tidings.
    H

  • Why did iso7.1.1 change the ability to see your apps when you use four fingers to partly close the app your in. In 7.1 you could use four fingers to partly close a app and see all the apps on that home screen. I used this all the time to check the date

    Why did ISO 7.1.1 change the feature where you could use four fingers to close an app and see if he other apps on your home screen as you were closing an app. This was the handiest feature I thought because I could partially close the app I was working in and see the  date or other things on my home screen and then released the four finger position and be right back to the app I'm working in. Please change this in the next update back to the way it was!!!!!

    I get the multitasking list (all prior apps, scrollable) and can switch to an app, swipe up to force it closed instead of "at rest" and can click back to the originating app in the same place i was prior to the swipe,

  • When trying to update apps an invalid apple id show up and I cannot get the apple id to update to the same id,  I have restored, restored as a new phone, I have been into the manage I am at wits end after 7 hours on hold and working with techs.

    When trying to update apps an invalid apple id show up and I cannot get the apple id to update to the same id,  I have restored, restored as a new phone, I have been into the manage I am at wits end after 7 hours on hold and working with techs.

    Finally got through to tech support and found someone who seemed to know what was going on, he walked me through and using appleid.applesupport got me to a point where i could get a new password for the apple id that kept showing up. 
    I think you were on the right trail and I want to say thanks for your help.  Much appreciated
    ccl43

  • I have lost the ability to change fonts,use color and size and when I try to write anyone,I cannot see my mailing list and there is no send button.

    A few months ago my ability to use different fonts, colors and sizes suddenly disappeared. These choices were always available when looking at my email and I used them regularly . No one I asked ever heard of such a thing happening. I left it alone until I found someone to help. Then, a few days ago, when I clicked "write" , two things happened. First, I could not forward, reply or even see my collected email addresses. Second, there was no longer a place that said "send". My email page filled the entire screen and when I scaled it down, there was still no way to see my list or to send. I am a novice when it comes to fixes and terms but, I have asked people who have some experience with PC's they were stumped. I contacted Fairpoint and they said it must be a Thunderbird problem. Most of the people I asked said they didn't know Thunderbird. One suggested that I reinstall T.bird but, said I also might lose everything on my PC. I would appreciate any help you can give. Thanks, Jim

    When you click Write and open the new message editor, press Alt to show the Menu Bar, then enable all the toolbars under View/Toolbars. Plus, press F9 to show the Contacts sidebar.

  • I accidentally dragged the Lion download from the dock onto my desktop and it disappeared in a puff. This seems to have halted the download as it is now 8 hours since purchase and stuck at 1.75gigs. Help anyone - please?

    I accidentally dragged the Lion download from the dock onto my desktop and it disappeared in a puff. This seems to have halted the download as it is now 8 hours since purchase and has stuck at 1.75gigs. Could anyone advise please?

    The icon in the dock is NOT the file itself.  You simply removed the dock icon.  Go into your Applications folder and you'll find "Install Mac OSX..." and you have what you want.

  • Downloaded acrobat reader 11 onto my Mac Book Pro, it can open the file but will not print. Get a message that says PDF cannot be printed, however, I forwarded it to someone else and they could print it, no problem. I called HP and spent an 1hour with the

    downloaded acrobat reader 11 onto my Mac Book Pro, it can open the file but will not print. Get a message that says PDF cannot be printed, however, I forwarded it to someone else and they could print it, no problem. I called HP and spent an 1hour with them and then called Apple support and worked with them for 3 hours. No one can figure it out. Is there something wrong with this version? the pdf was created in 2004. Do I have to pay to get Acrobat?

    Let me give you a slightly different perspective than everyone else here.  You are using an unsecured wireless network, which means that all your network traffic is easily available for viewing by anyone else using that network.  That's bad.  Very bad, for you, unless you absolutely trust everyone who lives within range of this network.  So stop doing it.
    As to the Mac not connecting, wireless networking is simply too complex for any reasonable answer without more information.  There are many possible error points, and as often as not it's the Mac that can connect and the Windows PC that cannot.  Since you can't give us any information about the configuration of the neighbor's network, and can't make any changes to it, we can't do much to help you troubleshoot it.

  • Peel off hourly output value and subtract from previous hours (then write to file)

    Here is another problem I have been working with and what I have tried so far.  Right now, my current VI is writing data to an excel file at a point every second.  I would LIKE peel off a point from this datastream once every hour and subtract it from the previous hour's value and write an hourly value to an excel file (same file or different file is ok).  I was working with a guy here at my university who had some ideas to use the Elapsed time function.  I have included a screenshot of the part of the VI containing the function we were working on.  We never could get it to work quite right.  We were having some problems getting the shift registers to work (used to subtract the current hour's value from the previous hour's value).  Let me know if you have any ideas, if maybe we are on a good pathy, or maybe I should try something altogether different.  I'm just looking for a simple solution at this point.
    Thanks,
    Jeremy
    The local variable "Total Consumption" is the data stream off of the hourly values are being taken.  Currently (not shown in this screen shot), the value of "Total Consumption" is combined with the other channels into one signal that is fed into the "Write to Measurement File" VI (shown at the right).

    You have a true constant wired to your stop button for the loop, which means the loop will only run once.
    You may want to consider the positions of the previous and current indicators inside that loop.  It's not clear how you want them to function.  The previous indicator doesn't get updated until right as the elapsed time occurs.  The case structure gets executed, and you will immediately have a new previous value calculated, but you won't see that again until the end of the next hour.  Not sure if you are updating the current value in the false case as well.  Otherwise that would look like stale data for an hour.  If you are updating it in the other case, than you should move the local variable and the indicator completely out of the case structure and only pass in the wire to the subtraction function.

  • In the AME , one of the Approver is coming again and again ??........ why?

    Hi All ,
    I am having one issue with the Approver list generated by AME .
    Steps :-
    1. I have created the requisition .
    2.And it is generated the Approver list ... Approver1, Approver2 , Approver3 , Approver4 and Approver5.
    3.now requisition created .
    Issue :----
    1. In the requisition workflow ,it has send notification to Approver1 to approve the requisition . And Approver1 has approved it .
    2. The notification send to approver2 . and Approver2 has approved it .
    3. Again the notification went to Approver1 . After Approver1 has approved it and notification send to approver3.and Approver3 has approved it .
    4. Again the notification went to Approver1 . After Approver1 has approved it and notification send to approver4.and Approver4 has approved it .
    5. Again the notification went to Approver1 . After Approver1 has approved it and notification send to approver5.and Approver5 has approved it .
    6.Finally completed the workflow .
    Why it is again and again again went to Approver1 . What could be the reason ?????????
    How to debug this kind of issues . please help .......

    Same problem. I submitted a review on 11/30 for the Chromecast app (which I had installed and used on the iPad 3 I was posting from), and it still hasn't shown up, as of 12/6. I don't think it takes that long to post, considering I see reviews all of the time posted on the first day the app is available. What is Apple's policy for app review content...perhaps there's something I wrote there that's non-compliant? I did use the subject line "Chromecast = $35, Apple TV = $85". I think that's an important distinction for people to see when considering the Chromecast app and hardware.
    I did try to submit another review on 12/2 for the same app, with a different subjed line that had no prices in it, just a complaint that my last review was missing.

  • Dynamic Parallel Approval for HCM Process and Forms

    Hi everyone,
    I have a scenario where I need to use the "Dynamic Parallel Approval" (or to keep it simple, initially I tried using the "Parallel Approval" wizard)for a workflow used in the HCM Process and Forms.
    The standard task for approval in process and forms is TS17900101. I have mentioned a multiline container in the Miscellaneous tab of this task. However,I was unable to use this task in the wizard. There are no results attahced to this task unlike any other standard approval task (like TS30200147). I need to use the task TS17900101 in the workflow assigned to process and forms, but not sure how to handle this scenario (parallel approval).
    If this is not the right way of doing it, Is there any workaround for "Parallel Approval" in HCM Process and Forms.
    Could anybody throw some light around this area.
    Thanks for your help.
    - MM

    Thanks Anuj. But I believe, the container element that I add in the miscellaneous tab does not necessarily have to be used in the agent assignment. The multiline container is just to instantiate the workitem 'n' number of times. Correct me if I am wrong.
    My concern is that I was unable to use this approval task (TS17900101) in the workflow wizard for dynamic paralle/parallel approval.
    Arghadip - Thanks for your suggestion. I have seen some your nice contributions in the WF forum.
    I actually tried using the 'Blocks'. But this is what I ran into. When I send multiple approval requests (say 3), if one person has approved it and the second has rejected it,I need to take out the workitem from the third person's list (because it has been rejected by someone in the group). I am not sure if this is possible using Blocks. And in my case the third person is still having the workitem, but gets a dump/error when he tries to open it.
    Also, if any one has rejected the request, I do not have to wait for the rest to take any action on the workitem and proceed further. But I guess in 'Blocks' it will not let you go out unless every workitem has been processed.
    To summarize,here's what I need - I need to come out of the block for two conditions. One, if everyone has approved, comeout of the block with an apprval flag. Two, if anyone has rejected (even if some have not processed their workitem), delete the workitems from others inbox and come out of the block with a rejection flag.
    So, any kind of input or suggestions on how this could be handled would be highly appreciated.
    Thanks
    MM

  • Am from India. when i tried to turn on face time the error displayed is" Could not  sign in. Check your network connection and try again". how can it be resolved?

    Am from India. when i tried to turn on face time the error displayed is" Could not  sign in. Check your network connection and try again". how can it be resolved?

    If you are using someone else's WiFi they may have restrictions in place.
      (cofee shop, etc..)
    Have you tried connecting using at least more than one particular WiFi network ?
    You might want to try googling for a bandwidth test site
      verify you have reasonable throughput..
        1 megabit up and 1 megabit down..
          (bandwidthplace.com is what I typically use..)

Maybe you are looking for

  • How to import a java class in a JSP

    Hi All, I have a java class file called myTest.class (i made after compilation of myTest.java). I have a JSP page that uses this java class file. These 2 files are in same folder called c:/test and iam importing this java class file into my jsp file

  • Initial Time Machine Backup. Event Store UUIDs Don't Match.

    This is an initial backup and 25% (about 100 GBs) of the backup completed in 1 Hour. The remaining 75% (about 300 GBs) is stuck at the same place for 9 hours now. I'm working on a MBP Mid-2009 15", 3.06 Ghz Intel Core 2 Duo, Mac OS X 10.5.8. All soft

  • Steps to Create Project in Solman using ASAP methology

    Let me know steps to create new project in SOLMAN using ASAP road map.

  • My new iphone 4 keeps saying it needs to be restored, but won't restore.

    My new today iphone 4 keeps saying that I need to restore it, but everytime I do it says at the end of the restore an error occured and the restore failed, and I can't use the phone until it's been restored....any help?!

  • PLSQL Collections and record types

    Hi, I'm trying to use collection in my code in 10g database declare cursor c_cur is select  * from table; TYPE tbl_cur_lines IS TABLE OF c_cur%ROWTYPE       INDEX BY BINARY_INTEGER;       l_cur_rec    tbl_cur_lines; begin OPEN c_cur; FETCH c_cur BULK