New Jersey Unemployment (SUI) Form - Family Leave Insurance

Hi guys - New Jersey Implemented the Family Leave Insurance tax last year (tax types 87 and 88). We are currently withholding this tax from employees.
However, our New Jersey Unemployment Form (HR_F_UNEMP_NJ) does not have a line item for this tax. Our tax department showed me the latest form (NJ-927) which has a line item for this.
I would think that SAP would provide an updated form to incorporate this new tax but I have looked on OSS and do not see a note for that.
If any of you support payroll in NJ, can you please let me know if you have an updated form from SAP or did you have to configure this yourself? If so, how?
Thanks!
Christy

Hello Christy,
This requirement is not confirmed, authority have plan to introduce. So when it is confirmed, SAP will be releasing a note for this.
With Regards,
S.Karthik

Similar Messages

  • I entered new fields in a form that was created last year to update it.  However, now when I view the responses, they are listed as Column 1, Column 5, etc.  It doesn't show a label for the actual field when I view the responses.  Can you please help?

    I entered new fields in a form that was created last year to update it.  However, now when I view the responses, the headings are listed as Column 1, Column 5, etc. rather than the name of the heading.  Can you please help?

    Hi Mike,
    CRSE is an OEM Product and for use with a custom application they have written. Unfortunately we don't their reports or how they are connecting, it would appear they were originally built off a SQL and then set to a Dataset in the app or they could be adding the data source at runtime. Lots of variations and without access to the source code to see what they are doing not much we can help you with.
    You need to contact the OEM Partner for help in resolving this and find out what you can and need to do to update your SP and work with their canned reports,
    Thank you
    Don

  • New posting period for former fiscal year

    Hello All!
    For a customer we set up a database with posting periods for 2011 and 2012 (monthly periods). The database went live in 2011.
    Now the requirement came up to post the opening balances for 2011 per end of 2010 (to have the postings not in fiscal year 2011).
    My question is: is it a problem to add now a fiscal year 2010 (yearly basis)?
    Thanks and regards
    Peter Ganserer

    Hi Peter,
    Although it is your 2nd posting, I would add welcome message because I had not do so 1st time.
    For your question, it is not possible to add new posting period for former fiscal year. You best solution is to post those OB as the first date of the first period.
    Thanks,
    Gordon

  • Problem with inserting new records in Oracle Forms

    Hi Friends,
    I am a new user to Oracle Forms and I need a help from you people. The problem is as follows:
    I have a data block in which I can display a number of records. In this data block the user will be able to edit the fields if no child records are found in another table. I have used when-new-record-instance to attain this scenario. All are text items. One item licensee_id which is made invisible by setting the property in property palette and required=no ( as this is the primary key of the table). Also the audit columns are made invisible.
    The code for it is as follows:
    DECLARE
         v_alert_button NUMBER;
         v_cnt                          NUMBER;
    BEGIN
         SELECT COUNT (*)
    INTO v_cnt
    FROM id_rev_contracts
    WHERE licensee_id = :ID_REV_LICENSEES.licensee_id;
    IF v_cnt > 0 THEN
    set_item_property('ID_REV_LICENSEES.LICENSEE_NAME', UPDATE_ALLOWED, PROPERTY_FALSE);
    ELSE
         set_item_property('ID_REV_LICENSEES.LICENSEE_NAME', UPDATE_ALLOWED, PROPERTY_TRUE);
         -- set_item_property('ID_REV_LICENSEES.LICENSEE_NAME', INSERT_ALLOWED, PROPERTY_TRUE);
    END IF;
    END;
    Now in this data block I should also be able to insert new records and for the same I have used PRE-INSERT trigger and the code for it is as follows:
    DECLARE
         v_alert_button NUMBER;
    CURSOR v_licensee_id IS SELECT id_rev_licensees_s.NEXTVAL FROM dual;
    BEGIN
    OPEN v_licensee_id;
    FETCH v_licensee_id INTO :id_rev_licensees.licensee_id;
    CLOSE v_licensee_id;
    IF :id_rev_licensees.licensee_id IS NULL THEN
    Message('Error Generating Next v_licensee_id');
    RAISE Form_Trigger_Failure;
    END IF;
    :ID_REV_LICENSEES.created_by := :GLOBAL.g_login_name;
    :ID_REV_LICENSEES.last_updated_by := :GLOBAL.g_login_name;
    :ID_REV_LICENSEES.create_date := SYSDATE;
    :ID_REV_LICENSEES.last_update_date := SYSDATE;
    EXCEPTION
    WHEN form_trigger_failure
    THEN
    RAISE form_trigger_failure;
    WHEN OTHERS
    THEN
    v_alert_button :=
    msgbox ('ERROR in Pre-Insert - ' || SQLERRM, 'STOP', 'Contact IST');
    RAISE form_trigger_failure;
    END;
    Every thing is compiling fine but at the run time when I am trying to insert a new record I am receiving the following error:
    FRM-40508:ORACLE error:unable to insert record
    I also think the pre-insert record is not firing at the time of inserting a new record and saving it. So I request you to please delve into this problem and suggest me how to overcome this problem. Code snippets would do more help for me. If you need any other things from me please let me know. I will see if I could be of any help in that concern because I may not be able to send the entire form as it is.
    Thanks and regards,
    Vamsi K Gummadi.

    first of all
    pre-insert fires after the implicit/explicit commit/commit_form is issued and before the real insert is submitted to the db.
    i would suggest to remove the error handling part for the moment
    because i believe you might be getting "ora-xxxx cannot insert null"
    and also make visible the primary column to check if the pre-insert is executed.
    it would be better to make visible for a while the not null columns of the table/block
    i suppose that the block is insert allowed and you are using table as the source of the block and not any procedures or something...

  • How to stop insert of new row in tabular form if it's also being deleted

    Suppose you have a tabular form, and one of the fields is a not-null column. A user checks a button to "add additional row", which adds a new row to the form, defaulting that not-null column to null. Assume it's a name or something, so there is no reasonable non-null default value that can be entered here to keep it from being null.
    Now suppose the user makes a series of changes on the page, but then decides they don't want that row they just added, so they mark it for deletion, then click on "Delete Checked Rows". The not-null column was left blank.
    The page is constructed in such a way that the ApplyMRD process runs first, then the ApplyMRU process. (I do this so that the user doesn't lose all their updates if they want to delete a row. I've had a few people complain when they tried to combine both operations, and unexpectedly lost their updates when they hit delete instead of submit.)
    What happens? The page errors out because the ApplyMRU process is trying to insert a row with a null value in a not-null column. The ApplyMRD process ran fine, but because the row marked for deletion didn't exist in the database to begin with, it effectively did nothing. But ApplyMRU still tries to add the row, even though it was marked for deletion.
    Is there any way to prevent this scenario from happening, without requiring the user to Cancel instead of deleting the blank row, which would cause all other changes on the page to be lost? I'd also like to avoid losing the ApplyMRU process when the user clicks "Delete", since it's more effective to combine operations and this will address the UI complaints I'd received otherwise.
    (This is on ApEx 4.0, if it matters.)
    Thanks,
    Keith

    Thinking about this some more, doing the delete and update together may not be an easy thing to accomplish after all.
    Consider the above scenario, but the user puts a dummy value like "ignore-me" into the not-null text field, so the error doesn't come up with ApplyMRU is fired. But if ApplyMRD runs before ApplyMRU, it still doesn't do anything because there is no row in the database with the value "ignore-me". Then ApplyMRU runs and it adds that row, even though it was marked for deletion.
    So you probably need to always run ApplyMRU before ApplyMRD. But then you wind up inserting a row before you delete it, and that may have unintended side effects, if the user really never wanted to add it in the first place.
    Right now, the only workaround I can think of is to:
    1) put ApplyMRU before ApplyMRD
    2) add a pre-commit validation that checks to see if a row is blank AND checked, and if so, put a dummy value into the not-null field
    3) let that row get added and then deleted, and make sure there are no side effects from this (for example, there is an audit table that tracks updates to the base table -- I can add a trigger that does nothing if presented with this dummy value)
    Hopefully, though, there is an easier and more "built-in" way to achieve what I'm aiming for.

  • Tax model, Tax combinations and Tax types for New Jersey

    We are having problems in computing taxes correctly for Employees who have their Work tax area and Residence tax area as New Jersey.
    Can anyone please help with the best Tax model, tax combination and Tax types for these combination for New Jersey.
    It will be better if you have employees in New Jersey, who have their Taxes deducted correctly.
    We are in an implementation and unfortunately it has been a while since we have applied any Tax related SAP notes or BSI tubs.
    Appreciate all help.

    i have been researching and have found that NJ state taxes are like Puerto Rico taxes. The Schema UMOT may have to be used with a different modifier to calculate Withhoding tax for NJ , different from FED.
    Has anyone of you used this schema ? I find that UTAXRAUTHY ( tax authority) is an Operation in the deecisison tree .Can anyone confirm if Tax type is also an operation?
    I shall appreciate any related feedback.Thanks.

  • Looking for LV developers in southern New Jersey

    Looking for 2-3 LV programmers for 1+ year FT contract position in the
    southern New Jersey area. Would like 3+ yrs experience with real projects
    but flexible.
    email me your resume (preferably PDF) with a brief description of your
    experience in the email header. Send it to "gnu_voodoo AT netzero DOT
    com" (replace AT and DOT with the good stuff)
    Try to get it to me by this evening or tomorrow morning. I'll try to get a
    better job description by the end of today. I'll forward it to those that
    reply.
    -Methis

    Thank you for posting this. My power has also been back on since Wednesday night but no Comcast service since before the storm. I rely on Internet service for outside communication as I have very little signal connectivity on my phone in and around my home. Every time I am able to go out, I check the comcast app on my phone, but I get the same message every time. The estimated time of service return message has said "10 pm tonight" since Thursday morning. I've seen repair vehicles around town so I know they're working on it, but real updates pushed through the app and the account page would be nice.

  • PO in New Jersey is down... ooops!

    Hi.
    OK we are a UK based group with a Groupwise PO sitting on a windows server in New Jersey. No power, no comms and staff cannot get to the site.
    We have another New York showroom and users can get in there, but of course all their mail is based on the PO in New Jersey...
    Is there any way I can get the server to forward all of their emails to a second email address. Then I can of course setup a secondary email address for these users... it's all a bit messey. I know they can not see the stuff queued up on our UK Server waiting to connect to their PO When its on I guess but I need some way of getting them in and viewing emails from now that are sent to their original email addresses if I just change their email addresses on their existing users and create new users with their correct address with that work or will edirectory just scream as it cannot of course connect to their po to actually change their original email addresses?
    Any advice would be appreciated. I'm not a genius but know my way around a bit so any clever good ideas are appreciated.

    Providing you have access to the primary domain you can rebuild the New Jersey domain and post office onto a temporary server. The high level steps are:
    1. Create domain and post office folders on a temporary server
    2. Copy .dc files from working domain and post office to respective folders on the temporary server
    3. Copy ofviews folder from working post office to post office folder on the temporary server and create ofmsg, ofuser offiles folders.
    4. Open ConsoleOne and connect to primary domain
    5. Update paths and IP addresses of New Jersey domain, post office and agents with those of the temporary server.
    6. Rebuild the New Jersey secondary domain and set database path to the temporary server.
    7. Connect to New Jersey secondary domain; rebuild New Jersey post office and set database path to the temporary server.
    8. Install the message transfer and post office agents onto the temporary server. Update the startup files accordingly.
    9. Start the agents.
    The essentially recreates the post office. Post office should be accessible as before ( e.g. WebAccess ) but will have no messages. Any new messages will be delivered to the new post office and the New Jersey users should be able to work.
    When the original domain and post office server are again available connect to the primary domain update the domain, post office and IP addresses accordingly. To merge the temporary mailboxes with the original mailboxes either connect to temporary server and archive the messages or copy the temporary post office to restore area and restore the messages.

  • Adding new field in PE51 Form

    hi experts,
    I want to print a new field in PE51 Form.
    i added a new line in the form.
    but when i selected the single field radiobutton and in change mode double click at the position where i wanted to print a new value it is giving error ie dialog box -
    No data has been set up at this fixed position.
    so are ther any attributes to set for the new line added for data to be printed?
    Please reply me how to do this as soon as possible.
    Thanks & regds,
    imran

    Dear Imran,
    Double click will work only after assigning the source value for the field instead first you should create the value to fetch the data for the field.
    Good Luck.
    Om.

  • No New Jersey!!!???

    How the hell can your headquarters be located in New Jersey and you don't have one area covered? I'm not talking the outskirts of philly or ny. I'm talking Atlantic city, Vineland, cape may, Newark...and so on. Jonesboro Arkansas? Seriously? They have phones there? Come one man. Give us some love.

    I was wondering the same thing hahahaha. I have some decisions to make. My contract is running out soon. it seems from the AT&T map that at least certain areas in NJ are lit up with 4G. The verizon coverage map that includes the planned towers for 2012 are still nowhere near me ( jackson by 6 flags).. I have seen 4g on my t-bolt 1 time when i was outside trenton. other than that never. I wish I knew they had no plans for 4G in NJ before I bought my T-bolt. it is like having a ferrari with a 4 cylindar engine. looks good but slow as hell. I am also cheking out sprint for the unlimited data plan. Verizon totally screwed me out of my unlimited plan when I activated my thunderbolt. Now i am capped at 2 GB. That alone is probably going to make me switch on principle alone.

  • How to reference new columns in a form

    If I have created a form application component and the
    underlying table changes, i.e., a new column is added, how do I
    reference that new column in my form without having to delete
    the application component and recreating it?

    Chetan,
    Thanks for the confirmation - the answer was as I feared.
    ORACLE - can you confirm whether this will be addressed in the
    next release of portal as it a major pain having to recreate
    from scratch a Form (that is likely to have many customizations
    to make it useful) just to add a new column that was previously
    ommitted or to reflect a schema change - which is especially
    likely to occur during the development cycle of an application.

  • How to create new page in adobe form.

    how to create new page in adobe form.

    Hi
    First Go To Layout.
    On Hicherchy Platte , rightclick on Subform and select option new body page.
    This way you can create body page for the particular subform.
    if you want to create master page , right click on page 1 and select New master page.
    Hope this will helpful to you.
    Rewards if useful.
    With Regards
    Nikunj Shah

  • Cannot add new records through VC form when consuming IP write back query

    I have created a planning application in IP and created a Form in VC (CE 7.1). I am not able to create new records in VC Form and save it back to the cube like the traditional excel form on IP does. I have attached a document with every step that i did as a screen shot in designing my model. The writing back of data using the Form works if i have preexisting data in the planning cube and if i am only changing the values of the existing data records it works great. I could consume the planning functions that i created and they work well within VC. But if i want to create new records in a empty planning cube it gives me error unlike planning in excel analyser lets me save it back to the cube. I have tested the same query in Excel Analyser and created new records and saved it back in the cube. Any help on this is greatly appreciated.
    [http://www.mediafire.com/?sharekey=f1bc9aa662da6a86d956df2962098fcbe04e75f6e8ebb871]
    Thanks.
    Edited by: BI GUYS on Sep 28, 2009 2:00 PM

    Hi PradeeP,
    1. The BI Query itself has to support the entries of new lines. This is described in note 1149346.
    However, if the Query allows entering new lines in the BEx Analyzer, then this prerequisite is fulfilled.
    2. In the BI Query wizard in VC in the u201CChoose Presentationsu201D step, you have to include  the key presentation for the characteristics.
    If 1 and 2 are fulfilled and you still have the problem, it is strange...
    Does the problem also occur if you create new records in a cube that already shows some data in the table view?
    Regards,
    Talia

  • ADD new Column in the form

    Is it possible to ADD new Column in the form like Sale Quotation, Sales Order and ...

    It is possible.
    go to tools >UDF > Manage UDF >choose marketing documents rows.
    select the row and say add to add a new column in the documents.
    Note: this will be applied to all documents \
    ie.quotation,order ,invoice, PO ,GRPO etc.
    U can hide these columns in form settings.
    This will help u
    Give points if helpful
    Regards
    Suresh Kannan

  • How to print different  header & item data in new pages using smart forms.

    Hi,
    In smart forms I am trying to print header data & their item data. But there are more than one header data for a given input.
    I want to print all the different header data with their item data in new pages using smart forms. Can any one please help to solve the issue.. Its very urgent for me..
    Regards,
    Brajesh

    Hi
    U need to use control break statements to acheive ur requirement.
    Regards,
    Priya

Maybe you are looking for

  • Web Service Client, BindException, Address already in use, saaj.SOAPExcepti

    Hello, Am caught up with an error and i can't get past it, need some help here. My application is a batch processing web service client, reads some input rows, sends web service requets, processes the responses and logs it. The application runs well

  • Problem in sorting cloumn

    in input in form following data as it as color type white 123 blue 456 yellow 789 when report runs it displays blue 456 white 123 yellow 789 i have defined in query ORDER BY TYPE but still report is not showing as i input in form what should i do??

  • Create users in different containers of a resource

    I have three resources A ( LDAP ), B ( LDAP ) and C ( Active Directory ). When new objects are created on resources B or C, they are created on resource A but always in the same container. Is it possible to select the container in resource A where I

  • Where do you add artwork?

    In the previous iTunes with a cover graphic in the lower left corner, when you import a new album that square very helpfully says "Drag Artwork Here". Once there was a picture there we could copy and paste to other tracks very easily. I remember when

  • Can't drag the length of photo clip

    hi, i used to be able to adjust the length of the photo by dragging it, but now it doesn't work. the pointer doesn't change anymore. what am i doing wrong?