DBA Data[Home] [Help]

APPS.INV_EBI_CHANGE_ORDER_PUB dependencies on INV_EBI_ECO_OUT_OBJ_TBL

Line 702: PROCEDURE Convert_date_str_eco(p_eco_lst_obj IN inv_ebi_eco_out_obj_tbl

698: -- Function :
699: --
700: ************************************************************************************/
701:
702: PROCEDURE Convert_date_str_eco(p_eco_lst_obj IN inv_ebi_eco_out_obj_tbl
703: ,x_eco_lst_obj OUT NOCOPY inv_ebi_eco_out_obj_tbl)
704: IS
705: BEGIN
706:

Line 703: ,x_eco_lst_obj OUT NOCOPY inv_ebi_eco_out_obj_tbl)

699: --
700: ************************************************************************************/
701:
702: PROCEDURE Convert_date_str_eco(p_eco_lst_obj IN inv_ebi_eco_out_obj_tbl
703: ,x_eco_lst_obj OUT NOCOPY inv_ebi_eco_out_obj_tbl)
704: IS
705: BEGIN
706:
707: x_eco_lst_obj := inv_ebi_eco_out_obj_tbl();

Line 707: x_eco_lst_obj := inv_ebi_eco_out_obj_tbl();

703: ,x_eco_lst_obj OUT NOCOPY inv_ebi_eco_out_obj_tbl)
704: IS
705: BEGIN
706:
707: x_eco_lst_obj := inv_ebi_eco_out_obj_tbl();
708:
709: IF(p_eco_lst_obj IS NOT NULL AND p_eco_lst_obj.COUNT>0) THEN
710: x_eco_lst_obj.EXTEND(p_eco_lst_obj.COUNT);
711: x_eco_lst_obj := p_eco_lst_obj;

Line 1011: ,x_eco_lst_obj OUT NOCOPY inv_ebi_eco_out_obj_tbl

1007: ************************************************************************************/
1008: PROCEDURE get_eco_list_attr(
1009: p_change_lst IN inv_ebi_change_id_obj_tbl
1010: ,p_name_val_list IN inv_ebi_name_value_list
1011: ,x_eco_lst_obj OUT NOCOPY inv_ebi_eco_out_obj_tbl
1012: ,x_return_status OUT NOCOPY VARCHAR2
1013: ,x_msg_count OUT NOCOPY NUMBER
1014: ,x_msg_data OUT NOCOPY VARCHAR2
1015: )

Line 1024: l_eco_obj_tbl inv_ebi_eco_out_obj_tbl;

1020: l_count NUMBER := 0;
1021: l_part_msgtxt VARCHAR2(32000);
1022: l_name_val_list inv_ebi_name_value_list;
1023: l_eco_obj inv_ebi_eco_obj;
1024: l_eco_obj_tbl inv_ebi_eco_out_obj_tbl;
1025: l_eco_lst_obj inv_ebi_eco_out_obj;
1026: l_mult_org_chg_id_temp inv_ebi_change_id_obj_tbl;
1027: l_mult_org_chg_id_tbl inv_ebi_change_id_obj_tbl;
1028: l_eco_output_tbl_lst inv_ebi_change_id_obj_tbl;

Line 1053: l_eco_obj_tbl := inv_ebi_eco_out_obj_tbl();

1049: SELECT c.change_id,c.last_update_status
1050: FROM THE (SELECT CAST( l_mult_org_chg_id_tbl as inv_ebi_change_id_obj_tbl)
1051: FROM dual ) c ) geco;
1052: BEGIN
1053: l_eco_obj_tbl := inv_ebi_eco_out_obj_tbl();
1054: l_name_val_list := p_name_val_list;
1055: /* --BUG 8712091
1056: IF l_name_val_list.name_value_table IS NOT NULL AND l_name_val_list.name_value_table.COUNT>0
1057: THEN