Off Cycle Work Bench Error

Hello,
My client was processing a replacement check, and she recieved the error: " No Payment Selected from Preliminary Data Medium Exchange Program"
I manually tried running the DME program, but she is still unable to process the replacement check.
Any help on this would be great!
Thanks.
Shaz M

The replacement goes as below.
1. You replace in off cycle workbench by selecting the payment which generates ID usually starting from CXXXX.
2. Next step you run it from PUOCBA (process model).
SAP already provided the standard process model for replacement. Copy and modify as per your requirement.
Arti

Similar Messages

  • Void multiple PY checks not through off cycle work bench

    Hello,
    We had a scenario where we had to void nearly 60 regular PY checks in our previous period. The postings to FI did not happen yet. We went to off cycle work bench and voided 60 checks one after the other.
    Is there any quicker way to void multiple PY checks (If we know the check number to void). What if we run into a scenario where we need to void few hundreds.
    Any advice is greatly appreciated.

    Hi Priya,
    I feel you have got answer of this query.... as it was processed through another thread. I will request you to close this thread as for a question 2 threads are there. And if moderator will see it then they may block the thread.
    - Praveen

  • ON Deman Payroll Run through off-cycle work bench

    Dear Gurus,
    I am using Off-cycle payroll On DEMAND REGULAR payroll run through off-cycle work bench with the help of T-Code PU0C_99. Now i have given payments in IT0267 (OFF CYCLE INFOTYPE) but i am observing that P0267 function is removing all the components in the output table. If i see the INPUT table of the function then I can able to see my components but in the OUTPUT table function is removing the components.
    My doubts are
    1. Is it because it is ONDEMAND Regular payroll run function is reading the payroll type (A)and removing it from OUTPUT table?
    2. If I processed the is ONDEMAND Regular LIVE payroll run then for posting to accounting program do I need to enter anything in the selection screen?
    3. Presently I am not entering anything system is picking the latest payroll results and posting the corresponding entries?
    Thanks & Regards
    Priya Latha

    Hi Priya,
    I feel you have got answer of this query.... as it was processed through another thread. I will request you to close this thread as for a question 2 threads are there. And if moderator will see it then they may block the thread.
    - Praveen

  • Runtime error in off-cycle work bench

    We are trying to see the rem statement in off-cycle workbench and getting an runtime error dump as (The current ABAP program "SAPLHRFORMS_CALL" had to be terminated because it has come across a statement that unfortunately cannot be executed).
    Any suggestions on this would be much appreciated!!!
    Thanks
    Sreeni

    Thanks Ramana,
    Actually we have an issue with Tcode PUOC_13 for australia people in off cycle workbench.
    Can you please let me know if any specific note for australia?
    Thanks
    Sreeni

  • Off cycle- work bench

    hi, experts,
    please help me how to use off cycle workbench.
    i read the document but unable to understand. if possible please explain the same with an example.
    points assured.
    thanks and regards,
    madhu

    Hi,
    This may help:
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PYUS/PYUS.pdf
    Reward points if helpful,
    Thank You,

  • Out of sequance reversal on the off cycle work bench

    HI All.
             We have a scenario where we have a cash payments to the employees which creates the WT/557 instead of /559. The GL posting is done and everything was fine. Then we realized that we paid an incorrect payment so we reversed out the payroll results then it created /569 instead of /571. I ran the next payroll because of the reversal system has gone to retro and re evalute the reversal period. When I am trying to do the GL positng I am getting an erro saying __"customizing for Wage type /569"_* has been changed*._ I am totally stuck at point since we did not chang any thing related to /569
    Any help is appreciated
    Thanks in advance for the help...
    Regards,
    AR

    Whenever there is Reversal in payroll post /571 will come up, which is a reversal of /569.
    Pls check the processing class of /569 which is having only 6,25,30,31 and 32 with 0 specification also check for /571 where PRCL 23 is having 2 specification and 6,25,30,31 and 32 with 0 specification.
    Hope it helps you
    - Ashish
    Edited by: Ashish Bhati on Dec 23, 2009 12:19 AM

  • Run javascript in adobe live cycle work bench

    Hi All,
    Is there anyway we can execute the javascript in workbench?
    or is there any method to convert javascript to adobe script(execute script activity)?
    Actually i have written javascript in live cycle designer while pdf designing. now i want the same javascript at server end.
    Kindly someone help me to get this functionality.
    Regards
    Abhishek

    Hi Jasmin,
    Thanks for your quick reply.
    I have a javascript which generate sha1hash output for input string.
    I am getting an error while executing it in workbench.
    If i want to use same algorithm in execute script how can i able to use it.
    How should i convert this code in java?
    Please find the javascript below for sha1hash algorithm
    function sha1Hash(msg)
        // constants [§4.2.1]
        var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];
        // PREPROCESSING
        msg += String.fromCharCode(0x80); // add trailing '1' bit (+ 0's padding) to string [§5.1.1]
        // convert string msg into 512-bit/16-integer blocks arrays of ints [§5.2.1]
        var l = msg.length/4 + 2;  // length (in 32-bit integers) of msg + ‘1’ + appended length
        var N = Math.ceil(l/16);   // number of 16-integer-blocks required to hold 'l' ints
        var M = new Array(N);
        for (var i=0; i<N; i++) {
            M[i] = new Array(16);
            for (var j=0; j<16; j++) {  // encode 4 chars per integer, big-endian encoding
                M[i][j] = (msg.charCodeAt(i*64+j*4)<<24) | (msg.charCodeAt(i*64+j*4+1)<<16) |
                          (msg.charCodeAt(i*64+j*4+2)<<8) | (msg.charCodeAt(i*64+j*4+3));
        // add length (in bits) into final pair of 32-bit integers (big-endian) [5.1.1]
        // note: most significant word would be (len-1)*8 >>> 32, but since JS converts
        // bitwise-op args to 32 bits, we need to simulate this by arithmetic operators
        M[N-1][14] = ((msg.length-1)*8) / Math.pow(2, 32); M[N-1][14] = Math.floor(M[N-1][14])
        M[N-1][15] = ((msg.length-1)*8) & 0xffffffff;
        // set initial hash value [§5.3.1]
        var H0 = 0x67452301;
        var H1 = 0xefcdab89;
        var H2 = 0x98badcfe;
        var H3 = 0x10325476;
        var H4 = 0xc3d2e1f0;
        // HASH COMPUTATION [§6.1.2]
        var W = new Array(80); var a, b, c, d, e;
        for (var i=0; i<N; i++) {
            // 1 - prepare message schedule 'W'
            for (var t=0;  t<16; t++) W[t] = M[i][t];
            for (var t=16; t<80; t++) W[t] = ROTL(W[t-3] ^ W[t-8] ^ W[t-14] ^ W[t-16], 1);
            // 2 - initialise five working variables a, b, c, d, e with previous hash value
            a = H0; b = H1; c = H2; d = H3; e = H4;
            // 3 - main loop
            for (var t=0; t<80; t++) {
                var s = Math.floor(t/20); // seq for blocks of 'f' functions and 'K' constants
                var T = (ROTL(a,5) + f(s,b,c,d) + e + K[s] + W[t]) & 0xffffffff;
                e = d;
                d = c;
                c = ROTL(b, 30);
                b = a;
                a = T;
            // 4 - compute the new intermediate hash value
            H0 = (H0+a) & 0xffffffff;  // note 'addition modulo 2^32'
            H1 = (H1+b) & 0xffffffff;
            H2 = (H2+c) & 0xffffffff;
            H3 = (H3+d) & 0xffffffff;
            H4 = (H4+e) & 0xffffffff;
        return H0.toHexStr() + H1.toHexStr() + H2.toHexStr() + H3.toHexStr() + H4.toHexStr();
    // function 'f' [§4.1.1]
    function f(s, x, y, z)
        switch (s) {
        case 0: return (x & y) ^ (~x & z);           // Ch()
        case 1: return x ^ y ^ z;                    // Parity()
        case 2: return (x & y) ^ (x & z) ^ (y & z);  // Maj()
        case 3: return x ^ y ^ z;                    // Parity()
    // rotate left (circular left shift) value x by n positions [§3.2.5]
    function ROTL(x, n)
        return (x<<n) | (x>>>(32-n));
    // extend Number class with a tailored hex-string method
    //   (note toString(16) is implementation-dependant, and
    //   in IE returns signed numbers when used on full words)
    Number.prototype.toHexStr = function()
        var s="", v;
        for (var i=7; i>=0; i--) { v = (this>>>(i*4)) & 0xf; s += v.toString(16); }
        return s;
    Please reply for this
    Thanks in advance.

  • Run time work bench error in PI EHP1

    Dear All ,
    when i go to runtime workbench & clicked on SLD registration .its showing red mark . Kindly help on this
    Below is the error which i got from the details .
    (XIDomain.IntegrationServer.SecureMsgUrl: SecureMsgUrl of Integration Server is.00.hostname  is null. )
    Thanks in advance .

    Hello,
    double check the PI Exchange Profile parameters are maintained correclty
    for example- com.sap.aii.connect.landscape.name
    Have a look into this thread as well,
    Re: RWB / SLD Registration / MsgUrl is null?!?
    regards,
    francis

  • Off cycle payroll Schema

    Dear Consultants,
    Where we will select customer specific Schema in off cycle work bench (PUOC_40), for regular payroll run we are using custom schema (COSM), but in Off cycle work bench am not able to select the Schema, can any one help on this please.
    Thanks, Regards,
    Naresh

    Dear Praneeth,
    I have created a new tax code
    ZTDR: TDS on Irregular Payments
    and I have assigned it to off cycle payment wage type in the table T7int9, in the schema I have taken BON1 is this correct ?

  • OFF-Cycle payroll error Resigned employee

    Hi Experts,
    I have a very typical problem here faced by the employee ;-
    The scenario is this
    Employee resigned during the last year , his payroll area changed to inactive
    The last results available in the cluster for the employee belongs to period somewhere in june 2008 month of resignation
    In the current financial year , company  wants to pay bonus to the employee.
    So the employee was again put in to active payroll area with effective date 01..09.2009  for processing the payroll usiing 0267
    In Infotype 0003 , the run up to date has been updated has 30.09.2009
    in pa03 , the payroll control record has the status has the exit in the Aug-2009 , not yet released in Sep-09
    so ideally , when wwe are processing the off-cycle after the above mentioned steps, it should process the payroll in off-cycle.
    In the simulation it is processing, but coming with a message that                                                                               
    " Payment date of payroll 04.09.2009 later than period end of next payroll  31.08.2009"
    But when we try to finalise the cases it is throwing up the error mentioning the same.
    We are not able to finalise the Off-Cycle payroll for such cases.
    Anyone please can help me in this ?
    Thanks & Regards
    Srijit R Menon

    Hi Sadhu / Sikandar,
    Thanks  for the reply,
    I checked with CYFRM , it is given as 1 only,
    again , for the terminated employees the final run was made in the month they were terminated., in june-08
    And while doing offcycle run does the payroll driver checks the past period resuts, i m not sure
    even if it checks , the offcycle is allowing me in quality system with the same data ,  data in quality & Production is equal, as we have updated our quality system recently by copying the production.
    In Quality its working , and not giving any errors and issues, the pa03 is also in the exit mode of aug-09 , the payment date is given as 04.09.2009 in 0267 . its allowiing me to simullate and final it
    Kindly help

  • Error in Starting Migration Work Bench

    I have installed Oracle Enterprise 8.1.7 with Migration work bench installed as well. When starting the migration work bench from start menu, I run into the following error. I would appreciate any insight regarding the problem.
    ** Oracle Migration Workbench
    ** Release 1.3.0.0.0 Production
    ** ( Build 18072000 )
    ** ORACLE_HOME: C:\oracle\ora81
    ** user language: en
    ** user region: US
    ** user timezone: CST
    ** file encoding: Cp1252
    ** java version: 1.1.7.30o
    ** java vendor: Oracle Corporation
    ** o.s. arch: x86
    ** o.s. name: Windows NT
    ** o.s. version: 5.0
    ** Classpath:
    C:\oracle\ora81\Omwb\olite\Oljdk11.jar;C:\oracle\ora81\Omwb\olite\Olite40.jar;C:\Program Files\Oracle\jre\1.1.7\lib\rt.jar;C:\Program Files\Oracle\jre\1.1.7\lib\i18n.jar;C:\oracle\ora81\Omwb\jlib;C:\oracle\ora81\Omwb\plugins\SQLServer6.jar;C:\oracle\ora81\Omwb\plugins\Sybase.jar;C:\oracle\ora81\Omwb\plugins\MSAccess.jar;C:\oracle\ora81\Omwb\plugins\SQLAnywhere.jar;C:\oracle\ora81\Omwb\plugins\SQLServer7.jar;C:\oracle\ora81\Omwb\jlib\omwb-1_3_0_0_0.jar;C:\oracle\ora81\jdbc\lib\classes111.zip;C:\oracle\ora81\lib\vbjorb.jar;C:\oracle\ora81\jlib\ewt-swingaccess-1_1_1.jar;C:\oracle\ora81\jlib\ewt-3_3_6.jar;C:\oracle\ora81\jlib\ewtcompat-opt-3_3_6.zip;C:\oracle\ora81\jlib\share-1_0_8.jar;C:\oracle\ora81\jlib\help-3_1_8.jar;C:\oracle\ora81\jlib\ice-4_06_6.jar;C:\oracle\ora81\jlib\kodiak-1_1_3.jar
    ** Started : Mon Jun 30 11:06:10 CDT 2003
    Exiting
    java.lang.NullPointerException: cannot add null item to LWChoice
         at oracle.ewt.lwAWT.LWChoice.addItem(Unknown Source)
         at oracle.mtg.migrationUI.LoginDialog._run8iLiteEnabledDialog(LoginDialog.java:509)
         at oracle.mtg.migrationUI.LoginDialog.run(LoginDialog.java:358)
         at oracle.mtg.migrationUI.MigrationApp.init(MigrationApp.java:272)
         at oracle.sysman.emSDK.client.appContainer.WebApplication.main(WebApplication.java:2876)

    Please post your qeustion in the Migration Workbench forum. The URL is:
    Database and Application Migrations
    You may also be interested in OTN's Migration Center.
    The URL is:
    http://otn.oracle.com/tech/migration/

  • How to check IE error in Runtime work bench.

    scenario: File to File
    *file moves from sender  to archive folder when i start sender cc in runtime work bench but file doesn't move from archive to receiver folder when i start receiver cc in runtime workbench and i think some thing wrong in IE so can anyone help me for the same.i'm fresher so give me your solution as  simple as possible.
    Thanks to u.
    Edited by: manikandansit on Jun 29, 2010 10:41 AM

    below error am getting
      com.sap.engine.services.servlets_jsp.server.exceptions.WebServletException: Error in dispatching request to servlet [/sub/componentmonitoringpageprocessor].
    Display Stack Trace
    Stack trace for the above error message is:
    com.sap.engine.services.servlets_jsp.server.exceptions.WebServletException: Error in dispatching request to servlet [/sub/componentmonitoringpageprocessor].
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:328)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:377)
         at jsp_FC_Secure1212318130512._jspService(jsp_FC_Secure1212318130512.java:24)
         at com.sap.engine.services.servlets_jsp.server.jsp.JspBase.service(JspBase.java:112)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:544)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:186)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: java.lang.NullPointerException
         at com.sap.aii.rwb.web.componentmonitoring.viewcontroller.CmDynPage.doProcessAfterInput(CmDynPage.java:60)
         at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:101)
         at com.sapportals.htmlb.page.PageProcessorServlet.handleRequest(PageProcessorServlet.java:62)
         at com.sapportals.htmlb.page.PageProcessorServlet.doPost(PageProcessorServlet.java:22)
         at com.sap.aii.rwb.web.componentmonitoring.viewcontroller.CmPageProcessor.doPost(CmPageProcessor.java:35)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.runtime.RequestDispatcherImpl.doWork(RequestDispatcherImpl.java:321)
         ... 20 more
       Wait...
    Query being processed

  • Off-Cycle Payroll Error for Bonus

    Hi Experts,
    I am getting one error while i am running the off-cylce payroll live run for the employees.
    Current payroll payment date 31.03.2009 less than last payroll payment date
    31.08.2009
    I maintained the payment date as 31.03.2009 in Employee master data..........and also in off-cylce  field also i maintained same date.
    i don't under stand where i am doing wrong.
    Thanks in Advance,
    KB

    Maintain the payment as off-cycle payable date  in the pc00_m40_bons.Then execute the program.
    For forther clarification open the new thread
    Thanks,
    KB

  • Off Cycle Payroll error - not encountered during Payroll Simulation

    Hello,
    We've modified the Canadian payroll schema K000 by creating some new subschemas, rules and payroll operations to address calculation of the factor /801.  When running payroll simulation for a test employee, everything looks fine.  However when we run off cycle payroll for the same employee and period, we are encountering an error.  Checking the log of off cycle, it shows that it is also accessing schema K000.
    What could have caused the OC error?  is there a difference in what off cycle and simulation accesses?
    Thanks.
    Malou Navera

    I assume that you copied the K000 and create a new custom schema called ZK00 or YK00 or something else other than K000.
    Go to this table  V_T52OCV and set up an entry with
    CALC       RPCALCK0 PayrollVariantName
    "PayrollVariantName" is your variant with your custom schema for RPCALCK0.
    Or goto IMG
    Payroll: Canada
    Off-Cycle Activities
    Set up report variants for off-cycle activities
    Edited by: Amosha on Oct 4, 2011 9:30 AM

  • Error during off-cycle payroll

    Hello gurues,
       The user got an error while executing an off-cycle payroll, and I cant figure out whats the meaning of it and why is it happening.
       The message is very general, "Function has an incorrect value for parameter" 5P 411.
       If someone else went through something similar, please give me an advise.
    Thanks very much

    I assume that you copied the K000 and create a new custom schema called ZK00 or YK00 or something else other than K000.
    Go to this table  V_T52OCV and set up an entry with
    CALC       RPCALCK0 PayrollVariantName
    "PayrollVariantName" is your variant with your custom schema for RPCALCK0.
    Or goto IMG
    Payroll: Canada
    Off-Cycle Activities
    Set up report variants for off-cycle activities
    Edited by: Amosha on Oct 4, 2011 9:30 AM

