DBA Data[Home] [Help]

APPS.ASO_PARTY_INT dependencies on AR_SYSTEM_PARAMETERS

Line 796: FROM ar_system_parameters;

792: cust_profile_rec.Created_by_Module := 'ASO_CUSTOMER_DATA';
793:
794: -- if needed generate account_number.
795: SELECT generate_customer_number INTO l_gen_cust_num
796: FROM ar_system_parameters;
797:
798: -- typically should be set to 'Y' if no we will try to create a new one.
799: -- however, this could error out
800:

Line 1281: FROM AR_SYSTEM_PARAMETERS;

1277:
1278:
1279: -- added for bug 2291297
1280: SELECT AUTO_SITE_NUMBERING INTO l_profile
1281: FROM AR_SYSTEM_PARAMETERS;
1282:
1283: IF l_profile = 'N' then
1284: p_acct_site_uses_Rec.location := substr(l_Acct_Site_type ||' ' ||
1285: l_location ||' ' ||

Line 2165: FROM ar_system_parameters;

2161:
2162:
2163: -- if needed generate account_number.
2164: SELECT generate_customer_number INTO l_gen_cust_num
2165: FROM ar_system_parameters;
2166: -- typically should be set to 'Y' if no we will try to create a new one.
2167: -- however, this could error out
2168: IF l_gen_cust_num = 'Y' and p_account_number <> FND_API.G_MISS_NUM THEN
2169: account_rec.account_number := p_account_number;