DBA Data[Home] [Help]

APPS.OE_CUSTOMER_INFO_PVT dependencies on OE_GLOBALS

Line 58: IF OE_GLOBALS.G_UPDATE_ON_ID THEN

54: oe_debug_pub.add('G_EMAIL_REQUIRED :'||G_EMAIL_REQUIRED);
55: oe_debug_pub.add('G_AUTO_CONTACT_NUMBERING :'||G_AUTO_CONTACT_NUMBERING);
56: oe_debug_pub.add('G_ONT_ADD_CUSTOMER :'||G_ONT_ADD_CUSTOMER);
57:
58: IF OE_GLOBALS.G_UPDATE_ON_ID THEN
59: oe_debug_pub.add('OE_GLOBALS.G_UPDATE_ON_ID : TRUE');
60: ELSE
61: oe_debug_pub.add('OE_GLOBALS.G_UPDATE_ON_ID : FALSE');
62: END IF;

Line 59: oe_debug_pub.add('OE_GLOBALS.G_UPDATE_ON_ID : TRUE');

55: oe_debug_pub.add('G_AUTO_CONTACT_NUMBERING :'||G_AUTO_CONTACT_NUMBERING);
56: oe_debug_pub.add('G_ONT_ADD_CUSTOMER :'||G_ONT_ADD_CUSTOMER);
57:
58: IF OE_GLOBALS.G_UPDATE_ON_ID THEN
59: oe_debug_pub.add('OE_GLOBALS.G_UPDATE_ON_ID : TRUE');
60: ELSE
61: oe_debug_pub.add('OE_GLOBALS.G_UPDATE_ON_ID : FALSE');
62: END IF;
63:

Line 61: oe_debug_pub.add('OE_GLOBALS.G_UPDATE_ON_ID : FALSE');

57:
58: IF OE_GLOBALS.G_UPDATE_ON_ID THEN
59: oe_debug_pub.add('OE_GLOBALS.G_UPDATE_ON_ID : TRUE');
60: ELSE
61: oe_debug_pub.add('OE_GLOBALS.G_UPDATE_ON_ID : FALSE');
62: END IF;
63:
64: oe_debug_pub.add( 'EXITING PROCEDURE INITIALIZE_GLOBAL' ) ;
65:

Line 352: 3.If customer_id is sent then see if value is aslo sent and try to update the value on the id ig OE_GLOBALS.G_UPDATE_ON_ID is true

