DBA Data[Home] [Help]

APPS.OE_CONFIG_TSO_GRP dependencies on OE_CONFIG_TSO_PVT

Line 38: * container model by calling OE_CONFIG_TSO_PVT.Is_Part_Of_Container_Model

34: * Output Parameters: x_config_mode NUMBER indicates the MACD action mode
35: * and x_return_status VARCHAR2 which indicates success/error
36: *
37: * Validation: Performs a check whether the line passed belongs to a
38: * container model by calling OE_CONFIG_TSO_PVT.Is_Part_Of_Container_Model
39: * Only if it is part of a container model will it call the MACD_Action_Mode
40: * API. If it is not a part of container model, then it returns with the
41: * following values: x_config_mode = NULL and x_return_status = ERROR
42: *

Line 80: * exception in OE_CONFIG_TSO_PVT.Get_MACD_Action_Mode)

76: * returned. Else value of 3 is retained and returned.
77: *
78: * If the config_mode is returned as NULL, it is to be interpreted that there
79: * is some error (either the line is not part of container model or OTHERS
80: * exception in OE_CONFIG_TSO_PVT.Get_MACD_Action_Mode)
81: *
82: * IMPORTANT: If the correct mode is to be obtained, then a top model line
83: * must be passed ONLY into p_top_model_line_id (and not into p_line_id)
84: * Similarly, for a child line of a container model, the line_id should

Line 154: OE_CONFIG_TSO_PVT.Is_Part_Of_Container_Model

150: l_reset_policy := TRUE;
151: END IF;
152:
153:
154: OE_CONFIG_TSO_PVT.Is_Part_Of_Container_Model
155: ( p_line_id => p_line_id
156: ,p_top_model_line_id => p_top_model_line_id
157: ,x_top_container_model => l_top_container_model
158: ,x_part_of_container => l_part_of_container

Line 178: OE_CONFIG_TSO_PVT.Get_MACD_Action_Mode

174: IF l_debug_level > 0 THEN
175: OE_DEBUG_PUB.Add('L_PartOfContainer:'||l_part_of_container,3);
176: OE_DEBUG_PUB.Add('Eligible to call TSO_PVT.Get_MACD_Action_Mode',2);
177: END IF;
178: OE_CONFIG_TSO_PVT.Get_MACD_Action_Mode
179: ( p_line_id => p_line_id
180: ,p_top_model_line_id => p_top_model_line_id
181: ,x_config_mode => x_config_mode
182: ,x_return_status => x_return_status

Line 273: Oe_config_tso_pvt.Process_MACD_Order

269: OE_DEBUG_PUB.Add('Return Status:'||x_return_status,1);
270: OE_DEBUG_PUB.Add('Org Id:' || l_org_id,1);
271: END IF;
272:
273: Oe_config_tso_pvt.Process_MACD_Order
274: (P_API_VERSION_NUMBER => P_API_VERSION_NUMBER,
275: P_caller => 'G', -- Group
276: P_sold_to_org_id => p_sold_to_org_id,
277: P_x_header_id => p_x_header_id,