BTE can add additional custom functionality to the FI area.
Useful link - http://wiki.sdn.sap.com/wiki/display/ABAP/BTE+-+Business+Transaction+Event
More info can found in transaction SPRO. Use menu path below.
Financial Accounting (New) -> Financial Accounting Global Settings (New) -> Tools -> Customer Enhancement. Select Documentation on Business Transaction Events.
August 12, 2012
August 8, 2012
How to use Database Indexes in ABAP
In SE11, use menu path Goto->Indexes. Then select the relevant index and get the "DB index name".
Use the select statement as below.
Use the select statement as below.
SELECT docnum sndprn docnum AS docnum1
INTO CORRESPONDING FIELDS OF TABLE i_edidc
FROM edidc
WHERE mestyp = 'REMADV' AND
status = '53'
AND
credat IN s_credat AND
docnum IN s_docnum
%_hints oracle 'INDEX("EDIDC" "EDIDC~4")'.
August 7, 2012
AT Functions in Internal Table Work Area
AT END OF char_code will compare the all the values of the fields before char_code including field char_code. See image below.
Subscribe to:
Comments (Atom)