DBA Data[Home] [Help]

APPS.IEU_UWQ_WORK_PANEL_PVT dependencies on FND_GLOBAL

Line 27: instr(p_uwq_action_data, fnd_global.local_chr(20),1,j),

23: LOOP
24: tempString := substr
25: (
26: p_uwq_action_data,
27: instr(p_uwq_action_data, fnd_global.local_chr(20),1,j),
28: ( instr(p_uwq_action_data, fnd_global.local_chr(28),1,j) -
29: instr(p_uwq_action_data, fnd_global.local_chr(20),1,j) + 1)
30: );
31:

Line 28: ( instr(p_uwq_action_data, fnd_global.local_chr(28),1,j) -

24: tempString := substr
25: (
26: p_uwq_action_data,
27: instr(p_uwq_action_data, fnd_global.local_chr(20),1,j),
28: ( instr(p_uwq_action_data, fnd_global.local_chr(28),1,j) -
29: instr(p_uwq_action_data, fnd_global.local_chr(20),1,j) + 1)
30: );
31:
32: x_uwq_action_data_list(list_ctr).name :=

Line 29: instr(p_uwq_action_data, fnd_global.local_chr(20),1,j) + 1)

25: (
26: p_uwq_action_data,
27: instr(p_uwq_action_data, fnd_global.local_chr(20),1,j),
28: ( instr(p_uwq_action_data, fnd_global.local_chr(28),1,j) -
29: instr(p_uwq_action_data, fnd_global.local_chr(20),1,j) + 1)
30: );
31:
32: x_uwq_action_data_list(list_ctr).name :=
33: substr

Line 36: instr(tempString, fnd_global.local_chr(31),1,k) - 2

32: x_uwq_action_data_list(list_ctr).name :=
33: substr
34: ( tempString,
35: 2,
36: instr(tempString, fnd_global.local_chr(31),1,k) - 2
37: );
38: x_uwq_action_data_list(list_ctr).value :=
39: substr
40: ( tempString,

Line 41: instr(tempString, fnd_global.local_chr(31),1,k) + 1,

37: );
38: x_uwq_action_data_list(list_ctr).value :=
39: substr
40: ( tempString,
41: instr(tempString, fnd_global.local_chr(31),1,k) + 1,
42: ( instr(tempString,fnd_global.local_chr(31),1,k+1) -
43: instr(tempString, fnd_global.local_chr(31),1,k) - 1)
44: );
45: x_uwq_action_data_list(list_ctr).type :=

Line 42: ( instr(tempString,fnd_global.local_chr(31),1,k+1) -

38: x_uwq_action_data_list(list_ctr).value :=
39: substr
40: ( tempString,
41: instr(tempString, fnd_global.local_chr(31),1,k) + 1,
42: ( instr(tempString,fnd_global.local_chr(31),1,k+1) -
43: instr(tempString, fnd_global.local_chr(31),1,k) - 1)
44: );
45: x_uwq_action_data_list(list_ctr).type :=
46: substr

Line 43: instr(tempString, fnd_global.local_chr(31),1,k) - 1)

39: substr
40: ( tempString,
41: instr(tempString, fnd_global.local_chr(31),1,k) + 1,
42: ( instr(tempString,fnd_global.local_chr(31),1,k+1) -
43: instr(tempString, fnd_global.local_chr(31),1,k) - 1)
44: );
45: x_uwq_action_data_list(list_ctr).type :=
46: substr
47: ( tempString,

Line 48: instr(tempString, fnd_global.local_chr(31),1,k+1) + 1,

44: );
45: x_uwq_action_data_list(list_ctr).type :=
46: substr
47: ( tempString,
48: instr(tempString, fnd_global.local_chr(31),1,k+1) + 1,
49: length(tempstring) - instr(tempString, fnd_global.local_chr(31),1,k+1) -1
50: );
51:
52: l_counter := instr(p_uwq_action_data, fnd_global.local_chr(28),1,j);

Line 49: length(tempstring) - instr(tempString, fnd_global.local_chr(31),1,k+1) -1

45: x_uwq_action_data_list(list_ctr).type :=
46: substr
47: ( tempString,
48: instr(tempString, fnd_global.local_chr(31),1,k+1) + 1,
49: length(tempstring) - instr(tempString, fnd_global.local_chr(31),1,k+1) -1
50: );
51:
52: l_counter := instr(p_uwq_action_data, fnd_global.local_chr(28),1,j);
53: j := j+1;

Line 52: l_counter := instr(p_uwq_action_data, fnd_global.local_chr(28),1,j);

48: instr(tempString, fnd_global.local_chr(31),1,k+1) + 1,
49: length(tempstring) - instr(tempString, fnd_global.local_chr(31),1,k+1) -1
50: );
51:
52: l_counter := instr(p_uwq_action_data, fnd_global.local_chr(28),1,j);
53: j := j+1;
54: list_ctr := list_ctr + 1;
55:
56: END LOOP;