‎2006 Oct 30 12:13 PM
Hi all,
There is a function module '<b>HELP_VALUES_GET_NO_DD_NAME'</b> to display possible values for a database field. This FM is getting obsolete in near future.
Does anyone know any replacement provided by SAP for this FM?
‎2006 Oct 30 12:19 PM
Hi
You can check with this Function Module F4IF_INT_TABLE_VALUE_REQUEST
Regards
Haritha
‎2006 Oct 30 12:19 PM
Hi
You can check with this Function Module F4IF_INT_TABLE_VALUE_REQUEST
Regards
Haritha
‎2006 Oct 30 12:19 PM
Hi,
<b>replaced with the FM F4IF_INT_TABLE_VALUE_REQUEST.</b>
check this thread
sample code.
tables: mara, makt.
data: begin of itab occurs 0,
matnr like mara-matnr,
end of itab.
data : begin of btab occurs 0,
maktx like makt-maktx,
end of btab.
data mak like makt-maktx.
DATA : return like ddshretval occurs 0 with header line.
data: begin of dynpfields occurs 0.
include structure dynpread.
data: end of dynpfields.
parameters: p_matnr like mara-matnr,
p_maktx like makt-maktx.
Initialization.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_matnr.
REFRESH ITAB.
SELECT matnr FROM mara INTO TABLE ITAB.
call function 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'MATNR '
dynprofield = 'P_MATNR '
dynpprog = sy-REPID
dynpnr = sy-dynnr
value_org = 'S'
TABLES
value_tab = ITAB
return_tab = return.
p_matnr = return-fieldval.
rgds
anver
<i>if hlped pls mark points</i>
Message was edited by: Anversha s
‎2006 Oct 30 12:21 PM
Hi Amogh,
If you can check the documentation of the FM 'HELP_VALUES_GET_NO_DD_NAME' , it is clearly mentioned that it is obsolete and use F4IF_INT_TABLE_VALUE_REQUEST