DBA Data[Home] [Help]

APPS.PAY_BATCH_ELEMENT_ENTRY_API dependencies on FND_DATE

Line 98: we have to initialize the fnd_date to the same DD-MON-RRRR */

94: --
95: else
96: --
97: /* Bug 13697030 , Since we are converting the date format to DD-MON-RRRR in the procedure convert_date_to_canonical
98: we have to initialize the fnd_date to the same DD-MON-RRRR */
99:
100: fnd_profile.get('ICX_DATE_FORMAT_MASK', l_date_prof_value);
101: l_date_prof_value := nvl(l_date_prof_value,'DD-MON-RRRR');
102: fnd_date.initialize('DD-MON-RRRR',null);

Line 102: fnd_date.initialize('DD-MON-RRRR',null);

98: we have to initialize the fnd_date to the same DD-MON-RRRR */
99:
100: fnd_profile.get('ICX_DATE_FORMAT_MASK', l_date_prof_value);
101: l_date_prof_value := nvl(l_date_prof_value,'DD-MON-RRRR');
102: fnd_date.initialize('DD-MON-RRRR',null);
103:
104: hr_chkfmt.checkformat (
105: l_display_value, /* the value to be formatted (out - display) */
106: p_uom_value, /* the format to check */

Line 114: /* Setting back the fnd_date to profile value */

110: 'Y', /* is ok to be null ? */
111: l_dummy, /* used for range checking */
112: p_currency_code );
113:
114: /* Setting back the fnd_date to profile value */
115: fnd_date.initialize(l_date_prof_value,null);
116: --
117: end if;
118: --

Line 115: fnd_date.initialize(l_date_prof_value,null);

111: l_dummy, /* used for range checking */
112: p_currency_code );
113:
114: /* Setting back the fnd_date to profile value */
115: fnd_date.initialize(l_date_prof_value,null);
116: --
117: end if;
118: --
119: return l_formatted_value;

Line 124: /* Setting back the fnd_date to profile value */

120: --
121: exception
122: when others then
123:
124: /* Setting back the fnd_date to profile value */
125: fnd_date.initialize(l_date_prof_value,null);
126:
127: fnd_message.set_name ('PAY','PAY_6306_INPUT_VALUE_FORMAT');
128: fnd_message.set_token ('UNIT_OF_MEASURE', hr_general.decode_lookup ('UNITS', p_uom_value ));

Line 125: fnd_date.initialize(l_date_prof_value,null);

121: exception
122: when others then
123:
124: /* Setting back the fnd_date to profile value */
125: fnd_date.initialize(l_date_prof_value,null);
126:
127: fnd_message.set_name ('PAY','PAY_6306_INPUT_VALUE_FORMAT');
128: fnd_message.set_token ('UNIT_OF_MEASURE', hr_general.decode_lookup ('UNITS', p_uom_value ));
129: fnd_message.raise_error;