DBA Data[Home] [Help]

APPS.FND_SUBMIT dependencies on FND_DELIVERY

Line 1923: -- Type - Delivery type, see FND_DELIVERY

1919: -- Purpose
1920: -- Called before submission to add a delivery option
1921: --
1922: -- Arguments
1923: -- Type - Delivery type, see FND_DELIVERY
1924: -- p_argument1 - p_argument9 - Options specific to the delivery type
1925: -- nls_language - Add only for this language
1926: --
1927: function add_delivery_option ( type in varchar2,

Line 1973: return add_delivery_option(type => fnd_delivery.type_email,

1969: if (subject is null or from_address is null or to_address is null) then
1970: return false;
1971: end if;
1972:
1973: return add_delivery_option(type => fnd_delivery.type_email,
1974: p_argument1 => subject,
1975: p_argument2 => from_address,
1976: p_argument3 => to_address,
1977: p_argument4 => cc,

Line 2024: orientation <> fnd_delivery.orientation_portrait and

2020: return false;
2021: end if;
2022:
2023: if (orientation is not null and
2024: orientation <> fnd_delivery.orientation_portrait and
2025: orientation <> fnd_delivery.orientation_landscape) then
2026: return false;
2027: end if;
2028:

Line 2025: orientation <> fnd_delivery.orientation_landscape) then

2021: end if;
2022:
2023: if (orientation is not null and
2024: orientation <> fnd_delivery.orientation_portrait and
2025: orientation <> fnd_delivery.orientation_landscape) then
2026: return false;
2027: end if;
2028:
2029:

Line 2040: svc_key := fnd_delivery.set_temp_credentials(username, password);

2036: return false;
2037: end if;
2038:
2039: if (username is not null and password is not null) then
2040: svc_key := fnd_delivery.set_temp_credentials(username, password);
2041: end if;
2042:
2043: return add_delivery_option(type => fnd_delivery.type_ipp_printer,
2044: p_argument1 => printer_id,

Line 2043: return add_delivery_option(type => fnd_delivery.type_ipp_printer,

2039: if (username is not null and password is not null) then
2040: svc_key := fnd_delivery.set_temp_credentials(username, password);
2041: end if;
2042:
2043: return add_delivery_option(type => fnd_delivery.type_ipp_printer,
2044: p_argument1 => printer_id,
2045: p_argument2 => copies,
2046: p_argument3 => orientation,
2047: p_argument4 => username,

Line 2107: svc_key := fnd_delivery.set_temp_credentials(username, password);

2103: return false;
2104: end if;
2105:
2106: if (username is not null and password is not null) then
2107: svc_key := fnd_delivery.set_temp_credentials(username, password);
2108: end if;
2109:
2110: return add_delivery_option(type => fnd_delivery.type_ipp_fax,
2111: p_argument1 => server_id,

Line 2110: return add_delivery_option(type => fnd_delivery.type_ipp_fax,

2106: if (username is not null and password is not null) then
2107: svc_key := fnd_delivery.set_temp_credentials(username, password);
2108: end if;
2109:
2110: return add_delivery_option(type => fnd_delivery.type_ipp_fax,
2111: p_argument1 => server_id,
2112: p_argument2 => fax_number,
2113: p_argument3 => username,
2114: p_argument4 => null,

Line 2130: stype varchar2(1) := fnd_delivery.type_ftp;

2126: port in varchar2 default null,
2127: secure in boolean default FALSE,
2128: lang in varchar2 default null) return boolean is
2129:
2130: stype varchar2(1) := fnd_delivery.type_ftp;
2131: svc_key varchar2(16) := null;
2132:
2133: begin
2134:

Line 2140: stype := fnd_delivery.type_sftp;

2136: return false;
2137: end if;
2138:
2139: if (secure) then
2140: stype := fnd_delivery.type_sftp;
2141: end if;
2142:
2143: svc_key := fnd_delivery.set_temp_credentials(username, password);
2144:

Line 2143: svc_key := fnd_delivery.set_temp_credentials(username, password);

2139: if (secure) then
2140: stype := fnd_delivery.type_sftp;
2141: end if;
2142:
2143: svc_key := fnd_delivery.set_temp_credentials(username, password);
2144:
2145: return add_delivery_option(type => stype,
2146: p_argument1 => server,
2147: p_argument2 => username,

Line 2174: svc_key := fnd_delivery.set_temp_credentials(username, password);

2170: return false;
2171: end if;
2172:
2173: if (username is not null and password is not null) then
2174: svc_key := fnd_delivery.set_temp_credentials(username, password);
2175: end if;
2176: return add_delivery_option(type => fnd_delivery.type_webdav,
2177: p_argument1 => server,
2178: p_argument2 => remote_dir,

Line 2176: return add_delivery_option(type => fnd_delivery.type_webdav,

2172:
2173: if (username is not null and password is not null) then
2174: svc_key := fnd_delivery.set_temp_credentials(username, password);
2175: end if;
2176: return add_delivery_option(type => fnd_delivery.type_webdav,
2177: p_argument1 => server,
2178: p_argument2 => remote_dir,
2179: p_argument3 => port,
2180: p_argument4 => username,

Line 2208: svc_key := fnd_delivery.set_temp_credentials(username, password);

2204: return false;
2205: end if;
2206:
2207: if (username is not null and password is not null) then
2208: svc_key := fnd_delivery.set_temp_credentials(username, password);
2209: end if;
2210:
2211: return add_delivery_option(type => fnd_delivery.type_http,
2212: p_argument1 => server,

Line 2211: return add_delivery_option(type => fnd_delivery.type_http,

2207: if (username is not null and password is not null) then
2208: svc_key := fnd_delivery.set_temp_credentials(username, password);
2209: end if;
2210:
2211: return add_delivery_option(type => fnd_delivery.type_http,
2212: p_argument1 => server,
2213: p_argument2 => remote_dir,
2214: p_argument3 => port,
2215: p_argument4 => username,

Line 2247: return add_delivery_option(type => fnd_delivery.type_custom,

2243: if (cnt = 0) then
2244: return false;
2245: end if;
2246:
2247: return add_delivery_option(type => fnd_delivery.type_custom,
2248: p_argument1 => custom_id,
2249: nls_language => lang);
2250:
2251: end add_custom;

Line 2278: return add_delivery_option(type => fnd_delivery.type_burst);

2274: function add_burst return boolean is
2275:
2276: begin
2277:
2278: return add_delivery_option(type => fnd_delivery.type_burst);
2279:
2280: end add_burst;
2281:
2282: