DBA Data[Home] [Help]

APPS.PAY_CA_T4_XML dependencies on FND_LOOKUP_VALUES

Line 161: l_iana_charset fnd_lookup_values.tag%type;

157:
158: l_output_location varchar2(100);
159: EOL varchar2(10);
160:
161: l_iana_charset fnd_lookup_values.tag%type;
162: l_xml_version varchar2(100);
163:
164: cursor c_get_params is
165: select paa1.assignment_action_id, -- archiver asg action

Line 1119: from fnd_lookup_values

1115:
1116: function get_IANA_charset return VARCHAR2 is
1117: cursor csr_get_iana_charset is
1118: select tag
1119: from fnd_lookup_values
1120: where lookup_type = 'FND_ISO_CHARACTER_SET_MAP'
1121: and lookup_code = SUBSTR(USERENV('LANGUAGE'),
1122: INSTR(USERENV('LANGUAGE'), '.') + 1)
1123: and language = 'US';

Line 1125: lv_iana_charset fnd_lookup_values.tag%type;

1121: and lookup_code = SUBSTR(USERENV('LANGUAGE'),
1122: INSTR(USERENV('LANGUAGE'), '.') + 1)
1123: and language = 'US';
1124:
1125: lv_iana_charset fnd_lookup_values.tag%type;
1126:
1127: begin
1128: open csr_get_iana_charset;
1129: fetch csr_get_iana_charset into lv_iana_charset;