Module List > Module Company/System tables SY40100
You are currently viewing the COMPANY database.
Change

COMPANY..SY40100 Table Definition

(COMPANY..Period Setup)

The user interface (UI) for the fiscal period master is based on values in the PSERIES fields for all records with the SERIES as 0. So what the user sees on the fiscal period setup window are records which have the series values as 0. For these records, the columns like CLOSED, ODESCTN will always be zero or blank. The FORIGIN field will always be 1 for all the records returned by the query above.

However, there are other records in the table which have a non zero value for the SERIES field, where the SERIES field represents the following modules

1 – Financial Transactions

2 – Sales/Receivables Transactions

3 – Purchasing/Payables Transactions

4 – Payroll Transactions

5 – Project Transactions

So for every type of transaction in each of these series, there will be a record, which will contain either 0 or 1 in the CLOSED field which indicates if the fiscal period is opened for the specific transaction type in the selected series. A 0 value for the CLOSED field indicates that the fiscal period is open for the specific transaction type and a value of 1 indicates that the fiscal period is closed for the specific transaction type.

So if you want to check if the fiscal period is opened for all the transactions in the Financial Series, you can use the following query.

SELECT  CLOSED ,
        ODESCTN ,
        YEAR1 ,
        PERIODID ,
        PERNAME
FROM    SY40100
WHERE   YEAR1 = 2017
        AND SERIES = 2
ORDER BY PERIODDT

 


4Penny.net

Field Definitions:

What is the 'source' column?

 Column NameData Type
Default Value
 Source
CLOSED tinyint
0
Origin Clo...(more) Join Now
SERIES smallint
0
Series: I...(more) Join Now
ODESCTN char(51)
''
Origin Des...(more) Join Now
FORIGIN tinyint
0
First Orig...(more) Join Now
PERIODID smallint
0
Period ID ...(more) Join Now
PERIODDT datetime
'1/1/1900'
Period Dat...(more) Join Now
PERNAME char(21)
''
Period Nam...(more) Join Now
PSERIES_1 tinyint
0
Period Ser...(more) Join Now
PSERIES_2 tinyint
0
Period Ser...(more) Join Now
PSERIES_3 tinyint
0
Period Ser...(more) Join Now
PSERIES_4 tinyint
0
Period Ser...(more) Join Now
PSERIES_5 tinyint
0
Period Ser...(more) Join Now
PSERIES_6 tinyint
0
Period Ser...(more) Join Now
YEAR1 smallint
0
Year...(more) Join Now
PERDENDT datetime
'1/1/1900'
Period End...(more) Join Now
DEX_ROW_ID int
auto number (1,1)
Unique ide...(more) Join Now
Table Definition Quick Links
All Tables
SOP Tables
RM Tables
GL Tables
POP Tables
HR Tables
PM Tables
UPR Tables
IV Tables
Olympic Tables
3