Hello Glen,
Thanks, but I've done a where used list on the fm and find out all standard program using this fm + parameter forms and repid:
I found this program:
HRTM00_JOB_FAMILY_BASIC
Function Module:
HRTM_JF_IT5070_WRITE
CALL FUNCTION 'RH_UPDATE_INFTY'
EXPORTING
vtask = vtask
* ORDER_FLG = 'X'
* COMMIT_FLG = 'X'
authy = 'X'
* PPPAR_IMP =
* OLD_TABNR_NEW_LANGU = ' '
repid = l_repid
form = 'CB_FETCH_5070_TABLE_PART'
TABLES
innnn = lt_p5070
EXCEPTIONS
error_during_update = 1
no_authorization = 2
repid_form_initial = 3
corr_exit = 4
OTHERS = 5.
FORM cb_fetch_5070_table_part TABLES pt_pt5070 STRUCTURE pt5070
USING value(p_pnnnn) TYPE wplog
value(p_tabix) TYPE sytabix.
SET EXTENDED CHECK ON.
* clear header line because of
* - HR basis release didn't clear header line if the table is initial
* -> there could be 'produced' a value for empty table infotypes
* - extended syntax check
CLEAR: pt_pt5070.
* assign data
pt_pt5070[] = gt_pt5070.
ENDFORM.
But i dont understand what really need to be put in the form? do we have to put the hrt table or what exactly :/ would be glad to have more help..