DBA Data[Home] [Help]

APPS.CST_XLA_PVT dependencies on STANDARD

Line 198: PROCEDURE standard_source_type

194: debug('clean_xla_gt -');
195: END clean_xla_gt;
196:
197:
198: PROCEDURE standard_source_type
199: (p_source_type_id IN NUMBER,
200: p_action_id IN NUMBER,
201: x_list_result OUT NOCOPY VARCHAR2,
202: x_source_type_id OUT NOCOPY NUMBER)

Line 205: debug('standard_source_type +');

201: x_list_result OUT NOCOPY VARCHAR2,
202: x_source_type_id OUT NOCOPY NUMBER)
203: IS
204: BEGIN
205: debug('standard_source_type +');
206: debug(' p_source_type_id :'||p_source_type_id);
207: debug(' p_action_id :'||p_action_id);
208:
209: IF p_action_id NOT IN (

Line 218: -- hence always in the standard list

214: 24 , --COST_UPDATE
215: 27 ) --RECEIPT
216: THEN
217: -- If Action ID is outside this range no custom inv txn allowed
218: -- hence always in the standard list
219: x_list_result := 'Y';
220: ELSE
221: IF p_source_type_id IN (
222: 1 , --PO

Line 240: --hence standard combination

236: 16 ) --PROJ_CONTRACT
237: THEN
238: --Although the p_action_id is in the customizable list
239: --the txn_source_type is in the predefined cost list
240: --hence standard combination
241: x_list_result := 'Y';
242: ELSE
243: x_list_result := 'N';
244: END IF;

Line 248: -- If the combination action ID and Txn Scr Type ID is standard

244: END IF;
245: END IF;
246:
247: IF x_list_result = 'Y' THEN
248: -- If the combination action ID and Txn Scr Type ID is standard
249: -- x_source_type_id will have the same value as the Txn Scr Type ID
250: x_source_type_id := p_source_type_id;
251: ELSE
252: -- If the combination action ID and Txn Scr Type ID is not standard

Line 252: -- If the combination action ID and Txn Scr Type ID is not standard

248: -- If the combination action ID and Txn Scr Type ID is standard
249: -- x_source_type_id will have the same value as the Txn Scr Type ID
250: x_source_type_id := p_source_type_id;
251: ELSE
252: -- If the combination action ID and Txn Scr Type ID is not standard
253: -- x_source_type_id is -999 for User specified transaction Source Type
254: x_source_type_id := -999;
255: END IF;
256:

Line 259: debug('standard_source_type -');

255: END IF;
256:
257: debug(' x_list_result :'||x_list_result);
258: debug(' x_source_type_id :'||x_source_type_id);
259: debug('standard_source_type -');
260: EXCEPTION
261: WHEN OTHERS THEN
262: debug('OTHERS EXCEPTION in standard_source_type:'|| SQLERRM);
263: RAISE;

Line 262: debug('OTHERS EXCEPTION in standard_source_type:'|| SQLERRM);

258: debug(' x_source_type_id :'||x_source_type_id);
259: debug('standard_source_type -');
260: EXCEPTION
261: WHEN OTHERS THEN
262: debug('OTHERS EXCEPTION in standard_source_type:'|| SQLERRM);
263: RAISE;
264: END standard_source_type;
265:
266: PROCEDURE dump_trx_info

Line 264: END standard_source_type;

