Hi fellow developers.
What is the purpose of each field in ICDTXT_<include name> when preparing to call the function F<include name>_WRITE_DOCUMENT? For example, I have an IT called ICDTXT_ZCD_CONFIG_CV and this is how I am filling the fields:
UPD_ICDTXT_ZCD_CONFIG_CV = UPD_Z00_CONFIG_CV.
wa_log_info-teilobjid = 'Producto'.
wa_log_info-textart = ' '.
wa_log_info-textspr = sy-langu.
wa_log_info-updkz = UPD_Z00_CONFIG_CV.
append wa_log_info to ICDTXT_ZCD_CONFIG_CV.
I am not sure at all what to set in textart. And teilobjid is the table key as far as I know. But I want to be sure I am doing this correctly.
Thank you for your time.