STDHRS_FREQ_VW(SQL View) |
Index Back |
---|---|
Standard Hours Frequency ViewA view of the Frequency Table that specifies the frequencies valid for the Standard Hours Frequency. |
SELECT F.FREQUENCY_ID , F.EFFDT , F.EFF_STATUS , F.DESCR50 , F.DESCRSHORT , F.FREQUENCY_TYPE , F.MAINT_RESPONSBLTY , F.FREQ_ANNUAL_FACTOR , F.USE_STD_HOURS_SW FROM PS_FREQUENCY_TBL F WHERE F.FREQUENCY_TYPE <> 'H' AND F.EFFDT = ( SELECT MAX(U.EFFDT) FROM %Table(FREQUENCY_TBL) U WHERE U.FREQUENCY_ID = F.FREQUENCY_ID AND U.EFFDT <= %CurrentDateIn) |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | FREQUENCY_ID | Character(5) | VARCHAR2(5) NOT NULL | Defines a frequency and a set of parameters used for frequency conversion. Typically, these frequencies reflect how often an event occurs. Some examples are compensation frequency and pay frequency. |
2 | EFFDT | Date(10) | DATE NOT NULL | Effective Date |
3 | EFF_STATUS | Character(1) | VARCHAR2(1) NOT NULL |
Effective Status
A=Active I=Inactive |
4 | DESCR50 | Character(50) | VARCHAR2(50) NOT NULL | Description of length 50 |
5 | DESCRSHORT | Character(10) | VARCHAR2(10) NOT NULL | Short Description |
6 | FREQUENCY_TYPE | Character(1) | VARCHAR2(1) NOT NULL |
Indicates the type of a frequency ID.
A=Annual B=Biweekly C=Contract D=Daily F=Fourweekly H=Hourly M=Monthly Q=Quarterly S=Semimonthly W=Weekly |
7 | MAINT_RESPONSBLTY | Character(1) | VARCHAR2(1) NOT NULL |
Maintenance Responsibility
C=Customer P=PeopleSoft |
8 | FREQ_ANNUAL_FACTOR | Number(9,4) | DECIMAL(8,4) NOT NULL | Specifies the factor used for annualization/deannualization in a frequency conversion. The Frequency Annualization Factor is expressed in times per year. |
9 | USE_STD_HOURS_SW | Character(1) | VARCHAR2(1) NOT NULL |
A flag that indicates whether Standard Hours are used for annualization, or the Frequency Annualization Factor associated with the frequency is used for annualization.
Y/N Table Edit |