‎2008 Jul 22 4:58 PM
Hi,
Is there any MATCHCODE for the following fields.
1.Document Type (BLART)
2. G/L Account(HKONT)
3.Cost Center(KOSTL)
Pls help me.
Thanks.
‎2008 Jul 22 5:01 PM
Dont Duplicate the Threads.
Please check the search helps.
BLART->SHLP_ISCD_BLART
HKONT->FKK_HKONT
KOSTL->TRAC_KOSTL
‎2008 Jul 22 5:05 PM
also you can make your own matchcode....check this.
AT SELECTION-SCREEN.
IF p_kostlv IS INITIAL AND
p_kostl IS INITIAL AND
p_plans IS INITIAL.
MESSAGE e001(00) WITH 'Debe ingresar al menos un valor'.
ENDIF.
AT SELECTION-SCREEN ON value-request for p_plans-low.
SELECT *
INTO CORRESPONDING FIELDS OF TABLE t_match
FROM pa0001
where plans between '50000000' and '59999999'.
LOOP AT t_match.
SELECT SINGLE plstx
INTO t_match-plstx
FROM t528t
WHERE plans EQ t_match-plans
AND sprsl EQ 'S'.
MODIFY t_match.
ENDLOOP.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'pernr'
dynprofield = 'p_pernr'
dynpprog = sy-repid
dynpnr = sy-dynnr
value_org = 'S'
TABLES
value_tab = t_match.
‎2008 Jul 22 5:02 PM
‎2008 Jul 22 5:06 PM
‎2008 Jul 22 5:09 PM
Hi,
Then reply to the original thread, don't just post a new one.
Just out of curiosity, why are you wanting to use a matchcode rather than a search help?
Regards,
Nick
‎2008 Jul 22 5:11 PM
Hi,
When I am giving these match code. My screen lay out is not taking these values.
‎2008 Jul 22 5:24 PM