260: EXCEPTION
261: WHEN OTHERS THEN
262: debug('OTHERS EXCEPTION in standard_source_type:'|| SQLERRM);
263: RAISE;
264: END standard_source_type;
265:
266: PROCEDURE dump_trx_info
267: (p_trx_info IN t_xla_inv_trx_info,
268: msg_prefix IN VARCHAR2 DEFAULT 'CST',

Line 417: -- Standard call to check for call compatibility

413: 'Transaction: '||p_trx_info.TRANSACTION_ID||
414: ': Accounting Event: '||p_trx_info.ACCT_EVENT_ID );
415: END IF;
416:
417: -- Standard call to check for call compatibility
418: IF NOT FND_API.Compatible_API_Call (
419: l_api_version,
420: p_api_version,
421: l_api_name,

Line 923: -- Standard call to check for call compatibility

919: msg_prefix => 'CST',
920: msg_module => 'Create_INVXLAEvent',
921: msg_level => FND_LOG.LEVEL_STATEMENT);
922:
923: -- Standard call to check for call compatibility
924: IF NOT FND_API.Compatible_API_Call (
925: l_api_version,
926: p_api_version,
927: l_api_name,

Line 1053: standard_source_type

1049:
1050: ELSIF p_trx_info.txn_action_id = 3 THEN
1051:
1052: --User defined transaction type
1053: standard_source_type
1054: (p_source_type_id => p_trx_info.txn_src_type_id,
1055: p_action_id => p_trx_info.txn_action_id,
1056: x_list_result => l_in_list_result,
1057: x_source_type_id => l_txn_src_type_id);

Line 1068: * Standard Costing to Standard Costing

1064: WHERE organization_id = p_trx_info.txfr_organization_id;
1065:
1066: IF ( p_trx_info.ATTRIBUTE = 'BOTH' AND l_txfr_process_flag <> 'Y' ) THEN
1067: /*
1068: * Standard Costing to Standard Costing
1069: * Sending Organization Creates both the events
1070: */
1071: /* Bug6792259 : Added the condition for including
1072: transaction_source_type =7 when creating

Line 1143: standard_source_type

1139:
1140: l_stmt_num := 60;
1141:
1142: --User defined transaction type
1143: standard_source_type
1144: (p_source_type_id => p_trx_info.txn_src_type_id,
1145: p_action_id => p_trx_info.txn_action_id,
1146: x_list_result => l_in_list_result,
1147: x_source_type_id => l_txn_src_type_id);

Line 1177: standard_source_type

1173:
1174: l_stmt_num := 70;
1175:
1176: --User defined transaction type
1177: standard_source_type
1178: (p_source_type_id => p_trx_info.txn_src_type_id,
1179: p_action_id => p_trx_info.txn_action_id,
1180: x_list_result => l_in_list_result,
1181: x_source_type_id => l_txn_src_type_id);

Line 1215: standard_source_type

1211: /* Discrete to Process Transfer. Seed the event in the discrete org only*/
1212: l_stmt_num := 90;
1213:
1214: --User defined transaction type
1215: standard_source_type
1216: (p_source_type_id => p_trx_info.txn_src_type_id,
1217: p_action_id => p_trx_info.txn_action_id,
1218: x_list_result => l_in_list_result,
1219: x_source_type_id => l_txn_src_type_id);

Line 1288: standard_source_type

1284: ELSE /* Other Transactions */
1285: l_stmt_num := 100;
1286:
1287: --User defined transaction type
1288: standard_source_type
1289: (p_source_type_id => p_trx_info.txn_src_type_id,
1290: p_action_id => p_trx_info.txn_action_id,
1291: x_list_result => l_in_list_result,
1292: x_source_type_id => l_txn_src_type_id);

Line 1640: -- Standard call to check for call compatibility

1636: ': Basis Type: '||p_trx_info.WIP_BASIS_TYPE_ID ||
1637: ': Organization ID: '||p_trx_info.INV_ORGANIZATION_ID);
1638: END IF;
1639:
1640: -- Standard call to check for call compatibility
1641: IF NOT FND_API.Compatible_API_Call (
1642: l_api_version,
1643: p_api_version,
1644: l_api_name,

Line 1899: -- Standard call to check for call compatibility

1895: IF l_procLog THEN
1896: FND_LOG.string(FND_LOG.LEVEL_PROCEDURE, l_module||'.begin' ,' CreateBulk_WIPXLAEvent <<');
1897: END IF;
1898:
1899: -- Standard call to check for call compatibility
1900: IF NOT FND_API.Compatible_API_Call (
1901: l_api_version,
1902: p_api_version,
1903: l_api_name,

Line 2098: -- Function : To create Standard Cost Update accounting events in bulk

2094:
2095: --------------------------------------------------------------------------------------
2096: -- API name : Create_CostUpdateXLAEvent
2097: -- Type : Private
2098: -- Function : To create Standard Cost Update accounting events in bulk
2099: -- Pre-reqs :
2100: -- Parameters :
2101: -- IN : p_api_version IN NUMBER
2102: -- p_init_msg_list IN VARCHAR2

Line 2114: -- The API takes a Standard Cost Update ID and organization_id

2110: -- x_msg_data OUT VARCHAR2(2000)
2111: -- Version :
2112: -- Initial version 1.0
2113: -- Notes :
2114: -- The API takes a Standard Cost Update ID and organization_id
2115: -- and creates all events associated with it.
2116: -- Called from cmlicu.lpc
2117: -- End of comments
2118: --------------------------------------------------------------------------------------

Line 2163: -- Standard call to check for call compatibility

2159: IF l_procLog THEN
2160: FND_LOG.string(FND_LOG.LEVEL_PROCEDURE, l_module||'.begin' ,' Create_CostUpdateXLAEvent <<');
2161: END IF;
2162:
2163: -- Standard call to check for call compatibility
2164: IF NOT FND_API.Compatible_API_Call (
2165: l_api_version,
2166: p_api_version,
2167: l_api_name,

Line 2394: -- Standard call to check for call compatibility

2390: IF l_procLog THEN
2391: FND_LOG.string(FND_LOG.LEVEL_PROCEDURE, l_module||'.begin' ,' Create_WIPUpdateXLAEvent <<');
2392: END IF;
2393:
2394: -- Standard call to check for call compatibility
2395: IF NOT FND_API.Compatible_API_Call (
2396: l_api_version,
2397: p_api_version,
2398: l_api_name,

Line 2553: -- API name : Standard_policy

2549: ------------------------
2550: -- CST Security Policy
2551: ------------------------
2552: --------------------------------------------------------------------------------------
2553: -- API name : Standard_policy
2554: -- Type : Public
2555: -- Function : Standard policy
2556: -- Pre-reqs :
2557: -- Parameters :

Line 2555: -- Function : Standard policy

2551: ------------------------
2552: --------------------------------------------------------------------------------------
2553: -- API name : Standard_policy
2554: -- Type : Public
2555: -- Function : Standard policy
2556: -- Pre-reqs :
2557: -- Parameters :
2558: -- IN :
2559: -- OUT : predicate 1=1

Line 2566: FUNCTION standard_policy

2562: -- Notes : No security
2563: -- History
2564: -- 27-DEC-2007 Herve Yu Created
2565: --------------------------------------------------------------------------------------
2566: FUNCTION standard_policy
2567: (p_obj_schema IN VARCHAR2
2568: ,p_obj_name IN VARCHAR2)
2569: RETURN VARCHAR2 IS
2570: BEGIN

Line 2572: END standard_policy;

2568: ,p_obj_name IN VARCHAR2)
2569: RETURN VARCHAR2 IS
2570: BEGIN
2571: RETURN '1 = 1';
2572: END standard_policy;
2573:
2574:
2575: --------------------------------------------------------------------------------------
2576: -- API name : Mo_policy