DBA Data[Home] [Help]

APPS.BSC_LAUNCH_PAD_PVT dependencies on FND_FUNCTION_SECURITY

Line 485: | Description: it is a wrapper for FND_FUNCTION_SECURITY.SECURITY_RULE_EXISTS function

481: /*===========================================================================+
482: |
483: | Name: SECURITY_RULE_EXISTS_VB
484: |
485: | Description: it is a wrapper for FND_FUNCTION_SECURITY.SECURITY_RULE_EXISTS function
486: | This procedure is to be called from a VB program.
487: | If there is an error, the procedure inserts the error
488: | message in BSC_MESSAGE_LOGS table.
489: |

Line 501: IF FND_FUNCTION_SECURITY.SECURITY_RULE_EXISTS(responsibility_key,rule_type,rule_name) = TRUE THEN

497: h_val VARCHAR2(1);
498: BEGIN
499: -- Name
500: h_val := 'F';
501: IF FND_FUNCTION_SECURITY.SECURITY_RULE_EXISTS(responsibility_key,rule_type,rule_name) = TRUE THEN
502: h_val := 'T';
503: END IF;
504: RETURN h_val;
505: END SECURITY_RULE_EXISTS_VB;