DBA Data[Home] [Help]

APPS.CTO_UTILITY_PK dependencies on BOM_CTO_ORDER_LINES

Line 11: | 1. Populate temporary tables bom_cto_order_lines and

7: |
8: |FILE NAME : CTOUTILS.pls
9: |
10: |DESCRIPTION : Contains modules to :
11: | 1. Populate temporary tables bom_cto_order_lines and
12: | bom_cto_src_orgs, used for intermediate CTO processing
13: | 2. Update these tables with the config_item_id
14: | 3. Copy sourcing rule assignments from model to config item
15: |

Line 130: This function updates table bom_cto_order_lines with the config_item_id for

126: RETURN integer;
127:
128:
129: /*--------------------------------------------------------------------------+
130: This function updates table bom_cto_order_lines with the config_item_id for
131: a given model item.
132: It is called by "Match" and "Create_Item" programs.
133: +-------------------------------------------------------------------------*/
134: FUNCTION Update_Order_Lines(pLineId in number,

Line 165: This procedure populates information in bom_cto_order_lines table.

161: x_msg_data out NOCOPY varchar2);
162:
163:
164: /*--------------------------------------------------------------------------+
165: This procedure populates information in bom_cto_order_lines table.
166: It assigns plan level, parent ato line id to each record after copying all
167: components related to a specific top level item.
168: +-------------------------------------------------------------------------*/
169: PROCEDURE POPULATE_BCOL

Line 170: ( p_bcol_line_id bom_cto_order_lines.line_id%type,

166: It assigns plan level, parent ato line id to each record after copying all
167: components related to a specific top level item.
168: +-------------------------------------------------------------------------*/
169: PROCEDURE POPULATE_BCOL
170: ( p_bcol_line_id bom_cto_order_lines.line_id%type,
171: x_return_status out NOCOPY varchar2,
172: x_msg_count out NOCOPY number,
173: x_msg_data out NOCOPY varchar2,
174: p_reschedule in varchar2 default 'N') ;

Line 510: PROCEDURE validate_oe_data ( p_bcol_line_id in bom_cto_order_lines.line_id%type,

506:
507:
508:
509: -- bugfix 4044709: Created new validation procedure
510: PROCEDURE validate_oe_data ( p_bcol_line_id in bom_cto_order_lines.line_id%type,
511: x_return_status out NOCOPY varchar2);
512:
513:
514: