DBA Data[Home] [Help]

APPS.CS_KB_REPOSITORIES_PKG dependencies on FND_LOAD_UTIL

Line 341: -- if (x_meaning = fnd_load_util.null_value) then

337:
338: -- Translate a true null value to fnd_api.g_miss_char
339: -- Note table handler apis should be coded to treat
340: -- fnd_api.g_miss_* as true nulls, and not as no-change.
341: -- if (x_meaning = fnd_load_util.null_value) then
342: -- l_meaning := fnd_api.g_miss_char;
343: -- else
344: -- l_meaning := x_meaning;
345: -- end if;

Line 348: f_luby := fnd_load_util.owner_id(X_OWNER);

344: -- l_meaning := x_meaning;
345: -- end if;
346:
347: -- Translate owner to file_last_updated_by
348: f_luby := fnd_load_util.owner_id(X_OWNER);
349:
350: -- Translate char last_update_date to date
351: f_ludate := nvl(to_date(X_LAST_UPDATE_DATE, 'YYYY/MM/DD'), sysdate);
352: BEGIN

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

355: FROM CS_KB_REPOSITORIES
356: WHERE REPOSITORY_ID = X_REPOSITORY_ID;
357:
358: -- Test for customization and version
359: IF (fnd_load_util.upload_test(f_luby, f_ludate, db_luby,
360: db_ludate, X_CUSTOM_MODE)) THEN
361: -- Update existing row
362: UPDATE_ROW (
363: X_REPOSITORY_ID => X_REPOSITORY_ID,