DBA Data[Home] [Help]

APPS.BOM_FILTER dependencies on BOM_COMMON_DEFINITIONS

Line 85: l_cnt := floor(length(l_sort_order)/Bom_Common_Definitions.G_Bom_SortCode_Width) - 1;

81: --
82: -- split the sort_order to get all the parents
83: --
84: l_sort_order := bom_filter.sort_order_t(comps);
85: l_cnt := floor(length(l_sort_order)/Bom_Common_Definitions.G_Bom_SortCode_Width) - 1;
86:
87: FOR ind IN 1..l_cnt
88: LOOP
89: --bom_filter.sort_order_t.extend;

Line 91: substr(l_sort_order,1,(ind*Bom_Common_Definitions.G_Bom_SortCode_Width));

87: FOR ind IN 1..l_cnt
88: LOOP
89: --bom_filter.sort_order_t.extend;
90: bom_filter.sort_order_t(bom_filter.sort_order_t.COUNT+1) :=
91: substr(l_sort_order,1,(ind*Bom_Common_Definitions.G_Bom_SortCode_Width));
92: END LOOP;
93: END LOOP;
94:
95: --dbms_output.put_line('enabling parents done: ' || to_char(l_st, 'mm-dd-yyyy hh24:mi:ss'));