DBA Data[Home] [Help]

APPS.OZF_DENORM_QUERIES_PVT_W dependencies on JTF_VARCHAR2_TABLE_4000

Line 22: procedure rosetta_table_copy_in_p1(t OUT NOCOPY ozf_denorm_queries_pvt.stringarray, a0 JTF_VARCHAR2_TABLE_4000) as

18: if d = rosetta_g_mistake_date then return fnd_api.g_miss_date; end if;
19: return d;
20: end;
21:
22: procedure rosetta_table_copy_in_p1(t OUT NOCOPY ozf_denorm_queries_pvt.stringarray, a0 JTF_VARCHAR2_TABLE_4000) as
23: ddindx binary_integer; indx binary_integer;
24: begin
25: if a0 is not null and a0.count > 0 then
26: if a0.count > 0 then

Line 40: procedure rosetta_table_copy_out_p1(t ozf_denorm_queries_pvt.stringarray, a0 OUT NOCOPY JTF_VARCHAR2_TABLE_4000) as

36: end loop;
37: end if;
38: end if;
39: end rosetta_table_copy_in_p1;
40: procedure rosetta_table_copy_out_p1(t ozf_denorm_queries_pvt.stringarray, a0 OUT NOCOPY JTF_VARCHAR2_TABLE_4000) as
41: ddindx binary_integer; indx binary_integer;
42: begin
43: if t is null or t.count = 0 then
44: a0 := JTF_VARCHAR2_TABLE_4000();

Line 44: a0 := JTF_VARCHAR2_TABLE_4000();

40: procedure rosetta_table_copy_out_p1(t ozf_denorm_queries_pvt.stringarray, a0 OUT NOCOPY JTF_VARCHAR2_TABLE_4000) as
41: ddindx binary_integer; indx binary_integer;
42: begin
43: if t is null or t.count = 0 then
44: a0 := JTF_VARCHAR2_TABLE_4000();
45: else
46: a0 := JTF_VARCHAR2_TABLE_4000();
47: if t.count > 0 then
48: a0.extend(t.count);

Line 46: a0 := JTF_VARCHAR2_TABLE_4000();

42: begin
43: if t is null or t.count = 0 then
44: a0 := JTF_VARCHAR2_TABLE_4000();
45: else
46: a0 := JTF_VARCHAR2_TABLE_4000();
47: if t.count > 0 then
48: a0.extend(t.count);
49: ddindx := t.first;
50: indx := 1;

Line 506: , sarray OUT NOCOPY JTF_VARCHAR2_TABLE_4000

502: p1_a14 := rosetta_g_miss_num_map(ddx_complete_rec.security_group_id);
503: end;
504:
505: procedure string_length_check(sqlst VARCHAR2
506: , sarray OUT NOCOPY JTF_VARCHAR2_TABLE_4000
507: )
508: as
509: ddsarray ozf_denorm_queries_pvt.stringarray;
510: ddindx binary_integer; indx binary_integer;