DBA Data[Home] [Help]

APPS.OKC_PO_MOD_PKG dependencies on STANDARD

Line 56: /* This function will get the default section code from the article definition. It will check only standard clauses.

52: THEN
53: NULL;
54: END read_message;
55:
56: /* This function will get the default section code from the article definition. It will check only standard clauses.
57: First it will verify if the additional section mappipng is available for this clause. If its defined
58: get the default section information from the add section mapping. Else pick the 'default section' on the clause.
59: If this also null, throw an error message*/
60:

Line 84: -- Standard Start of API savepoint

80: FND_LOG.STRING( FND_LOG.LEVEL_PROCEDURE, G_MODULE||l_api_name,'100: Entered get_clause_default_section');
81: FND_LOG.STRING( FND_LOG.LEVEL_PROCEDURE, G_MODULE||l_api_name,'200: p_article_version_id ' || p_article_version_id);
82: END IF;
83:
84: -- Standard Start of API savepoint
85: SAVEPOINT g_clause_default_section_GRP;
86:
87: /*article_version_id is the new version which has to be added to the PO's*/
88: SELECT article_id INTO l_article_id

Line 261: -- Standard Start of API savepoint

257: END IF;
258:
259: OKC_API.init_msg_list(p_init_msg_list);
260:
261: -- Standard Start of API savepoint
262: SAVEPOINT g_upd_clause_changes_GRP;
263:
264: -- Initialize API return status to success
265: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 313: already added in the document. Get the section Id and pass to the okc_terms_migrate_grp API Add_Standard_Clause*/

309: IF c_get_clause_changes_csr_rec.clause_action_code = 'ADD' THEN
310:
311: /* We will need a section to add a clause.
312: Derive the default SECTION information from the clause definition. Add the section if the section is not
313: already added in the document. Get the section Id and pass to the okc_terms_migrate_grp API Add_Standard_Clause*/
314:
315: /*Get the default section*/
316: get_clause_default_section(p_document_type => p_document_type,
317: p_document_id => p_document_id,

Line 343: okc_terms_migrate_grp.Add_Standard_Clause ( p_api_version => 1.0,

339: x_section_id => l_section_id);
340: END IF;
341:
342: --Add the clause to the section obtained above
343: okc_terms_migrate_grp.Add_Standard_Clause ( p_api_version => 1.0,
344: x_return_status => l_return_status,
345: x_msg_data => l_msg_data,
346: x_msg_count => l_msg_count,
347: p_document_type => p_document_type,

Line 424: okc_terms_migrate_grp.Add_Standard_Clause ( p_api_version => 1.0,

420: x_msg_count => l_msg_count);
421:
422: IF (l_return_status = 'S') THEN
423:
424: okc_terms_migrate_grp.Add_Standard_Clause ( p_api_version => 1.0,
425: x_return_status => l_return_status,
426: x_msg_data => l_msg_data,
427: x_msg_count => l_msg_count,
428: p_document_type => p_document_type,

Line 530: -- Standard Start of API savepoint

526: END IF;
527:
528: FND_MSG_PUB.initialize;
529:
530: -- Standard Start of API savepoint
531: SAVEPOINT g_del_clause_changes_GRP;
532:
533: DELETE FROM po_multi_mod_clause_changes
534: WHERE multi_mod_request_id = p_multi_mod_req_id;