DBA Data[Home] [Help]

APPS.FND_GFM dependencies on FND_HTTP_TICKET

Line 1134: return FND_HTTP_TICKET.CREATE_TICKET_STRING(opcode, value, lifespan);

1130: return varchar2 is
1131: l_lifespan number;
1132: begin
1133: if ( lifespan is not null) then
1134: return FND_HTTP_TICKET.CREATE_TICKET_STRING(opcode, value, lifespan);
1135: else
1136: return FND_HTTP_TICKET.CREATE_TICKET_STRING(opcode, value);
1137: end if;
1138: end;

Line 1136: return FND_HTTP_TICKET.CREATE_TICKET_STRING(opcode, value);

1132: begin
1133: if ( lifespan is not null) then
1134: return FND_HTTP_TICKET.CREATE_TICKET_STRING(opcode, value, lifespan);
1135: else
1136: return FND_HTTP_TICKET.CREATE_TICKET_STRING(opcode, value);
1137: end if;
1138: end;
1139:
1140: /*

Line 1174: if(FND_HTTP_TICKET.CHECK_ONETIME_TICKET_STRING(ticket,

1170: l_args varchar2(4000);
1171: l_operation varchar2(4000);
1172: begin
1173: -- bug 6772298
1174: if(FND_HTTP_TICKET.CHECK_ONETIME_TICKET_STRING(ticket,
1175: l_operation,
1176: l_args) )
1177: then
1178: if(l_operation is null AND opcode is null)