DBA Data[Home] [Help]

APPS.OKL_VP_SYNC_CR_PVT dependencies on STANDARD

Line 1206: -- for non standard articles, since the record is not comming from the ui to sync, we do not have the sae_id and sav_release

1202: lv_catv_rec.sbt_code := creq_articles_rec.sbt_code;
1203: lv_catv_rec.name := creq_articles_rec.name;
1204: lv_catv_rec.cat_type := creq_articles_rec.cat_type;
1205:
1206: -- for non standard articles, since the record is not comming from the ui to sync, we do not have the sae_id and sav_release
1207: -- this is the reason for copying the code from the create_article_by copy local procedure of okl_vp_k_article_pvt
1208: IF(creq_articles_rec.cat_type = 'NSD')THEN
1209: lv_catv_rec.cle_id := null;
1210: lv_catv_rec.dnz_chr_id := p_orig_chr_id;

Line 1237: -- now copy the text of the Non Standard Article into the new record

1233: RAISE OKC_API.G_EXCEPTION_UNEXPECTED_ERROR;
1234: ELSIF(x_return_status = OKC_API.G_RET_STS_ERROR) THEN
1235: RAISE OKC_API.G_EXCEPTION_ERROR;
1236: END IF;
1237: -- now copy the text of the Non Standard Article into the new record
1238: x_return_status := okc_util.copy_articles_text(p_id => x_catv_rec.id
1239: ,lang => USERENV('LANG')
1240: ,p_text => creq_articles_rec.text);
1241: IF(x_return_status = OKC_API.G_RET_STS_UNEXP_ERROR) THEN