DBA Data[Home] [Help]

APPS.INV_MWB_TREE1 dependencies on FND_API

Line 18623: x_return_status := fnd_api.g_ret_sts_unexp_error;

18619: l_procedure_name CONSTANT VARCHAR2(30) := 'GET_MLN_ATTRIBUTES_STRUCTURE';
18620: BEGIN
18621: inv_mwb_globals.print_msg( g_pkg_name, l_procedure_name, 'Entered' );
18622:
18623: x_return_status := fnd_api.g_ret_sts_unexp_error;
18624: x_attributes_count := x_attributes.COUNT;
18625:
18626: FOR mln_structure_rec IN mln_structure LOOP
18627: x_attributes_count := x_attributes_count + 1;

Line 18633: x_return_status := fnd_api.g_ret_sts_success;

18629: x_attributes(x_attributes_count).column_type := 'VARCHAR2';
18630: x_attributes(x_attributes_count).column_name := mln_structure_rec.application_column_name;
18631: END LOOP;
18632:
18633: x_return_status := fnd_api.g_ret_sts_success;
18634: END get_mln_attributes_structure;
18635:
18636: -- Procedure to get the values populated in MTL_LOT_NUMBERS of the enabled segments
18637: -- This procedure appends the entries to a table that has

Line 18680: x_return_status := fnd_api.g_ret_sts_unexp_error;

18676: l_procedure_name CONSTANT VARCHAR2(30) := 'GET_MLN_ATTRIBUTES';
18677: BEGIN
18678: inv_mwb_globals.print_msg( g_pkg_name, l_procedure_name, 'Entered' );
18679:
18680: x_return_status := fnd_api.g_ret_sts_unexp_error;
18681:
18682: SELECT attribute1
18683: , attribute2
18684: , attribute3

Line 18730: x_return_status := fnd_api.g_ret_sts_success;

18726: x_attribute_values(x_attributes_count).column_value :=
18727: l_attribute(TO_NUMBER(SUBSTR(mln_dff_structure_rec.application_column_name, 10, 2)));
18728: END LOOP;
18729:
18730: x_return_status := fnd_api.g_ret_sts_success;
18731: END get_mln_attributes;
18732:
18733: -- Procedure to get the flexfield structure of mtl_lot_numbers flexfield.
18734: -- This procedure appends the entries to a table that has

Line 18768: x_return_status := fnd_api.g_ret_sts_unexp_error;

18764: l_procedure_name CONSTANT VARCHAR2(30) := 'GET_MSN_ATTRIBUTS_STRUCTURE';
18765: BEGIN
18766: inv_mwb_globals.print_msg( g_pkg_name, l_procedure_name, 'Entered' );
18767:
18768: x_return_status := fnd_api.g_ret_sts_unexp_error;
18769: x_attributes_count := x_attributes.COUNT;
18770:
18771: FOR msn_structure_rec IN msn_structure LOOP
18772: x_attributes_count := x_attributes_count + 1;

Line 18778: x_return_status := fnd_api.g_ret_sts_success;

18774: x_attributes(x_attributes_count).column_type := 'VARCHAR2';
18775: x_attributes(x_attributes_count).column_name := msn_structure_rec.application_column_name;
18776: END LOOP;
18777:
18778: x_return_status := fnd_api.g_ret_sts_success;
18779: END get_msn_attributes_structure;
18780:
18781: -- Procedure to get the values populated in MTL_SERIAL_NUMBERS of the enabled segments
18782: -- This procedure appends the entries to a table that has

Line 18825: x_return_status := fnd_api.g_ret_sts_unexp_error;

18821: l_procedure_name CONSTANT VARCHAR2(30) := 'GET_MSN_ATTRIBUTE';
18822: BEGIN
18823: inv_mwb_globals.print_msg( g_pkg_name, l_procedure_name, 'Entered' );
18824:
18825: x_return_status := fnd_api.g_ret_sts_unexp_error;
18826:
18827: SELECT attribute1
18828: , attribute2
18829: , attribute3

Line 18875: x_return_status := fnd_api.g_ret_sts_success;

18871: x_attribute_values(x_attributes_count).column_value :=
18872: l_attribute(TO_NUMBER(SUBSTR(msn_dff_structure_rec.application_column_name, 10, 2)));
18873: END LOOP;
18874:
18875: x_return_status := fnd_api.g_ret_sts_success;
18876: END get_msn_attributes;
18877:
18878: FUNCTION GET_ITEM(P_ITEM_ID IN NUMBER, P_ORG_ID IN NUMBER) RETURN VARCHAR2 IS -- Bug 6350236 Starting
18879: I_CC_ID_RET BOOLEAN;