DBA Data[Home] [Help]

APPS.AME_UTIL dependencies on OWA_UTIL

Line 749: return(owa_util.get_owa_service_path);

745: return(null);
746: end getOrgName;
747: function getPlsqlDadPath return varchar2 as
748: begin
749: return(owa_util.get_owa_service_path);
750: exception
751: when others then
752: runtimeException(packageNameIn => 'ame_util',
753: routineNameIn => 'getPlsqlDadPath',

Line 778: return('http://' || owa_util.get_cgi_env(param_name => 'SERVER_NAME'));

774: return(queryCursor);
775: end getQuery;
776: function getServerName return varchar2 as
777: begin
778: return('http://' || owa_util.get_cgi_env(param_name => 'SERVER_NAME'));
779: exception
780: when others then
781: runtimeException(packageNameIn => 'ame_util',
782: routineNameIn => 'getServerName',

Line 882: return(':' || owa_util.get_cgi_env(param_name => 'SERVER_PORT'));

878: return(null);
879: end getYearString;
880: function getServerPort return varchar2 as
881: begin
882: return(':' || owa_util.get_cgi_env(param_name => 'SERVER_PORT'));
883: exception
884: when others then
885: runtimeException(packageNameIn => 'ame_util',
886: routineNameIn => 'getServerPort',

Line 2329: keywords(19) := 'owa_util';

2325: keywords(15) := 'dbms_sql';
2326: keywords(16) := 'dbms_output';
2327: keywords(17) := 'htp';
2328: keywords(18) := 'htf';
2329: keywords(19) := 'owa_util';
2330: keywords(20) := 'owa_cookie';
2331: tempConnectPos := 0;
2332: for i in 1 .. keywords.count loop
2333: if lowerQueryString like 'connect ' or

Line 3233: procedure identArrToIdList(identArrIn in owa_util.ident_arr,

3229: workflowItemTypeOut := null;
3230: raise_application_error(errorCode,
3231: errorMessage);
3232: end getWorkflowAttributeValues;
3233: procedure identArrToIdList(identArrIn in owa_util.ident_arr,
3234: startIndexIn in integer default 2,
3235: idListOut out nocopy idList) as
3236: identArrLimit integer;
3237: begin

Line 3250: procedure identArrToLongestStringList(identArrIn in owa_util.ident_arr,

3246: exceptionNumberIn => sqlcode,
3247: exceptionStringIn => sqlerrm);
3248: raise;
3249: end identArrToIdList;
3250: procedure identArrToLongestStringList(identArrIn in owa_util.ident_arr,
3251: startIndexIn in integer default 2,
3252: longestStringListOut out nocopy longestStringList) as
3253: identArrLimit integer;
3254: begin

Line 3267: procedure identArrToStringList(identArrIn in owa_util.ident_arr,

3263: exceptionNumberIn => sqlcode,
3264: exceptionStringIn => sqlerrm);
3265: raise;
3266: end identArrToLongestStringList;
3267: procedure identArrToStringList(identArrIn in owa_util.ident_arr,
3268: startIndexIn in integer default 2,
3269: stringListOut out nocopy stringList) as
3270: identArrLimit integer;
3271: begin

Line 4288: owa_util.mime_header('text/html',

4284: AME_STRIPING
4285: procedure setCurrentStripeSetId(applicationIdIn in integer,
4286: stripeSetIdIn in integer) as
4287: begin
4288: owa_util.mime_header('text/html',
4289: false);
4290: owa_cookie.send(name => ame_util.getStripeSetCookieName(applicationIdIn => applicationIdIn),
4291: value => to_char(stripeSetIdIn),
4292: expires => sysdate + 365);

Line 4293: owa_util.http_header_close;

4289: false);
4290: owa_cookie.send(name => ame_util.getStripeSetCookieName(applicationIdIn => applicationIdIn),
4291: value => to_char(stripeSetIdIn),
4292: expires => sysdate + 365);
4293: owa_util.http_header_close;
4294: exception
4295: when others then
4296: runtimeException(packageNameIn => 'ame_util',
4297: routineNameIn => 'setCurrentStripeSetId',

Line 4307: owa_util.mime_header('text/html',

4303: procedure setTransTypeCookie(applicationIdIn in integer) as
4304: userId integer;
4305: begin
4306: userId := ame_util.getCurrentUserId;
4307: owa_util.mime_header('text/html',
4308: false);
4309: owa_cookie.send(name => ame_util.transactionTypeCookie || ':' || userId,
4310: value => applicationIdIn,
4311: expires => sysdate + (10 * 365),

Line 4314: owa_util.http_header_close;

4310: value => applicationIdIn,
4311: expires => sysdate + (10 * 365),
4312: path => ame_util.getPlsqlDadPath,
4313: domain => substrb(ame_util.getServerName, 8));
4314: owa_util.http_header_close;
4315: exception
4316: when others then
4317: runtimeException(packageNameIn => 'ame_util',
4318: routineNameIn => 'setTransTypeCookie',