SAP PLSC Planning scenarios in long-term planning Table data and field list

PLSC is a standard SAP Table which is used to store Planning scenarios in long-term planning data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The PLSC table consists of various fields, each holding specific information or linking keys about Planning scenarios in long-term planning data available in SAP. These include PLSCN (Planning Scenario of Long-Term Planning), PSACT (Planning scenario status), PLSCT (Planning scenario description), PDAT1 (Start of the planning period)... See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

PLSC table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)


SAP PLSC table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the PLSC table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
PLSCNPlanning Scenario of Long-Term Planning PLSCNNUMC3PLSCNPLS
PSACTPlanning scenario status PSACTCHAR1PSSTA
PLSCTPlanning scenario description PLSCTCHAR40TEXT40
PDAT1Start of the planning period PDAT1DATS8DATUM
PDAT2End of planning period PDAT2DATS8DATUM
MDATEPlng scenario: key date for chnge status of material master MDATEDATS8DATUM
SBFLGLong-term plnng: depend.reqmts for reorder point materials SBFLGCHAR1XFELD
SSTCKOpening stock for long-term planning SSTCKCHAR1SSTCK
SSTFLLong term planning: average plant stock compiled SSTFLCHAR1XFELD
VERSAActive version of available capacity KAPVERSAKTNUMC2TC36KAPVERSION
FIXELLong-term planning: include firmed issues and receipts FIXELCHAR1XFELD
VRSIOVersion number in the information structure VRSIOCHAR3P44VVRSIOMCV
EISDTDate of last data transfer to the purchasing info system EISDTDATS8DATUM
VSBCOInventory controlling version VRSIO_BCOCHAR3P44VVRSIOMCV
BCODTDate of last data transfer to inventory controlling BCODTDATS8DATUM
FIXLOLong-term planning: switch off planning time fence FIXLOCHAR1XFELD
EINPLLong-term planning: single-item planning in scenario on/off EINPLCHAR1XFELD
KDAKZLong-term planning: Consider sales orders? Yes/No KDAKZCHAR1XFELD
FBAKZLong-term planning:include firm purchase requisitions yes/no FBAKZCHAR1XFELD
FPAKZLong-term planning: Include firm planned orders yes/no FPAFLCHAR1XFELD
DIRKZLong-term planning: Use direct production DIRKZCHAR1XFELD
AVMKZLong-term planning: Do not calculate scrap quantity AVMKZCHAR1XFELD
LLSKZLong-term planning: Use gross lot size LLSKZCHAR1XFELD
LTPLSLong-term planning lot size procedure (gross) LTPLSCHAR2T439ADISLS
LTPIDLong-term planning: Selection ID for BOMs LTPIDCHAR2TCS41CSLID

Key field Non-key field



How do I retrieve data from SAP table PLSC using ABAP code

The following ABAP code Example will allow you to do a basic selection on PLSC to SELECT all data from the table
DATA: WA_PLSC TYPE PLSC.

SELECT SINGLE *
FROM PLSC
INTO CORRESPONDING FIELDS OF WA_PLSC
WHERE...

How to access SAP table PLSC

Within an ECC or HANA version of SAP you can also view further information about PLSC and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).