0% found this document useful (0 votes)
7 views2 pages

query (14)

The document outlines a SQL query designed to retrieve specific details from a scheduling database related to a tenant identified as 'sicpa'. It selects various fields including action types, descriptions, contact information, enrollment details, and timestamps, with a filter applied to a specific schedule ID. The results are ordered by schedule ID and last updated timestamp.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

query (14)

The document outlines a SQL query designed to retrieve specific details from a scheduling database related to a tenant identified as 'sicpa'. It selects various fields including action types, descriptions, contact information, enrollment details, and timestamps, with a filter applied to a specific schedule ID. The results are ordered by schedule ID and last updated timestamp.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

/** ReportID: 441, DataSetName: details, Report Type: System, Tenant ID: sicpa

**/select SCHD_ID,
DECODE(action,'I','label.Insert', 'M','label.Update', 'D', 'label.Delete', 'U',
'label.Update') AS action,
DESCRIPTION,
GRP_INSTANCE_ID,
DMN_ID,
SCHD_CPNT,
CPNT_TYP_ID,
ACT_CPNT_ID,
REV_DTE,
MIN_ENRL,
MAX_ENRL,
CONTACT,
EMAIL_ADDR,
PHON_NUM,
FAX_NUM,
ENRL_CUT_DTE,
SELF_ENRL,
SUPER_ENRL,
RMNDR_SENT,
SCHD_DESC,
COMMENTS,
NOTACTIVE,
FACILITY_ID,
CANCELLED,
CANCEL_DTE,
AUTO_FILL_ENRL,
TOTAL_LEARNING_COST,
CLOSED_DATE,
CHGBCK_METHOD,
VLE_AUTO_RECORD_LRNGEVNTS,
VLE_MIN_SUCCESS_ATTENDANCE_PCT,
VLE_CMPL_STAT_ID,
VLE_FAILURE_CMPL_STAT_ID,
TAP_DEF_ID,
APPROVAL_REQD,
TIMEZONE_ID,
DISPLAY_IN_SCHD_TZ,
USER_CAN_WAITLIST,
COST_CURRENCY_CODE,
EMAIL_STUDENT,
EMAIL_INSTRUCTOR,
EMAIL_SUPERVISOR,
EMAIL_CONTACTS,
--OFT_SEARCH_INDX_NOTIFIER,
LST_UPD_USR,
LST_UPD_TSTMP,
REG_EMAIL_STUDENT,
REG_EMAIL_INSTRUCTOR,
REG_EMAIL_SUPERVISOR,
REG_EMAIL_CONTACTS,
REG_EMAIL_SLOT_CONFIRMATIONS,
REMOVE_ITEM_FROM_LRN_PLAN,
ORIGIN
from ph_sched
where 1=1

/* SEARCH_FILTER_START ScheduleInstance*/
AND schd_id in ( '13866' )

/* SEARCH_FILTER_END */

/* FILTER_START */

AND 1 = 1

/* FILTER_END */

/* SECURITY_FILTER_START */

AND 1 = 1

/* SECURITY_FILTER_END */

/* FILTER_START */

AND 1 = 1

/* FILTER_END */

/* FILTER_START */

AND 1 = 1

/* FILTER_END */
order by SCHD_ID, LST_UPD_TSTMP
-----------------------------------------------------------------------------------
--------

You might also like