DBA Data[Home] [Help]

APPS.BIS_CUSTOMIZATION dependencies on AK_CUSTOM_REGISTRY

Line 7: select property_name from ak_custom_registry

3:
4: procedure insert_custom_registry is
5:
6: cursor c_custom_registry is
7: select property_name from ak_custom_registry
8: where property_name in ('ATTRIBUTE_LABEL_LONG','NODE_DISPLAY_FLAG','DISPLAY_SEQUENCE','ORDER_DIRECTION','INITIAL_SORT_SEQUENCE');
9: l_long number := 0;
10: l_display number :=0;
11: l_order number :=0;

Line 29: insert into ak_custom_registry(customization_level_id,custom_level,property_name

25: l_sequence := 1;
26: end if;
27: end loop;
28: if l_long = 0 then
29: insert into ak_custom_registry(customization_level_id,custom_level,property_name
30: ,translatable,created_by,creation_date,last_updated_by ,last_update_date
31: ,last_update_login)
32: values(60,'REGION_ITEM', 'ATTRIBUTE_LABEL_LONG','Y',1,SYSDATE,1,SYSDATE,1);
33: end if;

Line 35: insert into ak_custom_registry(customization_level_id,custom_level,property_name

31: ,last_update_login)
32: values(60,'REGION_ITEM', 'ATTRIBUTE_LABEL_LONG','Y',1,SYSDATE,1,SYSDATE,1);
33: end if;
34: if l_display = 0 then
35: insert into ak_custom_registry(customization_level_id,custom_level,property_name
36: ,translatable,created_by,creation_date,last_updated_by ,last_update_date
37: ,last_update_login)
38: values(60,'REGION_ITEM','NODE_DISPLAY_FLAG','N',1,SYSDATE,1,SYSDATE,1);
39: end if;

Line 41: insert into ak_custom_registry(customization_level_id,custom_level,property_name

37: ,last_update_login)
38: values(60,'REGION_ITEM','NODE_DISPLAY_FLAG','N',1,SYSDATE,1,SYSDATE,1);
39: end if;
40: if l_sequence = 0 then
41: insert into ak_custom_registry(customization_level_id,custom_level,property_name
42: ,translatable,created_by,creation_date,last_updated_by ,last_update_date
43: ,last_update_login)
44: values(60,'REGION_ITEM','DISPLAY_SEQUENCE','N',1,SYSDATE,1,SYSDATE,1);
45: end if;

Line 47: insert into ak_custom_registry(customization_level_id,custom_level,property_name

43: ,last_update_login)
44: values(60,'REGION_ITEM','DISPLAY_SEQUENCE','N',1,SYSDATE,1,SYSDATE,1);
45: end if;
46: if l_order = 0 then
47: insert into ak_custom_registry(customization_level_id,custom_level,property_name
48: ,translatable,created_by,creation_date,last_updated_by ,last_update_date
49: ,last_update_login)
50: values(60,'REGION_ITEM','ORDER_DIRECTION','N',1,SYSDATE,1,SYSDATE,1);
51: end if;

Line 53: insert into ak_custom_registry(customization_level_id,custom_level,property_name

49: ,last_update_login)
50: values(60,'REGION_ITEM','ORDER_DIRECTION','N',1,SYSDATE,1,SYSDATE,1);
51: end if;
52: if l_sort = 0 then
53: insert into ak_custom_registry(customization_level_id,custom_level,property_name
54: ,translatable,created_by,creation_date,last_updated_by ,last_update_date
55: ,last_update_login)
56: values(60,'REGION_ITEM','INITIAL_SORT_SEQUENCE','N',1,SYSDATE,1,SYSDATE,1);
57: end if;