DBA Data[Home] [Help]

APPS.PQP_RIW_LOCATION_WRAPPER dependencies on BNE_INTERFACE_COLS_B

Line 126: from bne_interface_cols_b bic

122: return hr_locations_all%rowtype is
123:
124: cursor bne_cols(c_interface_code in varchar2) is
125: select lower(bic.interface_col_name) interface_col_name
126: from bne_interface_cols_b bic
127: where bic.interface_code = c_interface_code
128: and bic.display_flag ='Y';
129: --and bic.interface_col_type <> 2;
130:

Line 134: from bne_interface_cols_b bic

130:
131: -- To query cols which are not displayed (DFF segments)
132: cursor bne_cols_no_disp(c_interface_code in varchar2) is
133: select lower(bic.interface_col_name) interface_col_name
134: from bne_interface_cols_b bic
135: where bic.interface_code = c_interface_code
136: and bic.display_flag ='N';
137:
138: l_location_rec hr_locations_all%rowtype;