DBA Data[Home] [Help]

APPS.OKC_PO_MOD_PKG dependencies on OKC_TERMS_MIGRATE_GRP

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 331: OKC_TERMS_MIGRATE_GRP.Add_Section ( p_api_version => 1.0,

327: --is_sect_added_in_doc(p_document_type => , p_document_id => draft_id, p_section_code => l_section_code)
328: IF(l_section_id IS NULL) THEN
329:
330: /*If section is not already there on the document, Add the section*/
331: OKC_TERMS_MIGRATE_GRP.Add_Section ( p_api_version => 1.0,
332: x_return_status => l_return_status,
333: x_msg_data => l_msg_data,
334: x_msg_count => l_msg_count,
335: p_document_type => p_document_type,

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 378: /* okc_terms_migrate_grp.remove_std_clause_from_doc(p_api_version => 1.0,

374:
375: --This loop will get executed inside the call remove_std_art_from_doc
376: FOR get_old_article_details_rec IN c_get_old_article_details_csr( l_old_article_version_id ) LOOP
377:
378: /* okc_terms_migrate_grp.remove_std_clause_from_doc(p_api_version => 1.0,
379: p_mode => l_mode,
380: p_document_type => p_document_type,
381: p_document_id => p_document_id,
382: p_clause_version_id => l_old_article_version_id,

Line 388: okc_terms_migrate_grp.remove_clause_id_from_doc(p_api_version => 1.0,

384: x_return_status => l_return_status,
385: x_msg_data => l_msg_data,
386: x_msg_count => l_msg_count); */
387:
388: okc_terms_migrate_grp.remove_clause_id_from_doc(p_api_version => 1.0,
389: p_mode => l_mode,
390: p_document_type => p_document_type,
391: p_document_id => p_document_id,
392: p_clause_id => get_old_article_details_rec.id,

Line 412: okc_terms_migrate_grp.remove_clause_id_from_doc(p_api_version => 1.0,

408: FOR get_old_article_details_rec IN c_get_old_article_details_csr( l_old_article_version_id ) LOOP
409: l_section_id := get_old_article_details_rec.scn_id;
410: l_display_sequence := get_old_article_details_rec.display_sequence;
411:
412: okc_terms_migrate_grp.remove_clause_id_from_doc(p_api_version => 1.0,
413: p_mode => l_mode,
414: p_document_type => p_document_type,
415: p_document_id => p_document_id,
416: p_clause_id => get_old_article_details_rec.id,

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,