DBA Data[Home] [Help]

APPS.BIS_PMV_DRILL_PVT dependencies on BIS_PMV_PARAMETERS_PVT

Line 124: pParameterGroup IN BIS_PMV_PARAMETERS_PVT.parameter_group_tbl_type

120: pRegionCode in varchar2,
121: pScheduleId in varchar2 default null,
122: pPageId in varchar2 default null,
123: pRespId in varchar2 default null,
124: pParameterGroup IN BIS_PMV_PARAMETERS_PVT.parameter_group_tbl_type
125: )IS
126:
127: BEGIN
128:

Line 130: BIS_PMV_PARAMETERS_PVT.overRideFromSchedule(

126:
127: BEGIN
128:
129: IF (pScheduleId IS NOT NULL) THEN
130: BIS_PMV_PARAMETERS_PVT.overRideFromSchedule(
131: pSessionId => pSessionId,
132: pUserId =>pUserId,
133: pFunctionName =>pFunctionName,
134: pRegionCode => pRegionCode,

Line 142: BIS_PMV_PARAMETERS_PVT.overRideFromPage(

138: );
139: END IF;
140:
141: IF (pPageId IS NOT NULL) THEN
142: BIS_PMV_PARAMETERS_PVT.overRideFromPage(
143: pSessionId => pSessionId,
144: pUserId =>pUserId,
145: pFunctionName =>pFunctionName,
146: pRegionCode => pRegionCode,

Line 164: pParameterGroup IN BIS_PMV_PARAMETERS_PVT.parameter_group_tbl_type,

160: pRegionCode in varchar2,
161: pScheduleId in varchar2 default null,
162: pPageId in varchar2 default null,
163: pRespId in varchar2 default null,
164: pParameterGroup IN BIS_PMV_PARAMETERS_PVT.parameter_group_tbl_type,
165: pTCTExists in boolean default false,
166: pNestedRegionCode in varchar2 default null,
167: pAsofdateExists in boolean default false,
168: xTimeAttribute out NOCOPY varchar2

Line 201: BIS_PMV_PARAMETERS_PVT.COPY_FORM_FUNCTION_PARAMETERS

197: AND session_id=pSessionId
198: AND schedule_id IS NULL;
199:
200: --1) copy all the fnd form function default parameters
201: BIS_PMV_PARAMETERS_PVT.COPY_FORM_FUNCTION_PARAMETERS
202: (pRegionCode => pRegionCode
203: ,pFunctionName => pFunctionName
204: ,pUserId => pUserId
205: ,pSessionId => pSessionId

Line 216: BIS_PMV_PARAMETERS_PVT.overRideFromSavedDefault(

212: ) ;
213:
214:
215: --2) use the saved default parameters
216: BIS_PMV_PARAMETERS_PVT.overRideFromSavedDefault(
217: pSessionId => pSessionId,
218: pUserId =>pUserId,
219: pFunctionName =>pFunctionName,
220: pRegionCode => pRegionCode,

Line 227: BIS_PMV_PARAMETERS_PVT.overRideFromSchedule(

223: );
224:
225: -- 3) schedule or preFunction
226: IF (pScheduleId IS NOT NULL) THEN
227: BIS_PMV_PARAMETERS_PVT.overRideFromSchedule(
228: pSessionId => pSessionId,
229: pUserId =>pUserId,
230: pFunctionName =>pFunctionName,
231: pRegionCode => pRegionCode,

Line 239: BIS_PMV_PARAMETERS_PVT.overRideFromPreFunction(

235:
236: );
237: ELSIF (pPreFunctionName IS NOT NULL) THEN
238: -- nbarik - 02/19/04 - BugFix 3441967
239: BIS_PMV_PARAMETERS_PVT.overRideFromPreFunction(
240: pSessionId => pSessionId,
241: pUserId =>pUserId,
242: pFunctionName =>pFunctionName,
243: pRegionCode => pRegionCode,

Line 256: BIS_PMV_PARAMETERS_PVT.overRideFromPage(

252:
253:
254: --4) page level
255: IF (pPageId IS NOT NULL) THEN
256: BIS_PMV_PARAMETERS_PVT.overRideFromPage(
257: pSessionId => pSessionId,
258: pUserId =>pUserId,
259: pFunctionName =>pFunctionName,
260: pRegionCode => pRegionCode,

Line 268: BIS_PMV_PARAMETERS_PVT.COPY_TIME_PARAMS(

264: );
265: END IF;
266: --BugFix 3099789 add copy_time_params, Save Time Params here
267: -- nbarik - 02/19/04 - BugFix 3441967
268: BIS_PMV_PARAMETERS_PVT.COPY_TIME_PARAMS(
269: pSessionId => pSessionId,
270: pUserId =>pUserId,
271: pFunctionName =>pFunctionName,
272: pRegionCode => pRegionCode,

Line 655: BIS_PMV_PARAMETERS_PVT.COPY_REMAINING_DEF_PARAMETERS

651: -- only copy those default parameters which were not copied from the driver function
652: -- if drilling into the same report, should have all the reqd attributes.
653: IF (pFunctionName <> pPreFunctionName OR pPreFunctionName IS NULL) THEN
654: -- First copy the default parameters for this report.
655: BIS_PMV_PARAMETERS_PVT.COPY_REMAINING_DEF_PARAMETERS
656: (pFunctionName => pFunctionName
657: ,pUserId => pUserId
658: ,pSessionId => pSessionId
659: ,x_return_status => l_return_status

Line 665: BIS_PMV_PARAMETERS_PVT.COPY_FORM_FUNCTION_PARAMETERS

661: ,x_msg_data => l_msg_data
662: );
663:
664: -- serao- 08/23/2002- bug 2514044 - copy form function parameters
665: BIS_PMV_PARAMETERS_PVT.COPY_FORM_FUNCTION_PARAMETERS
666: (pRegionCode => pRegionCode
667: ,pFunctionName => pFunctionName
668: ,pUserId => pUserId
669: ,pSessionId => pSessionId