cancel
Showing results for 
Search instead for 
Did you mean: 

ESS attendance/absecen category code display only

former_member213436
Participant
0 Kudos
174

Hello,

We need to displays only the attendance code only with no textual description when recording time.

When recording time for the employee through MSS (historically known as "ESS in MSS") using Java iview Approve Working Times in Business Package for Manager Self-Service (SAP ERP) 1.4. works OK we can see it displays the attendance code only with no texttual description.

But is not the same case when recording time directly from ESS using iwiew CATS regular/Record Working Time in Business Package for Employee Self-Service 1.41 is not OK beacise it shows code + textual description.

Is there a way in configuration or user-exit could change the ESS recording time displays the attendance code?

Thaniks in adavance.

Abel.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Abel,

The standard application displays only the description of the att/abs types. If you want to avoid modification to the standard code, you can choose to change the configuration of the attendance/absence types in the view T554S. Instead of maintaining the att/abs description text, you can maintain the code only. Check if this suits your requirements.

Regards,

Roy

former_member213436
Participant
0 Kudos

Thanks all for your contribution. I found the there are two different Java web dynpro applications.

former_member213436
Participant
0 Kudos

Problem solved with an implicit enhacement at the end of function modue HRXSS_CAT_WD_RECORD:

ENHANCEMENT 2 ZENH_HRXSS_CAT_WD_RECORD. "active version

field-SYMBOLS: <FS_ST_FIELDLIST_TIMESHEET> TYPE HRXSS_CAT_RFC_FIELDLIST_DATA,

<fs_f4_value> type hrxss_cat_rfc_f4_values.

CONSTANTS: c_tec_name_awart type string value 'AWART'.

read table ET_FIELDLIST_TIMESHEET ASSIGNING <FS_ST_FIELDLIST_TIMESHEET>

with key tec_name = c_tec_name_awart.

check sy-subrc = 0.

loop at <FS_ST_FIELDLIST_TIMESHEET>-f4_values ASSIGNING <fs_f4_value>.

clear <fs_f4_value>-text.

endloop.

ENDENHANCEMENT.

siddharthrajora
Product and Topic Expert
Product and Topic Expert
0 Kudos

Absences and attendances are displayed with Text as mentioned in

table T554S,

You need to do the modification here

Class CL_XSS_CAT_RFC_COMMAND_TOOLS is

responsible for building the F4 help for all the fields in the CATS

webdynpro application.

and check

CL_XSS_CAT_VALUE_HELP_GENERAL