DBA Data[Home] [Help]

APPS.INV_MWB_TREE dependencies on FND_API

Line 11667: x_return_status := fnd_api.g_ret_sts_unexp_error;

11663: )
11664: AND fdfcu.enabled_flag = 'Y'
11665: ORDER BY fdfcu.column_seq_num;
11666: BEGIN
11667: x_return_status := fnd_api.g_ret_sts_unexp_error;
11668: x_attributes_count := x_attributes.COUNT;
11669:
11670: FOR mln_structure_rec IN mln_structure LOOP
11671: x_attributes_count := x_attributes_count + 1;

Line 11677: x_return_status := fnd_api.g_ret_sts_success;

11673: x_attributes(x_attributes_count).column_type := 'VARCHAR2';
11674: x_attributes(x_attributes_count).column_name := mln_structure_rec.application_column_name;
11675: END LOOP;
11676:
11677: x_return_status := fnd_api.g_ret_sts_success;
11678: END get_mln_attributes_structure;
11679:
11680: -- Procedure to get the values populated in MTL_LOT_NUMBERS of the enabled segments
11681: -- This procedure appends the entries to a table that has

Line 11721: x_return_status := fnd_api.g_ret_sts_unexp_error;

11717:
11718: l_attribute l_attribute_type;
11719: l_mln_context_code mtl_lot_numbers.attribute_category%TYPE;
11720: BEGIN
11721: x_return_status := fnd_api.g_ret_sts_unexp_error;
11722:
11723: SELECT attribute1
11724: , attribute2
11725: , attribute3

Line 11771: x_return_status := fnd_api.g_ret_sts_success;

11767: x_attribute_values(x_attributes_count).column_value :=
11768: l_attribute(TO_NUMBER(SUBSTR(mln_dff_structure_rec.application_column_name, 10, 2)));
11769: END LOOP;
11770:
11771: x_return_status := fnd_api.g_ret_sts_success;
11772: END get_mln_attributes;
11773:
11774: -- Procedure to get the flexfield structure of mtl_lot_numbers flexfield.
11775: -- This procedure appends the entries to a table that has

Line 11806: x_return_status := fnd_api.g_ret_sts_unexp_error;

11802: )
11803: AND fdfcu.enabled_flag = 'Y'
11804: ORDER BY fdfcu.column_seq_num;
11805: BEGIN
11806: x_return_status := fnd_api.g_ret_sts_unexp_error;
11807: x_attributes_count := x_attributes.COUNT;
11808:
11809: FOR msn_structure_rec IN msn_structure LOOP
11810: x_attributes_count := x_attributes_count + 1;

Line 11816: x_return_status := fnd_api.g_ret_sts_success;

11812: x_attributes(x_attributes_count).column_type := 'VARCHAR2';
11813: x_attributes(x_attributes_count).column_name := msn_structure_rec.application_column_name;
11814: END LOOP;
11815:
11816: x_return_status := fnd_api.g_ret_sts_success;
11817: END get_msn_attributes_structure;
11818:
11819: -- Procedure to get the values populated in MTL_SERIAL_NUMBERS of the enabled segments
11820: -- This procedure appends the entries to a table that has

Line 11860: x_return_status := fnd_api.g_ret_sts_unexp_error;

11856:
11857: l_attribute l_attribute_type;
11858: l_msn_context_code mtl_serial_numbers.attribute_category%TYPE;
11859: BEGIN
11860: x_return_status := fnd_api.g_ret_sts_unexp_error;
11861:
11862: SELECT attribute1
11863: , attribute2
11864: , attribute3

Line 11910: x_return_status := fnd_api.g_ret_sts_success;

11906: x_attribute_values(x_attributes_count).column_value :=
11907: l_attribute(TO_NUMBER(SUBSTR(msn_dff_structure_rec.application_column_name, 10, 2)));
11908: END LOOP;
11909:
11910: x_return_status := fnd_api.g_ret_sts_success;
11911: END get_msn_attributes;
11912: END inv_mwb_tree;