How do I load the following into the table?
SELECT
CASE
WHEN
ttp.TCV_FACILITY_YN = 'Y'
AND ttp.TCV_TYPE = 'R'
AND ttp.TCV_PRIMARY_YN = 'Y' THEN 'FACILITY'
WHEN
ttp.TCV_FACILITY_YN = 'N'
AND ttp.TCV_TYPE...
Thanks, but now I need to utilize the table.
SELECT
CASE
WHEN
ttp.TCV_FACILITY_YN = 'Y'
AND ttp.TCV_TYPE = 'R'
AND ttp.TCV_PRIMARY_YN = 'Y' THEN 'FACILITY'
WHEN
ttp.TCV_FACILITY_YN = 'N'
AND ttp.TCV_TYPE...
create or replace
PROCEDURE BANDIT(
rc1 in out spm.rctl)
IS
BEGIN
open rc1 for
"CREATE GLOBAL TEMP TABLE Bandi"
(TA_SERVICING_TYPE CHAR(2),
TA_TCV_PVD_UID_PHYS NUMBER(10,0),
TA_tcm_uid NUMBER(10,0),
TA_OPP_LOB_CODE...
Using Crystal Reports 2008, I have setup a parm that is a multiple selection, that parts is done. What I can not remember is how to handle the Report Selection area for a Multiple selection Parm.
Thanks in Advance!
Current Code is
create or replace
PROCEDURE APPEALS(
Selected_EMPLOYEE in STF_STAFF.STF_FORMATTED_NAME%TYPE,
APPEAL_TYPE in MAP_MEM_APPEAL.MAP_APPEAL_TYPE%TYPE,
APPEAL_STATUS in MAP_MEM_APPEAL.MAP_APPEAL_STATUS%TYPE,
rc1 in out spm.rctl) IS
BEGIN
open rc1 for
Now I need to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.