on 2011 Dec 12 7:15 PM
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.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
96 | |
9 | |
8 | |
8 | |
5 | |
4 | |
3 | |
3 | |
3 | |
2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.