DBA Data[Home] [Help]

APPS.RCV_SETUP_S dependencies on FND_PROFILE

Line 15: ** Function will be referencing a 'FND_PROFILE.GET' procedure defined

11: /*
12: ** Function will return Override Routing Option
13: ** If Override Routing Option is NULL then
14: ** Default the Option to 'N'
15: ** Function will be referencing a 'FND_PROFILE.GET' procedure defined
16: ** by AOL grp . It will return the value of the PROFILE being asked for,
17: ** or will return NULL value.
18: */
19:

Line 26: option_value := fnd_profile.value('OVERRIDE_ROUTING');

22:
23: BEGIN
24: x_progress := '010';
25:
26: option_value := fnd_profile.value('OVERRIDE_ROUTING');
27:
28: if option_value is null then
29: option_value := 'N';
30: end if;

Line 51: ** Function will be referencing a 'FND_PROFILE.GET' procedure defined

47: /*
48: ** Function will return Receiving's Transaction Processor Mode (RCV_TP_MODE)
49: ** If Transaction Processor Mode is NULL then
50: ** Default the Mode to 'ONLINE'
51: ** Function will be referencing a 'FND_PROFILE.GET' procedure defined
52: ** by AOL grp . It will return the value of the PROFILE being asked for,
53: ** or will return NULL value.
54: */
55:

Line 63: fnd_profile.get('RCV_TP_MODE',transaction_processor_value);

59: BEGIN
60:
61: x_progress := '010';
62:
63: fnd_profile.get('RCV_TP_MODE',transaction_processor_value);
64:
65: if transaction_processor_value is null then
66: transaction_processor_value := 'ONLINE';
67: end if;

Line 88: ** Function will be referencing a 'FND_PROFILE.GET' procedure defined

84: /*
85: ** Function will return Print Traveller Option
86: ** If Print Traveller Option is NULL then
87: ** Default the Option to 'N'
88: ** Function will be referencing a 'FND_PROFILE.GET' procedure defined
89: ** by AOL grp . It will return the value of the PROFILE being asked for,
90: ** or will return NULL value.
91: */
92:

Line 100: fnd_profile.get('PRINT_TRAVELLER',option_value);

96: BEGIN
97:
98: x_progress := '010';
99:
100: fnd_profile.get('PRINT_TRAVELLER',option_value);
101:
102: if option_value is null then
103: option_value := 'N';
104: end if;