‎2009 Nov 19 4:20 AM
Hi,
In Tcode VF01 when I put Doc. no and press Enter that time Billing Type should be displayed in the screen as per fetching data from table LIKP and Billing Type always displayed on top in listbox of T-Code VF01.
I m using USER EXIT V60A0001 -- EXIT_SAPLV60A_002
include zxv60au01.
below select statement i m usting:
select single vbeln fkarv
from likp
into (e_vbeln,e_fkarv)
where vbeln = xkomfk-vbeln.
and e_fkarv field i m getting biling type value every time as per VBELN ,
pls help me what procdure i will follow for above problem.
Thanx in advance,
Tarun
‎2009 Nov 19 10:01 AM
Hi,
Can u try the below code.
DATA : E_VBELN TYPE LIKP-VBELN,
E_FKARV TYPE LIKP-FKARV.
SELECT SINGLE VBELN FKARV
FROM LIKP
INTO (E_VBELN,E_FKARV)
WHERE VBELN = XKOMFK-VBELN.
XKOMFK-FKART = E_FKARV.
MODIFY XKOMFK[] FROM XKOMFK INDEX 1.
With Regards,
Sumodh.P
‎2009 Nov 19 10:26 AM
Hi Dear,
When i am using above code then XKOMFK-FKART = E_FKARV
value get clear in Dialog Program SAPMV60A inside the loop
loop with control tctrl_erf_fakt.
module xkomfk_lesen.
module feldauswahl.
endloop.
Regards
Tarun
‎2009 Nov 19 10:30 AM
did u modify that?
if u dint modify please do that .
other wise
can u tell me the exact place where its getting cleared?
‎2009 Nov 19 10:49 AM
Hi
In PBO , within the loop its getting clear. I think above use exit will not work. if any other option then tell me.
regards,
tarun
‎2009 Nov 19 10:53 AM