Controlling the sequence of Actions in PA 40?

dear experts,
can we control the sequence of actions executed thro PA 40?
for example , we have the following sequence actions in a client scenario
1. Hiring ( prioritised as 1)
2.probation( prioritised as 2)
3.confirmation( prioritised as 3)
4.change of salary( prioritised as 4)
5.transfer( prioritised as 5)
6.deputation( prioritised as 6)
7.separation (priotirises as 7)
Actually, SAP allows  you to run change of salary after probation without confirmation
it allows you to run separation action after change of salary without transfer or deputation in between,
By prioritising actions customisation, system only throws a warning and allows the user to execute any actions after any other action except Hiring action ( sequence no 1)
can we prevent the system to prevent this ,by doing customistion  , but without going for any development like hardcoding  of sequence
soliciting PA experts advice
nataraj s
sap hr consultant

hi,
as far as i know there is no such customization.
as such the sequence of actions depend on the clients.
hence they are left independent of each other.
there is no set standard or sequence of actions.
like a person can be hired today can be transferred tomorrow.
for some other person hired today for some reason terminated tomorrow.
one person hired to day next action can be  cahnge in pay.
hence i dont beleive waht you are asking for is possible.
regards
nalla

Similar Messages

  • How to control the sequence of a map?

    Hello
    we are using a send email with attachment (map) in our process design, the email body has a few pdf documents, does anyone know how to control the sequence of attachment in the email body?
    thanks,

    Values in a map are ordered randomly, you can't predict the order.

  • How control the sequence in forms

    hi all,
    i have id column in the form which has to generate the sequence number automatically,i have created the sequence in the database and assigned it and is working fine.
    But the problem is that either we save the record or not the sequence is generating.so the as soon as we get in to insert mode the number is generated.
    i need the sequence to be generated only when i save the record.
    can anyone could help out with the situation.
    thanks,
    sanjeev varma.s.

    hi,
    i have already tried it out ,but couldn't get the result.
    our problem is that i'm are not able to restrict the sequence, if i'm not saving the record.i have done it in when-validate-item of the previous naviagtion item so that the column on which the sequence is generated can be skipped and sequence is generated automatically.
    the below is the code we have tried it out.
    DECLARE
    v_cname VARCHAR2 (50);
    v_com_seq NUMBER;
    BEGIN
    SELECT NAME
    INTO v_cname
    FROM company
    WHERE NAME = :company.NAME;
    IF v_cname = :company.NAME THEN
    MESSAGE ('Company name already exists Can not be duplicated');
    MESSAGE (' ');
    END IF;
    RAISE form_trigger_failure;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    SELECT COMSEQ.NEXTVAL INTO v_com_seq FROM dual;
    :company.CID := substr(:company.NAME,1,3)||v_com_seq;
    END;
    thanks,
    sanjeev varma s

  • Controlling the sequence of an iPod slideshow using Elements

    I'm trying to control the order in which photos are shown in an iPod slideshow (that I'm displaying on a TV screen)
    I've been asking how to do this in some iPod forums, and someone suggested (without many specifics) that I could somehow set it up in Elements and then export it to the iPod.
    If you know how to do this or can point me to a post, article, etc that gives an explanation, I would really appreciate it! Otherwise, it's all trial and error.

    Doesn't it just show files in filename order?

  • Control the sequence of invocation of Partner Links in SOA11g

    H!,
    I have a BPEL11g process where i am invoking multiple partner links sequentially from my bpel.
    Through invoking the partner links i am inserting records in oracle base tables.
    The invocation sequence is: PartnerLink1 and then PartnerLink2.
    First i invoke partner link1 (web service invoke to another deployed bpel process(db insert)) and inserted records in location table which has foreign key relationship with order_release table.
    Then i invoke partner link2 (adapter service:db insert) and inserted records in order_release which has dependency on location table. The second insertion needs first insertion to be successful.
    Issue:+ The second invocations takes place to insert record into order_release table before the first invocation of partner link gets completed.
    So getting error that corresponding record is not present in location table as it is yet to commit the new record.
    Plz Suggest:+ How to stop the invocation of partner link2 to take place before invocation of parnerlink1 gets completed.
    a. Tweaking the threads or b. using some partner link property, how i can succeed in correcting the sequence of invocation?
    Edited by: rashmi r on Apr 3, 2013 6:29 AM
    Edited by: rashmi r on Apr 3, 2013 6:32 AM
    Edited by: rashmi r on Apr 3, 2013 6:34 AM
    Edited by: rashmi r on Apr 3, 2013 6:37 AM

    Thanks a million to all three of you. I just wish I had asked earlier!
    Cheers, Veit

  • Can I control the execution of Action from ICSS / ICWebCleint

    We are using ICWebclient and ICSS in our project.
    I have an action (to send emails - scheduled automatically) associated to a transaction type and this action fires appropriately when I create the transaction either through ICSS or ICWeb.
    Is it possible that I can choose the action NOT to execute if I am creating a transaction from ICSS. In other words to say it should BE executed only from ICWeb.
    For example when the user creates a transaction from ICSS I dont want the email to be triggered and if the agent creates the same transaction from ICWebclient, then the email should be triggered.

    Hi AltMarianne,
    The response of your question is no.
    You can't stop or pause teststand execution from Veristand when one of your alarm is triggered.
    It will be possible if from Teststand you called Veristand code module and checked the Alarms 's state.
    I hope having answer your question.
    Regards.
    Aurélien Corbin
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Cahiers de vacances de NI
    Présentations en ligne : 12 fondamentaux à réviser, du 9 juillet au 29 aoû...

  • Reg:To control the communication channel actions externally

    Dear All,
    My scenario is File to File. Can anyone suggest me how to start and stop a communication channel without using communication channel monitoring in RWB and ATP in component monitoring,since there is no time frame has been set.
    Thanks in Advance,
    Lavanya .B

    Hi,
    Try this ... just a sample, modify as per your requirement.
    import java.net.*;
    import java.io.*;
    class ExternalChannelControlPI
         public static void main(String[] args)
              try
                   //Give Host Name, Port and Channel Name
                   URL server = new URL("http://<Host:port>/AdapterFramework/ChannelAdminServlet?party=*&service=*&channel=" + <ChannelName> + "&action=start");
                   //Hard code User Name & Password
                   String userPassword = "<USERNAME>" + ":" + "<PASSWORD>";
                   URLConnection uc=server.openConnection();
                   uc.setRequestProperty ("Authorization", "Basic ");
                   BufferedReader br = new BufferedReader(new InputStreamReader(uc.getInputStream()));
                   String inputLine = "";
                   String output = "";          
                    while (( inputLine = br.readLine()) != null)
                        output+=inputLine;
                           System.out.print(output);
                   br.close();                    
              catch (Exception e)
                   e.printStackTrace();

  • URGENT: Sequence of action execution

    Hi,
    I have a very urgent query. How to control the sequence of actions definations to be executed. There is a sort field when we define the action profile but that is only for display.
    Thanks
    Adi

    Hello Aditya,
    Please refer the link and see if this helps.
    [Actions|http://help.sap.com/saphelp_crm40/helpdata/en/33/9e0b3bad9bcd5ae10000000a114084/frameset.htm]
    Please assign some points.
    regards,
    Muralidhar Prasad Chatna

  • How can I control the node execution sequence?

    I have invoked several nodes for controls which are to "Reinit To Dflt". How can I control the sequence of there initialization?

    to ensure code (any code) is going to execute in the order you want, you can use some error cluster to controll data flow, so you need your individual code in a subVI with error in and out. Another posibility is to use sequences, but most people will say they hide code, so you can use one sequence only, and pass dummy data from one to another to ensure data flow.
    Hope this helps

  • Create a sequence of actions in the toolbar button in Visual Composer

    Hi!
    I've a problem with the toolbar buttons in visual composer. On a table, I would like to have one button which launch 2 actions. For example, I want to call an event (custom action) and after that I want to select a row in another table (system action, select).
    It works fine when I create 2 buttons with the toolbar buttons but my wish is to have only one button with several actions (like a sequence of actions). Is it possible?
    Thanks for any help!

    Hi Ronan,
    I think you can achieve your requirement by creating the Wizard in SAP Visual Composer.
    The following link provides the detailed steps to Create the Wizard in SAP VC.
    http://help.sap.com/saphelp_nw04s/helpdata/en/88/fedb4269b2f340e10000000a1550b0/content.htm
    Please have a look.
    Thanks,
    Prashant
    (Please reward points for useful answer)

  • I'm stupid....how do you play game apps?  what controls the action?

    i'd like to get into some of the games offered in the app store but i'm ignorant when it comes to controling the action.

    It depends completely on the game. Every game will have a different way of controlling it. Some use the mouse, some use keys on the keyboard, and some use both. You'll need to look at the game you're interested in and see what it uses.
    Regards.

  • Can the sequence pass/fail status be controlled in Test Stand?

    I have a sequence that contains a DoWhile loop. Within the loop are 5 or 6 steps that are executed. If the result of those steps is a fail the loop runs again until it passes or meets its allowable number of iterations. My problem is that if an iteration fails and then passes the result for the sequence is failed. Can the pass/fail status be controlled via an expression etc? I know I can create a subsequence and loop in it with the properties. I am just curious to know if there is a way it can be done like I have explained.
    Thanks in advance for any help,
    Troy

    Troy,
    You might be able to use the RunState.ThisContext.SequenceFailed property.  Set this equal to False after your loop runs, and the sequence should report as if it passed.
    John B.
    Applications Engineer
    National Instruments

  • Linking control of the effects timeline with the sequence timeline

    This should be simple but I can't work out how to do it. Either Premiere CC lacks this obvious feature or I'm an idiot (don't answer that)...
    So here I am, editing some effects - let us for example say I want to stick in a very fast audio fade-out and fade-in to mask out some noise. I want to zoom in close on the effects timeline so that I can finely adjust the exact position of the keyframes.
    The zoom slider on the effects window is fiddly and doesn't automatically centre on the frame currently selected in the sequence, so keeping track of it and finding it once zoomed in is really difficult. Zoom control on the sequence timeline doesn't present these problems.
    SO, as I'm sure there is a good reason why my effects timeline and sequence timeline are not normally linked is there a way of forcing this so that when I zoom the sequence the clip (if selected) in the timeline?
    Am I making any sense?
    All advice (other than 'Have you tried turning it off and on again?') gratefully received.
    Howie

    Because Premier allows you to look select clips for review in the Effect editor that may not be at the location of the cursor on the main sequence timeline I can see why it wouldn't be helpful for the two timelines to be synchronised by default but it would be useful if it could be enabled for those of us who like working that way. I am forever adding effects to the wrong clip.
    My biggest problem is that with some clips, when I try to zoom in on the effect timeline I cannot get it to zoom in completely to give me the ability to move keyframes a frame at a time easily. Sometimes it'll let me zoom in to the max, other times it won't... it's very frustrating.
    I admitted defeat earlier and asked one of the online advisers to look at it for me. They couldn't make it work on some projects either.
    Oh well.

  • How to implement the sequence view controls in the customized LabVIEW UI

    Hi,
    I'd like to use LabVIEW to run the TestStand Sequence, and show the execution windows in the UI.(something llike the attached image)
    I followed my senior's method : connected the sequence view controls into the TestStand UI Execution View Manager as objects.
    Then use the register event callback to build a callback VI.
    The callback VI is checking which the RunState of the Execution Manager is stopped and assigning the execution to that Execution Manager.
    Though it works, but really confuses me, needless to say to you all.
    Could someone give me some suggestion how to show the execution windows in the LabVIEW UI? I'll appreciate your help.
    Solved!
    Go to Solution.
    Attachments:
    Multi_UUT_SequenceView.PNG ‏65 KB

    It's too complicated to answer your question in simple words.
    Please take a detail look at the following links. It comes with some basic concepts and tutorials regarding how to use TestStand UI in LabVIEW.
    http://www.ni.com/white-paper/7560/en/
    http://www.ni.com/white-paper/14376/en/

  • Tethering and Controlling the Shooting Sequence Numbers

    This may be a bit much - but I have to ask.
    I'm just getting started with Aperture, but one of my reasons for switching from Lightroom was the Tethering abilities of Aperture.
    My question is very simple, when shooting tethered where/how can I control the image sequence numbers? The sequence number on my EOS 5D is controlled by the folder it's writing too, and the EOS software lets you specify a starting number- however ...
    Aperture is not using the EOS Utility to do the tethering, or is it?
    Anyway- if someone can tell me how to control my sequence starting point while shooting tethered, that'd be cool --
    thanks-

    When I upload photos to My Photo Steam the sequence of the photos is altered.  So any shots taken in 'burst' mode will not appear in order - usually the middle shots of the burst sequence are moved to either the beginiing or the end of the seqence.  (so, for example, when reviewing a sequence in My Photo Stream - you see a basketball player take a shot before he dribbles towards the basket...)
    I wonder, why you are seeing more than one photo of a burst of photos in the PhotoStream at all. According to the "Photo Stream FAQ" only the final selected photo of a burst will upload to the Photo Stream, see:
    http://support.apple.com/kb/HT4486
    Are all of the photos taken with burst mode or image stabilization on my iPhone 5s saved to My Photo Stream?
    No. Only the final photos that you select when using burst mode, and only the final composite image shot with image stabilization are added to My Photo Stream.

Maybe you are looking for

  • Iphone battery issue - should i go to apple or live with it?

    All Having recently just said that I was not having troubles with my iPhone I've hit a problem actually that is a bit frustrating, and I'm wondering if its worth going to apple with this problem, and if so should I do anything before hand, Im based i

  • Getting kicked off of ichat

    Okay, I am getting kicked off of ichat without even knowning that I am offline. I am hooked up through a linksys wireless router wrt54g model. Also, I ALWAYS get an error message when trying to connect to videochat. any help on this would be great! T

  • Why are there chinese character fonts overwriting my fonts?

    At the bottom of my font list are a bunch of Chinese character fonts. The list seems to grow over time (it's gotten a lot larger lately).  When I select most of these fonts they work and display as standard alphabet characters but I don't use them. H

  • Premiere will not open for me.

    It worked fine the last 2 years, but I get only a flash of the starting screen, then nothing. Suggestions? I already restarted my pc with no luck there.

  • Il mio 5s si spegne e si avvia in automatico

    Da alcuni giorni ho notato che il mio nuovo iphone si spegne e si riavvia in automatico, ho inviato una segnalazione al supporto, ma a voi è capitato?