SAP ALM_ME_C010PRF Order Processing Table data and field list

ALM_ME_C010PRF is a standard SAP Table which is used to store Order Processing data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The ALM_ME_C010PRF table consists of various fields, each holding specific information or linking keys about Order Processing data available in SAP. These include PROFILE_ORDER (Order Profile), PROFILE_SEL_ORD (Selection Variant for Order Operation Selection), PRF_SEL_ORD_HEAD (Selection Variant for the Order Header Selection), PROFILE_CONFIRM (Confirmation Profile)... 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. .

ALM_ME_C010PRF table Technical Details:

Delivery Class: C - Customising table, maintenance only by cust
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)

Text table = ALM_ME_C010PRFT


SAP ALM_ME_C010PRF 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 ALM_ME_C010PRF 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
PROFILE_ORDEROrder Profile ALM_ME_PROFILE_ORDERCHAR10CHAR10
PROFILE_SEL_ORDSelection Variant for Order Operation Selection ALM_ME_ORDER_SELECT_VARIANTCHAR14RALDB_VARI
PRF_SEL_ORD_HEADSelection Variant for the Order Header Selection ALM_ME_ORDER_HEADER_SEL_VARCHAR14RALDB_VARI
PROFILE_CONFIRMConfirmation Profile ALM_ME_PROFILE_CONFIRMCHAR10ALM_ME_C015PRFCHAR10
PROFILE_ACCINDAccounting Indicator Profile ALM_ME_CALC_MOTIVE_PROFILECHAR10ALM_ME_CALCMPRFCHAR10
PROFILE_ORD_TYPOrder Type Profile ALM_ME_ORDER_TYPE_PROFILECHAR10ALM_ME_C012PRFCHAR10
PROFILE_CONTR_KControl Key Profile ALM_ME_CONTROL_KEY_PROFILECHAR10ALM_ME_C014PRFCHAR10
PROFILE_WORKCWork Center Profile ALM_ME_WORK_CENTER_PRFCHAR10ALM_ME_C016_PRFCHAR10
OPERATION_DISPOperation Display ALM_ME_OPERATION_DISPLAYCHAR1ALM_ME_OPERATION_DISPLAY
OPERATION_SPLITOperation Split ALM_ME_OPERATION_SPLITCHAR1FLAG
OPERATION_ADDAdd Operations ALM_ME_OPERATION_ADDCHAR1FLAG
ORDER_CHANGEABLEOrder Data is Changeable ALM_ME_ORDER_CHANGEABLECHAR1FLAG
OBJECT_LISTDownload Objects from Object List ALM_ME_OBJECT_LIST_ACTIVECHAR1ALM_ME_OBJECT_LIST_ACTIVE

Key field Non-key field



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

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

SELECT SINGLE *
FROM ALM_ME_C010PRF
INTO CORRESPONDING FIELDS OF WA_ALM_ME_C010PRF
WHERE...

How to access SAP table ALM_ME_C010PRF

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

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