ENTERING A BIRTH DATE USING FORMS CONFIGERATOR TEMPLATE RESULTS IN ERROr

Problem definition
Customer made a seed template for hire employee using people management configurator for Northlands legislation
Form(PERWSQHM VERSION (11.5.329)
When attempting to enter Date of Birth receiving the following error:
APP-PAY-07207: The value for the mandatory argument validation start date cannot
be null. Cause: the mandatory argument validation start date has not been
entered or has explicit been set on NULL in the API
per_per_bus.chk_date_of_birth
Support TO Customer:
1.     Provide PYUPIP trace
2.     HRMS11i.SQL
3.     Security Profiles setup with Exclude Business Group checked
4.     How were the employees loaded into the system?
5.     Provide version of PERWSQHM
6.     Check in US legislation
7.     Disable custom code
8.     Upload your custom template
9.     
Customer To Support
1.     Trace file Mention that there are failure API per_per_bus.chk_date_of_birth
Entering: per_per_bus.chk_date_of_birth 1
Leaving: per_per_bus.chk_date_of_birth 9
2.     Upload HRms11I.sql
3.     Exclude Business Group Not checked
4.     Regular upgrade form 11.0.3 to 11.5.10.2
5.     PERWSQHM version 11.5.329
6.     Same Error when I use US Legislation
7.     Disable custom code and got the same Error
8.     Customer Upload his Custom template
Status:
1.     Make test instant and upload custom template on visnl02 (test instant) and it working correctly
2.     And test in Vishr01 for US legislation and working correctly

M.Mounir,
I am not familiar with the specific details of your issue or the research that has taken place. However, if they have not already reviewed, ask your Support Engineer to verify issues raised SR 4647656.992 and Bug 4609469 for similarities to your SR.
Regards,
Greg

Similar Messages

  • Every time I create an account with iCloud then try to open it I get wrong ID or password. Even when I enter my birth date I am told it is incorrect. I have done this several times with the same results.

    Every time I create an account with iCloud then try to open it I get an error message: wrong ID or password. Also when I enter my birth date I am told it is incorrect. I have done this several times with the same results.

    Oldcameraman
    Please do not duplicate a thread. The threads are answered as soon as possible. We are not Adobe. Just user to user.
    I have answered your most recent of the duplicates
    Premier Elements 13 Organizer Works. Editor doesn't. Log in doesn't work
    It is uncertain just how far we can go to help you since you do not appear to have Premiere Elements any
    longer.Seems you demanded a refund from Adobe Chat, got it, and now are left with a non purchased program which I
    am not sure can be used.
    Duplicates tend to confuse the person asking the question as well as those attempting to reply. As I suggested in the
    above mentioned thread, try to sort out your situation with Adobe via its Adobe Chat.
    ATR

  • When i login on game center it say enter your birth date when i enter it and i perss next the birth day will come again and again what should do

    when i login on game center it say enter your birth date when i enter it and i perss next the birth day will come again and again what should do

    Start a game with Game Center and go from there.

  • Capture who changed data using Forms Personalization & changed to what data

    Dear All,
    When the data is changed to a new data (say the price has been changed), I need to capture
    a) the original data
    b) newly changed data
    c) who changed the data
    into a newly created custom table using FORMS PERSONALIZATION.
    How do I do using FORMS PERSONALIZATION?
    Thanks.
    Matthew

    Hey guys, I did it.... and it does work. Here is what I did.
    I created a table to capture the required data.
    CREATE TABLE XYKA_PRICE_CHANGE_DTLS
    LIST_LINE_ID NUMBER,
    PRODUCT_ID VARCHAR2(240),
    PRODUCT_ATTR_VAL_DISP VARCHAR2(4000),
    NEW_PRICE NUMBER,
    DIV_NAME VARCHAR2(240),
    PRICE_CHANGED_BY VARCHAR2(6),
    PRICE_CHANGED_TIME DATE,
    OLD_PRICE     NUMBER
    Create two procedures which needs to enter data into this XYKA_PRICE_CHANGE_DTLS table. We will pass values from FORMS PERSONALIZATION by calling this
    procedure in the ACTION tab.
    CREATE OR REPLACE procedure PRICE_CHANGE_DETAILS(price IN number,updated_by IN varchar2,disp IN varchar2,prod_id IN varchar2,line_id IN number,head_id in number,old_price in number) AS
    v_name varchar2(240);
    BEGIN
    select name into v_name from qp_secu_list_headers_v where list_header_id = head_id;
    insert into XYKA_PRICE_CHANGE_DTLS(NEW_PRICE, PRICE_CHANGED_BY,ITEM_NUMBER,PRICE_CHANGED_TIME,PRODUCT_ID,LIST_LINE_ID,PRICE_LIST_NAME,OLD_PRICE) values (price,updated_by,disp,sysdate,prod_id,line_id,v_name,old_price);
    COMMIT;
    END;
    CREATE OR REPLACE procedure APPS.PRICE_CHANGE_DTLS(price IN number,updated_by IN varchar2,disp IN varchar2,prod_id IN varchar2,line_id IN number,head_id in number,old_price in number) AS
    V_PRICE_CHANGED_TIME date;
    V_PRODUCT_ID varchar2(240);
    V_LIST_LINE_ID number;
    V_count number := 0;
    BEGIN
    select count(*) into v_count from XYKA_PRICE_CHANGE_DTLS
    WHERE LIST_LINE_ID = line_id AND PRODUCT_ID = prod_id AND NEW_PRICE = price;
    if nvl(v_count,0) = 0 THEN
    PRICE_CHANGE_DETAILS(price,updated_by,disp,prod_id,line_id,head_id,old_price);
    else
    null;
    end if;
    END;
    In fact, I want to capture the current price and the changed price in pricing which is OPERAND field in qp_list_lines_v table (OM MANAGER > PRICING > PRICE
    LISTS > PRICE LIST SETUP)
    In the FORM PERSONALIZATION, enter the seq and the description
    Seq          1
    Description     GLOBAL_VARIABLE
    Level          Function
         In the CONDITION tab
              Trigger Event          WHEN-NEW-ITEM-INSTANCE
              Trigger Object          LIST_LINES.OPERAND
              Processing Mode     Not in Enter-Query Mode
              Level               Site
    In the ACTION tab
              Seq          1
              Type          Property
              Description     Operand Value
              Language     All
              Object Type     Global Variable
              Target Object     XX_EXIST_OPERAND_VALUE
              PropertyName     VALUE
              Value          ${item.list_lines.operand.value}
              Seq          2
              Type          Property
              Description     USER
              Language     All
              Object Type     Global Variable
              Target Object     XX_USER_ID
              PropertyName     VALUE
              Value          =fnd_global.user_id
    Seq          2
    Description     CONDITION & PASSING PARAMETER
    Level          Function
         In the CONDITION tab
              Trigger Event     WHEN-VALIDATE-RECORD
              Trigger Object     LIST_LINES
              Condition     ${item.list_lines.operand.value} <>${global.XX_EXIST_OPERAND_VALUE.value}
              Processing Mode     Not in Enter-Query Mode
              Level               Site
    In the ACTION tab
              Seq          1
              Type          Builtin
              Description     PASSING_VALUE
              Language     All
              Builtin Type     Exceute a Procedure
              Argument     ='begin PRICE_CHANGE_DTLS('''||${item.list_lines.operand.value}||''','''||${global.XX_USER_ID.value}
    ||''','''||${item.list_lines.product_attr_val_disp.value}||''','''||${item.list_lines.product_id.value}
    ||''','''||${item.list_lines.list_line_id.value}
    ||''','''||${item.list_lines.list_header_id.value}||''','''||${global.XX_EXIST_OPERAND_VALUE.value}
    ||''');end'
    Click APPLY NOW button. Save it and the close this FORMS PERSONALIZATION. Go back to the navigation and then click on the module. Try changing the price.
    Your current and the newly changed price along with who changed it, time etc will be inserted into XYKA_PRICE_CHANGE_DTLS table.
    Edited by: e-brain on Sep 14, 2009 11:21 AM
    Edited by: e-brain

  • Quantity times price using Forms Central Template

    I am a new user to Forms Central.  I have created many forms using Word or Excel to create the "artwork" for the form, then saving as a pdf and assigning the form fields.  I have even used simple forumuas in the fields to calculate prices on purchase orders.  However, I am struggling with how to use the Clothing Order template from Forms Central Templates and add fields that allow pricing information and quantity x price to get a total dollar amount ordered.  Employees will be using the form to order uniforms and while they will not need to make a payment, they will need to know how close they are to their maximum amount allowed for uniforms.  Is it possible to add fields that do simple calculations in Forms Central?

    HTML forms in Formscentral don't support calculations. From your post it sounds like you may have started with a PDF workflow. Imported PDFs in Formscentral do support calculations. You should refer to Acrobat recourses for guidance on creating calculation fiends in PDF.
    Andrew

  • Filter Display Data using Form Personalization

    Hi All,
    I have 2 blocks, Query and Detail block.
    Based on search criteria from query block the details are displayed in detail block.
    Now i want to filter display data in Detail block by adding org_id condition through form personalization.
    I would like to know if its possible by form personalization.
    Thanks

    not sure any auto feature available but u can set the DEFAULT_WHERE property of the Block using SET_BLOCK_PROPERTY and execute query after it
    search DEFAULT_WHERE in this forum for examples
    Baig,
    [My Oracle Blog|http://baigsorcl.blogspot.com/]

  • Collecting Data using forms

    Need help soon or else I am going to throw my computer out
    the window.
    My problem is simple (or so I thought). I would like to
    collect data from people using a simple form. I thought all I would
    have to do is create the form (done this already), and have the
    form dump the info into a file (say a database). Then I could go
    into the database and look at the data at my leisure. This is
    proving far too difficult.
    Steps I have taken so far:
    1. I have created the form.
    2. I have created the associated database using ACCESS 2000.
    3. I have talked to my provider, they use ASP
    This is where I get stuck. I want the info dumped into my
    database. This apparently is not so easy. I have scoured the
    internet for a layman's tutorial, but to no avail. There is talk of
    a script required. Where does this go, in dreamweaver or elsewhere?
    I switched to dreamweaver from FrontPage recently because of
    the power behind the program. However, FrontPage is sooooo much
    easier when it comes to collecting data. Why is dreamweaver so much
    more difficult?
    I am getting frustrated and hope someone out there can give
    me a hand.

    >I switched to dreamweaver from FrontPage recently because
    of the power behind the program. However, FrontPage is >sooooo
    much easier when it comes to collecting data. Why is dreamweaver so
    much more difficult?
    Because FP relies on a propriatary server technology that is
    installed on the Windows Server.
    DW works with all kinds of operating systems, web servers and
    technologies. For some tasks, like the one you are inquiring about,
    it has server behaviors that essential write the server side
    scripts for you. Again, read the tutorial I mentioned.

  • Insert data using peoplesoft webservice gives component API error

    Hi,
    I am using jdeveloper 11g to consume a peoplesoft webservice using the wsdl file and JAX-Ws approach to build the proxy.
    I have been successfull in getting to work the "get", "find" methods for the webservice but while trying to access the create/Update(inserting data) method, it gives me the following exception.
    In CREATE method
    Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: Component Interface API.
         at com.sun.xml.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:197)
         at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:130)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:125)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:135)
         at $Proxy32.createCompIntfcKCMWEBCASECI(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.jaxws.spi.ClientInstance$ClientInstanceInvocationHandler.invoke(ClientInstance.java:363)
         at $Proxy33.createCompIntfcKCMWEBCASECI(Unknown Source)
         at project1.proxy.KCM_WEB_CASE_CISoapClient.createKCMMethod(KCM_WEB_CASE_CISoapClient.java:318)
         at project1.proxy.KCM_WEB_CASE_CISoapClient.main(KCM_WEB_CASE_CISoapClient.java:116)
    Process exited with exit code 1.
    From the exception it is not clear what is missing or where am i going wrong. I have provided all the mandatory values required by the method.
    The create method generated needs almost 40 parameters, hence i am intializing all of them and sending it.
    Few parameters are INOUT or out mode, depending on that i even created the required holder etc.
    I dont have any access to peoplesoft logs, is there a way to debug this further.
    Basically i am stuck here as i am not able to decode this exception.
    Can anyone tell me where is it failing, is it a some formation error or is it creating a query at db and getting a sql error??
    as mentioned earlier, its very difficult to get access to db resources hence its becmong very difficult to debug the error.
    Any help will be appreciated.
    Thank you in advance
    Ashvini
    Edited by: [email protected] on Jun 7, 2010 7:49 AM
    Edited by: [email protected] on Jun 8, 2010 6:37 AM

    Hi, I have exact the same problem. Have you got any answer for this problem yet? Please forward it to me if you have one. Many thanks.

  • How to correct the birth date in Apple account? How to change the numerals to English for UAE location?

    I purchased iPhone 5S and opened new Apple account with preffered language English and location UAE. I was directed to enter my birth date with only Arabic language option. There was no way to change the language or skip the step. I had to enter an arbitrary birth date to go to the next step. How to correct the birth date now and change the numerals to English?

    Solution!!
    I was finally able to get the installer build to work, even though it takes about ten minutes!!  The network and CPU activity is minimal, so I don't know what LV is waiting on during all this time?
    For this installation it appears to be related to the directory structure created by the Volume License Manager 2.1 software.  There are two sets of users at my company, LabVIEW Professional and Developer Suite, which have different license numbers and installers.  The errors were related to source files located in the Products folder of the network distribution.  My installation expected the Products folder to be in a different location that it was actually placed by the VLM software.  I copied the entire Products folder from _SourceFiles up to the LabVIEW 8.5.1 folder and now it works, although very slowly.
    LabVIEW 8.5.1
    -->_SourceFiles
        -->Bin
        -->Device Drivers
        -->Licenses
        -->Products   (original location)
        -->Signal Express
    -->Dev Suite
    -->LV Pro
    -->Products    (manual copy)
    I hope this information may be of use to NI or other users.
    Message Edited by jrjones on 08-12-2008 03:21 PM
    Message Edited by jrjones on 08-12-2008 03:23 PM

  • How do I update my birth date on Apple ID?

    I have forgotten my password and selected "Verify Security Questions" to reset the password.  However, the system is stating that I'm entering my birth date in wrong.  I managed to guess my password correctly after a few more attempts, but I would like to update my birth date as well.  After logging into my profile, I did not see a location where my birth date is housed.  Can anyone tell me how to update my birth date?

    Many people make up a birthdate for security reasons. I would be surprised if you use your actual, real, birthdate.

  • Error while sending the data using input schedule

    Dear Friends,
    I am unable to send the data using input schedule due to following error is occur while sending the data.
    The Error Message : Member (H1) of dimension (ENTITY) is not a base member (parent or formula)
    Can anyone please help me to resolve the above error.
    Thanks and regards,
    MD.

    Hi,
    You are trying to send data to a parent/node, you can only send data in BPC to lowest-level children (base mamabers) of any dimension.
    "H1" is a parent in the entity dimension so you should try sending to a child.
    Tom.

  • HT204053 How can I delete my iCloud account which I do not remember anything about the information that I entered about 4 years ago. It always asks my birth date but it seems I did not enter my correct date how can I bypass this question???

    How can I delete my iCloud account which I do not remember anything about the information that I entered about 4 years ago. It always asks my birth date but it seems I did not enter my correct date how can I bypass this question???

    You cannot delete the account from the server (partly to prevent the username from becoming available again and some-one else using it to pretend to be you).. Having disengaged your devices from it, go to http://icloud.com and delete any data in there such as contacts and calendars. Then just ignore it.

  • How to upload data into form of Oracle EBS R12 using ATS ver 9.0

    Hi experts,
    Could you please guide me how to upload data into form on Oracle EBS R12 using Oracle Application Testing Suite verson 9.(The simpliest way)
    For example: I need to create user account on Oracle EBS. Normally, I use Dataloader to upload the data, however it just can upload one by one record, cannot upload multi record at same time. Moreover if the performance of server is low, so I will get the issue when using dataloader.
    Thanks in advance
    Best Regards
    Hieu

    Hi you can create Virtual users to enter data. Note than you have to name the objects accordingly.
    For Example default recording provided by Open script is ObjectNAME_(Index No of the object).
    when you record one iteration the name of any object would be ObjectNAME_(0)
    You can then create virtual users so the index will increment as the total number of Virtual users increases. Also you have to handle which row of your test data would get mapped to which Virtual user in the script run session.
    Thanks

  • Data entry form to submit to a web Service using webcenter

    Currently using Jdev 11.1.1.3, but have potential to upgrade to 11.1.1.4 or 5
    Most examples I see in the docs is using web services in webcenter is to display data but I need to pass data to a web service to process the data.
    Considering ways to show on a webcenter page a data entry form to send the entered data to a web service. Potential ways:
    1. Use Omniportlet that is based on a web service and define for each of the fields a parameter mapped to a displayed field. Submit the data to the web service to be processed.
    2. Use ADF syntax to create a web service proxy. Create a form with the needed fields, code a managed bean that uses the proxy code to submit the entered data in the form. Place the form on the webCenter page, but the webcenter already have a <af:form>, so a partialSubmit and autoSubmit set to "true" might be needed.
    Haven't used either and would greatly appreciate ideas and suggestions.
    Thanks

    With the omniportlet, you'll also have to test the form and so on :)
    My suggestion is indead an extra step but it is more flexible than just creation a DC from a WSDL. I already have done some implementation in Webcenter for web services and i started by just using the DC from a WSDL but soon i noticed that i needed more flexibility. That's why i suggest to create a proxy and create your own layer in front of it. This way you can easily control what you expose to your DC and do some initializations were needed. It offers a great deal of flexibility. That's why i suggest using the proxy + dc instead of wsdl + dc.
    When you should decide for migrating to Webcenter PS3, you can even expose datacontrols to your resource catalog. This way you can create your DC in JDeveloper and allow the business users to put the data controls on the page. a realy nice feature.

  • Can we load data using .xls in user define format(without using default template)

    Hi All,
    I'm new bee to FDM. Part of HFM support i use FDM to load flatfile data. Just has a bit more knowledge than end user.
    Requirement is that i need to load data from MS excel to Planning application via FDM.
    Previously application is in Excel(Macro driven) and upstream(data) is also in Excel(multi tab).
    As of my knowledge data can be loaded from .csv file(Excel save as CSV) with single tab.
    Could you please let me know possibilities to load data from .xls(.xlsx) to FDM.
    Thanks in advance.

    If you want to load data using Excel, utilising FDM's out-of-the-box functionality you will have to use one of the templates supplied i.e. Excel Trial Balance or Excel Multi-load template.

Maybe you are looking for

  • Hewlett Packard LaserJet PRO 200 Color M251NW - ICC Profile

    My girlfriend works from home selling jewelry on Etsy and her prints have been coming out with a strange tint to them recently. I have tried to find the proper ICC profile to use with this printer, but can't seem to find it anywhere. Am I overlooking

  • Can't install java

    hi everyone, lately I've been unable to use Java due to the following error # An unexpected error has been detected by Java Runtime Environment: # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0xae000000, pid=3608, tid=2944 # Java VM: Java HotSpot(TM

  • My comuter crashed how do I sybc my ipod with days of music

    My computer crashed- I do I sync my ipod that has DAYS of music that I loaded myself from CDs I owned?

  • Field to move left side

    i have a document print in which i have two columns, first column is image field (refering to a file in the local machine), second field is a normal text column, if the 1st field is null then i want the second column to move to the left, i have set b

  • Spotlight not finding a simple textedit file

    Hi, I've looked at spotlight prefs and also gone into a Find window in finder and checked the basics are selected and yet spotlight still fails to find a simple textedit folder within Documents. I'm baffled Simon