DBA Data[Home] [Help]

APPS.ZX_PARAMETERS_PKG dependencies on FND_LOAD_UTIL

Line 137: f_luby:= fnd_load_util.owner_id(x_owner);

133: 'Translate_Row (+)');
134: END IF;
135:
136: --Translate owner to file_last_updated_by
137: f_luby:= fnd_load_util.owner_id(x_owner);
138: --Translate char last_update_date to date
139: f_ludate := nvl(to_date(X_LAST_UPDATE_DATE,'DD/MM/YYYY'),sysdate);
140:
141: BEGIN

Line 149: IF (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,

145: WHERE t.tax_parameter_code = p.tax_parameter_code
146: AND t.tax_parameter_code = X_TAX_PARAMETER_CODE
147: AND t.language = userenv('LANG');
148:
149: IF (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
150: db_ludate, x_custom_mode)) THEN
151: UPDATE zx_parameters_tl SET
152: tax_parameter_name = x_tax_parameter_name,
153: last_update_date = f_ludate,

Line 200: f_luby:= fnd_load_util.owner_id(x_owner);

196: 'ZX_PARAMETERS_PKG',
197: 'Load_Row (+)');
198: END IF;
199: --Translate owner to file_last_updated_by
200: f_luby:= fnd_load_util.owner_id(x_owner);
201: --Translate char last_update_date to date
202: f_ludate := nvl(to_date(x_last_update_date,'DD/MM/YYYY'),sysdate);
203:
204: --Analyze and set up the correct value for the nullable parameters

Line 220: IF (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,

216:
217: -- Record should be updated only if :
218: -- a. file owner is CUSTOM and db owner is SEED
219: -- b. owners are the same, and file_date > db_date
220: IF (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
221: db_ludate, x_custom_mode)) THEN
222: UPDATE zx_parameters_b
223: SET tax_parameter_type_code = x_tax_parameter_type,
224: format_type_code = x_format_type,