DBA Data[Home] [Help]

APPS.CTO_ITEM_PK dependencies on CTO_UTILITY_PK

Line 266: CTO_UTILITY_PK.Populate_Bcol(

262: oe_debug_pub.add('Create_And_Link_Item: ' || ' deleted ' || SQL%ROWCOUNT ||
263: ' from bcol ' || to_char(pTopAtoLineId), 2);
264: END IF;
265:
266: CTO_UTILITY_PK.Populate_Bcol(
267: p_bcol_line_id => pTopAtoLineId,
268: x_return_status => XReturnStatus,
269: x_msg_count => XMsgCount,
270: x_msg_data => XMsgData,

Line 647: CTO_UTILITY_PK.validate_oe_data(p_bcol_line_id => pTopAtoLineId,

643: IF PG_DEBUG <> 0 THEN
644: oe_debug_pub.add('create_and_link_item: ' || 'going to call validate_oe_data ', 1 );
645: END IF;
646:
647: CTO_UTILITY_PK.validate_oe_data(p_bcol_line_id => pTopAtoLineId,
648: x_return_status => xReturnStatus);
649:
650:
651: if xReturnStatus <> FND_API.G_RET_STS_SUCCESS THEN

Line 1321: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Calling cto_utility_pk.lock_for_match: start time: ' ||

1317: -- creating new configs if a non-commited match exists.
1318: -- Incase lock is not acquired, wait indefinitely. We could error out but we decided
1319: -- to wait so that user does not have to resubmit the process again.
1320: --
1321: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Calling cto_utility_pk.lock_for_match: start time: ' ||
1322: to_char(sysdate , 'MM/DD/YYYY HH24:MI:SS'));
1323: CTO_UTILITY_PK.lock_for_match(
1324: x_return_status => xReturnStatus,
1325: xMsgCount => xMsgCount,

Line 1323: CTO_UTILITY_PK.lock_for_match(

1319: -- to wait so that user does not have to resubmit the process again.
1320: --
1321: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Calling cto_utility_pk.lock_for_match: start time: ' ||
1322: to_char(sysdate , 'MM/DD/YYYY HH24:MI:SS'));
1323: CTO_UTILITY_PK.lock_for_match(
1324: x_return_status => xReturnStatus,
1325: xMsgCount => xMsgCount,
1326: xMsgData => xMsgData,
1327: x_lock_status => l_lock_status,

Line 1331: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Calling cto_utility_pk.lock_for_match: end time: ' ||

1327: x_lock_status => l_lock_status,
1328: x_hash_value => l_hash_value,
1329: p_line_id => v_model_lines.line_id );
1330:
1331: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Calling cto_utility_pk.lock_for_match: end time: ' ||
1332: to_char(sysdate , 'MM/DD/YYYY HH24:MI:SS'));
1333:
1334: if xReturnStatus <> FND_API.G_RET_STS_SUCCESS then
1335: oe_debug_pub.add('match_and_create_all_items: '|| 'get_user_lock returned error');

Line 1412: CTO_UTILITY_PK.release_lock(

1408:
1409: --
1410: -- begin bugfix 4227993
1411: --
1412: CTO_UTILITY_PK.release_lock(
1413: x_return_status => xReturnStatus,
1414: x_Msg_Count => xMsgCount,
1415: x_Msg_Data => xMsgData,
1416: p_hash_value => l_hash_value);