AFRUHR SAP (Order Confirmations for HR) Table details

Dictionary Type: Table
Description: Order Confirmations for HR




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




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

AFRUHR is a standard SAP Table which is used to store Order Confirmations for HR data and is available within R/3 SAP systems depending on the version and release level.

The AFRUHR table consists of various fields, each holding specific information or linking keys about Order Confirmations for HR data available in SAP. These include RUECK (Completion confirmation number for the operation), RMZHL (Confirmation counter), BUDAT (Posting date), PERNR (Personnel Number).. 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: 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 AFRUHR 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
RUECKCompletion confirmation number for the operation PW_RUECKNUMC10CO_RUECKRCK
RMZHLConfirmation counter PW_RMZHLNUMC8CIM_COUNTRZL
BUDATPosting date PW_BUDATDATS8DATUM
PERNRPersonnel Number PERNR_DNUMC8PERNRPER
AUFNROrder Number PW_AUFNRCHAR12Assigned to domainALPHAAUFNRANR
STOKZIndicator: 'Confirmation Cancelled' PW_STOKZCHAR1FLAG
STZHLConfirmation counter of cancelled confirmation PW_STZHLNUMC8CIM_COUNT
UNAME1User who wrote record to interface PW_UNAME1CHAR12UNAME
DATUM1Date on which record was written to interface PW_DATUM1DATS8DATUM
UZEIT1Time at which record was written to interface PW_UZEIT1TIMS6UZEIT
PGMID1Write Record to Interface Report PW_PGMID1CHAR40PROGNAME
UNAME2Name of user who initially accessed record PW_UNAME2CHAR12UNAME
DATUM2Date on which record was initially accessed PW_DATUM2DATS8DATUM
UZEIT2Time at which record was initially accessed PW_UZEIT2TIMS6UZEIT
PGMID2Report used to access record initially PW_PGMID2CHAR40PROGNAME
STATU2Log status when record was first accessed PW_STATU2CHAR1PW_STATU
UNAME3Last user to access record PW_UNAME3CHAR12UNAME
DATUM3Date on which record was last accessed PW_DATUM3DATS8DATUM
UZEIT3Time at which record was last accessed PW_UZEIT3TIMS6UZEIT
PGMID3Last Used to Access Record Program PW_PGMID3CHAR40PROGNAME
STATU3Log status when record was last accessed PW_STATU3CHAR1PW_STATU
UNAME4User who first retrieved the record successfully PW_UNAME4CHAR12UNAME
DATUM4Date on which record was first retrieved successfully PW_DATUM4DATS8DATUM
UZEIT4Time at which record was first retrieved successfully PW_UZEIT4TIMS6UZEIT
PGMID4Report first used to retrieve record successfully PW_PGMID4CHAR40PROGNAME

Key field Non-key field



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

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

SELECT SINGLE *
FROM AFRUHR
INTO CORRESPONDING FIELDS OF WA_AFRUHR
WHERE...

How to access SAP table AFRUHR

Within an ECC or HANA version of SAP you can also view further information about AFRUHR 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!