|
|||||
Name
|
Mode
|
Type
|
Description
|
p_cust_account_rec_type
|
IN OUT
|
HZ_CUST_ACCOUNT_V2PUB.
CUST_ACCOUNT_REC_TYPE
|
Allows access to the Oracle Public API for customer account creation and parameters contained within.
|
p_person_rec_type
|
IN OUT
|
HZ_PARTY_V2PUB.PERSON_REC_TYPE
|
Allows access to the Oracle Public API for party person creation and parameters contained within (note the Party creation is a background process).
|
p_organization_rec_type
|
IN OUT
|
HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE
|
Allows access to the Oracle Public API for party organization creation and parameters contained within (note the Party creation is a background process).
|
p_cust_profile_rec_type
|
IN OUT
|
HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE
|
Allows access to the Oracle Public API for customer profile creation and parameters contained within (note the Profile creation is a background process).
|
p_create_profile_amount
|
IN
|
VARCHAR2
|
Allows access to the Oracle Public API for customer and site profile amount creation and parameters contained within (note the Profile creation is a background process).
|
x_status
|
OUT
|
VARCHAR2
|
Set to 'E' to error the record
|
x_msg
|
OUT
|
VARCHAR2
|
Used to return a message to the Wizard.
|
Name
|
Mode
|
Type
|
Description
|
p_cust_account_rec_type
|
IN OUT
|
HZ_CUST_ACCOUNT_V2PUB.CUST_ACCOUNT_REC_TYPE
|
Allows access to the Oracle Public API for customer account updates and parameters contained within.
|
x_status
|
OUT
|
VARCHAR2
|
Set to 'E' to error the record.
|
x_msg
|
OUT
|
VARCHAR2
|
Used to return a message to the Wizard.
|
Name
|
Mode
|
Type
|
Description
|
p_cust_profile_amt_rec_type
|
IN OUT
|
hz_customer_profile_v2pub.cust_profile_amt_rec_type
|
Allows access to the Oracle Public API for customer account and site profile amount creation and parameters contained within.
|
x_status
|
OUT
|
VARCHAR2
|
Set to 'E' to error the record.
|
x_msg
|
OUT
|
VARCHAR2
|
Used to return a message to the Wizard.
|
Name
|
Mode
|
Type
|
Description
|
p_cust_profile_amt_rec_type
|
IN OUT
|
hz_customer_profile_v2pub.
cust_profile_amt_rec_type
|
Allows access to the Oracle Public API for customer account and site profile amount updates and parameters contained within.
|
x_status
|
OUT
|
VARCHAR2
|
Set to 'E' to error the record.
|
x_msg
|
OUT
|
VARCHAR2
|
Used to return a message to the Wizard.
|
declare
--Custom Variables
l_vu_custnum hz_cust_accounts.account_number%type;
l_vu_custcount number :=0;
l_resp_id number;
--End of Custom Variables
begin
if p_cust_account_rec_type.account_number = 'XXXXX' and
fnd_global.resp_id = 56958 then --Vision Utilities
select 'VU'||lpad(m4a_cw_custnum_s.nextval,5,0)
into l_vu_custnum
from dual;
/* Now check not creating duplicate Account Number */
begin
select count(*)
into l_vu_custcount
from hz_cust_accounts
where account_number = l_vu_custnum;
if l_vu_custcount <> 0 then
x_status := 'E';
x_msg := 'VU Customer Number '||l_vu_custnum||' already exists; please contact your System Administrator';
else
p_cust_account_rec_type.account_number := l_vu_custnum;
--x_msg := 'New Cust Num: '||l_vu_custnum; --Extension Error: New Cust Num: VU00004
end if;
end;
end if; --Vision Australia
exception
when others then
x_status := 'E';
x_msg := 'Unable to derive Vision Uni Customer Number; please contact your System Administrator';
end;
|
DECLARE
l_min_dunning_amount NUMBER;
BEGIN
IF p_cust_profile_amt_rec_type.attribute1 = 'Download Test CC1' THEN
l_min_dunning_amount :=50;
p_cust_profile_amt_rec_type.min_dunning_amount := l_min_dunning_amount;
ELSE
x_status := 'E';
x_msg := 'FAIL';
END IF;
END;
|
p_date:= TO_DATE('2015/08/24', 'yyyy/mm/dd');
p_date:= TO_DATE('23-AOU-2024', 'DD-MON-YYYY','NLS_DATE_LANGUAGE=FRENCH');
p_date:= ('23-AUG-2024', 'DD-MON-YYYY', 'NLS_DATE_LANGUAGE=AMERICAN');
|
p_date:= ('23-AUG-2024');
|