DBA Data[Home] [Help]

APPS.AK_FLOW3_PVT dependencies on AK_ON_OBJECTS_PVT

Line 33: -- in package AK_ON_OBJECTS_PVT:

29: -- validation tests are passed, or FALSE otherwise.
30: -- Parameters Flow columns
31: -- p_caller : IN required
32: -- Must be one of the following values defined
33: -- in package AK_ON_OBJECTS_PVT:
34: -- - G_CREATE (if calling from the Create API)
35: -- - G_DOWNLOAD (if calling from the Download API)
36: -- - G_UPDATE (if calling from the Update API)
37: --

Line 110: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then

106: --** check that required columns are not null and, unless calling **
107: --** from UPDATE procedure, the columns are not missing **
108: if ((p_primary_page_appl_id is null) or
109: (p_primary_page_appl_id = FND_API.G_MISS_NUM and
110: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then
111: l_error := TRUE;
112: if FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) and (p_pass = 2) then
113: FND_MESSAGE.SET_NAME('AK','AK_CANNOT_BE_NULL');
114: FND_MESSAGE.SET_TOKEN('COLUMN', 'PRIMARY_PAGE_APPL_ID');

Line 121: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then

117: end if;
118:
119: if ((p_primary_page_code is null) or
120: (p_primary_page_code = FND_API.G_MISS_CHAR and
121: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then
122: l_error := TRUE;
123: if FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) and (p_pass = 2) then
124: FND_MESSAGE.SET_NAME('AK','AK_CANNOT_BE_NULL');
125: FND_MESSAGE.SET_TOKEN('COLUMN', 'PRIMARY_PAGE_CODE');

Line 132: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then

128: end if;
129:
130: if ((p_name is null) or
131: (p_name = FND_API.G_MISS_CHAR and
132: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then
133: l_error := TRUE;
134: if FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) and (p_pass = 2) then
135: FND_MESSAGE.SET_NAME('AK','AK_CANNOT_BE_NULL');
136: FND_MESSAGE.SET_TOKEN('COLUMN', 'NAME');

Line 221: -- in package AK_ON_OBJECTS_PVT:

217: -- validation tests are passed, or FALSE otherwise.
218: -- Parameters Flow Page columns
219: -- p_caller : IN required
220: -- Must be one of the following values defined
221: -- in package AK_ON_OBJECTS_PVT:
222: -- - G_CREATE (if calling from the Create API)
223: -- - G_DOWNLOAD (if calling from the Download API)
224: -- - G_UPDATE (if calling from the Update API)
225: --

Line 340: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then

336: --** check that required columns are not null and, unless calling **
337: --** from UPDATE procedure, the columns are not missing **
338: if ((p_primary_region_appl_id is null) or
339: (p_primary_region_appl_id = FND_API.G_MISS_NUM and
340: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then
341: l_error := TRUE;
342: if FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) and (p_pass = 2) then
343: FND_MESSAGE.SET_NAME('AK','AK_CANNOT_BE_NULL');
344: FND_MESSAGE.SET_TOKEN('COLUMN', 'PRIMARY_REGION_APPL_ID');

Line 351: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then

347: end if;
348:
349: if ((p_primary_region_code is null) or
350: (p_primary_region_code = FND_API.G_MISS_CHAR and
351: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then
352: l_error := TRUE;
353: if FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) and (p_pass = 2) then
354: FND_MESSAGE.SET_NAME('AK','AK_CANNOT_BE_NULL');
355: FND_MESSAGE.SET_TOKEN('COLUMN', 'PRIMARY_REGION_CODE');

Line 362: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then

358: end if;
359:
360: if ((p_name is null) or
361: (p_name = FND_API.G_MISS_CHAR and
362: p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then
363: l_error := TRUE;
364: if FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) and (p_pass = 2) then
365: FND_MESSAGE.SET_NAME('AK','AK_CANNOT_BE_NULL');
366: FND_MESSAGE.SET_TOKEN('COLUMN', 'NAME');

Line 458: -- in package AK_ON_OBJECTS_PVT:

454: -- relation record connecting this flow page region
455: -- and its parent region, if there is one.
456: -- p_caller : IN required
457: -- Must be one of the following values defined
458: -- in package AK_ON_OBJECTS_PVT:
459: -- - G_CREATE (if calling from the Create API)
460: -- - G_DOWNLOAD (if calling from the Download API)
461: -- - G_UPDATE (if calling from the Update API)
462: --

Line 637: (p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then

633: --** from UPDATE procedure, the columns are not missing **
634: --
635: if (p_region_style is null) or
636: ((p_region_style = FND_API.G_MISS_CHAR) and
637: (p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then
638: l_error := TRUE;
639: if FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) and (p_pass = 2) then
640: FND_MESSAGE.SET_NAME('AK','AK_CANNOT_BE_NULL');
641: FND_MESSAGE.SET_TOKEN('COLUMN', 'REGION_STYLE');

Line 649: if (NOT AK_ON_OBJECTS_PVT.VALID_LOOKUP_CODE (

645:
646: --** Validate columns **
647: -- - Region style
648: if (p_region_style <> FND_API.G_MISS_CHAR) then
649: if (NOT AK_ON_OBJECTS_PVT.VALID_LOOKUP_CODE (
650: p_api_version_number => 1.0,
651: p_return_status => l_return_status,
652: p_lookup_type => 'REGION_STYLE',
653: p_lookup_code => p_region_style)) then

Line 760: if (p_caller <> AK_ON_OBJECTS_PVT.G_DOWNLOAD) then

756: if ( (p_foreign_key_name = FND_API.G_MISS_CHAR) or
757: (p_foreign_key_name is null) ) then
758: -- dbms_output.put_line('p_foreign_key_name is null: '||p_flow_code||' '||p_page_code||' '||
759: -- p_parent_region_code);
760: if (p_caller <> AK_ON_OBJECTS_PVT.G_DOWNLOAD) then
761: -- dbms_output.put_line('p_caller = '||p_caller||' p_pass = '||to_char(p_pass));
762: if NOT AK_FLOW_PVT.REGION_RELATION_EXISTS (
763: p_api_version_number => 1.0,
764: p_return_status => l_return_status,

Line 792: elsif (p_caller = AK_ON_OBJECTS_PVT.G_DOWNLOAD) then

788: ' ' || p_region_code);
789: FND_MSG_PUB.Add;
790: end if;
791: end if; /* if not region_relation_exists */
792: elsif (p_caller = AK_ON_OBJECTS_PVT.G_DOWNLOAD) then
793: l_error := TRUE;
794: if FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) and (p_pass = 2) then
795: FND_MESSAGE.SET_NAME('AK','AK_NO_INTRAPAGE_RELATION');
796: FND_MSG_PUB.Add;

Line 847: -- in package AK_ON_OBJECTS_PVT:

843: -- validation tests are passed, or FALSE otherwise.
844: -- Parameters Flow Page Region Item columns
845: -- p_caller : IN required
846: -- Must be one of the following values defined
847: -- in package AK_ON_OBJECTS_PVT:
848: -- - G_CREATE (if calling from the Create API)
849: -- - G_DOWNLOAD (if calling from the Download API)
850: -- - G_UPDATE (if calling from the Update API)
851: --

Line 1242: -- in package AK_ON_OBJECTS_PVT:

1238: -- validation tests are passed, or FALSE otherwise.
1239: -- Parameters Flow Region Relation columns
1240: -- p_caller : IN required
1241: -- Must be one of the following values defined
1242: -- in package AK_ON_OBJECTS_PVT:
1243: -- - G_CREATE (if calling from the Create API)
1244: -- - G_DOWNLOAD (if calling from the Download API)
1245: -- - G_UPDATE (if calling from the Update API)
1246: --

Line 1519: (p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then

1515: --** from UPDATE procedure, the columns are not missing **
1516: --
1517: if (p_application_id is null) or
1518: ((p_application_id = FND_API.G_MISS_NUM) and
1519: (p_caller <> AK_ON_OBJECTS_PVT.G_UPDATE)) then
1520: l_error := TRUE;
1521: if FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) and (p_pass = 2) then
1522: FND_MESSAGE.SET_NAME('AK','AK_CANNOT_BE_NULL');
1523: FND_MESSAGE.SET_TOKEN('COLUMN', 'APPLICATION_ID');

Line 1534: if (NOT AK_ON_OBJECTS_PVT.VALID_APPLICATION_ID (

1530: --
1531: -- - application ID
1532: --
1533: if (p_application_id <> FND_API.G_MISS_NUM) then
1534: if (NOT AK_ON_OBJECTS_PVT.VALID_APPLICATION_ID (
1535: p_api_version_number => 1.0,
1536: p_return_status => l_return_status,
1537: p_application_id => p_application_id)
1538: ) then