Who's Online
0 registered (), 2 Guests and 6 Spiders online.
Key: Admin, Global Mod, Mod
Recent Posts
Search Engine Optimizers
by delboy
Today at 09:09 AM
Function for getting retropay-maintained balances
by delboy
Yesterday at 02:20 PM
Abseces in oracle hrms, super user: how to do I:
by tovia123
04/02/12 09:33 PM
Grade End Date
by Chris
03/02/12 10:46 AM
OLM Mandatory Enrolments
by bcooper
01/02/12 12:23 PM
Retro-Notifs Report missing some ele entries
by CT
01/02/12 06:51 AM
P45 as PDF's
by SBi
30/01/12 11:58 AM
Employer Charges element in SOE
by Sachin
30/01/12 11:31 AM
Skinning SSHR?
by Duncan Casemore
28/01/12 10:49 AM
Time and Labour & Oracle Projects
by SBi
27/01/12 02:23 PM
Top Posters (30 Days)
delboy 24
CT 24
bcooper 17
Gus 14
paulgos 10
christm 5
Sahir 4
Simon_Mc 3
Tim Bailey 3
tovia123 3
(Views)Popular Topics
Family Pack K issues thread 18126
CREATE_GRADE api returns:PLS-00306: wrong number o 13685
Still trying to locate... 12118
Creating hr jobs ORA-20001: HR_289477_JOB_GROUP_ID 10583
Viewing Output of another user 9062
HR_PF.K RUP4 8783
Review of my Release 12 laptop 8453
Adding a taskflow button to a form 7807
Enhanced Retro & Release 12 7597
Family Pack K 7068
Page 1 of 4 1 2 3 4 >
Topic Options
Rate This Topic
#3406 - 27/07/08 12:55 PM CREATE_GRADE api returns:PLS-00306: wrong number o
tovia123 Offline
hanger-on

Registered: 14/05/08
Posts: 72
Loc: UK
Hi

I have created a package to load grades information as per code:
http://pastebin.com/m57c2146f

Data in my temporary table(currently loading 1st record only for testing!):
http://pastebin.com/m681542e3

The data in my table in sql :
Name Null? Type
----------------------------------------- -------- -----
SEQUENCE NUMBER
NAME VARCHAR2(70)
HEALTHCARE_SERVICE VARCHAR2(80)
DEATH_SERVICE VARCHAR2(70)
LONG_DISABILITY VARCHAR2(70)
MOBILE_PHONE VARCHAR2(5)
HOLIDAY_ENTITLEMENT NUMBER(5)
STD_PROBATION NUMBER(5)
STD_NOTICE NUMBER(5)
REPORTED_AS VARCHAR2(30)
PAYCODE VARCHAR2(5)
INCENTIVE_SCHEME VARCHAR2(20)
FLEX_BENEFIT VARCHAR2(20)

Also: I have removed all the value sets for the descriptive flexfield under:
Application > flexfield > Descriptive > segments

and i have successfully inserted the record manually by cutting and pasting field values from my data file!

So in SQL*PLUS: Why does it still complain of this:

Problem:
I am getting error:
LINE/COL ERROR
-----------------------------------------------------------------
71/1 PLS-00306: wrong number or types of arguments in call to
'CREATE_GRADE'

I went to line 71 within the file in notepad and i didnt find anything i am confused.

Thanks in advance

Tovia singer


Top
#3407 - 27/07/08 07:59 PM Re: CREATE_GRADE api returns:PLS-00306: wrong number o [Re: tovia123]
CT Offline
Guru
***

Registered: 11/03/05
Posts: 1073
Loc: Bath
Tovia

I would reckon it's objecting to your omission of the p_grade_id output parameter from the parameter list.

_________________________
L&K
CT

Remember: A dog is for life, not just for Christmas... unless you're in Korea

Top
#3408 - 28/07/08 08:14 AM Re: CREATE_GRADE api returns:PLS-00306: wrong numb [Re: CT]
tovia123 Offline
hanger-on

Registered: 14/05/08
Posts: 72
Loc: UK
HI CT

Thanks so much

I added p_grade_id:=v_grade_id;
and it compiled successfull but didnt create any records, so i checked the commit, and it was in the place same place as in my jobs api call.
Also checked the application and there where no grades so it shouldnt have any problem loading them.

My data file is:
http://pastebin.com/m2bce6d4a

There should be an error if it doesnt load the data i dont understand!

Thanks in advance

Tovia Singer

Top
#3409 - 28/07/08 11:22 AM Re: CREATE_GRADE api returns:PLS-00306: wrong numb [Re: tovia123]
CT Offline
Guru
***

