EWFCON SAP (Front Office Configuration) Table details

Dictionary Type: Table
Description: Front Office Configuration




ABAP Code to SELECT data from EWFCON
Related tables to EWFCON
Access table EWFCON




Table field list including key, data, relationships and ABAP select examples

EWFCON is a standard SAP Table which is used to store Front Office Configuration data and is available within R/3 SAP systems depending on the version and release level.

The EWFCON table consists of various fields, each holding specific information or linking keys about Front Office Configuration data available in SAP. These include ACTSTAT (Activation Status of Entry), CONFIG (Action Box configuration), CALLER_CODE (Code that identifies the calling component for this profile), FINDER (Finder to be used in the front office (BOR object type)).. 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. .

Delivery Class: E - Control table, SAP and customer have separate key areas
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Not classified

Text table = EWFCONT


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

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
ACTSTATActivation Status of Entry EBA_ACTIVECHAR1EBA_ACTIVE
CONFIGAction Box configuration EWF_CONFIGCHAR8EWF_CONFIGEFC
CALLER_CODECode that identifies the calling component for this profile EWF_CALLER_CODECHAR2CHAR2
FINDERFinder to be used in the front office (BOR object type) EWF_FINDERCHAR10TOJTBOJ_NAME
OBJ_MODEIndicator: Object list is active EWF_OBJ_MOCHAR1EBA_FLAG
SEL_MODEIndicator: Selection screen is active EWF_SEL_MOCHAR1EBA_FLAG
SEL_FUNCOPSubscreen for selection fields: Open function module EWF_SELFOPCHAR30TFDIRFUNCNAME
SEC_MODEIndicator: Customer selections are active EWF_SEC_MOCHAR1EBA_FLAG
SEC_FUNCOPSubscreen for selection fields: Open function module EWF_SELFOPCHAR30TFDIRFUNCNAME
CA1_MODEIndicator: Call selection 1 is active EWF_CA1_MOCHAR1EBA_FLAG
CA2_MODEIndicator: Call selection 2 is active EWF_CA2_MOCHAR1EBA_FLAG
DEF_CALLIDDefault Call ID: Action Box Shortcut Field EWF_DEF_CALLIDCHAR4Assigned to domainEWF_CALLID
SEL_OBJTYPEObject type that is selected automatically in object file EWF_SEL_OBJTYPECHAR10Assigned to domainOJ_NAME
CREA_USERFirst changed by SWO_CREABYCHAR12Assigned to domainXUBNAME
CREA_DATEDate of first change SWO_CREADADATS8SYDATS
CHAN_USERLast changed by SWO_CHANBYCHAR12Assigned to domainXUBNAME
CHAN_DATEDate of Last Change SWO_CHANDADATS8SYDATS

Key field Non-key field



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

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

SELECT SINGLE *
FROM EWFCON
INTO CORRESPONDING FIELDS OF WA_EWFCON
WHERE...

How to access SAP table EWFCON

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

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


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!