method IF_RSPLS_CR_METHODS~DERIVE. * Field Symbol declarations........................ FIELD-SYMBOLS: TYPE ANY, TYPE ANY. * Local data declarations............................ DATA: LW_OITCTLSTCHNG TYPE /BI0/OITCTLSTCHNG. * Concatenate Current Date and Time to form the TimeStamp.. CONCATENATE SY-DATUM SY-UZEIT INTO LW_OITCTLSTCHNG. * Check if the User field is available in the interface * Structure C_S_CHAS, if found pass the User Name to it. ASSIGN COMPONENT 'USERNAME' OF STRUCTURE C_S_CHAS TO . IF SY-SUBRC = 0. = SY-UNAME. ENDIF. " IF SY-SUBRC = 0. * Check if the TimeStamp field is available in the interface * Structure C_S_CHAS, if found pass the TimeStamp to it. ASSIGN COMPONENT 'TCTLSTCHNG' OF STRUCTURE C_S_CHAS TO . IF SY-SUBRC = 0. = LW_OITCTLSTCHNG. ENDIF. " IF SY-SUBRC = 0. endmethod.