Registered: 11/03/05
Posts: 1073
Loc: Bath
So what gets reported when you run it? Presumably you get a load of lines in your 'dbms_output' destination that show

'Ex:<grade_id>,<object_version_number>'

What are the actual numbers being returned, if any?
_________________________
L&K
CT

Remember: A dog is for life, not just for Christmas... unless you're in Korea

Top
#3410 - 28/07/08 12:21 PM Re: CREATE_GRADE api returns:PLS-00306: wrong numb [Re: CT]
tovia123 Offline
hanger-on

Registered: 14/05/08
Posts: 72
Loc: UK
Hi CT

Basically i set serverouput on:
set serveroutput on size 20000;

But i still get the following output:

SQL> @XXcompany_INT_GRADES_LOAD

Package created.

No errors.

Package body created.

No errors.

The revised code with p_grade_id:
http://pastebin.com/m5fc0c461

Thanks in advance

Tovia

Top
#3411 - 28/07/08 12:53 PM Re: CREATE_GRADE api returns:PLS-00306: wrong numb [Re: tovia123]
CT Offline
Guru
***

Registered: 11/03/05
Posts: 1073
Loc: Bath
OK so it compiles, but what happens when you run it?
_________________________
L&K
CT

Remember: A dog is for life, not just for Christmas... unless you're in Korea

Top
#3412 - 28/07/08 01:17 PM Re: CREATE_GRADE api returns:PLS-00306: wrong numb [Re: CT]
tovia123 Offline
hanger-on

Registered: 14/05/08
Posts: 72
Loc: UK
HI CT

Sorry:

SQL> execute XXcompany_PKG_GRADES.XXcompany_LOAD_GRADES;
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,
Ex:,

PL/SQL procedure successfully completed.

And it doesnt actually load any data,

Thanks in advance

Tovia S

Top
#3413 - 28/07/08 01:44 PM Re: CREATE_GRADE api returns:PLS-00306: wrong numb [Re: tovia123]
CT Offline
Guru
***

Registered: 11/03/05
Posts: 1073
Loc: Bath
Could it be that the only reason you're not seeing exceptions is because you are trying to report them via the FND_FILE package, which really only works if you're running this from the conc. manager. As a temporary measure, can you change the FND_FILE references to DBMS_OUTPUT.put_line and re-run it? Also, I would say in the latest version of your script, you might benefit from moving the line of code currently at line 128:

DBMS_OUTPUT.PUT_LINE('Ex:'||v_grade_id||','||v_object_version_number);

to immediately *after* the api call, e.g. at line 119 (to quote the numbers from your Pastebin listing)

_________________________
L&K
CT

Remember: A dog is for life, not just for Christmas... unless you're in Korea

Top
#3414 - 28/07/08 06:04 PM Re: CREATE_GRADE api returns:PLS-00306: wrong numb [Re: CT]
tovia123 Offline
hanger-on

Registered: 14/05/08
Posts: 72
Loc: UK
Hi CT

Sorry for the delay in feedback,

I did as you said above:

Latest code:
http://pastebin.com/m2c1dff1d

The feedback from/ error in sql:

SQL> execute XXcompany_PKG_GRADES.XXcompany_LOAD_GRA
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
Ex:,
-20001ORA-20001: FLEX-ID DOES NOT EXIST:
Ex:,
PL/SQL procedure successfully completed.
SQL>

Thanks in advance

Tovia Singer

Top
#3416 - 28/07/08 06:58 PM Re: CREATE_GRADE api returns:PLS-00306: wrong numb [Re: tovia123]
CT Offline
Guru
***

Registered: 11/03/05
Posts: 1073
Loc: Bath
Ah, this is of course a problem you will have seen before, in your 'job loading' process (see separate thread)

Recall that the text associated with this message code is "ID &ID for the flexfield segment &SEGMENT does not exist in the value set &VALUESET." In other words, you still have a valueset in place somewhere that is not liking the data you're trying to send to a desc flex segment.
_________________________
L&K
CT

Remember: A dog is for life, not just for Christmas... unless you're in Korea

Top
Page 1 of 4 1 2 3 4 >



Moderator:  Administrator, Geoff Dixon 
Forum Stats
754 Members
48 Forums
1514 Topics
7262 Posts

Max Online: 63 @ 24/11/10 07:21 AM
Today's Birthdays
No Birthdays
Recent vacancies
Tea boy available 4 basic chores & some! services
by Simon_Mc
19/01/12 03:59 PM
Top Posters
bcooper 1094
CT 1073
delboy 493
Geoff Dixon 369
SBi 344
vkumar 223
kp_rapolu 213
cbrookes 197
Gavin Harris 160
Gus 132
February
Su M Tu W Th F Sa
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29