DBA Data[Home] [Help]

APPS.EGO_EXT_FWK_PUB dependencies on FND_INSTALLATION

Line 322: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);

318:
319: BEGIN
320:
321:
322: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);
323:
324: AD_DDL.DO_DDL(fnd_apps_schema, p_object_owner, p_ad_ddl_cmd,p_ddl_sql,p_object_name);
325: RETURN NULL;
326:

Line 1327: IF NOT FND_INSTALLATION.GET_APP_INFO(Get_Application_name(p_appl_id), l_status, l_industry, l_schema)

1323: l_industry VARCHAR2(1);
1324:
1325: BEGIN
1326:
1327: IF NOT FND_INSTALLATION.GET_APP_INFO(Get_Application_name(p_appl_id), l_status, l_industry, l_schema)
1328: THEN
1329: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1330: END IF;
1331:

Line 1442: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);

1438:
1439: --bugfix 11907422 for 12.2 AD_DDL changes
1440: --EXECUTE IMMEDIATE l_dynamic_sql;
1441: h_sql := l_dynamic_sql;
1442: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);
1443: AD_DDL.DO_DDL(fnd_apps_schema, l_table_owner, AD_DDL.CREATE_INDEX, h_sql, l_index_name);
1444:
1445:
1446: END IF;-- IF(p_is_column_indexed IS NULL OR p_is_column_indexed <> 'Y')

Line 1465: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);

1461:
1462: --bugfix 11907422 for 12.2 AD_DDL changes
1463: --EXECUTE IMMEDIATE l_chg_dynamic_sql;
1464: h_sql := l_chg_dynamic_sql;
1465: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);
1466: AD_DDL.DO_DDL(fnd_apps_schema, l_table_owner, AD_DDL.CREATE_INDEX, h_sql, l_chg_index_name);
1467:
1468: END IF;--IF(p_is_chg_column_indexed IS NULL OR p_is_chg_column_indexed <> 'Y')
1469: RETURN 'Y';

Line 3736: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);

3732:
3733: --bugfix 11907422 for 12.2 AD_DDL changes
3734: --l_ddl_error_message := Execute_DDL_And_Return_Err(l_user_attrs_view_ddl);
3735:
3736: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);
3737: --since this is view object_owner is same as APPS
3738: --bug 12392423, hard code APPS as second parameter
3739: --l_ddl_error_message:= Execute_AD_DDL_And_Return_Err(l_user_attrs_view_ddl,'APPS',l_attr_group_metadata_obj.AGV_NAME,ad_ddl.create_view);
3740: begin

Line 14894: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);

14890:
14891: --bugfix 11907422 for 12.2 AD_DDL changes
14892: --EXECUTE IMMEDIATE l_dynamic_sql;
14893:
14894: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);
14895: --bug 12392423, hard code APPS
14896: AD_DDL.DO_DDL(fnd_apps_schema, 'APPS', AD_DDL.CREATE_VIEW,l_dynamic_sql, l_agv_name);
14897:
14898: -- Syalaman - Fix for bug 5911824

Line 16211: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);

16207:
16208: --bugfix 11907422 for 12.2 AD_DDL changes
16209: --EXECUTE IMMEDIATE l_drop_sql;
16210:
16211: h_x := FND_INSTALLATION.Get_App_Info('FND', h_status, h_industry, fnd_apps_schema);
16212: --bug 12392423, hard code APPS as second parameter
16213: AD_DDL.DO_DDL(fnd_apps_schema,'APPS', AD_DDL.DROP_VIEW,l_drop_sql,obj_name);
16214: COMMIT;
16215: END IF;