DBA Data[Home] [Help]

APPS.PO_HEADERS_PKG_S0 dependencies on STANDARD

Line 204: -- DBI FPJ for the document types Standard,Blanket,Contract and Planned PO will have the document creation method cloumn as 'ENTER_PO'

200: END IF;
201:
202: x_progress := '015';
203:
204: -- DBI FPJ for the document types Standard,Blanket,Contract and Planned PO will have the document creation method cloumn as 'ENTER_PO'
205: -- Bug 3648268. Document Creation Method values was hardcoded earlier. Now
206: -- using lookup codes
207: IF X_Type_Lookup_Code in ('STANDARD','CONTRACT','BLANKET','PLANNED') THEN
208: l_document_creation_method:='ENTER_PO';

Line 207: IF X_Type_Lookup_Code in ('STANDARD','CONTRACT','BLANKET','PLANNED') THEN

203:
204: -- DBI FPJ for the document types Standard,Blanket,Contract and Planned PO will have the document creation method cloumn as 'ENTER_PO'
205: -- Bug 3648268. Document Creation Method values was hardcoded earlier. Now
206: -- using lookup codes
207: IF X_Type_Lookup_Code in ('STANDARD','CONTRACT','BLANKET','PLANNED') THEN
208: l_document_creation_method:='ENTER_PO';
209: END IF;
210:
211: /* bug : 10017321 : Added p_style_id as parameter to insert_row withd default NULL value.

Line 212: Need to check if p_style_id is NULL then stamp it with standard style else use existing value.

208: l_document_creation_method:='ENTER_PO';
209: END IF;
210:
211: /* bug : 10017321 : Added p_style_id as parameter to insert_row withd default NULL value.
212: Need to check if p_style_id is NULL then stamp it with standard style else use existing value.
213: */
214: if(p_style_id is NULL) then
215: l_style_id := PO_DOC_STYLE_GRP.GET_STANDARD_DOC_STYLE; --
216: else

Line 215: l_style_id := PO_DOC_STYLE_GRP.GET_STANDARD_DOC_STYLE; --

211: /* bug : 10017321 : Added p_style_id as parameter to insert_row withd default NULL value.
212: Need to check if p_style_id is NULL then stamp it with standard style else use existing value.
213: */
214: if(p_style_id is NULL) then
215: l_style_id := PO_DOC_STYLE_GRP.GET_STANDARD_DOC_STYLE; --
216: else
217: l_style_id := p_style_id;
218: end if;
219:

Line 464: , decode(X_Type_Lookup_Code, 'STANDARD', 'CREATE',

460: l_document_creation_method, --
461: p_org_id --
462: ,l_style_id --
463: ,userenv('LANG') -- created_language
464: , decode(X_Type_Lookup_Code, 'STANDARD', 'CREATE',
465: 'PLANNED', 'CREATE', null) --
466: ,p_enable_all_sites --
467: ,p_umbrella_program_id --umbrella program
468: );