DBA Data[Home] [Help]

APPS.CSE_ASSET_UTIL_PKG dependencies on FND_APPLICATION

Line 634: CURSOR fnd_application_cur IS

630: FROM fa_category_books
631: WHERE book_type_code = p_book_type_code
632: AND category_id = p_category_id ;
633:
634: CURSOR fnd_application_cur IS
635: SELECT application_short_name
636: FROM fnd_application
637: WHERE application_id = 101 ; --GL
638:

Line 636: FROM fnd_application

632: AND category_id = p_category_id ;
633:
634: CURSOR fnd_application_cur IS
635: SELECT application_short_name
636: FROM fnd_application
637: WHERE application_id = 101 ; --GL
638:
639: CURSOR fa_category_kfv_cur (l_category_id IN NUMBER) IS
640: SELECT concatenated_segments

Line 709: OPEN fnd_application_cur ;

705: l_error_message := fnd_message.get;
706: RAISE fnd_api.g_exc_error;
707: END IF ;
708:
709: OPEN fnd_application_cur ;
710: FETCH fnd_application_cur INTO l_app_short_name ;
711: CLOSE fnd_application_cur ;
712:
713: IF fnd_flex_ext.get_segments(

Line 710: FETCH fnd_application_cur INTO l_app_short_name ;

706: RAISE fnd_api.g_exc_error;
707: END IF ;
708:
709: OPEN fnd_application_cur ;
710: FETCH fnd_application_cur INTO l_app_short_name ;
711: CLOSE fnd_application_cur ;
712:
713: IF fnd_flex_ext.get_segments(
714: application_short_name => l_app_short_name,

Line 711: CLOSE fnd_application_cur ;

707: END IF ;
708:
709: OPEN fnd_application_cur ;
710: FETCH fnd_application_cur INTO l_app_short_name ;
711: CLOSE fnd_application_cur ;
712:
713: IF fnd_flex_ext.get_segments(
714: application_short_name => l_app_short_name,
715: key_flex_code => l_flex_code,