Maybe you are looking for

  • Want to know the sale order report for Delivery bclok at header level

    Dear, i would like to know some reports 1). I would like to know  is ther any  SAP std report  is available for Sale order if Blocked for delivery(VBAK-LIFSK)?? 2). is ther any report for knowing the Sale order  if header/item text  is maintained?? P

  • SQL Transactions_ABAP

    Hi. I am updating fields from a Z table with SQL sentences. I am updating each field with an update sentence. I do not know how to put all these sentences in a single transaction, so that all fields could be updated at the same time or if an error oc

  • LABEL Code in SAP-Scripts

    Hi, Can somebody explain me the below coding.Or if possible please provide me some useful links to understand this code. /E     LABEL_DATA /:     NEW-PAGE /     ^XA /     ^XFB:UPSGR.ZPL /     FN999FD&C_TAG_COUNTOF&^FS /     FN998FD&C_TAG_HU&^FS /    

  • Map itunes album cover cache folder

    i have a small SSD hard drive as my main drive and my music is on another hard drive is there a way i can map it on the other drive?  because it is filling up my ssd drive.  maybe a registry redirect or something?? i try to go in to itunes\Edit\Prefe

  • The Aironet 1240AG Autonomous Web Interface authentication

    Hi, I would like to know if the Aironet 1240AG Autonomous, is capable to do Web Interface authentication (like a public hotspot, so no security on Wifi, but you will only get access to the network/internet when one has opened a Internet Browser and g