DBA Data[Home] [Help]

APPS.MWA_NOTIFICATION_API dependencies on FND_GLOBAL

Line 25: encoded_length := fnd_global.local_chr(len);

21: begin
22: padding := chr(0);
23: len := length(str);
24: if len <= 127 then
25: encoded_length := fnd_global.local_chr(len);
26: else
27: encoded_length := fnd_global.local_chr(127);
28: end if;
29: counter := 7;

Line 27: encoded_length := fnd_global.local_chr(127);

23: len := length(str);
24: if len <= 127 then
25: encoded_length := fnd_global.local_chr(len);
26: else
27: encoded_length := fnd_global.local_chr(127);
28: end if;
29: counter := 7;
30: len := len - 127;
31: if len > 0 then

Line 35: encoded_length := encoded_length || fnd_global.local_chr(len);

31: if len > 0 then
32: loop
33: counter := counter -1;
34: if len <= 127 then
35: encoded_length := encoded_length || fnd_global.local_chr(len);
36: exit;
37: else
38: encoded_length := encoded_length || fnd_global.local_chr(127);
39: len := len - 127;

Line 38: encoded_length := encoded_length || fnd_global.local_chr(127);

34: if len <= 127 then
35: encoded_length := encoded_length || fnd_global.local_chr(len);
36: exit;
37: else
38: encoded_length := encoded_length || fnd_global.local_chr(127);
39: len := len - 127;
40: end if;
41: end loop;
42: end if;

Line 88: url := 'http://' || servername || ':9040/ptg/not?req=notification' || fnd_global.local_chr(38)

84: encodedsubject := subject;
85: replaceChars (encodedsubject);
86:
87: fnd_profile.get('MWA_NOTIFICATION_SERVER', servername);
88: url := 'http://' || servername || ':9040/ptg/not?req=notification' || fnd_global.local_chr(38)
89: || 'subject=' || encodedsubject || fnd_global.local_chr(38) || 'content=' || encodedcontent
90: || fnd_global.local_chr(38) || 'username=' || username || fnd_global.local_chr(38) || 'type=' || type;
91:
92: returnval := utl_http.request(url);

Line 89: || 'subject=' || encodedsubject || fnd_global.local_chr(38) || 'content=' || encodedcontent

85: replaceChars (encodedsubject);
86:
87: fnd_profile.get('MWA_NOTIFICATION_SERVER', servername);
88: url := 'http://' || servername || ':9040/ptg/not?req=notification' || fnd_global.local_chr(38)
89: || 'subject=' || encodedsubject || fnd_global.local_chr(38) || 'content=' || encodedcontent
90: || fnd_global.local_chr(38) || 'username=' || username || fnd_global.local_chr(38) || 'type=' || type;
91:
92: returnval := utl_http.request(url);
93:

Line 90: || fnd_global.local_chr(38) || 'username=' || username || fnd_global.local_chr(38) || 'type=' || type;

86:
87: fnd_profile.get('MWA_NOTIFICATION_SERVER', servername);
88: url := 'http://' || servername || ':9040/ptg/not?req=notification' || fnd_global.local_chr(38)
89: || 'subject=' || encodedsubject || fnd_global.local_chr(38) || 'content=' || encodedcontent
90: || fnd_global.local_chr(38) || 'username=' || username || fnd_global.local_chr(38) || 'type=' || type;
91:
92: returnval := utl_http.request(url);
93:
94:

Line 222: escapeRecord(8).replace_char := fnd_global.local_chr(39);

218: escapeRecord(6).replace_char := '$';
219: escapeRecord(6).replacement_char := '%24';
220: escapeRecord(7).replace_char := '&';
221: escapeRecord(7).replacement_char := '%26';
222: escapeRecord(8).replace_char := fnd_global.local_chr(39);
223: escapeRecord(8).replacement_char := '%27';
224: escapeRecord(9).replace_char := '(';
225: escapeRecord(9).replacement_char := '%28';
226: escapeRecord(10).replace_char := ')';