2007 Dec 27 6:47 AM
Hi,
I have a standard routine for 0REQUESTER (Requester).
In transfer rules its values been populated like this.
-
INCLUDE rsbctbbp_transfer_r3.
TABLES: srm_proj_contr.
DATA: l_s_errorlog TYPE rssm_s_errorlog_int,
l_text TYPE string.
data: l_rc type i.
perform bbp_get_requester using TRAN_STRUCTURE-afnam
RECORD_NO
g_s_minfo
changing RESULT
g_t_errorlog
l_rc.
returncode <> 0 means skip this record
RETURNCODE = l_rc.
abort <> 0 means skip whole data package !!!
ABORT = 0.
DATA:
L_S_SELECTION LIKE LINE OF C_T_SELECTION.
An empty selection means all values
CLEAR C_T_SELECTION.
L_S_SELECTION-FIELDNM = 'AFNAM'.
...
Selection of all values may be not exact
E_EXACT = RS_C_FALSE.
-
when i load the data i get a warning messege as followed and zero records added
Record 1 :No value found for attribute 0REQESTER for InfoObject 0USERNAME =
when i checked PSA...for few records 0REQESTER values are not there may be becoz of this it is throwing the warning messege. if this is the reason for adding zero records...please let me know how will i handle this situation in my code.
Thanks & Regards,
Vijaya
2010 Dec 21 8:50 AM