DBA Data[Home] [Help]

APPS.GL_CHART_OF_ACCOUNTS_API_PKG dependencies on FND_GLOBAL

Line 1498: := v_compiled_value_attributes||FND_GLOBAL.newline;

1494: -- Handling of the multi-character individual attribute value.
1495: --
1496:
1497: v_compiled_value_attribute_s
1498: := v_compiled_value_attributes||FND_GLOBAL.newline;
1499:
1500: FOR v_cursor_attribute_type IN c_value_attribute_type LOOP
1501:
1502: -- Count the number of attributes

Line 1515: IF (substrb(v_compiled_value_attribute_s,1,1) = FND_GLOBAL.newline) THEN

1511: -- Each individual attribute value can be null.
1512: -- Consequtive character (ASCII value 10) means a NULL value.
1513: -- Added by ABHJOSHI on 03/31/05
1514: --
1515: IF (substrb(v_compiled_value_attribute_s,1,1) = FND_GLOBAL.newline) THEN
1516: v_compiled_value_attribute_c := NULL;
1517: ELSE
1518: v_compiled_value_attribute_c
1519: := substrb(v_compiled_value_attribute_s

Line 1521: ,instrb(v_compiled_value_attribute_s,FND_GLOBAL.newline,1)-1);

1517: ELSE
1518: v_compiled_value_attribute_c
1519: := substrb(v_compiled_value_attribute_s
1520: ,1
1521: ,instrb(v_compiled_value_attribute_s,FND_GLOBAL.newline,1)-1);
1522: END IF;
1523:
1524: -- Each individual attribute value can be null.
1525: IF (v_compiled_value_attribute_c IS NOT NULL) THEN

Line 1548: ,instrb(v_compiled_value_attribute_s,FND_GLOBAL.newline,1)+1);

1544: -- character (ASCII value 10)
1545: -- Otherwise will be treated as separate values
1546: v_compiled_value_attribute_s
1547: := substrb(v_compiled_value_attribute_s
1548: ,instrb(v_compiled_value_attribute_s,FND_GLOBAL.newline,1)+1);
1549:
1550: END LOOP;
1551:
1552: --