DBA Data[Home] [Help]

APPS.AZW_GROUP dependencies on FND_APPLICATION_VL

Line 126: FROM fnd_product_installations fpi, fnd_application_vl fav

122: --- end of hard coding for CST
123:
124: SELECT count(*)
125: INTO v_count_installed
126: FROM fnd_product_installations fpi, fnd_application_vl fav
127: WHERE fpi.application_id = fav.application_id
128: AND fav.application_id = v_appl_id
129: AND fpi.status = 'I';
130: IF (v_count_installed = 0) THEN

Line 150: fnd_message.set_token('AZW_ERROR_STMT','select status from fnd_product_installations,fnd_application_vl');

146: fnd_message.set_name('AZ','AZW_PLSQL_EXCEPTION');
147: fnd_message.set_token('AZW_ERROR_CODE',SQLCODE);
148: fnd_message.set_token('AZW_ERROR_MESG',SQLERRM);
149: fnd_message.set_token('AZW_ERROR_PROC','azw_group.get_installed_flag');
150: fnd_message.set_token('AZW_ERROR_STMT','select status from fnd_product_installations,fnd_application_vl');
151: APP_EXCEPTION.RAISE_EXCEPTION;
152: END get_installed_flag;
153:
154: