The figure below shows the structure of the accounting entries in SAP S/4HANA. The familiar tables BKPF (journal entry header) and BSEG (journal entry line item) from the SAP ERP world continue to exist in the context of SAP S/4HANA. Table BSEG is still relevant for specific operational ...
7,294 SAP Managed Tags: ABAP Development Hello All, Would be glad if the difference b/w the Local currency, Group Currency and Transaction currency is explained and what are the technical field names for these from BSEG table ex. DMBTR, WRBTR, DMBE2 etc. Thanks, - PSKReply...
SAP Managed Tags: FIN Controlling Hello, All Accounting documents can be found in the BSEG table. Because this table contains a huge amount of data, several tables have been created only containing parts of the BSEG table e.g. BSIK, BSAK, BSID and BSAD. These tables are called secondary ...
In the typ_block, I think it is a types, But there is "it_rkwa LIKE rkwa OCCURS 1," I don't know how to understand it . TYPES: typ_tab_bkpf LIKE bkpf OCCURS 1, typ_tab_bseg LIKE bseg OCCURS 1, typ_tab_bset LIKE bset OCCURS 1, typ_tab_rkwa LIKE rkwa OCCURS 1, typ_ta...
So, during reporting design, you need to leverage the SAP provided pre-build CDS view combining universal journal data with other dimensions. And yes, for new reports best practice is to develop based on ACDOCA architecture rather than BSEG setup. I hope this provided you some new perspective ...
can anyone tell me what is meant by look up tables. regds hari SAP Managed Tags: ABAP Development Table lookups let you read individual records of any table to determine characteristic values. Here the source fields must make up the key of a specific table, from which the system can copy...
SAP Managed Tags: ABAP Development Hi WA_TAB-BUKRS = '10'. CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT' EXPORTING INPUT = WA_TAB-BUKRS IMPORTING OUTPUT = WA_TAB-BUKRS. SELECT SINGLE BELNR ZFBDT ZTERM ZLSCH VALUT FIPOS FROM BSEG INTO WA_BSEG WHERE BUKRS = WA_TAB-BUKRS. Here in wa_...