DBA Data[Home] [Help]

APPS.GMS_BUDGET_PUB dependencies on GMS_SECURITY

Line 1811: -- need to call the gms_security package

1807: -- As part of enforcing award security, which would determine
1808: -- whether the user has the necessary privileges to update the award
1809: -- If a user does not have privileges to update the award, then
1810: -- cannot create a budget
1811: -- need to call the gms_security package
1812:
1813: gms_security.initialize (X_user_id => l_user_id,
1814: X_calling_module => l_module_name);
1815:

Line 1813: gms_security.initialize (X_user_id => l_user_id,

1809: -- If a user does not have privileges to update the award, then
1810: -- cannot create a budget
1811: -- need to call the gms_security package
1812:
1813: gms_security.initialize (X_user_id => l_user_id,
1814: X_calling_module => l_module_name);
1815:
1816: -- Actions performed using the APIs would be subject to
1817: -- function security. If the responsibility does not allow

Line 1860: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN

1856: -- cannot create a budget
1857:
1858: -- dbms_output.put_line('Before award security');
1859:
1860: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN
1861:
1862: -- The user does not have query privileges on this award
1863: -- Hence, cannot create a draft budget.Raise error
1864:

Line 1874: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN

1870:
1871: ELSE
1872: -- If the user has query privileges, then check whether
1873: -- update privileges are also available
1874: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN
1875:
1876: -- The user does not have update privileges on this award
1877: -- Hence , raise error
1878:

Line 2897: -- need to call the gms_security package

2893: l_module_name := 'GMS_PM_BASELINE_BUDGET';
2894:
2895: -- As part of enforcing award security, which would determine
2896: -- whether the user has the necessary privileges to update the award
2897: -- need to call the gms_security package
2898: -- If a user does not have privileges to update the award, then
2899: -- cannot baseline the budget
2900:
2901: IF L_DEBUG = 'Y' THEN

Line 2902: gms_error_pkg.gms_debug('GMS_BUDGET_PUB.BASELINE_BUDGET - Calling gms_security.initialize','C');

2898: -- If a user does not have privileges to update the award, then
2899: -- cannot baseline the budget
2900:
2901: IF L_DEBUG = 'Y' THEN
2902: gms_error_pkg.gms_debug('GMS_BUDGET_PUB.BASELINE_BUDGET - Calling gms_security.initialize','C');
2903: END IF;
2904:
2905: gms_security.initialize (X_user_id => l_user_id,
2906: X_calling_module => l_module_name);

Line 2905: gms_security.initialize (X_user_id => l_user_id,

2901: IF L_DEBUG = 'Y' THEN
2902: gms_error_pkg.gms_debug('GMS_BUDGET_PUB.BASELINE_BUDGET - Calling gms_security.initialize','C');
2903: END IF;
2904:
2905: gms_security.initialize (X_user_id => l_user_id,
2906: X_calling_module => l_module_name);
2907:
2908: -- Actions performed using the APIs would be subject to
2909: -- function security. If the responsibility does not allow

Line 4289: -- need to call the gms_security package

4285: l_module_name := 'GMS_PM_ADD_BUDGET_LINE';
4286:
4287: -- As part of enforcing award security, which would determine
4288: -- whether the user has the necessary privileges to update the award
4289: -- need to call the gms_security package
4290: -- If a user does not have privileges to update the award, then
4291: -- cannot add a budget line
4292:
4293: gms_security.initialize (X_user_id => l_user_id,

Line 4293: gms_security.initialize (X_user_id => l_user_id,

4289: -- need to call the gms_security package
4290: -- If a user does not have privileges to update the award, then
4291: -- cannot add a budget line
4292:
4293: gms_security.initialize (X_user_id => l_user_id,
4294: X_calling_module => l_module_name);
4295:
4296:
4297: --CHECK FOR MANDATORY FIELDS and CONVERT VALUES to ID's

Line 4387: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN

4383: -- the award
4384: -- If a user does not have privileges to update the award, then
4385: -- cannot add a budget line
4386:
4387: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN
4388:
4389: -- The user does not have query privileges on this award
4390: -- Hence, cannot update the award. Raise error
4391:

Line 4401: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN

4397:
4398: ELSE
4399: -- If the user has query privileges, then check whether
4400: -- update privileges are also available
4401: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN
4402:
4403: -- The user does not have update privileges on this award
4404: -- Hence , raise error
4405: gms_error_pkg.gms_message(x_err_name => 'GMS_AWD_SECURITY_ENFORCED_UPD',

Line 5269: -- need to call the gms_security package

5265: l_module_name := 'GMS_PM_DELETE_DRAFT_BUDGET';
5266:
5267: -- As part of enforcing award security, which would determine
5268: -- whether the user has the necessary privileges to update the award
5269: -- need to call the gms_security package
5270: -- If a user does not have privileges to update the award, then
5271: -- cannot delete a budget
5272:
5273: gms_security.initialize (X_user_id => l_user_id,

Line 5273: gms_security.initialize (X_user_id => l_user_id,

5269: -- need to call the gms_security package
5270: -- If a user does not have privileges to update the award, then
5271: -- cannot delete a budget
5272:
5273: gms_security.initialize (X_user_id => l_user_id,
5274: X_calling_module => l_module_name);
5275:
5276: -- Actions performed using the APIs would be subject to
5277: -- function security. If the responsibility does not allow

Line 5318: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN

5314: -- award
5315: -- If a user does not have privileges to update the award, then
5316: -- cannot delete a budget
5317:
5318: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN
5319:
5320: -- The user does not have query privileges on this award
5321: -- Hence, cannot update the award. Raise error
5322:

Line 5332: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN

5328:
5329: ELSE
5330: -- If the user has query privileges, then check whether
5331: -- update privileges are also available
5332: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN
5333:
5334: -- The user does not have update privileges on this award
5335: -- Hence , raise error
5336: gms_error_pkg.gms_message(x_err_name => 'GMS_AWD_SECURITY_ENFORCED_UPD',

Line 5728: -- need to call the gms_security package

5724: l_module_name := 'GMS_PM_DELETE_BUDGET_LINE';
5725:
5726: -- As part of enforcing award security, which would determine
5727: -- whether the user has the necessary privileges to update the award
5728: -- need to call the gms_security package
5729: -- If a user does not have privileges to update the award, then
5730: -- cannot delete a budget line
5731:
5732: gms_security.initialize (X_user_id => l_user_id,

Line 5732: gms_security.initialize (X_user_id => l_user_id,

5728: -- need to call the gms_security package
5729: -- If a user does not have privileges to update the award, then
5730: -- cannot delete a budget line
5731:
5732: gms_security.initialize (X_user_id => l_user_id,
5733: X_calling_module => l_module_name);
5734:
5735: -----------------------------------------------------------------------------
5736:

Line 5772: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN

5768: -- award
5769: -- If a user does not have privileges to update the award, then
5770: -- cannot delete a budget line
5771:
5772: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN
5773:
5774: -- The user does not have query privileges on this award
5775: -- Hence, cannot update the award. Raise error
5776: gms_error_pkg.gms_message(x_err_name => 'GMS_AWD_SECURITY_ENFORCED_QRY',

Line 5785: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN

5781:
5782: ELSE
5783: -- If the user has query privileges, then check whether
5784: -- update privileges are also available
5785: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN
5786:
5787: -- The user does not have update privileges on this award
5788: -- Hence , raise error
5789:

Line 6506: -- need to call the gms_security package

6502: l_module_name := 'GMS_PM_UPDATE_BUDGET';
6503:
6504: -- As part of enforcing award security, which would determine
6505: -- whether the user has the necessary privileges to update the award
6506: -- need to call the gms_security package
6507: -- If a user does not have privileges to update the award, then
6508: -- cannot update a budget
6509:
6510: gms_security.initialize (X_user_id => l_user_id,

Line 6510: gms_security.initialize (X_user_id => l_user_id,

6506: -- need to call the gms_security package
6507: -- If a user does not have privileges to update the award, then
6508: -- cannot update a budget
6509:
6510: gms_security.initialize (X_user_id => l_user_id,
6511: X_calling_module => l_module_name);
6512:
6513: -- Actions performed using the APIs would be subject to
6514: -- function security. If the responsibility does not allow

Line 6556: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN

6552: -- award
6553: -- If a user does not have privileges to update the award, then
6554: -- cannot update a budget
6555:
6556: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN
6557:
6558: -- The user does not have query privileges on this award
6559: -- Hence, cannot update the award. Raise error
6560: gms_error_pkg.gms_message(x_err_name => 'GMS_AWD_SECURITY_ENFORCED_QRY',

Line 6570: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN

6566: ELSE
6567: -- If the user has query privileges, then check whether
6568: -- update privileges are also available
6569:
6570: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN
6571:
6572: -- The user does not have update privileges on this award
6573: -- Hence , raise error
6574:

Line 7193: -- need to call the gms_security package

7189: l_module_name := 'GMS_PM_UPDATE_BUDGET_LINE';
7190:
7191: -- As part of enforcing award security, which would determine
7192: -- whether the user has the necessary privileges to update the award
7193: -- need to call the gms_security package
7194: -- If a user does not have privileges to update the award, then
7195: -- cannot update a budget line
7196:
7197: gms_security.initialize (X_user_id => l_user_id,

Line 7197: gms_security.initialize (X_user_id => l_user_id,

7193: -- need to call the gms_security package
7194: -- If a user does not have privileges to update the award, then
7195: -- cannot update a budget line
7196:
7197: gms_security.initialize (X_user_id => l_user_id,
7198: X_calling_module => l_module_name);
7199:
7200: --------------------------------------------------------------------------------
7201:

Line 7248: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN

7244: -- award
7245: -- If a user does not have privileges to update the award, then
7246: -- cannot update a budget line
7247:
7248: IF gms_security.allow_query (x_award_id => l_award_id ) = 'N' THEN
7249:
7250: -- The user does not have query privileges on this award
7251: -- Hence, cannot update the award. Raise error
7252: gms_error_pkg.gms_message(x_err_name => 'GMS_AWD_SECURITY_ENFORCED_QRY',

Line 7261: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN

7257: ELSE
7258: -- If the user has query privileges, then check whether
7259: -- update privileges are also available
7260:
7261: IF gms_security.allow_update (x_award_id => l_award_id ) = 'N' THEN
7262:
7263: -- The user does not have update privileges on this award
7264: -- Hence , raise error
7265: