Delimiting positions during an action

Hi all,
  when we 1st implemented, when we did an action (i.e. employee transfer) we recieved a popup asking if we wanted to delimit the previous position, now for some reason this isn't happening.
Does anyone have a suggestion as to how to turn this on?
Any help would be appreciated!!!
~M. A. Brown

Check the value for PPVAC in table T77S0.. it should be 1 for the pop-up to be effective..
~Suresh

Similar Messages

  • "An error (1502) occurred during the action Open." when opening original .VSD files, but NOT copies!?

    We have a weird situation we're trying to troubleshoot for quite a while: We have multiple .vsd files stored on our network in DFS shares.. We have multiple users who cannot open the files, when they try by navigating to the file and double-clicking it,
    they get "An error (1502) occurred during the action Open. File not found"
    However, if they copy and paste the file to the same exact network folder, THAT file they can open with no problem!
    The problem is very bizarre. I've checked obvious things such as file/folder permissions, versions of Visio installed, things in common between people who can and can't open the files.. I even did some testing today with some strange results...
    Windows 7 x64 machine with Visio 2010 Pro installed (x86):
    1. Opened file by double-clicking it in explorer, "Got the 1502 error"
    2. Tried it again, this time I just get "File not found"
    3. Opened Vizio, did a File --> Open --> navigated to the file and opened it that way... 1502 error.
    4. Copy/pasted the file into the same folder where it's stored, then double-clicked the copy and it opens fine.
    5. Closed the copy, tried to open the original, still get file not found / error 1502.
    The file does exist, it IS there.. sometimes the user just copies it to their local desktop (well, it's not really local, it's redirected) and it opens fine there.. other users email themselves a copy of the file and then open it that way.. it works for
    some, not for others.. and there's no discernible pattern yet to identify who this is affecting. Anyone have any ideas?
    -Keith
    -Keith Elkin

    Hi,
    Based on the error message, the issue may be caused by the Visio file is occupied by some other program in DFS.
    >>4. Copy/pasted the file into the same folder where it's stored, then double-clicked the copy and it opens fine.<< If you did this step, the Visio file would rename in the same folder, like file1.vsd. Thus, it opened well.
    Thus, I recommend you check the file's status in computer management in DFS server, see the below image:
    If the affected Visio files were occupied, please try to clean them(right click>close the file) to test.
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Sorry,
    This didn't help, the files are not open, locked open, and the issue still persists. Any other suggestions?
    -Keith
    -Keith Elkin

  • Get mouse position during Custom UI Draw event?

    I am building a Custom UI for one of my plugin effect.
    I want to get the mouse position during the Custom UI Draw event (PF_Event_DRAW), but cannot manage to get it.
    From what I understand, it seems we can only get the mouse position during the events PF_Event_DRAG, PF_Event_DO_CLICK, and PF_Event_ADJUST_CURSOR.
    I tried to use PFAppSuite4::PF_GetMouse() too, but this resulted in the error message "After Effects error: internal verification failure, sorry! {PF_GetMouse can only be called during valid events.}".
    Therefore I want to store the mouse position during PF_Event_ADJUST_CURSOR, and use it later during PF_Event_DRAW.
    Where can I store those values in a "clean" way (ensuring there will not be conflicts if two instances of the same effect are running, etc)?
    Or is there an easier method to get the mouse position during a Custom UI Draw event?

    //SequenceDataVars is the name of your data structure
    //this is how you create the sequence data
    out_data->sequence_data = PF_NEW_HANDLE(sizeof(SequenceDataVars));
    SequenceDataVars *seqData =
    (SequenceDataVars*)PF_LOCK_HANDLE(out_data->sequence_data);
    //and now you can store stuff in it.
    seqData->var1 = 7;
    //after it's created, on other calls, you just do a simple cast
    SequenceDataVars *seqData = *(SequenceDataVars **)out_data->sequence_data;
    seqData->var1 = 100;
    //this is how you delete it. (if you don't delete it, it will be saved with
    the project, and loaded on the next session. (if you want)
    PF_DISPOSE_HANDLE(out_data->sequence_data);
    there's more to know, so look up SequenceSetup, SequenceSetdown, ect in the
    sample project.

  • Making Infotypes Mandatory during Personnel Actions

    Hello,
    Can anyone please tell me how to make infotypes mandatory so that they cannot be skipped during an action?. For Example, when you are executing a hiring action, is it possible to make the Objects on Loan infotype mandatory, so that it is required to be filled out and saved, and cannot be skipped?
    Thanks for your help!
    Gao

    Hi Gao,
    Try it out in Infogroup table T588D. Set the required sequence of Infotypes for your action with atleast one mandatory field in the infotype, So that, you can't skip the infotype, if you want to proceed the action. But again, you can skip the Action itself.
    I hope, you can accomplish by writing a custom program to fullfil your requirement.
    Good luck
    Om

  • Utilizing the cursor's current position in an action?

    I had hoped this would be an easy thing to achieve but I have yet to find a solution after searching for many hours. Basically I want to use the current position of the cursor as a variable in an action, rather than the exact XY coordinates as recorded during the making of the action. More specifically I want to bucket fill a particular part of the image based on where my mouse is at the time of executing the action.
    Any ideas? And with something this simple, would I even need to use a script? Any kind of help would be greatly appreciated!

    Hello there,
    I'm also facing the same problem...
    Have you found any solution or work-around yet?
    The code i'm using is the following:
    IS
    CURSOR cur_autonum
    IS
    SELECT an_nr + 1
    FROM autonum
    WHERE an_kode ='ADV'
    FOR UPDATE OF an_nr NOWAIT
    RECORD_NOT_FOUND EXCEPTION;
    RECORD_IS_LOCKED EXCEPTION;
    PRAGMA EXCEPTION_INIT(RECORD_IS_LOCKED,-54);
    BEGIN
    OPEN cur_autonum;
    FETCH cur_autonum INTO :ptperson.pe_nr;
    IF cur_autonum%FOUND
    THEN
    UPDATE autonum
    SET an_nr = :ptperson.pe_nr
    WHERE CURRENT OF cur_autonum;
    CLOSE cur_autonum;
    ELSE
         CLOSE cur_autonum;
         RAISE RECORD_NOT_FOUND;
    END IF;
    EXCEPTION
    WHEN RECORD_NOT_FOUND
    THEN
    :global.rc := fnc_alert(118);
    clear_record;
    previous_record;
    RAISE Form_Trigger_Failure;
    WHEN RECORD_IS_LOCKED
    THEN
    IF cur_autonum%ISOPEN
    THEN
    CLOSE cur_autonum;     
    END IF;
    :global.rc := fnc_alert(119);
    clear_record;
    previous_record;
    RAISE Form_Trigger_Failure;
    WHEN OTHERS
    THEN
    IF cur_autonum%ISOPEN
    THEN
    CLOSE cur_autonum;     
    END IF;
    RAISE;
    END;
    greetings,
    Emiel

  • Import text into a form from a tab delimited file using an action

    Good evening.
    I am using Adobe Acrobat XI Pro
    I have been working all weekend so far on this, and have tried many options.
    What I am wanting is to import a line of data from an excel file into a form, save the file with a name drived from the form fields, close the new file, then go back to the original file, import a line of data, and so on and so on.
    I had all of this working in livecyle with a tool, but now that we are going to Windows 8 and Microsoft Office 2013, the driver that I need to load the excel file into the form is not available--so now I have to redo the forms in Adobe and import using a tab delimited file.
    I would like to do this with an action.
    Thus far, I have the following.
    **Credit goes to George Johnson who helped me with the script to save the file using field names a few months ago**
    To start, I have a folder level script
    mySaveAs = app.trustPropagatorFunction(function(doc,path)
    app.beginPriv();
    var myDoc = event.target;
    myDoc.saveAs(path);
    app.endPriv();
    myTrustedSpecialTaskFunc = app.trustedFunction(function(doc,path)
    //privileged and/or non-privileged code above
    app.beginPriv();
    mySaveAs(doc, path);
    app.endPriv
    //Privileged and/or non-privileged code below
    For the Action, I start with the Form file loaded
    Then I execute a javascript to import the text into the file.
    this.importTextData("/c/data/clerical.txt");
    The next step is to save the file using field names as part of the file name
    --credit goes to George Johnson who assisted me with this on a similar project a few months ago.
    //Get the Field Value
    var fn=getField("Last").valueAsString + "-" + getField("First").valueAsString;
    //Specify the folder
    var fldr = "/c/data/";
    //Determine the full path
    var fp=fldr + fn + ".pdf";
    //save the file
    myTrustedSpecialTaskFunc(this, fp);
    That is as far as I have gotten. 
    What I want to do now is load the original form file, import the next line into the form, save the file, repeat.
    If anyone could assist me, I would greatly appreciate it.
    **note  I had to type this from my I-pad because I kept getting kicked off the internet from my computer.  I hope my code is typed correctly.

    George
    Thank you so much for your response.
    Yes--there are multiple lines in the data file--it will vary from month to month.  It looks like from what you are saying is that I need to do the global variable since it will constantly change, and then increment it as it goes through the text file.  When it reaches the end, then it will stop.
    I looked at the following links--but this is from Adobe 9 API--I don't know if things have changed with XI--especially since 9 used batch processing and XI has actions.
    Count PDF Files
    http://help.adobe.com/livedocs/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/js/html/ wwhelp.htm?href=JS_API_AcroJS.88.1.html
    Global counter
    http://help.adobe.com/livedocs/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/js/html/ wwhelp.htm?href=JS_API_AcroJS.88.1.html
    I am not exactly sure how to include this in my code.
    If you could point me in the right direction, I would appreciate it.

  • How to choose member position during ERPi metadata load ?

    Dear All ,
    We are using ERPi to load data and metadata from EBS to our target Hyperion Planning Application .
    during metadata load , members set to be at the root of the dimension .
    My question , How to choose where the extracted members to be placed at certain position at EPMA Hierarchy

    What you would do is set up your load rule as a dim build too. First pass you would load the data file as a dim build adding unknown members to a default parent like "Unknown Members". Then second pass, load the file again as data load and all members will exist for load to complete successfully.

  • SHDB/BDC - PA40 - How to Avoid Absolute List Position of PA40 Action

    The following code was generated by SHDB for transaction PA40.  It's picking a particular action from the list on the screen (23rd item from the top).  This is almost certain to change in production because our dev environment isn't configured exactly the same.
    Is there anyway I can avoid using an absolute position in my code do perform this logic?  Thanks!
        PERFORM bdc_dynpro      USING 'SAPMP50A'                '2000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'              'T529T-MNTXT(23)'.
        PERFORM bdc_field       USING 'BDC_OKCODE'              '=PICK'.
        PERFORM bdc_field       USING 'RP50G-SELEC(23)'         'X'.

    You can even do an action from PA30. I usually do BDCs for Action via PA30. There won;t be any issues related to config variations in it.
    A

  • Delimiting positions assigned to a Org Unit

    Hi Everyone,
    HAPPY NEW YEAR!
    I have delimited a organisational unit through PPOME. Now I want to delimit all the positions ( vacant as well as filled positions) associated with that particular org unit.
    Is there any T-Code or program where I can delimit all the positions together or I have to delimit all the positions manually. Please let me know.

    Hi
    As far as i know you cannot delimit a position created.
    We need to close the position status from open to close for the position to be delimited automatically.
    If we try to delimit the position by entering a date the system will overwrite the previous one and create a new position from the next date of the delimited date.
    Ravee
    +91.99206.33669

  • Change webdynpro element position during runtime.

    Hi Experts,
    For one SAP standard screen there are 4 input field in the webdynpro view. Is it possible to change the position/order of these standard elements by enhancement or during run time?
    Thanks

    Hi Srinivas
    Yes, this is possible !
    You can create a component configuration(CC) from the context menu of the related Web Dynpro Component (Create/Change Configuration).
    Enter an id for new CC eg., ZTEST and click Create.
    In the next screen, click on the last tab labeled Web Dynpro Built-In. Hierarchy of UI elements will be displayed. Click on the Container UI element that contains your 4 input fields and then click on Re-sort link that appears on the right hand side. Now you can sort the input fields. Save your Comp Config. Run the standard WD application using newly created comp config by passing parameter 'ZTEST' in the URL.
    Hope this helps.
    Regards
    Lorraine

  • Delimiting position will still be available in org tree?

    Dear Gurus,
    Can someone please get back with this query!!
    When ever we terminate an employee, the term action which does not limit the position in the org tree.  We get the create vacancy and when choose NO but the position remains empty but continues to appear in the organization tree. As of now the report RHVOPOS0 is being run to remove the object?
    What best solution is suggestable please advice!!!
    Regards
    Asha

    Hi,
    There is no automatic way of doing this as far as I know.
    One option may be to write a code to the user exit that'll run when a termination action is performed. This code shall delimit the position of the terminating employee.
    In my client's case, we leave the positions vacant and when another person is employed, we assign the same position to this new person.
    The decision is up to you.
    Regards,
    Dilek

  • Delimiting Positions

    Hi experts,
    Everything tried on IDES:
    I tried delimiting the position through PO13/PP01 and by running the report RHGRENZ4 for changing the end date. I run the report via SE38 (which I understand is to be used by ABAPers only; if Iu2019m wrong, please correct me).
    The problem faced for delimiting the position via PO13/PP01 was that the u201Cfrom-tou201D date fields are not active (i.e. they are grey), so could not make the changes.
    So I tried,
    Report RHGRENZ4 and input the data in all the required fields and executed, due to which I got the result on the next screen as u201CResult successfully changedu201D and saved it. But when I viewed the position (updated position) under organization structure, there was no change.
    One thing more, when I saved the changes in the report RHGRENZ4, it took me to the screen ABAP Variant, wherein I mentioned the variant name and the short description as required and saved the changes. Since it took me to the ABAPersu2019 screen, so I understand that a functional person may not be allowed to run this report via SE38 in real time; am I correct or not? Please verify.
    Highly appreciable.
    Thanks n Regards,
    Meenakshi

    Hi Meenakshi,
    I tried delimiting the position through PO13/PP01 ->>>>>>>
    You have to use the Position menu (located at the top). Open Position menu and choose delimit. You need to provide the end date, unmark or mark historical record (depends on what you want) and then delimit.
    And I believe this is what the system meant in "Infotype 1000 can only be delimited via "Delimit object" .
    It will also delimit all other infotype records like relationships and others by the same delimit date.
    One thing more, when I saved the changes in the report RHGRENZ4, it took me to the screen ABAP Variant, wherein I mentioned the variant name and the short description as required and saved the changes. Since it took me to the ABAPersu2019 screen, so I understand that a functional person may not be allowed to run this report via SE38 in real time; am I correct or not? Please verify.->>>>>
    The functional person either can use SA38 to run the report or use TCODE - RE_RHGRENZ4 for executing the program. But the person should have authorization for this Tcode and the program and also for maintaining the data for OM objects. This you need to check with your security guys. Related to the variant screen that is generally used to create variant for the programs which we need to run on some frequency and with almost same parameters. So we create variants for the program adn then schedule a job for the program with that variant to pick the defaulted parameters. So when you are running by urself and enetering the parameters u dont need tio save the variant and also if you have authoraization for SA38 to run this program, I think you can also save avriant.
    Last just go in SE16 and check the record in HRP1000 for the position you have ran the above mentioned report, the record should be delimited. Possibly in org structure as it will pick on current date and your delimit date might be later then the current date, so there u are not getting any changes.
    Hope this will resolve ur queries
    guds

  • Windows Installer (MSI 5.0) fails with ERROR 1939 during "MsiConfigureServices" action

    When trying to install a setup package using the new MSI 5.0 features of Windows Service Configuration (using Tables: MsiServiceConfig / MsiServiceConfigFailureActions)
    the service config fails and results in a rollback.
    The service itself is installed along with the same package under "LocalSystem" account.
    Regarding MSDN, these feature does have some limitations, but I am not shure if they are applicable here:
    "The services configuration feature of the Windows Installer cannot configure network service accounts, install shared service host (svchost) processes, or restart services stopped as part of the installation"
    (see
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd408113(v=vs.85).aspx )
    I have tried this with serveral variations on the failure actions count and type.
    Using SC_ACTION_NONE or SC_ACTION_RUN_COMMAND actions indeed work and lead to a successful install.
    Can you tell, why SC_ACTION_RESTART or SC_ACTION_REBOOT does not work fine?
    PS: The guys on MS Connect didn't want so solve that issue ;-)
    https://connect.microsoft.com/WindowsServer/feedback/details/785032/windows-installer-msi-5-0-fails-with-error-1939-during-msiconfigureservices-action

    Hi,
    For this query, I suggest ask in MSDN forum
    http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?category=windowsdesktopdev
    TechNet Subscriber Support |If you have any feedback on Technet forum, please contact [email protected]

  • Why does CS6 forget commands during batch actions after awhile?

    I have done this over and over and been absolutely positive that the darken command as well as the transparency command were given to a layer for batch processing - it does fine during a short test but when told to do a large batch after a short time both commands are mysteriously GONE. Any ideas why? - this is driving me nuts and I ain't got far to go so I need help

    Gone from where? Darken from blending modes ? Where was the transparency command that is now gone?

  • About Delimiter when do copy action in JTable

    copy action in JTable will copy the strings that selected on JTable, like below
    |ab|dd|
    Assums there is 1 row and 2 columns
    when copy these data from JTable and paste into text edit, they will be seperated by tab, like below
    ab \t dd
    Here I want to set the \t be other String, I do it like below:
    Transferable tf = Toolkit.getDefaultToolkit().getSystemClipboard().
                      getContents(null);
                  try{
                    String o = (String)tf.getTransferData(DataFlavor.stringFlavor);
                    String s = o.replaceAll("\t", "==");
                    Toolkit.getDefaultToolkit().getSystemClipboard().setContents(
                        new StringSelection(s), null);
                  }catch(Exception e) {
                    e.printStackTrace();
                  }And it work well. When I past selection text into text editor it look like what I want :
    ab == dd
    But I want to know how to set this delimiter string for JTable, it exists in some place in swing global configuration?
    Thanks.

    I believe this is the relevant code from the BasicTableUI class:
                    StringBuffer plainBuf = new StringBuffer();
                    StringBuffer htmlBuf = new StringBuffer();
                    htmlBuf.append("<html>\n<body>\n<table>\n");
                    for (int row = 0; row < rows.length; row++) {
                        htmlBuf.append("<tr>\n");
                        for (int col = 0; col < cols.length; col++) {
                            Object obj = table.getValueAt(rows[row], cols[col]);
                            String val = ((obj == null) ? "" : obj.toString());
                            plainBuf.append(val + "\t");
                            htmlBuf.append("  <td>" + val + "</td>\n");
                        // we want a newline at the end of each line and not a tab
                        plainBuf.deleteCharAt(plainBuf.length() - 1).append("\n");
                        htmlBuf.append("</tr>\n");
                    // remove the last newline
                    plainBuf.deleteCharAt(plainBuf.length() - 1);
                    htmlBuf.append("</table>\n</body>\n</html>");
                    return new BasicTransferable(plainBuf.toString(), htmlBuf.toString());So the "\t" would appear to be hardcoded.

Maybe you are looking for

  • Why won't it let me boot from my external optical drive?

    Alright here's what I'm working with. Macbook Pro (late 2011) 16gb ram 128gb SDD 750gb HDD (both internal, took the optical drive out and did a data doubler) 2.2 intel core i7 I'm trying to install windows 7 on a partition of my second hard drive. Wh

  • Constantly receive error message from ichat.

    I need help. I have been using Ichat for several years without ANY issue and out of nowhere it will not connect with my chat buddy. I get an error message that asks to report to apple or not. I have reported it over a dozen times and no tone reply???

  • Scatter plot question

    I have the new NUMBERS app (3.5.2) on my Mac. I want to plot X and Y data points. I think this is called a SCATTER PLOT. But all data points in the graph are one color/ one symbol. See below. For 3 data points this may be fine BUT I have 50 data poin

  • Replacing first Character of every word in a string with an Uppercase

    Hi, Is it possible to replace all first character of every word in a string with UpperCase? $="autocad lite" Should look "Autocad Lite" . Thanks, François

  • Active Content Fix in Firefox

    I just updated a couple of sites with the Adobe AC fix. The one site, with flash embeded, works fine in IE7 and Firefox (no "click to activate"). The other site, with the AC fix, works fine in IE&, but the embeded Windows Media Player does not show u