DBA Data[Home] [Help]

APPS.FND_GFM dependencies on FND_HTTP_TICKET

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

1046: return varchar2 is
1047: l_lifespan number;
1048: begin
1049: if ( lifespan is not null) then
1050: return FND_HTTP_TICKET.CREATE_TICKET_STRING(opcode, value, lifespan);
1051: else
1052: return FND_HTTP_TICKET.CREATE_TICKET_STRING(opcode, value);
1053: end if;
1054: end;

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

1048: begin
1049: if ( lifespan is not null) then
1050: return FND_HTTP_TICKET.CREATE_TICKET_STRING(opcode, value, lifespan);
1051: else
1052: return FND_HTTP_TICKET.CREATE_TICKET_STRING(opcode, value);
1053: end if;
1054: end;
1055:
1056: /*

Line 1090: if(FND_HTTP_TICKET.CHECK_ONETIME_TICKET_STRING(ticket,

1086: l_args varchar2(4000);
1087: l_operation varchar2(4000);
1088: begin
1089: -- bug 6772298
1090: if(FND_HTTP_TICKET.CHECK_ONETIME_TICKET_STRING(ticket,
1091: l_operation,
1092: l_args) )
1093: then
1094: if(l_operation is null AND opcode is null)