DBA Data[Home] [Help]

APPS.INV_MWB_TREE1 dependencies on FND_API

Line 22178: x_return_status := fnd_api.g_ret_sts_unexp_error;

22174: l_procedure_name CONSTANT VARCHAR2(30) := 'GET_MLN_ATTRIBUTES_STRUCTURE';
22175: BEGIN
22176: inv_mwb_globals.print_msg( g_pkg_name, l_procedure_name, 'Entered' );
22177:
22178: x_return_status := fnd_api.g_ret_sts_unexp_error;
22179: x_attributes_count := x_attributes.COUNT;
22180:
22181: FOR mln_structure_rec IN mln_structure LOOP
22182: x_attributes_count := x_attributes_count + 1;

Line 22188: x_return_status := fnd_api.g_ret_sts_success;

22184: x_attributes(x_attributes_count).column_type := 'VARCHAR2';
22185: x_attributes(x_attributes_count).column_name := mln_structure_rec.application_column_name;
22186: END LOOP;
22187:
22188: x_return_status := fnd_api.g_ret_sts_success;
22189: END get_mln_attributes_structure;
22190:
22191: -- Procedure to get the values populated in MTL_LOT_NUMBERS of the enabled segments
22192: -- This procedure appends the entries to a table that has

Line 22235: x_return_status := fnd_api.g_ret_sts_unexp_error;

22231: l_procedure_name CONSTANT VARCHAR2(30) := 'GET_MLN_ATTRIBUTES';
22232: BEGIN
22233: inv_mwb_globals.print_msg( g_pkg_name, l_procedure_name, 'Entered' );
22234:
22235: x_return_status := fnd_api.g_ret_sts_unexp_error;
22236:
22237: SELECT attribute1
22238: , attribute2
22239: , attribute3

Line 22285: x_return_status := fnd_api.g_ret_sts_success;

22281: x_attribute_values(x_attributes_count).column_value :=
22282: l_attribute(TO_NUMBER(SUBSTR(mln_dff_structure_rec.application_column_name, 10, 2)));
22283: END LOOP;
22284:
22285: x_return_status := fnd_api.g_ret_sts_success;
22286: END get_mln_attributes;
22287:
22288: -- Procedure to get the flexfield structure of mtl_lot_numbers flexfield.
22289: -- This procedure appends the entries to a table that has

Line 22323: x_return_status := fnd_api.g_ret_sts_unexp_error;

22319: l_procedure_name CONSTANT VARCHAR2(30) := 'GET_MSN_ATTRIBUTS_STRUCTURE';
22320: BEGIN
22321: inv_mwb_globals.print_msg( g_pkg_name, l_procedure_name, 'Entered' );
22322:
22323: x_return_status := fnd_api.g_ret_sts_unexp_error;
22324: x_attributes_count := x_attributes.COUNT;
22325:
22326: FOR msn_structure_rec IN msn_structure LOOP
22327: x_attributes_count := x_attributes_count + 1;

Line 22333: x_return_status := fnd_api.g_ret_sts_success;

22329: x_attributes(x_attributes_count).column_type := 'VARCHAR2';
22330: x_attributes(x_attributes_count).column_name := msn_structure_rec.application_column_name;
22331: END LOOP;
22332:
22333: x_return_status := fnd_api.g_ret_sts_success;
22334: END get_msn_attributes_structure;
22335:
22336: -- Procedure to get the values populated in MTL_SERIAL_NUMBERS of the enabled segments
22337: -- This procedure appends the entries to a table that has

Line 22380: x_return_status := fnd_api.g_ret_sts_unexp_error;

22376: l_procedure_name CONSTANT VARCHAR2(30) := 'GET_MSN_ATTRIBUTE';
22377: BEGIN
22378: inv_mwb_globals.print_msg( g_pkg_name, l_procedure_name, 'Entered' );
22379:
22380: x_return_status := fnd_api.g_ret_sts_unexp_error;
22381:
22382: SELECT attribute1
22383: , attribute2
22384: , attribute3

Line 22430: x_return_status := fnd_api.g_ret_sts_success;

22426: x_attribute_values(x_attributes_count).column_value :=
22427: l_attribute(TO_NUMBER(SUBSTR(msn_dff_structure_rec.application_column_name, 10, 2)));
22428: END LOOP;
22429:
22430: x_return_status := fnd_api.g_ret_sts_success;
22431: END get_msn_attributes;
22432:
22433: FUNCTION GET_ITEM(P_ITEM_ID IN NUMBER, P_ORG_ID IN NUMBER) RETURN VARCHAR2 IS -- Bug 6350236 Starting
22434: I_CC_ID_RET BOOLEAN;