hi.......
to populate the values into the table in smartforms...............I am using the below code.............but I am getting the error as T_FUND is unknown.........How can I solve this.......?
data: begin of t_fund,
partner like gmgr-partner,
grant_nbr like gmgr-grant_nbr,
grant_currency like gmgr-grant_currency,
end of t_fund.
DATA: it_fund TYPE TABLE OF t_fund.
data: wa_fund type t_fund.
Select grant_nbr grant_currency partner into table it_fund
From gmgr
where wbs_element = wa_proj-pspid.