DBA Data[Home] [Help]

APPS.MSC_WS_COMMON dependencies on MSC_WS_COMMON

Line 1: PACKAGE BODY MSC_WS_COMMON AS

1: PACKAGE BODY MSC_WS_COMMON AS
2: /* $Header: MSCWCOMB.pls 120.8 2008/03/25 19:22:50 bnaghi noship $ */
3:
4: PROCEDURE VALIDATE_USER_RESP(
5: VRETURN OUT NOCOPY VARCHAR2,

Line 60: MSC_WS_COMMON.VALIDATE_USER_RESP(l_Status, USERID, RESPID,SECURITYID);

56: SECURITYID IN NUMBER
57: ) IS
58: l_Status VARCHAR2(100);
59: BEGIN
60: MSC_WS_COMMON.VALIDATE_USER_RESP(l_Status, USERID, RESPID,SECURITYID);
61: IF (l_Status<> 'OK') THEN
62: VRETURN:= l_Status;
63: RETURN;
64: END IF;

Line 1050: l_ReturnString := MSC_WS_COMMON.PLAN_CONTAINS_THIS_ORG(l_OrgInsId, InSchTable(I).OrgId, PlanId);

1046: FOR I IN InSchTable.first..InSchTable.last
1047: LOOP
1048: -- validate organization id
1049: BEGIN
1050: l_ReturnString := MSC_WS_COMMON.PLAN_CONTAINS_THIS_ORG(l_OrgInsId, InSchTable(I).OrgId, PlanId);
1051: IF (l_ReturnString <> 'OK') THEN
1052: -- overwrite the error token here.
1053: l_ReturnString := 'INVALID_LOCALSUPSCHS_ORGID';
1054: RETURN l_ReturnString;

Line 1085: END MSC_WS_COMMON;

1081:
1082: RETURN 'OK';
1083: END VALIDATE_LOC_SUP_SCHS;
1084:
1085: END MSC_WS_COMMON;
1086: