Is it possible to add more input values for a payroll element?

Hi All
I have created an element with 1 default input value 'pay value' and another input value '1xx1'. I have linked this to payroll and attached to many employees. Now due to business requirment, I need to add one more input value '2yy2' and also I need to change the formula. Eventhough its a minor change in formula, without a new input value it will not work. I tried to add a new one by datetracking to the element creation date without sucess.
Is it possible to add input values after saving an element?
Regards
Rahman

You can Change the Required Input Value to Not-required
Alter the Sequence of the Input Value to be displayed in the Element Entry Screen
You can Change the Input Value Validation Rule minimum, Maximum, Lookup and Formula
Change your specification of which input values create Database Items. Note, however, you cannot remove Database Items if they are used in any formulas or QuickPaint reports.
You cannot remove existing input values or add new one if you have created any entries for the element
For more details you can refer http://ramesh-oraclehrms.blogspot.com/2007/08/maintaining-element.html

Similar Messages

  • When creating a custom SearchPlugin, is it possible to add more code such as uppercase conversion of the SearchText and IF statements that change the URL depending on what is typed?

    When creating a custom SearchPlugin, is it possible to add more code such as uppercase conversion of the searchTerms and IF statements that change the URL depending on the searchTerms? Every time I try to add something firefox doesn't want to add it as a search plugin. I need to create a more powerful search tool for personal use.

    I've found some external software applications that will do it, so that leads me to believe its not possible within ID CC.

  • Is it possible to add more than one page at a time in pages - word processing?

    Is it possible to add more than one page at a time in pages - word processing?

    I haven't been able to find a way to add more than one page at a time.  I think you'll have to add them one at a time. 

  • Is it possible to add more space to a 16GB device?

    is it possible to add more space to a 16GB device?

    No. Storage capacity in iPads or iPhones or iPods is not upgradeable.  You get what you buy, and that's it.
    If you need extra storage there are wireless external harddrives that work with iDevices.
    http://www.seagate.com/external-hard-drives/portable-hard-drives/wireless/wirele ss-plus/

  • Is it possible to add more criteria when configuring smart collections?

    Looking to build a smart collection with the following criteria:
    Average number of colours greater than 1000 (to filter out B/W & grayscale images)
    Minimum # pixels in image (to filter out small images)
    Aspect ratio is within 20% of 16:9 (to filter out images that won't look good on HD dispaly)
    Less than 35% similar to any other image (to filter out duplicates)
    Possible?

    It's possible to add more criteria by clicking the plus symbol to the right but not to the extent of the complexity you require. The nearest you could get (click image below) would perhaps provide a starting point but you would need some manual intervention, at least for duplicates.

  • Is´t possible to add more apps to apple tv meny?

    Is´t possible to add more apps to apple tv meny?
    And I would like to delete some of the other app.

    No, you cannot add apps. You can go into the settings to hide unwanted apps.

  • VPD: Column Level Masking - Error: ORA-28104: input value for sec_relevant_cols is not valid

    Hi Gurus,
    I am trying to mask the secured column from the table for one specified user, Here is the detail of DB and code which I am using to apply the security:
    DB Version: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0
    Security Function:
    create or replace function kr_sec_function_papf(p_object_schema IN VARCHAR2,
    p_object_name VARCHAR2)
    return varchar2
    as
    p_nid varchar2(200);
    whoami varchar2(100);
    begin
    if SYS_CONTEXT('USERENV', 'SESSION_USER') = 'VPDTEST'
    then
    p_nid := 'national_identifier = national_identifier';
    return (p_nid);
    else
    p_nid := '1=2';
    return (p_nid);
    end if;
    end kr_sec_function_papf;
    Code to Add Policy:
    BEGIN
    DBMS_RLS.ADD_POLICY(
    object_schema => 'APPS',
    object_name => 'PER_ALL_PEOPLE_F',
    policy_name => 'secure_emp',
    policy_function => 'kr_sec_function_papf',
    statement_types => 'SELECT',
    sec_relevant_cols=>'NATIONAL_IDENTIFIER',
    sec_relevant_cols_opt=>DBMS_RLS.ALL_ROWS);
    END;
    I am getting error while executing the above plsql block, Error is:
    ORA-28104: input value for sec_relevant_cols is not valid
    ORA-06512: at "SYS.DBMS_RLS", line 20
    ORA-06512: at line 2
    Any one please help me to resolve the issue.
    Thanks in Advance.
    ~Krishna Nand Singh

    Hi Every one,
    I got this issue resolved.
    The issue is with parameter object_schema => 'APPS' , the object schema name is 'HR' and APPS has synonym with the same name.
    The Correct code should be:
    BEGIN
    DBMS_RLS.ADD_POLICY(
    object_schema => 'HR',
    object_name => 'PER_ALL_PEOPLE_F',
    policy_name => 'secure_emp',
    policy_function => 'kr_sec_function_papf',
    statement_types => 'SELECT',
    sec_relevant_cols=>'NATIONAL_IDENTIFIER',
    sec_relevant_cols_opt=>DBMS_RLS.ALL_ROWS);
    END;
    Thanks,
    Krishna Nand Singh

  • [svn] 1754: Add more authentication tests for different channels.

    Revision: 1754
    Author: [email protected]
    Date: 2008-05-15 14:43:20 -0700 (Thu, 15 May 2008)
    Log Message:
    Add more authentication tests for different channels. Fix a couple timing issues in the tests. Some tests were calling logout() and not waiting before running the next test which was failing in some cases.
    Modified Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-amf/JMSAuthProSendTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-amf/MessagingAuthenticationTest.mxml
    Added Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-http/
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-http/JMSAuthConSubscribeTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-http/JMSAuthProSendTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-http/JMSAuthSendSubscribeConstraintTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-http/MessagingAuthConSubscribeTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-http/MessagingAuthProSendTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-http/MessagingAuthSendSubscribeConstraintTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-http/MessagingAuthenticationTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-http/MessagingAuthenticationTest2.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/polling-http/MultiTopicMessagingAuthConSubscribeTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-amf/
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-amf/JMSAuthConSubscribeTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-amf/JMSAuthProSendTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-amf/JMSAuthSendSubscribeConstraintTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-amf/MessagingAuthConSubscribeTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-amf/MessagingAuthProSendTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-amf/MessagingAuthSendSubscribeConstraintTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-amf/MessagingAuthenticationTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-amf/MessagingAuthenticationTest2.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-amf/MultiTopicMessagingAuthConSubscribeTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-http/
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-http/JMSAuthConSubscribeTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-http/JMSAuthProSendTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-http/JMSAuthSendSubscribeConstraintTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-http/MessagingAuthConSubscribeTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-http/MessagingAuthProSendTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-http/MessagingAuthSendSubscribeConstraintTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-http/MessagingAuthenticationTest.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-http/MessagingAuthenticationTest2.mxml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/tests/messagingService/securi ty/streaming-http/MultiTopicMessagingAuthConSubscribeTest.mxml

    Hello Emil,
      Thank you for your response.
    We have SAP PI 7.11 and we did get it to work with SPNego (Kerberos token) for an SSO interface from a .Net web client using an ActiveDirectory User. It was NOT an easy task, but it worked.
    The problem we are facing is that when we setup the Authentication Stack for the XISOAPAdapter component in the NWA as instructed by SAP to support BASIC Auth AND SPNego, the old .Net clients that do not FORCE the Basic Auth try to connect with an NTLM Token (and this doesn't work)
    After their first request they receive a response from PI with:
    www-authenticate: Basic realm="XISOAPApps"
    www-authenticate: Negotiate
    Then they choose to send NTLM Token instead of the Basic. This very simple to fix, by forcing the .Net client to send Basic or Kerberos. But we can not change the client side as they are in production env. for some time now, and we have over 200 interfaces with several applications, the impact is quite big...if you know what I mean...
    So I thought that maybe it was possible to do some Z XISOAPAdapter component parallel to the original and have two different Auth Stacks.
    We have opened an OSS with SAP and we are exchanging msgs for some time now. I'll let you all know how this ended...
    Regards.
    PS: Would be great to read Michal Krawczyk thoughts on this topic ! thx !

  • How do I add more songs to my slideshows in elements 11?

    How do I add more songs to my slideshows in elements 11?

    Welcome to the forum.
    However, this is the Photoshop>General Discussions forum, and does not cover either Elements program, Premiere Elements, or Photoshop Elements, or their Elements Organizer.
    If you can please let us know exactly which of the Elements program you are using (either Premiere Elements, or Photoshop Elements, through the Elements Organizer), a MOD can Move your post to the appropriate forum, where you will get quick answers.
    Also, additional music can be Imported into several of the Elements programs, but knowing exactly which you are using, will dictate the instructions.
    Good luck, and please let us know more.
    Hunt

  • Unable to enter Input value for an ICD

    Hi All,
    I have created an element XXX which has two input values "Pay Value" and "Class". The class has the values 'A','B','C','D'. I have created a plan and set up the rate In the calculation method I have chosen "No Standard values used".
    Now when I try to assign this ICD plan to the user in the Miscellaneous plan I am not able to enter the car class. Can someone help me with this.
    Thanks
    Shekar.

    Hi Shekar
    I find the ICD setup very 'picky'! If you get one thing wrong, it doesn't work. I have detailed below the steps I usually advise people to tek. Check your setup and see if this helps.
    1. Define Plan Type, Compensation Category = Others.
    2. Define Plan. Link to Plan Type. Plan Usage = May not be in program. On Not in program Tab - define sequence, currency, enrollment rate (per pay period?), activity reference period (Monthly). Your settings may need to be different. On Plan details tab, enter plan years.
    3. Plan enrollment requirements. On the general tab, plan sub tab, make sure the method = EXPLICIT. this allows the user to enter an input value for the ICD. THIS MAY WELL BE THE SOURCE OF YOUR PROBLEM!
    Make sure the CERTIFICATION region is UNTICKED. This can also cause ICDs not to work.
    ALLOWS UNRESTRICTED ENROLLMENT must be TICKED. Otherwise there is no eligibility to the ICD.
    On the rates subregion, make sure the run strt date is set to ENTERABLE.
    4. standard Rates form. Make sure the ACTIVITY TYPE and TAX TYPE are entered. Select the ELEMENT and the INPUT VALUE and TICK the ELEMENT AND INPUT VALUE REQUIRED field.
    On the processing Information tab - TICK ASSIGN ON ENROLMENT, DISPLAY ON ENROLLMENT and PROCESS EACH PAY PERIOD. Enter PER PAY PERIOD AMOUNT in VALUE PASSED TO PAYROLL and OTHER in COMPENSATION CATEGORY.
    Let me know if this works!
    Regards
    Tim

  • Mapping input values for a web service connection to a range of cells

    I've created a web service connection in Xcelsius data manager. My web service requires an array of integer as input parameter. How do I map input values for a web service connection to read from a range of cells in the spreadsheet, e.g. $A$2:$A$20, in similar way of mapping output values to write to a range of cells in the spreadsheet?
    For output values of the web service, I can specify to map the output values to write to a range of cells. However, it doesn't seem to work for reading the input values.
    I can map input values for each node to a single cell, e.g. $A$2, in the spreadsheet. However, when I set the "Read From" field to a range of cells, e.g. $A$2:$A$20, it only reads in the first value in the range.
    Is there any way that we can do this mapping for input values as we do for output values?
    Your assistance is very much appreciated.
    Regards,
    Van

    Van,
    There is a workaround for that...
    Example:
    My Webservice accepts input data range in a specific format with " :" symbol, i.e. 072008:082008
    Now what i do is
    A1 = 072008
    A2 = 082008
    A3 = CONCATENATE(A1,":",A2)
    so A3 = 072008:082008
    Now i map the input value in web service to cell A3
    P.S have 2 input box components and map it to cells A1 and A2, i.e you are giving users an  option to enter the range of values...then web service will capture the range and refreshes data with the range of values user entered.
    hope this helps..
    -Anil

  • [svn:osmf:] 10447: Add more unit tests for VAST validation.

    Revision: 10447
    Author:   [email protected]
    Date:     2009-09-20 19:59:57 -0700 (Sun, 20 Sep 2009)
    Log Message:
    Add more unit tests for VAST validation.
    Modified Paths:
        osmf/trunk/libs/VAST/org/openvideoplayer/vast/parser/VASTParser.as
        osmf/trunk/libs/VASTTest/org/openvideoplayer/vast/parser/TestVASTParser.as

    Abuse reported.

  • Is it possible to add more data to a prepaid plan before the current data allowance is used up?

    My data is nearly used up and I will b eon the road when it is completely used up.  I would like to add more now so that I do not have to pull off the road to login and add more data to my plan.  The website is very poorly designed and of it is possible to do this I can't find where it is.  Please do not tell me to call the CS line like you have everyone else who has asked similar questions.  If so please state that this is the only way to add more data to a plan/account as I don't have the availability to sit on hold for 40 minutes...  Thanks

        TSchlottman, we want that process to be as easy as possible for you. Happy to provide direction on how to change your plan. To change your minutes, text or data: Go to the Change Minutes, Text or Data page in My Verizon. If you have multiple lines on your account with separate plans, select the plan you’d you like to make a change to, and click Next. Select the data plan you’d like to have and click Next at the bottom of the page. Select the date when you want your changes to take effect and click Next. Review your changes and click Submit Changes.
    BrianP_VZW
    Follow Us on Twitter @VZWSupport

  • Is it possible to add a new value to the presence indicator in addition to Available, Appear Away, etc.

    Is it possible to add custom options to Lync 2013 Client status?
    Example: Add "Out to lunch"  and presence indicator yellow
    or "Busy helping client" show red

    Check this article:
    https://technet.microsoft.com/en-us/library/gg398997.aspx

  • I have an almost 3 yr old Mac Book Pro and have noticed the colorwheel pop up more and more to process anything applications I use or websites I browse.  Do I need to add more RAM? Is it possible to add more RAM?

    I have an almost 3 yr olf MacBook Pro and have noticed that my color wheel pops up more and more. I can't open a simple document sometimes w/o it popping up and spinning before it opens.  Same goes for when I'm on the web browsing different sites.  Can I do something to rectify this?

    First, back up all data immediately, as your boot drive may be failing.
    Launch the usual set of applications you use when you notice the problem.
    Step 1
    Launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Activity Monitor in the page that opens.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for % User, % System, and % Idle at the bottom of the window.
    Select the System Memory tab. What values are shown in the bottom part of the window for Page outs and Swap used?
    Next, select the Disk Activity tab. What approximate values are shown for Reads in/sec and Writes out/sec?
    Step 2
    You must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way as above. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Post the 50 or so most recent messages in the log — the text, please, not a screenshot.
    Important: Some personal information, such as your name, may appear in the log. Edit it out before posting.

Maybe you are looking for