348:
349: /*
350: 1.Check whether customer_id is sent
351: 2.If customer_id is not sent check whether value is sent and try to derive id from value
352: 3.If customer_id is sent then see if value is aslo sent and try to update the value on the id ig OE_GLOBALS.G_UPDATE_ON_ID is true
353: 4.If customer_id could not be resolved till step 3,create the customer
354: 5. Check for minimum required fields
355: 6.Validate customer related fields
356: 7. call TCA API to create the customer

Line 386: AND OE_GLOBALS.G_UPDATE_ON_ID

382: END IF;
383:
384: ELSE
385: IF IS_BOTH_ID_VAL_PASSED( p_customer_rec => l_sold_to_customer_rec )
386: AND OE_GLOBALS.G_UPDATE_ON_ID
387: THEN
388:
389: Update_Customer (p_customer_rec => l_sold_to_customer_rec
390: , x_return_status =>x_return_status

Line 473: 3.If customer_id is sent then see if value is aslo sent and try to update the value on the id ig OE_GLOBALS.G_UPDATE_ON_ID is true

469:
470: /*
471: 1.Check whether customer_id is sent
472: 2.If customer_id is not sent check whether value is sent and try to derive id from value
473: 3.If customer_id is sent then see if value is aslo sent and try to update the value on the id ig OE_GLOBALS.G_UPDATE_ON_ID is true
474: 4.If customer_id could not be resolved till step 3,create the customer
475: 5. Check for minimum required fields
476: 6.Validate customer related fields
477: 7. call TCA API to create the customer

Line 509: AND OE_GLOBALS.G_UPDATE_ON_ID

505: END IF;
506:
507: ELSE
508: IF IS_BOTH_ID_VAL_PASSED( p_customer_rec => l_ship_to_customer_rec )
509: AND OE_GLOBALS.G_UPDATE_ON_ID
510: THEN
511: Update_Customer (p_customer_rec => l_ship_to_customer_rec
512: , x_return_status =>x_return_status
513: );

Line 613: AND OE_GLOBALS.G_UPDATE_ON_ID

609: oe_debug_pub.add('l_new_bill_to_party_id:'||l_new_bill_to_party_id);
610: END IF;
611: ELSE
612: IF IS_BOTH_ID_VAL_PASSED( p_customer_rec => l_bill_to_customer_rec )
613: AND OE_GLOBALS.G_UPDATE_ON_ID
614: THEN
615:
616: Update_Customer (p_customer_rec => l_bill_to_customer_rec
617: , x_return_status =>x_return_status

Line 724: AND OE_GLOBALS.G_UPDATE_ON_ID

720: END IF;
721:
722: ELSE
723: IF IS_BOTH_ID_VAL_PASSED( p_customer_rec => l_deliver_to_customer_rec )
724: AND OE_GLOBALS.G_UPDATE_ON_ID
725: THEN
726:
727: Update_Customer (p_customer_rec => l_deliver_to_customer_rec
728: , x_return_status =>x_return_status

Line 2436: AND OE_GLOBALS.G_UPDATE_ON_ID

2432: ELSE
2433:
2434: --Update Address logic to go here
2435: IF IS_BOTH_ID_VAL_PASSED( p_address_rec => l_addr_rec )
2436: AND OE_GLOBALS.G_UPDATE_ON_ID
2437: THEN
2438: Update_Location (p_address_rec => l_addr_rec
2439: , p_site_use_id => l_addr_rec.site_use_id
2440: , p_site_usage_code => p_address_usage

Line 3118: bot ID and Value are passed for address related fields and OE_GLOBALS.G_UPDATE_ON_ID is TRUE

3114: RETURN FND_API.G_MISS_NUM;
3115: END Get_Party_ID;
3116:
3117: /* This procedure is used to update a address location.This will be called from create_address procedure if
3118: bot ID and Value are passed for address related fields and OE_GLOBALS.G_UPDATE_ON_ID is TRUE
3119: */
3120:
3121: Procedure Update_Location ( p_address_rec IN OE_ORDER_PUB.CUSTOMER_INFO_REC_TYPE
3122: , p_site_use_id IN NUMBER

Line 3256: for customer fields and OE_GLOBALS.G_UPDATE_ON_ID is TRUE. This API can update Customer_name,

3252: END Get_Location_id;
3253:
3254:
3255: /* This procedure will be called from Create_Account procedure if both ID and Value is passed
3256: for customer fields and OE_GLOBALS.G_UPDATE_ON_ID is TRUE. This API can update Customer_name,
3257: Account_Description,Account_number,Email contact point,Phone contact point*/
3258:
3259: Procedure Update_Customer ( p_customer_rec IN OE_ORDER_PUB.CUSTOMER_INFO_REC_TYPE
3260: , x_return_status OUT NOCOPY VARCHAR2 ) IS

Line 3484: AND OE_GLOBALS.G_UPDATE_ON_ID

3480: END IF;
3481: ELSE
3482: --Update Contact logic to go here
3483: IF IS_BOTH_ID_VAL_PASSED( p_contact_rec => l_contact_rec )
3484: AND OE_GLOBALS.G_UPDATE_ON_ID
3485: THEN
3486: Update_Contact (p_contact_rec => l_contact_rec
3487: , x_return_status =>x_return_status
3488: , x_msg_count => x_msg_count

Line 3868: if both ID and value are passed in contact record and OE_GLOBALS.G_UPDATE_ON_ID is TRUE*/

3864: RETURN NULL;
3865: END Get_Party_Type;
3866:
3867: /* Updates the contact information like person name,title,email,phone .Called from create_contact procedure
3868: if both ID and value are passed in contact record and OE_GLOBALS.G_UPDATE_ON_ID is TRUE*/
3869:
3870: PROCEDURE Update_Contact ( p_contact_rec IN OE_ORDER_PUB.CUSTOMER_INFO_REC_TYPE
3871: , x_return_status OUT NOCOPY VARCHAR2
3872: , x_msg_count OUT NOCOPY NUMBER