DBA Data[Home] [Help]

APPS.HR_USER_ACCT_UTILITY dependencies on FND_RESP_FUNCTIONS

Line 347: -- a row in this g_fnd_resp_functions_tbl.

343: -- Function exclusions are to be entered only for new responsibilities
344: -- listed in g_fnd_resp_tbl above if function exclusion rules are to be
345: -- applied to the new responsbilities. For those new responsibilities
346: -- which do not use function exclusions, you don't need to fill in
347: -- a row in this g_fnd_resp_functions_tbl.
348: --
349: -- existing_resp_key - optional. If a new responsibility is based on a
350: -- template responsibility and the template responsibility's
351: -- function security exclusion rules are to be copied to the

Line 371: -- the length of fnd_resp_functions.rule_type, which is 1

367: -- template responsibility are to be used, this field can be
368: -- left null unless you want to add new function exclusion
369: -- rules in addition to the template responsibility's
370: -- exclusion rules. If entered, cannot exceed
371: -- the length of fnd_resp_functions.rule_type, which is 1
372: -- character with the following valid values:
373: -- 'F' = Function
374: -- 'M' = Menu
375: --

Line 395: -- fill out the following entries in this g_fnd_resp_functions_tbl array:

391: -- For example, if you cant to copy all the function exclusion rules from
392: -- "HR_LMDA_RESPONSIBILITY" (assuming the repsonsibility_key is the same)
393: -- to the new responsibility created in g_fnd_resp_tbl and you want to add
394: -- a new function exclusion rule to this new responsibility, then you will
395: -- fill out the following entries in this g_fnd_resp_functions_tbl array:
396: -- Entry Existing_Resp_Key New_Resp_key Rule Rule Delete
397: -- # Type Name Flag
398: -- ----- ----------------------- --------------- ----- ------------- ------
399: -- 1 HR_LMDA_RESPONSIBILITY null null null

Line 406: -- RECORD STRUCTURE FOR FND_RESP_FUNCTIONS:

402: -- 2 null M

null
403: --
404: -- ----------------------------------------------------------------------------
405: --
406: -- RECORD STRUCTURE FOR FND_RESP_FUNCTIONS:
407: -- =========================================
408: TYPE fnd_resp_functions_rec IS RECORD
409: (existing_resp_key fnd_responsibility.responsibility_key%type
410: ,new_resp_key fnd_responsibility.responsibility_key%type

Line 408: TYPE fnd_resp_functions_rec IS RECORD

404: -- ----------------------------------------------------------------------------
405: --
406: -- RECORD STRUCTURE FOR FND_RESP_FUNCTIONS:
407: -- =========================================
408: TYPE fnd_resp_functions_rec IS RECORD
409: (existing_resp_key fnd_responsibility.responsibility_key%type
410: ,new_resp_key fnd_responsibility.responsibility_key%type
411: ,rule_type fnd_resp_functions.rule_type%type
412: ,rule_name varchar2(30)

Line 411: ,rule_type fnd_resp_functions.rule_type%type

407: -- =========================================
408: TYPE fnd_resp_functions_rec IS RECORD
409: (existing_resp_key fnd_responsibility.responsibility_key%type
410: ,new_resp_key fnd_responsibility.responsibility_key%type
411: ,rule_type fnd_resp_functions.rule_type%type
412: ,rule_name varchar2(30)
413: ,delete_flag varchar2(1));
414: --
415: TYPE fnd_resp_functions_tbl IS TABLE OF fnd_resp_functions_rec

Line 415: TYPE fnd_resp_functions_tbl IS TABLE OF fnd_resp_functions_rec

411: ,rule_type fnd_resp_functions.rule_type%type
412: ,rule_name varchar2(30)
413: ,delete_flag varchar2(1));
414: --
415: TYPE fnd_resp_functions_tbl IS TABLE OF fnd_resp_functions_rec
416: INDEX BY BINARY_INTEGER;
417: --
418: -- USE INDEX = 1 TO START LOADING THE TABLE.
419: g_fnd_resp_functions_tbl fnd_resp_functions_tbl;

Line 419: g_fnd_resp_functions_tbl fnd_resp_functions_tbl;

415: TYPE fnd_resp_functions_tbl IS TABLE OF fnd_resp_functions_rec
416: INDEX BY BINARY_INTEGER;
417: --
418: -- USE INDEX = 1 TO START LOADING THE TABLE.
419: g_fnd_resp_functions_tbl fnd_resp_functions_tbl;
420: --
421: --
422: --
423: --------------------------------------------------------------------------------

Line 609: ,rule_type fnd_resp_functions.rule_type%type

605: -- these definitions.
606: ------------------------------------------------------------------------------
607: TYPE func_sec_excl_rec IS RECORD
608: (resp_key fnd_responsibility.responsibility_key%type
609: ,rule_type fnd_resp_functions.rule_type%type
610: ,rule_name fnd_form_functions.function_name%type
611: ,delete_flag varchar2(1));
612: --
613: TYPE func_sec_excl_tbl IS TABLE OF func_sec_excl_rec