Interview Questions
Interview Questions
However, this was not the same way in SAP’s ECC model. In ECC, the
system stores SAP General Ledger (G/L), customer and vendor
balances and open items in various database tables to support reporting.
All the fields from sub-modules of S/4HANA Finance are available in the
table ACDOCA. These Sub-modules are:
Controlling (CO)
Asset Accounting (FI-AA)
Material Ledger (ML) in S/4HANA
Profitability Analysis (CO-PA) and more.
ACDOCA c
\ontains all fields (360+)
Table ACDOCA contains all fields (360+) required for G/L, CO, FI-
AA, ML, and CO-PA
Table ACDOCA has fields from CO, ML, and FI-AA that aren’t in
table BSEG.
SAP S/4 HANA Finance has two major functionality impacts on General
Ledger Accounting.
1. Open Item reports have been removed from SAP S/4 HANA due to
introduction of Universal Journal .
BSIS
BSAS
GLT0
BSID
BSAD
KNC1
KNC3
BSIK
BSAK
LFC1
LFC3
FAGLFLEXT
FAGLFLEXA
S/4HANA features
S/4HANA was designed to make ERP more modern, faster and easier to use
through a simplified data model, lean architecture and a new user experience
built on the tile-based SAP Fiori UX. S/4HANA includes or is integrated with a
number of advanced technologies, including AI, machine learning, IoT and
advanced analytics. The SAP HANA in-memory database architecture and the
integration of advanced technologies allow S/4HANA to help solve complex
problems in real time and analyze more information faster than previous SAP
ERP products.
Q3. What are the major differences between S4HANA and ECC ?
Q4 With Holding Tax Configuration ?
[A] CONFIGURATIONS:
All the configurations for the Withholding Tax is done in the following Tab
only:
Define Business Places: Business Place is to be created for each
Tax Deduction Account Number (TAN) that company has.
Define Section Codes: In India for each Business Place a
Section Code is created and mapping is done on one to one basis. In Section
code information about Local Tax office as well as District Tax office can be
made.
The flow for the configuration is such that firstly the Withholding Tax Key (e.g.
194C) is to be created then under that Withholding Tax type is created one at
the time of invoice and other at the time of payment and then based on the
different rates prevailing in the Income tax Act, different Tax Codes are to be
created (e.g. for 194C, 2 different rates are there in the Act, one is 1% TDS on
the contract basis and second is 2% TDS on the sub-contract basis)
Withholding Tax can be deducted at two point of time; it can be either at the
time of invoice or at the time of payment. So for this Withholding tax types are
to be created one for invoice and second for payment.
Define Number Ranges for the Challans create: Here this is important on
the basis that the client requires that he want details about the combination of
Section Code and the Withholding Tax Key basis, so then different number
range can be assigned and so he will be able to know the TDS Challans that are
generated for each area.
Maintain Number Groups: Here a Number Group is assigned to the
combination of Company Code, Section Code and Withholding Tax Key. From
below we can see that Number Group ‘01’ is assigned to the combination of
AP01 and all the Tax Types.
Assign Number Ranges to Number Groups: In this step of configuration,
the number Group created above is assigned to an Internal Number Range for
the challans.
Here we Edit Groups by clicking on Groups button for defining number ranges
specific to Number groups.
For example, if we want to maintain the number range for number group 01,
then we have to select the number group 01 and then insert the number range
for the same.
Here we can add or delete the number ranges for particular fiscal years.
TDS JV Configuration:
For passing the TDS JV for the rectification amount, we need to define the
Document Type and the GL account for JV Losses. Following are the
configuration nodes for the same.
PART 1
A : 1.1 Introduction
Note to payee is a part of a data medium that contains additional
information about payments, which might be relevant for payee or is
required legally. As a rule, note to payee is transferred in fields of data
medium, which from bank’s perspective are freely definable. That means
that if there are no explicit legal or technical bank platform requirements,
you can fill it with whatever information you want. Typical usage cases:
To provide list of vendor invoice numbers, which are being paid (e.g.
CITI Direct);
To provide information on payment purpose and VAT amount paid
(e.g. typical business practice in Ukraine, Russia);
To provide specific legally required details (e.g. typically budget-
related payments require additional details).
Select your PMW and navigate to tab “Text Fields for Reference
Information”:
Add an entry with note to payee type 1, indicate the length of the field and
number of fields. Length of note to payee field usually depends on the
requirements of your bank. Number of fields depends on the approach to
payments:
if you pay each document separately, it would be enough to set up
this value to 1 (i.e. one note to payee for each payment document);
if you use grouped payments (i.e. one payment for many vendor
invoices), number of fields should be high enough to allow creation
and storing of note to payee details for each paid invoice.
function zdmee_build_note_to_payee.
*"--------------------------------------------------------------------
*"*"Local Interface:
*" IMPORTING
*" VALUE(I_FPAYH) LIKE FPAYH STRUCTURE FPAYH
*" VALUE(I_FPAYHX) LIKE FPAYHX STRUCTURE FPAYHX
*" TABLES
*" T_FPAYP STRUCTURE FPAYP
*" T_PAYMENT_DETAILS STRUCTURE FPM_PAYD
*" CHANGING
*" REFERENCE(C_XAVIS_REQ)
*"--------------------------------------------------------------------
data:
ls_note type fpm_payd,
lv_note type string.
ls_note-type = 1.
ls_note-line = 1.
ls_note-text = lc_inv.
ls_note-length = strlen( ls_note-text ).
endloop.
endfunction.
function zdmee_note_to_payee.
*"--------------------------------------------------------------------
*"*"Local Interface:
*" IMPORTING
*" VALUE(I_TREE_TYPE) TYPE DMEE_TREETYPE_ABA
*" VALUE(I_TREE_ID) TYPE DMEE_TREEID_ABA
*" VALUE(I_ITEM)
*" VALUE(I_PARAM)
*" VALUE(I_UPARAM)
*" REFERENCE(I_EXTENSION) TYPE DMEE_EXIT_INTERFACE_ABA
*" EXPORTING
*" REFERENCE(O_VALUE)
*" REFERENCE(C_VALUE)
*" REFERENCE(N_VALUE)
*" REFERENCE(P_VALUE)
*" TABLES
*" I_TAB
*"--------------------------------------------------------------------
data:
result(160) type c,
linetab type standard table of text_fpm with header line.
field-symbols:
<fs> type dmee_tab_type_aba.
endfunction.
This example might be rather simple, but I hope it provides enough details
to understand where to start if you would like to implement more
complicated logic for note to payee.
PART 2
1.1. Introduction
As mentioned above, there are two approaches to create note to payee in SAP –
via customizing or using custom FM. Some of the settings are the same
regardless the approach e.g. you should define technical requisites of note to
payee in t-code OBPM1, create definition of note to payee in OBPM2, assign it
to payment method in FBZP, build DMEE-tree etc. Most of these basic settings
are described in my previous post. This blog will cover two areas which differ –
definition of note to payee and customizing of DMEE-tree.
1.2. Create note to payee
Launch t-code OBPM2 and create note to payee by indicating its name and
description. Activate checkbox “Note to payee layout using customizing” as a
controlling option.
Save the entry and navigate to “Default Note to Payee” tab to define the
structure of note to payee information.
Indicate note to payee type 1 and number of line item. The type of note to payee
in OBPM2 should be the same as defined in technical attributes in t-code
OBPM1. Indicate the reference to the variables which will be used to generate
note to payee text. Note to payee can include:
– references to system variables (e.g. FPAYP-XBLNR);
– fixed text constants (e.g. “Invoice #:” etc.);
– controlling parameters (e.g. X, Z, R, S etc.) to impact the formatting of the
values.
System variables include fields from the same structures FPAYP, FPAYH,
FPAYHX that are used in DMEE as mapping options. To get an overview of all
values, select the field “Note to payee text” and press F4 to retrieve search help:
As you can see, search help is divided into two parts – each of them is
referencing the same structures, but the first one contains primarily business
information (name of the vendor, invoice number etc.), whereas the second one
contains fields of technical nature (sorting / grouping fields, sequential payment
number etc.). Select the field you need (1) and press “Copy” (2) button to insert
it into note to payee definition.
If note to payee is to be used for payments to vendors from several countries,
you can define language-dependent note-to-payee. Technically speaking,
configuration is the same, but you can translate fixed text elements into
different languages (see example below).
Selection of note to payee depends on the language of payee (i.e. payment
recipient). Note to payee maintained in language of payee has higher priority
over default note to payee.
SAPscript formatting options can be used to format output of values for
example:
Configuration of DMEE tree for note to payee involves creation of quite many
technical nodes. To begin with create a composite node to group together 10
technical nodes which will store 10 references to vendor invoice number. The
length of each node should 16 characters i.e. the same as for field BKPF-
XBLNR, which stores vendor invoice number in accounting document.
These technical nodes will not be displayed in payment file but will be used as a
source of data by other fields in DMEE tree. Each node contains reference ID
(INV_X) which will be used by other nodes.
Each technical node uses structure field DMEE_PAYD-TEXT as a mapping
option. Key field 1 in the settings of source field indicates type of note to payee.
10 consecutive references to the structure DMEE_PAYD ensure that the system
will retrieve first 10 values from table DFPAYHT.
Note to payee is split into four parts i.e. segments due to layout requirements
from the bank. The length of each segment is 35 characters. Thus, each segment
can contain 2 maximal 3 references to vendor invoice number. Each segment
uses own mapping as a mapping procedure which basically concatenates the
values of all child atoms into value without spaces.
First segment contains atom “note_beginning” that contains constant value
“Inv.:” that will be displayed once at the beginning of note to payee.
Each atom with name “line_x” will contain a reference to vendor invoice
number. Mapping option “Reference to tree node” will be used to get values
from technical nodes at the beginning of DMEE-tree (i.e. atom line_x will use
Reference Node ID INV_X).
Each “delimiter” atom has a constant value “,”. To make sure that comma is not displayed
unnecessary condition is set up for each delimiter. The condition checks whether a next line
with vendor invoice number is not empty. Delimiter will be displayed only if next line is not
empty.
That’s basically all you need to configure to generate note to payee in necessary
format. The only advantage of this approach (at least for this requirement) is
that you can do without any development efforts at all. Disadvantages are
obvious: you’re limited to display of X invoice numbers only and you must do a
lot of technical setup, which is not straightforward and might be difficult to
support. Development approach i.e. via custom FM would be much more
efficient and easier at least in my humble opinion?.
Hope this post was useful and you found something of value. Please comment
and let me know if you have any questions or suggestions. Please also check out
other posts on this and related topics.
(2) Reversing MIGO and repost MIGO with the correct price – Reverse the MIGO
entry, make changes in the PO (Purchase Order), then once again do the MIGO and
MIRO transactions.
Scenario 2 – SAP FICO General Ledger
The user is not getting the drop-down list of G/L accounts that he
defined through FS00 while posting through transaction code
FB50/F-02.
Solution
While entering a transaction, the user usually presses F4 to select a G/L account
from the chart of account (COA). The SAP R/3 system displays all available
accounts that you created for the desired company code and COA in question. If the
user is not getting the G/L account in the dropdown list. Try one of the following
Check if the G/L accounts have been created in the company code you are posting.
Make sure you have selected the correct company code in T-code FB50
The drop-down has a personal list and a global list. If you are on the personal list,
switch to the global list.
Go to the clearing G/L Account process Open Item screen using T Code-F-03
from the menu bar.
Select Settings and change Line Layout.
Then, select the line layout a name and description and press enter.
Choose the insert after button to view the available fields
Select the required field by double-clicking on the field. The required field is
automatically listed under your own layout.
Repeat the process for each field required to create your layout and save.
Go back to the clearing G/L Account Process Open Item screen and select
the Editing option button under the line layout variant for the G/L account
clearing transaction.
Give your variant name and save.
The SAP system will pull all open items based on the selection criteria. The standard
SAP system comes with very limited selection criteria. However, you can include a
new selection field and change the sequence of the selection criteria. To add a new
selection field or change the election criteria sequence you have to configure the
SAP system through transaction code O7F1.
Create a new account and set the options according to your requirements. Be sure
to set the line item display indicator ( SKB1-XKRES)
Transfer the line items from the old account to the new account. You can only do this
for accounts that you cannot automatically post to. As an alternative, you can
transfer the balance completely. Don’t forget to lock the old account for postings.
Consulting Solution
Manipulate all documents that you posted in the past. You can use the correction
program RFSEPA01.
While creating the G/L account, you should take the utmost care with the open item
management and line item management attributes of the G/L account.
SAP recommends the first solution because only standard means are used. The
second solution requires the usage of a correction report and is, therefore, a
consulting solution.
Solution Two:-
Solution Two:-
Solution Two:-
Solution Two:-
I suggest you not only learn, but also practice these scenarios in the system to check
the whole process of resolving such problems. This is also required for growing into
the next phase of your SAP career i.e. SAP S/4HANA Finance. For upgrading into
the new technology you should be expert in the current position which needs
knowledge of every aspect of Financial Accounting. Here these kinds of scenarios
A lot of people like you are looking for these kinds of common errors in SAP FICO.
Thus, I have collated the 10 most common errors with their error codes and solutions
that come while configuration. Additionally, these are very frequently
asked questions in SAP FICO interviews. Thus, you should pay good attention to
these errors.
This issue can be fixed by going to depreciation area configuration for the chart of
depreciation and changing the value allowed to “All Values Allowed”. However,
before you change the configuration, ensure that you truly want to allow negative net
book value. Otherwise, go back and check your transaction.
You get a Profit Center balancing error if you do not maintain the necessary account
determination in Configuration. To fix the error look for the depreciation area with the
issue and check if the account determination Cost objects have been maintained in
ACSET. Maintain the values and issues that should be fixed.
To resolve the issue, you have everything in the Error message except the G/L
account that needs to be assigned to the Tax code. Go to Tcode OB40 => Provide
Chart of Account (ZZZZ) => Transaction (XXX) => and assign G/L to the tax code
(YY).
Since you won’t be able to post a single cross-company code posting. Thus you
would need to post 2 entries, one in each company code separately. At a later stage,
check if you want to bring both company codes to extended withholding tax.
If the currency pair is not maintained, maintain the pair for XXX/YYY and YYY/XXX
(for example USD/CAD and CAD/USD).
I hope this article would have helped you in understanding some popular scenarios
in SAP FICO.
Step-1 Create account symbols for the main bank and incoming cheque account
Step-2 Assign accounts to account symbols
Step-3 Create keys for posting rules
Step-4 Define posting rules
Step-5 Create Business transaction and assign posting rule
Step-6 Define variant for cheque deposit
Step-1 Create account symbols for the main bank and the sub-accounts
Step-2 Assign accounts to account symbols
Step-3 Create keys for posting rules
Step-4 Define Posting Rules
Step-5 Create Business Transaction and assign posting rule
Step-6 Define variant for Manual Bank statement
Step-1 Create account symbols for the main bank and the sub-accounts
Step-2 Assign accounts to account symbols
Step-3 Create keys for posting rules
Step-4 Define Posting Rules
Step-5 Create transaction type
Step-6 Assign external transaction type to posting rules
Step-7 Assign Bank accounts to Transaction types
Q7. – Explain the importance of Asset classes. What asset classes are
there?
Ans. – The asset class is the main criterion to classify assets. We must assign every
asset to only one asset class. Examples of asset classes are plant & Machinery,
Furniture & fixtures, Computers, etc. The asset class also contains the GL
accounts which are debited when any asset is procured. It also contains the GL
accounts for depreciation calculation, scrapping, etc.
Whenever you create an asset master you need to maintain the asset class for
which you are creating the required asset. In this manner whenever any asset
transaction happens, the GL accounts attached to the asset class are automatically
picked up and entry is passed.
You can also specify certain control parameters and default values for depreciation
calculation and other master data in each asset class.
Q9. – What steps you should take to ensure that integration into the
general ledger for the depreciation posting run works?
Ans. – To ensure the integration into the GL for depreciation posting, specify the
following for each depreciation area and company code:
If you fail to process the batch input session, an error message will appear at the
next posting run. The depreciation calculation is a month-end process, run in
batches. Then, once the batch input runs, the system posts the accounting entries
into SAP Finance.
Take care, not to confuse the fiscal year change program with year-end closing for
accounting purposes. You need this fiscal year change only in Asset Accounting for
various technical reasons.
Q13. – How are Capital WIP and Assets accounted for SAP?
Ans. – Capital WIP is referred to as Asset Under Construction in SAP and is
represented by a specific Asset Class. Usually, we don’t change depreciation on
Capital WIP. We can book all costs incurred in building a capital asset to an Internal
Order. Through the settlement, you can post the procedure onto an Asset under
Construction. Subsequently, on the actual readiness of the asset for
commercial production, the Asset Under construction gets capitalized to an actual
asset.
This helps in preserving the sanctity of those accounts and prevents from having any
difference between FI-MM & FI-SD.
Thus first it will access and look for the combination of customer accounts
assignment group/Material account assignment group/Account key. if it does not find
an account for the first combination it will look for the customer account assignment
group and account key combination.
Further, if it does not find accounts for the first 2 criteria then it will look for the
Material account assignment group/key. If it does not find accounts for all earlier
criteria then finally it will look for the Account key and assign GL code.
For each of these options, you can define a GL account. Thus the system uses this
GL account to automatically pass the entries.
Valuation also involves price control. Each material is assigned to a material type in
Material Management and every material is evaluated either in moving average price
or Standard price in SAP. There are two types of price control available.
We can group different materials with similar properties by valuations class. Eg Raw
material, Finished Goods, semi-finished.
All materials with the same material type are assigned to just one valuation class.
Different materials with the same material type can be assigned to different valuation
classes.
Materials with different material types are assigned to a single valuation class.
If a material has no material code in SAP, we can still, default the G/L account with
the help of material groups. We can assign the valuation class to a material group
and then in FI-automatic postings, we can assign the relevant G/L account in the
Transaction event key. The assignment of a valuation class to a material group
enables the system to determine different G/L accounts for the individual material
group.
SAP FICO TCodes – What they do?
SAP FICO Tcodes helps in the fast execution of programs in the Financial
Accounting application of the SAP system. By using these Tcodes, you can easily
avoid multiple steps of work which would otherwise be done by navigating through
the menu system. Which obviously be a time-consuming process.
To understand this more clearly, let us first know what are Tcodes in SAP.
It is very helpful while working in the system. This one is the preferred method of
using the SAP application because navigating the menu path is time-consuming and
the user needs to remember where to look in the navigation menu path.
SAP Easy Access => Accounting => Financial Accounting => General
Ledger=> Master Record => GL Accounts => Centrally
Method Two – Simply use Transaction Code- FS00
This means, if you use Tcodes, you shorten your work and save your time. It is
equally important to Byheart the frequently used (key) Tcodes, that would even help
you more as you don’t need to see the codes again and again.
(It is somehow like using short-cut keys on a keyboard instead of using a mouse, to
save your time and effort).
If you are working or practising SAP Financial Accounting, you should definitely
know the important Tcodes in SAP FICO. Here a list of them with their basic use.
If you are an SAP consultant or working towards getting into the SAP sector, you
must learn them. Further, if you can by-heart the key Tcodes in SAP FICO, it would
be an added advantage.
Company Code – The company code is the central organizational unit of external accounting within
OX02
Create, Check, Delete the SAP System.
Business Areas are used to differentiate transactions that come from different lines
OX03 Create Business Area
of business in a company.
Create Credit Control The organizational unit represents the area where customer credit is awarded and
OB45
Area monitored. This can be either be a single or for several company codes.
In SAP the fiscal year is assigned as a variant. Posting periods can further be defined
Maintain Fiscal Year
OB29 in each fiscal year variant. SAP allows a maximum of 16 posting periods in each
Variant
fiscal year.
Assign Co. Code to As Fiscal Year Variant created at a client level, it is required to assign to company
OB37
Fiscal Year Variant code.
Creation of Chart of Chart of Account is the list of General Ledger Account Master. Chart of Accounts is
OB13
Account (CoA) defined at the client level and assigned to each company code.
SAP FICO Fields it is Used
Description of the Fields
TCodes For
Transport Chart of
OBY9
Account
Copy GL Accounts
OBY2 from the Chart to Co.
Code
Retained Earnings account defines to be used for posting the expenditure and
Define Retained
OB53 income of the year. It is used to carry forward the balance from the current fiscal
Earnings
year to the next fiscal year.
Maintain Financial
OB58
Statement Versions
Field status variant is used to define the fields which are used for input like a cost
Maintain Field Status centre, profit centre, plant etc which are entry fields and hidden fields. Field status
OBC4
Variant Variant is a tool that is provided by SAP to assign the same set of properties to more
than one object.
SAP Finance posting period variant is used to maintain accounting periods that are
Define Posting Period open for posting and all closed periods are balanced. This is used for the opening
OBBO
Variant and closing period in the fiscal year for posting purposes. As it is created client level
it is required to assign to company code.
OB17 Define Document Document Type in SAP is defined to distinguish business transactions. For example,
Type & Number transactions like customer payment and vendor credit memos are distinguished
SAP FICO Fields it is Used
Description of the Fields
TCodes For
The posting key in SAP is a two digits numerical key that determines the type of
OB41 Maintain Posting Keys transaction entered in a line item. Posting keys in SAP controls the entries in a line
item of document entries.
SAP Tolerance Groups define posting authorizations of users in SAP. These postings
Create Tolerance
OBA4 permissions define the amounts that certain groups of accounting users are allowed
Groups
to post.
Automatic Posting
OBL1
Documentation
Automatic Account
FBKP
Assignment
Configuration transaction OBYC creates the core of SAP integration between the
MM Automatic
OBYC MM, FI and Controlling modules in a traditional SAP. Transaction keys are used to
Account Assignment
determine general ledger accounts used by the system.
Enter Global
OBY6
Parameters
With the transactional app Manage G/L Account Master data, you can display
Creation of GL Master
FS00 create and edit the master data of G/L accounts. You can also easily add new G/L
Records
accounts from scratch or based on existing accounts.
Transactions
Display of GL After posting any transaction, the system will generate an accounting document. So,
FB03
Document to view that accounting document we can use this SAP FICO TCode FB03.
Display of GL
FS10N To get the GL total balance.
Accounts
Define Interest
OB46
Calculation Types
For creating a vendor master record, we have to specify an account group. Via
Vendor account group we determine the interval for the account numbers, whether
Define Vendor
OBD3 the number assigned internally by the system or externally by the user. Whether
Account Group
one-time account. Which fields are ready for input or must fill when creating and
changing master records.
Creation of Vendor By using this SAP FICO TCode, we can create a vendor Master and update, General
XK01
Master information, accounting information and Purchasing information.
Purchase Invoice How to post one vendor invoice only from an accounting point of view. However, it
F-43
Posting excludes logistic vendor invoice posting.
Display Vendor
FK10N A particular vendor total account balance.
Account
F112 Define House Bank To create one House Bank in SAP ERP.
Maintain Terms of To calculate the discount on Customer/vendor we need to assign payment term on
OBB8
Payment (ToP) master record or document.
SAP FICO Fields it is Used
Description of the Fields
TCodes For
Customer Tolerance Tolerance Groups contain the details that control the way the system processes the
OBA3
Groups cash discount and payment difference.
Creation of Customer By using this TCode in SAP FICO, we can create a customer Master and update
XD01
Master General information, accounting information and Sales information.
Display Customer
FD10N A particular customer total account balance.
Account
Incoming Payment
F-28 To process collection from the customer.
Posting
An organizational unit that you use to process the dunning program. For example,
OB61 Define Dunning Area
By Division, sales Organisation etc.
Define Depreciation The depreciation area is used to calculate different values in parallel for each fixed
OADB
Area asset for different purposes.
Assign Chart of
OAOB Depreciation to Co.
Code
OAOA Define Asset Class Asset classes are used to classify the fixed assets in asset accounting according to
SAP FICO Fields it is Used
Description of the Fields
TCodes For
the asset types. Also, these are defined at the SAP client level and contain key
control parameters.
Assignment of
AO90
Account in Asset Class
Determination of
OAY2 Depreciation Area in
Asset Class
Creation of Asset
AS01
Master
Asset Purchase
F-90
Posting
1. Easy Access.
2. IMG
Login in SAP => Easy Access => SAP menu => Accounting =>Financial
Accounting=> (Subsequent Sub-module)
Then open the respective sub-module to see its Tcodes. The example below is for
Entering G/L Accounting Document which is found in:-
Financial Accounting => General Entry => Document Entry => FB50
In the below example, you can see the Tcode for Field Status Variant (OBC4):-
Financial Accounting => Financial Accounting Global Settings => Ledgers =>
Fields => Define Field Status variant (OBC4)
EndNote
Tcodes are user-friendly tools that help in saving time and effort. Thus, I advise you
also to learn and practice the common Tcodes in SAP FICO so as to get comfortable
with their use and to be efficient on them.
What is Asset Capitalization Process in SAP?
Asset Capitalization Process in SAP is the way to record an asset in the fixed asset
register in SAP S/4 HANA. We can capitalize on an asset externally and internally.
With the External method, we-purchase assets from the vendor. While, with the
internal method, we capitalize expenditures as an asset.
Types of Asset Capitalization Process in SAP
We have several Asset capitalization processes in SAP. The method chosen will
depend on some factors, not least the complexity of the organization.
Most of the processes after capitalisation such as depreciation or retirement are not
affected by the method of capitalisation used. Unless you have used the post-
capitalisation process.
This is because it’s already in use. Even though we have not received the vendor
invoice yet. Or the costs have been posted elsewhere and needed to be transferred
back to the asset.
Before New Asset Accounting, only the leading ledger was updated in real-time. You
needed to run Transaction ASKB (APC Value Posting) at the period-end to post to
the other ledgers. However, with SAP S/4 HANA you no longer require this step as
the system updates all the ledgers at the time of transaction.
If after you have capitalized the asset, the invoice arrives with a slightly different
value. You may need to make a second adjustment posting.
This process may suites to companies that don’t have a formal PO process in place
for Asset Accounting. And they want to record the costs against the asset at the time
of posting the invoice.
When making a posting to a vendor, you must post to all ledgers at the same time.
So in SAP S/4 HANA, a technical clearing account allows you to split out the
postings and post independently to each ledger for the asset.
This allows you to post differently to each accounting principle. To maintain integrity,
the system doesn’t allow you to post the technical clearing account manually.
Debit Asset
IFRS
Credit Technical Clearing Account
Ledger Group Vendor Invoice Posting Asset Posting
Debit Asset
GAAP
Credit Technical Clearing Account
This is not the most user-friendly process. Because in both cases you have to
manually enter posting keys and transaction types. Regardless of whether you are
using SAP FIORI or not.
The normal vendor invoice Transaction FB60 is an FI only transaction. It does not
allow you to enter an asset.
But technically you can still use any transaction you are more familiar with. These
are the transactions that allow you to enter a vendor, posting keys and an asset
transaction type.
The asset or AUC master is created first. Then while entering the PR or the PO
using account assignment category A-Asset, You need to enter the asset number in t
he Asset Field in item details.
Sometimes, the invoice has a slightly different amount from the original PO.
Therefore the GR amount is different from the invoice. In that case, the system will
automatically make an adjustment posting of the difference to the asset when the
invoice is posted.
As per the following diagram, you choose a non-valuated GR setting in the PO.
Here, no value is posted at the point of GR. This also means that the asset will only
be capitalized at invoice receipt.
5. Without Purchase Order Processing
You can create one or more AuC and the related settlement rules automatically at
the time of releasing the order or WBS elements. Although you can choose to create
them manually as well.
You can post directly to the order or WBS elements by journaling costs there from
another account. This is a non-integrated posting as there is no vendor involved.
You can also post a vendor invoice directly to an investment measure such as a
WBS element or investment. This is an integrated posting. So, you can use the
technical clearing account to allow separate documents for the asset postings to the
different ledgers.
In both cases, you can’t use the availability control to prevent costs from going over
budget. This is because the system updates the investment order or WBS element
only after incurring the costs.
Periodically, the system settles the costs first to the AUC and then to the asset when
its brought into use. Technically you can also settle directly from an investment order
or WBS element. But if you want to settle directly for the asset anyway.
As and when the cost is incurred, we need to record the cost with the cost object.
For e.g. Internal Order/WBS element. We need to capitalize that expenditure on
assets under construction.
In SAP S4 HANA, when you settle on the final asset, you can create a different
settlement rule for each ledger group. Line item distribution rule (Transaction AIAB,
Distribute ) is where you select the items that you want to settle. This is because you
may have collected several different costs for many assets.
Which is the Best Asset Capitalization Process in
SAP?
Well, it depends on the circumstances. As mentioned above the types of Asset
capitalization process in SAP. These are the scenarios based on which we decide
the right process to capitalize the assets.
Hence these questions would give you the best answers for those questions that
usually interviewers ask in SAP FICO interviews.
SAP FICO interview questions is a highly searched term for those who want to get
their desirable SAP FICO job. By seeing these SAP FICO interview questions and
answers, you get a basic idea of what employers look for while hiring their
workforces.
So you should not only rely on just reading these questions only for preparing for
your interview. You should also work hard on learning SAP FICO and its core
competencies such as knowledge of business processes, configurations,
implementation processes, key components of SAP FICO, submodules and their
functionalities etc.
In other words, if you have done your homework properly, then only these SAP FICO
interview questions would help you the best.
This means you can assign one single controlling area to several different company
codes. Controlling can have relationships with different company codes, either
as, one: one or, one: many.
Controlling Area is the umbrella under which you can store all controlling activities
of cost center accounting, product costing, profit Centre and Profitability Analysis.
Q3. – What are the options in SAP when it comes to Fiscal Years?
The Fiscal Year is nothing but the way financial data is stored in the system.
We can take a maximum of up to 12 periods and 4 special periods. These periods
are stored in what is called the Fiscal Year Variant.
Answer to Question:
A Calendar Year (Jan-Dec), or
A Non-Calendar Year (April-March, June –May, etc).
Since you create a Fiscal Year Variant at the client level, you need to assign it to a
company code.
You can define a fiscal Year with 2 digit code. The table for the Fiscal Year
Variant is T009.
In SAP ERP (ECC) you can assign two different FYV to the company code and
controlling area. For example, you can assign K4 (Jan-Dec) to the Company code
and V3 (April-March) to the controlling Area.
However, in S4 HANA Finance, you need to assign the same Fiscal Year Variant to
both, the company code and the Controlling Area.
Lets us take an example– for the year 2010, the period January ends on 29 th, Feb
ends on 27th and March ends on 29.
For the year 2011, January ends on 30th, Feb ends on 26th, March ends on 30th, etc.
This applies to many countries, especially to the USA. Accordingly, we need to
configure the Fiscal Year Variant.
Q6. – How many currencies you can configure for a company code?
Ans. – A company code can have 3 currencies.
Document Level
Line Item Level
You are required to specifically activate and set them up. Importantly, these are
complex and you should do them only when you need them. Here you generally
require help from the technical team for this work.
Additionally, you can maintain Account codes as per the valuation grouping code
after doing this configuration.
Q15. – What are the different scenarios under which you may define a
Business Area or a Profit Centre?
Ans. – Though, this is very disputable. However, both the Business Area and Profit
Centres are created for internal reporting. Each has its own merits & demerits.
Many companies nowadays go for Profit centers as they feel that SAP would not
support Business area enhancements in future versions.
For the typical month-end procedures, you need to execute both. Many times
reconciliation becomes a big issue. A typical challenge in both of them is, many
times, you do not know the Business Area or Profit Center of the transaction at the
time of posting. Thus, it makes the process complex for you.
SAP S4 HANA Controlling has got many new features in the new S4HANA versions.
With Universal Journal and ACDOCA, Controlling has got much-improved
functionality. Not only this, Controlling has become more integrated and user-friendly
in SAP S4 HANA Finance.
Universal Journal
Dealing with Reports
Cost Elements
CO-PA (Profitability Analysis)
Predictive Accounting
Currency Options
Material Ledger
It eliminates differences in OLTP and OLAP and also eliminates the ETL process.
It removes the need for reconciliation between different ledgers (E.g. FI & CO).
Universal Journal allows enhancement in system performance.
The tables here are now simplified with the unification of sub-ledgers (E.g. FI, CO,
AA & ML).
It further allows the elimination of totals concepts.
Dealing with Reports in S/4HANA Vs. ECC
Here I try to explain to you the difference between the process on how reports were
generated in SAP Controlling under ECC Model. And how this process changed with
the new features in the S/4HANA series of Controlling.
CDS View – Importantly, the old tables like COEP, COSP and COSS are replaced
by views of the same name called CDS views or compatibility views.
These new views tables aggregate the data in the universal journal on the fly
following the old table structure. Although, the old reports continue to work based on
the universal journal or ACDOCA table.
SAP CO Fiori on ACDOCA – Secondly, the CO Fiori Apps also are based on the
ACDOCA as well. In simple words, your reporting source is now ACDOCA/Universal
Journal.
Likewise, the Payables, Receivables, Assets, Controlling and material ledger also,
are now in the same universal journal table (ACDOCA).
We raise a purchase order for the project. In this case, we consider the materials as
Capital Expenses. Therefore, we can redirect the receipt of the goods to the WBS
element/Order. Subsequently, the WBS element/Order is settled to an Asset Under
Construction (at period end). It is further settled to the Final Asset (End of internal
construction).
In ECC, to keep together the information from purchase order to payment, we need
to probably create a custom report among different tables.
Whereas in S4 HANA with Universal Journal/ACDOCA we can find every record in
one single table. This is the power of Universal Journal.
Now next question arises here that how it will work then?
Now you can write SAP S4 HANA Controlling’s (CO) internal Postings on document
types in Finance (FI). Surely, you have to select one document type example “CO”
for each CO Business Transaction.
Furthermore, you can also Assign the CO version to the leading ledger or every
standard ledger.
Anyway, the total impact of the secondary element is zero because you use them
only to move costs from one cost object to another. Thus, you should not worry
about them in total but only among Controlling objects.
We use Profitability Analysis opted for costing based because it was much powerful
and very integrated with Product Costing. It is more useful as it allowed the use of
valuations to import in CO-PA sales order statistical conditions.
But if talk about the COPA process flow in SAP FICO, it has a lot of issues being
based on value fields not on G/L accounts. Writing on different tables and sometimes
not completely aligned with the General Ledger Document postings.
An example of this is the Goods issue.
In costing based CO-PA, we can only generate accounting documents but there was
no update in CO-PA. Therefore, we could not easily reconcile it with General Ledger.
Although we can still use the Costing based CO-PA in SAP S/4 HANA, Account-
based CO-PA would be the future in S/4 HANA. Earlier, the Account-based COPA
was not easy to adopt for customers. This is because the Costing based CO-PA
offered more functionalities.
But then, with every new release SAP improved the Account-based CO-PA in
Universal Journal with new functionalities. A good example of this is the COGS
splitting, which SAP has included.
Predictive Accounting
Predictive accounting deals with a dedicated part of P/L Sales Orders in real-time.
Before it becomes an actual posting it may help customers to anticipate their month-
end closing and reporting.
We have the option to bring in SAP S/4 HANA Sales orders in a specific ledger
(extension ledger). Similarly, we can obtain automatic reversals of these postings
once the related financial documents are posted (from Outbound Delivery).
The good thing about predictive accounting is that the “predictive postings” are
automatically adjusted with the actual postings.
Material Ledger
Material Ledger in SAP S/4HANA is mandatory. This does not mean that you will be
forced into actual costing. Importantly, the table structures in SAP ECC Material
Ledger are complex. Whereas in S/4 HANA data structure has been simplified.
Sub-Ledgers of SAP GL
Further, these GL postings are also sub-ledgers of SAP General Ledger.
The inventory “sub-ledger” already exists in SAP ECC in the form of inventory
valuation tables.
SAP enhanced these tables in S4 HANA just as it did with Universal Journal. The
actual costing functionality is still optional and this is what causes the most
confusion. Therefore companies that do not need to report their inventory and cost of
sales at actual cost do not need to activate this functionality.
This parallel currency functionality has been extended to ML for any inventory
transactions, which can be viewed in Material Ledger reports.
Summary
With the launch of S4HANA, many things have changed in SAP upgraded. As you
understood with the information I mentioned above, Controlling too got many
updates in S4 HANA. These changes have made Controlling advanced and work
better. S/4HANA technology has updated all modules for the better. Accordingly,
SAP consultants who do configurations and implementations should be the best
updated with changes. Obviously for their SAP career growth and also for scaling
their portfolio.
So, if you are a beginner, then I advise you to learn ECC-based SAP Controlling first
then go for S/4HANA Controlling as the next step.
Realtime Work Interview Questions
Scenario 1 – SAP Purchase Order
My client raised a PO at USD 13 for 60 quantities. A goods receipt
MIGO transaction was done at that price. Now my client wants to do
a MIRO transaction at USD 14 for 60 quantities.
Two Solutions to this SAP FICO Issue
(1) The price difference – At the time of the MIRO transaction, you have an option
to post a price difference. In the MIRO transaction, enter the G/L account for the
price difference and amount (i.e. $1).
(2) Reversing MIGO and repost MIGO with the correct price – Reverse the MIGO
entry, make changes in the PO (Purchase Order), then once again do the MIGO and
MIRO transactions.
Check if the G/L accounts have been created in the company code you are posting.
Make sure you have selected the correct company code in T-code FB50
The drop-down has a personal list and a global list. If you are on the personal list,
switch to the global list.
The SAP system will pull all open items based on the selection criteria. The standard
SAP system comes with very limited selection criteria. However, you can include a
new selection field and change the sequence of the selection criteria. To add a new
selection field or change the election criteria sequence you have to configure the
SAP system through transaction code O7F1.
Create a new account and set the options according to your requirements. Be sure
to set the line item display indicator ( SKB1-XKRES)
Transfer the line items from the old account to the new account. You can only do this
for accounts that you cannot automatically post to. As an alternative, you can
transfer the balance completely. Don’t forget to lock the old account for postings.
Consulting Solution
Manipulate all documents that you posted in the past. You can use the correction
program RFSEPA01.
While creating the G/L account, you should take the utmost care with the open item
management and line item management attributes of the G/L account.
SAP recommends the first solution because only standard means are used. The
second solution requires the usage of a correction report and is, therefore, a
consulting solution.
Solution Two:-
Suggestion
Many such scenarios in SAP FICO comes under the roles and responsibilities of a
FICO consultant. He/she face them in real-time work. Thus, they are expected to
know the solutions to these kinds of issues quickly and efficiently as well. That’s why
these kinds of problems become part of many of the FICO interview questions, so as
to check the knowledge of the candidate.
I suggest you not only learn, but also practice these scenarios in the system to check
the whole process of resolving such problems. This is also required for growing into
the next phase of your SAP career i.e. SAP S/4HANA Finance. For upgrading into
the new technology you should be expert in the current position which needs
knowledge of every aspect of Financial Accounting. Here these kinds of scenarios
help a lot.
Why read these SAP FICO Interview questions?
These SAP FICO interview questions are collected from the true experiences of
past students (alumni) that they had in their interviews. I made this list of questions
in reference to the queries and experiences of my students and the best answer that
I suggest to them.
Hence these questions would give you the best answers for those questions that
usually interviewers ask in SAP FICO interviews.
SAP FICO interview questions is a highly searched term for those who want to get
their desirable SAP FICO job. By seeing these SAP FICO interview questions and
answers, you get a basic idea of what employers look for while hiring their
workforces.
So you should not only rely on just reading these questions only for preparing for
your interview. You should also work hard on learning SAP FICO and its core
competencies such as knowledge of business processes, configurations,
implementation processes, key components of SAP FICO, submodules and their
functionalities etc.
In other words, if you have done your homework properly, then only these SAP FICO
interview questions would help you the best.
This means you can assign one single controlling area to several different company
codes. Controlling can have relationships with different company codes, either
as, one: one or, one: many.
Controlling Area is the umbrella under which you can store all controlling activities
of cost center accounting, product costing, profit Centre and Profitability Analysis.
Q3. – What are the options in SAP when it comes to Fiscal Years?
The Fiscal Year is nothing but the way financial data is stored in the system.
We can take a maximum of up to 12 periods and 4 special periods. These periods
are stored in what is called the Fiscal Year Variant.
Answer to Question:
A Calendar Year (Jan-Dec), or
A Non-Calendar Year (April-March, June –May, etc).
Since you create a Fiscal Year Variant at the client level, you need to assign it to a
company code.
You can define a fiscal Year with 2 digit code. The table for the Fiscal Year
Variant is T009.
In SAP ERP (ECC) you can assign two different FYV to the company code and
controlling area. For example, you can assign K4 (Jan-Dec) to the Company code
and V3 (April-March) to the controlling Area.
However, in S4 HANA Finance, you need to assign the same Fiscal Year Variant to
both, the company code and the Controlling Area.
Lets us take an example– for the year 2010, the period January ends on 29 th, Feb
ends on 27th and March ends on 29.
For the year 2011, January ends on 30th, Feb ends on 26th, March ends on 30th, etc.
This applies to many countries, especially to the USA. Accordingly, we need to
configure the Fiscal Year Variant.
Q6. – How many currencies you can configure for a company code?
Ans. – A company code can have 3 currencies.
Document Level
Line Item Level
You are required to specifically activate and set them up. Importantly, these are
complex and you should do them only when you need them. Here you generally
require help from the technical team for this work.
Additionally, you can maintain Account codes as per the valuation grouping code
after doing this configuration.
Q15. – What are the different scenarios under which you may define a
Business Area or a Profit Centre?
Ans. – Though, this is very disputable. However, both the Business Area and Profit
Centres are created for internal reporting. Each has its own merits & demerits.
Many companies nowadays go for Profit centers as they feel that SAP would not
support Business area enhancements in future versions.
For the typical month-end procedures, you need to execute both. Many times
reconciliation becomes a big issue. A typical challenge in both of them is, many
times, you do not know the Business Area or Profit Center of the transaction at the
time of posting. Thus, it makes the process complex for you.
SAP FICO Scenarios – For Interviews and On-job
Work
SAP FICO scenarios are very commonly looked for by SAP aspirants. Some may
need them to solve their on-job issues, while some need for preparing well for
interviews. Here are some case studies that help in SAP FICO interviews and real-
time working.
(2) Reversing MIGO and repost MIGO with the correct price – Reverse the MIGO
entry, make changes in the PO (Purchase Order), then once again do the MIGO and
MIRO transactions.
Scenario 2 – SAP FICO General Ledger
The user is not getting the drop-down list of G/L accounts that he
defined through FS00 while posting through transaction code
FB50/F-02.
Solution
While entering a transaction, the user usually presses F4 to select a G/L account
from the chart of account (COA). The SAP R/3 system displays all available
accounts that you created for the desired company code and COA in question. If the
user is not getting the G/L account in the dropdown list. Try one of the following
Check if the G/L accounts have been created in the company code you are posting.
Make sure you have selected the correct company code in T-code FB50
The drop-down has a personal list and a global list. If you are on the personal list,
switch to the global list.
Go to the clearing G/L Account process Open Item screen using T Code-F-03 from
the menu bar.
Select Settings and change Line Layout.
Then, select the line layout a name and description and press enter.
Choose the insert after button to view the available fields
Select the required field by double-clicking on the field. The required field is
automatically listed under your own layout.
Repeat the process for each field required to create your layout and save.
Go back to the clearing G/L Account Process Open Item screen and select the
Editing option button under the line layout variant for the G/L account clearing
transaction.
Give your variant name and save.
The SAP system will pull all open items based on the selection criteria. The standard
SAP system comes with very limited selection criteria. However, you can include a
new selection field and change the sequence of the selection criteria. To add a new
selection field or change the election criteria sequence you have to configure the
SAP system through transaction code O7F1.
Create a new account and set the options according to your requirements. Be sure
to set the line item display indicator ( SKB1-XKRES)
Transfer the line items from the old account to the new account. You can only do this
for accounts that you cannot automatically post to. As an alternative, you can
transfer the balance completely. Don’t forget to lock the old account for postings.
Consulting Solution
Manipulate all documents that you posted in the past. You can use the correction
program RFSEPA01.
While creating the G/L account, you should take the utmost care with the open item
management and line item management attributes of the G/L account.
SAP recommends the first solution because only standard means are used. The
second solution requires the usage of a correction report and is, therefore, a
consulting solution.
Solution Two:-
Suggestion
Many such scenarios in SAP FICO comes under the roles and responsibilities of a
FICO consultant. He/she face them in real-time work. Thus, they are expected to
know the solutions to these kinds of issues quickly and efficiently as well. That’s why
these kinds of problems become part of many of the FICO interview questions, so as
to check the knowledge of the candidate.
I suggest you not only learn, but also practice these scenarios in the system to check
the whole process of resolving such problems. This is also required for growing into
the next phase of your SAP career i.e. SAP S/4HANA Finance. For upgrading into
the new technology you should be expert in the current position which needs
knowledge of every aspect of Financial Accounting. Here these kinds of scenarios
help a lot.
On the other hand, if a change is made in one Table, it is reflected in a similar Table
across various Clients. Then such a Table will be called “ Client Independent”. In this
case, the first field of the Table will not be “Mandt”.
Internal Tables
There are also other types of Tables known as Internal Tables. These are standard
data type objects which exist only during the “runtime” of an ABAP program. They
are used to perform calculations on subsets of database Tables. Further, they help
us to reorganize the contents of database Tables according to the user’s needs.
Internal Tables fulfil the need for arrays in ABAP.
Now let us see the list of Most Important Tables in SAP FICO i.e. in SAP Financial
Accounting and SAP Controlling.
SAP FI Tables List – Financial Accounting
Depreciation Terms ANLB
Table Name Table Code
Below are the key Tables in SAP FI which are most commonly used.
CO Versions TKVS
Settlement-Header AUAK
EC-PCA GLPCA
Not just this, interviews also ask about some mostly used tables in SAP FICO
interviews to check the core knowledge of contestants.
Learn them and understand them so as to work better and build a good career in
SAP FICO.
To understand this more clearly, let us first know what are Tcodes in SAP.
What are Transaction Codes?
In SAP, Transaction codes are used to access functions or executing ABAP
programs in SAP application for fast processing and executions. Instead of using the
menu, the navigation and execution are combined into a single step. These are
called as TCodes.
It is very helpful while working in the system. This one is the preferred method of
using the SAP application because navigating the menu path is time-consuming and
the user needs to remember where to look in the navigation menu path.
SAP Easy Access => Accounting => Financial Accounting => General
Ledger=> Master Record => GL Accounts => Centrally
(It is somehow like using short-cut keys on a keyboard instead of using a mouse, to
save your time and effort).
If you are working or practising SAP Financial Accounting, you should definitely
know the important Tcodes in SAP FICO. Here a list of them with their basic use.
If you are an SAP consultant or working towards getting into the SAP sector, you
must learn them. Further, if you can by-heart the key Tcodes in SAP FICO, it would
be an added advantage.
Company Code – The company code is the central organizational unit of external accounting within
OX02
Create, Check, Delete the SAP System.
OX03 Create Business Area Business Areas are used to differentiate transactions that come from different lines
SAP FICO Fields it is Used
Description of the Fields
TCodes For
of business in a company.
Create Credit Control The organizational unit represents the area where customer credit is awarded and
OB45
Area monitored. This can be either be a single or for several company codes.
In SAP the fiscal year is assigned as a variant. Posting periods can further be defined
Maintain Fiscal Year
OB29 in each fiscal year variant. SAP allows a maximum of 16 posting periods in each
Variant
fiscal year.
Assign Co. Code to As Fiscal Year Variant created at a client level, it is required to assign to company
OB37
Fiscal Year Variant code.
Creation of Chart of Chart of Account is the list of General Ledger Account Master. Chart of Accounts is
OB13
Account (CoA) defined at the client level and assigned to each company code.
Transport Chart of
OBY9
Account
Copy GL Accounts
OBY2 from the Chart to Co.
Code
SAP FICO Fields it is Used
Description of the Fields
TCodes For
Retained Earnings account defines to be used for posting the expenditure and
Define Retained
OB53 income of the year. It is used to carry forward the balance from the current fiscal
Earnings
year to the next fiscal year.
Maintain Financial
OB58
Statement Versions
Field status variant is used to define the fields which are used for input like a cost
Maintain Field Status centre, profit centre, plant etc which are entry fields and hidden fields. Field status
OBC4
Variant Variant is a tool that is provided by SAP to assign the same set of properties to more
than one object.
SAP Finance posting period variant is used to maintain accounting periods that are
Define Posting Period open for posting and all closed periods are balanced. This is used for the opening
OBBO
Variant and closing period in the fiscal year for posting purposes. As it is created client level
it is required to assign to company code.
Define Document Document Type in SAP is defined to distinguish business transactions. For example,
OB17 Type & Number transactions like customer payment and vendor credit memos are distinguished
Ranges with two different document types in SAP to identify it in future.
The posting key in SAP is a two digits numerical key that determines the type of
OB41 Maintain Posting Keys transaction entered in a line item. Posting keys in SAP controls the entries in a line
item of document entries.
SAP Tolerance Groups define posting authorizations of users in SAP. These postings
Create Tolerance
OBA4 permissions define the amounts that certain groups of accounting users are allowed
Groups
to post.
Automatic Posting
OBL1
Documentation
Automatic Account
FBKP
Assignment
Configuration transaction OBYC creates the core of SAP integration between the
MM Automatic
OBYC MM, FI and Controlling modules in a traditional SAP. Transaction keys are used to
Account Assignment
determine general ledger accounts used by the system.
Enter Global
OBY6
Parameters
With the transactional app Manage G/L Account Master data, you can display
Creation of GL Master
FS00 create and edit the master data of G/L accounts. You can also easily add new G/L
Records
accounts from scratch or based on existing accounts.
Posting of GL
F-02 This FI transaction code is used to post any JV entry.
Transactions
Display of GL After posting any transaction, the system will generate an accounting document. So,
FB03
Document to view that accounting document we can use this SAP FICO TCode FB03.
Display of GL
FS10N To get the GL total balance.
Accounts
Define Interest
OB46
Calculation Types
OBD3 Define Vendor For creating a vendor master record, we have to specify an account group. Via
Account Group Vendor account group we determine the interval for the account numbers, whether
the number assigned internally by the system or externally by the user. Whether
SAP FICO Fields it is Used
Description of the Fields
TCodes For
one-time account. Which fields are ready for input or must fill when creating and
changing master records.
Creation of Vendor By using this SAP FICO TCode, we can create a vendor Master and update, General
XK01
Master information, accounting information and Purchasing information.
Purchase Invoice How to post one vendor invoice only from an accounting point of view. However, it
F-43
Posting excludes logistic vendor invoice posting.
Display Vendor
FK10N A particular vendor total account balance.
Account
F112 Define House Bank To create one House Bank in SAP ERP.
Maintain Terms of To calculate the discount on Customer/vendor we need to assign payment term on
OBB8
Payment (ToP) master record or document.
Customer Tolerance Tolerance Groups contain the details that control the way the system processes the
OBA3
Groups cash discount and payment difference.
Creation of Customer By using this TCode in SAP FICO, we can create a customer Master and update
XD01
Master General information, accounting information and Sales information.
Display Customer
FD10N A particular customer total account balance.
Account
SAP FICO Fields it is Used
Description of the Fields
TCodes For
Incoming Payment
F-28 To process collection from the customer.
Posting
An organizational unit that you use to process the dunning program. For example,
OB61 Define Dunning Area
By Division, sales Organisation etc.
Define Depreciation The depreciation area is used to calculate different values in parallel for each fixed
OADB
Area asset for different purposes.
Assign Chart of
OAOB Depreciation to Co.
Code
Asset classes are used to classify the fixed assets in asset accounting according to
OAOA Define Asset Class the asset types. Also, these are defined at the SAP client level and contain key
control parameters.
Assignment of
AO90
Account in Asset Class
Determination of
OAY2 Depreciation Area in
Asset Class
Creation of Asset
AS01
Master
Asset Purchase
F-90
Posting
There are two ways where you can get to the list of T codes in SAP.
1. Easy Access.
2. IMG
Login in SAP => Easy Access => SAP menu => Accounting =>Financial
Accounting=> (Subsequent Sub-module)
Then open the respective sub-module to see its T codes. The example below is for
Entering G/L Accounting Document which is found in:-
Financial Accounting => General Entry => Document Entry => FB50
How to get TCodes from IMG
Login in SAP => SPRO => SAP Customizing Implementation Guide =>
Financial Accounting => and Further sub-module
In the below example, you can see the Tcode for Field Status Variant (OBC4):-
Financial Accounting => Financial Accounting Global Settings => Ledgers =>
Fields => Define Field Status variant (OBC4)
EndNote
Tcodes are user-friendly tools that help in saving time and effort. Thus, I advise you
also to learn and practice the common Tcodes in SAP FICO so as to get comfortable
with their use and to be efficient on them.
This list of SAP FICO Questions and answers mainly covers topics such as Foreign
Currency Valuation, Documents Clearing, Open Items, GR/IR Clearing, Accounts
Payable, Accounts receivable, Vendor Payment, APP (Automatic Payment
Program), Payment Terms, etc.
SAP FICO is the most popular module of SAP. Subsequently, many aspirants look
for the best interview questions and answers on SAP FICO. You require these
questions for either to crack the SAP FICO interviews or to clear the certification
exam.
Since GR/IR and AR/AP are some of the key parts of the Finance module, I advise
you to gain a good knowledge of these, as these are very important for SAP FICO
interviews and examination purposes.
These key SAP FICO questions with answers would definitely make a good impact
on your knowledge kit. Let us start!
In the Goods receipt, it passes the accounting entry debiting the inventory and
crediting the GR/IR account. Subsequently, when you receive an invoice, it debits
the GR/IR and credits the vendor account. Therefore, until you do not receive the
invoice, the system shows the GR/IR as unclear items.
Q5. – How many numbers of line items in one single entry you can
have?
Ans. – You can accommodate is 999 line items in one document.
Why you need to know GR/IR with these SAP FICO Questions and
Answers?
GR/IR is an intermediary clearing account that you use in SAP FI for in-transit goods
and invoices. You require to do a lot of adjustments in the GR/IR account with data
entries and journal entries to manage the account. Thus, you should have technical
and conceptual knowledge to work in this area.
Since in the SAP FICO interviews, employers ask questions on the technical and
conceptual aspects of both. Hence, you must have a stronghold over concepts along
with sound practical know-how.
1. Manual Payments without the use of any output medium like cheques etc.
2. Automatic Payment Program through cheques, wire transfers DME, etc.
Step-2
Step-3
Step-4
Q13. – You can maintain payment terms for customer master at two
places. Accounting view and Sales view. Which payment term the
system set as default while doing transactions?
Ans. – The Payment term in the accounting view of the customer master comes into
the picture if the transaction originates from the FI module. If you post an FI invoice
(FB70) to the customer, then the system set the payment terms from the accounting
view of the customer master as default.
This is to say, the payment term has defaulted from the accounting view of the
customer master.
The payment term in the sales view of customer master comes into the picture if the
transaction originates from the SD module. You create a sales order in the SD
module. The payment terms have defaulted in the sales order from the sales view of
the customer master.
Q14. – You can maintain the Payment Terms for vendor master at two
places. Accounting view and the purchase view. Which is the
payment term which actually gets defaulted in transaction?
Ans. – The payment term in the accounting view of the vendor master comes into the
picture if the transaction originates from the FI module. If you post an FI invoice
(FB60) to the vendor, then the payment terms have defaulted from the accounting
view of the vendor master.
The payment term in the purchasing view of the vendor master comes into the
picture if the transaction originates from the MM module. A purchase order is created
in the SD module. The Payment terms have defaulted in the purchase order from the
purchasing view of the vendor master.
A GR/IR is a provision account that provides for the liability for the purchase. The
rates for the valuation of the material are picked up from Purchased Order.
Small Difference
Moving Average price variances
Quantity Variances
To sum up, Tolerances are nothing but the difference between invoice amount and
payment amount or the difference between goods receipt amount and invoices
amount as the client accepts.
Consequently, if you are a FICO consultant, you need good knowledge of AR and
AP processes and deep know-how of their configurations.
These FICO questions on AR and AP would help you to enhance your knowledge
and would help you to define your expertise in interviews.
This is a comprehensive list of SAP Product Costing Interview Questions that are
truly based on the technical aspect of the subject. In these questions, I have focused
on the most important segments of Product Costing (like configurations & settings).
These you require during the implementation of Product Costing in the SAP system.
Preparing with these SAP product costing interview questions will help you to prove
your practical knowledge of the subject. Also, it strengthens your hold over the
various technical sections of this functional module. So let us learn some important
questions that interviewers ask in SAP Product costing interviews.
2. How does the system pick a primary cost from the cost center into
the cost component structure?
Ans. – This is possible when we do a planned activity price calculation from SAP.
The SAP system assigns the primary cost component structure to plan version-0 in
the SAP Controlling.
Sales Order => Requirement Type => Requirement Class => All settings for
controlling.
In the configuration, we attach the required class to the required type. Here, we
maintain all the configuration settings for this requirement-class for controlling.
Step 2 – Next define the Result Analysis version. (This result analysis contains line
IDs which are nothing but break up costs).
Step 5 – Lastly, we define the Finance GL accounts which are debited and credited
when a work in Progress is calculated.
This is also important because, after the actual costing run, we cannot post any MM
entry to the previous period.
EndNote
Why are these SAP Product Costing Interview Questions important
for you?
Product Costing is an important segment of SAP Controlling. It is as important as
the S/4HANA Finance module. You may find a good amount of study material for
SAP FICO or S/4HANA Finance interview questions, but what matters is the quality
and relevancy of those SAP Product Costing interview questions. So review
analytically before making a good list for yourself.
I hope these questions would help to better prepare for your next dream job where
you wish to have SAP Controlling configuration and maintenance as an important job
role in your KRA.
Profit Center Accounting in SAP is an important topic in SAP Controlling. Thus, many
times it is being asked by interviewers as important questions in SAP FICO
interviews. Let’s learn a few of them with explanations.
If legally one has to produce the Balance sheets and Profit and Loss Accounts for a
profit center then it is advisable to create it as a company code instead of a profit
center
The profit center is also stored in the material master. This way all sales orders
created for the finished product automatically picks up the profit center from the
material master and all the revenues and costs coming from sales order for that
finished product is passed on to this profit center.
You create a profit center document in addition to the Finance document whenever
revenue or consumption takes place. This document contains the details of the profit
center. Once both the costs and revenues flow to the profit center you can write
reports using the Report Painter to get intelligent analysis. You can also use SAP
standard reports statistical key figures are created in the cost center accounting
module. Now the same statistical key figures are required in the profit center
accounting module.
Not only, it needs in-depth knowledge of the subject, but also the practical know-how
of its core areas. Needless to say, interviewers specifically choose these subjects to
put before interviewees, to check the depth of their knowledge.
Controlling Area is the umbrella under which we store all controlling activities of cost
center Accounting, Product Costing, Profitability Analysis, and Profit Center.
Q2. – What are the Primary Cost Element and Secondary Cost
Element?
Mark: Important SAP CO Interview Question
Ans. – We need to define every Profit and Loss GL account as a cost element in
SAP that we need to control. Just as in FI General Ledger Account exists; in
Controlling we have Cost Element.
Further, the postings to these accounts do not affect the Profit or Loss of the
company.
Internal Settlement– We use Cost Elements of this category to settle order cost to
objects in controlling such as cost centers, PA segment, etc.
Overhead– These we use to calculate indirect costs from cost centers to orders.
Internal Activity Allocation We allocate costs during internal activity allocation such
as Machine Labour etc.
Thus, whenever we look at any controlling function, the basic thing we need to
assess is the cost element (expense) which we want to control.
Likewise, what is the cost object ( i.e. either the production order, sales order,
internal order) we are using to control this cost element?
Controlling is all about knowing the cost element what is the cost object
At the end of the period, we settle all costs or revenues in the cost object to their
respective receivers as like a GL Account, Cost Center, Profitability Analysis or
Asset.
Certainly, we can use various combinations of the cost center groups with the cost
element group to track. Hence we can control our costs per department or across
departments.
Result Analysis Key- This key determines how the work in Progress is calculated.
Cost Components– The breakup of the costs which we see in the Product costing
e.g.-Material Cost, Labor Cost, Overhead, etc.
Costing Sheet– We use a costing sheet to calculate the overhead in Controlling.
Costing Variant– For all manufactured products the price control recommended is
the standard price. Hence, to come up with this standard price for the final goods
material we need to cost this material. We can do this using the costing variant.
Noteworthy, in costing type we specify the field where we update the price in the
material master. Similarly, in the valuation variant, we specify the order in which the
system should go for accessing prices for the material master ( planned price,
standard price, moving average price, etc).
Further, we decide which price we should consider for the activity price. And finally,
how the system should select BOM and routing.
Q12. – How does SAP go about costing a product having multiple Bill
of Material within it?
Ans. – Firstly, SAP first cost the lowest level product. Then it arrives at the cost and it
takes and cost the next highest level and finally arrives at the cost of the final
product.
Q13. – What does the concept of cost roll-up mean in product costing
context?
Ans. – The purpose of the cost roll-up is to include the cost of goods manufactured
of all materials in a multilevel production structure. It lies within the cost of the
material located at the top of the structure.
Firstly, the system calculates the costs for the materials with the lowest costing level
and then it assigns them to cost components.
Lastly, the system costs the materials in the next highest costing level (such as semi-
finished materials).
This is to say, that the costs for the materials cost first are rolled up and then
they become part of the material costs of the next highest level.
Subsequently, to settle the costs of the production order or sales order, we need a
settlement profile.
noteworthy, the system maintains the settlement profile in the Order Type and
defaults during the creation of order.
Further, You can dun all business partners with overdue items automatically or make
selective dunning. You can also generate a single notice combining all the overdue
items of a single business partner across company codes.
Maintaining Parameters
Maintaining dunning parameters (such as execution date and dunning run identifier)
that identify a dunning run is the starting point. The other parameters include the
following-
The dunning date that you need to print in the dunning notice
Posting cutoff date for selection of documents
Company codes, etc.
Once you finish inputting the parameter, you can save and display the log to see
any errors. You can also display the dunning list which contains the accounts and
items that you selected for the current run. It also includes the blocked one.
The system checks the Dun procedure and last Dunned fields in the customer
master. It helps to determine whether the arrear date ( the date of the last dunning
run ) falls in the past to consider it for the current run.
Then further, it checks whether the account is blocked for dunning. It does so, by
searching for an entry in the Dunning Block field in customer master.
If not blocked, then we consider that the system has released these accounts for
dunning in the current run.
It then checks all such released open items to determine whether any of them are
blocked for dunning. If not, it moves further to ascertain whether an item is overdue
according to the date of issue base date, payment condition is grace period.
The program now checks each of these eligible accounts to ascertain whether the
customer or vendor has a debit balance, considering the system selected all the
open overdue items in that account.
In case the system selects all open overdue items in that account
If you are not satisfied or want to make further changes, you can still edit the
proposal. You may also display the sample printout of the dunning notice on the
screen.
Once you activate the print run, the program prints the dunning notices in addition to
updating the important details like dunning level and last dunned date etc.
Conclusion
This is how the Dunning in SAP works. Dunning is an important part of Accounts
Receivable. It prompts vendors to make on-time payments of invoices. It also
enables a better client relation.
There is much more in the Dunning procedure. Such as dunning levels, dunning
areas, dunning data etc. All these things complete the dunning in SAP.
Straight-line method
declining balance
the sum of year digits etc.
Depreciation Catagories
We have two categories of Depreciation in SAP.
Planned Depreciation
Unplanned Depreciation
Planned depreciation brings down the value of the asset after every planned period
(say every month), till the asset value is fully depreciated over its life period. By this,
you will know what will be the value of an asset at any point in time in its active life.
Although it is possible to create the depreciation areas at any time, even after Go
Live, I recommend creating them well in advance, in the customization phase itself.
To define new depreciation areas and maintain the values for existing areas, use
the T -Code OADB
However, you have to ensure that you configure at least one depreciation area to
post values automatically to the FI-GL. Normally the depreciation area will be 01
(book depreciation) of the depreciation areas.
SAP also gives us the option to delete any depreciation areas from the standard
chart of depreciation, in case we do not need any. Furthermore, we can also open
new depreciation areas when the system is live.
We categorise Planned depreciation into two types further, i.e Ordinary and special.
Ordinary Depreciation
It represents the planned depreciation to take care of the general wear and tear due
to the usage of an asset during its useful life.
Special Depreciation
You use special depreciation to depreciate an asset from the point of taxation
without considering the actual wear and tear. Determine the depreciation areas for
special depreciation using T Code- OABS and select the Special Depreciation.
Now let us learn the methods of depreciation calculation in SAP and their
methodology.
Base Method
Valid across a chart of depreciation, you use these to define the type of depreciation
(Ordinary, special tax depreciation) and depreciation method (declining balance
method, sum of the year’s digit method etc).
You may not need to define a new base method because SAP-supplied base
methods are more than sufficient. However, we can define our base method. T
Code- AFAMR.
Declining-balance methods
With these, the annual calculation of depreciation is reduced by a constant
percentage that is calculated from the useful life and multiplication factor and then
multiplied by the assets NBV. Though, in a declining balance method, you can never
make the NBV equal to zero. You can use any of the SAP supplied methods or
define your using T Code – AFAMD.
For each of these methods, you can define when the validity starts – from
capitalization date, from ordinary depreciation start etc. Use T Code – AFAMS to
create a new multi-level method.
So, around these depreciation calculation methods the whole system functions.
These methods of depreciation calculation in SAP covers all types of assets and
thus are very important.
On the selection screen, enter the company code, fiscal year and posting period for
which to run the depreciation.
You can choose the Total Log radio button if you want to see only depreciation totals
or choose the Detailed Log radio button to see the deprecation for each asset.
Most companies schedule their depreciation run in the background and run on
specific dates based on the month-end schedule, rather than manually executing
Transaction AFAB at the end of each month.
Using the parallel ledger, companies can set parallel valuation in different accounting
principles
Typically, a local company that belongs to a group needs to follow both local and group
accounting principles
In Assets accounting, we can set Parallel ledger accounting using depreciations areas
In our scenario company FR01 a local branch of an international group, company FR01 needs
to report financial statements in group accounting principles IFRS and in local GAAP
accounting principles.
We defined the Leading ledger ‘0L’ for IFRS and non leading ledger ‘2L’ for LG accounting
principles.
Let’s see the major customizing steps and a process flow to demonstrate the power of the
ledger approach in parallel valuation in assets accounting.
0L Ledger:
2L Ledger:
Important Note:
In New Asset accounting, the delta depreciation area is no longer needed, the system posts in
real time to both ledgers.
3. Assign GL Accounts
In this step we need to assign GL accounts for both depreciations areas, 1 and 12
We used the same accounts for both areas as we are using separate ledgers for both areas
The following screen shots applies for area 1, area 12 have the same accounts assignments
4. Define technical clearing account for integrated assets aquisition:
Below the SAP definition of the integrated aquisition postings available in SAP HELP
You can find this definition also when clicking on the glasses in front of the main customizing
neud
“For an integrated asset acquisition posting, the system divides the business transaction into
an operational part and a valuating part:
For the operational part (vendor invoice), the system posts a document valid for all
accounting principles against the technical clearing account for integrated asset
acquisitions. From a technical perspective, the system generates a ledger-group-
independent document.
For each valuating part (asset posting with capitalization of the asset), the system
generates a separate document that is valid only for the given accounting principle.
This document is also posted against the technical clearing account for integrated
asset acquisitions. From a technical perspective, the system generates ledger-group-
specific documents for each accounting principle.”
5. Specify alternative document type for the valuation part of the posting
The derived document type is for the valuation posting created at the same moment of vendor
invoice when posting Asset aquisition
–> Set the usefull life 2 years for depreciation area 01 and 4 years for depreciation area 12
The company FR01 needs to maintain accounting and reporting for Assets in both group and
local accounting principles,
In this scénario will process the following flow and track accounting posting and reporting in
both acct principles
Create asset for Fixture and fitting (class 3000) with straight line depreciation method for
depreciation area 1 and depreciations area 12
Transaction: AS01
Transaction: F-90
Transaction: AFAB
Posting for the first 5 periods of 2020.
–> Posted depreciation value 500,00 Euos for ledger “0L” for 5 periods (100,00 Euros
per period).
Asset explorer for Local GAAP (2L)
–> Posted depreciation value 250,00 Euros for ledger “2L” for 5 periods (50,00 Euros
per period).
7.4 Asset Retirement
Transaction: ABAON
–> In IFRS Depreciation area we have a gain of 100 Euros and in the LG depreciation area
we have 150 Euros loss
Using the parallel ledgers 0L and 2L, we are able to run parallel valuation according to
different accounting principles
AA Asset Posting
DR Customer Invoice
DZ Customer Payment
KA Vendor Document
It will open a new window. Click New Entries and provide the following details −
Document Type − Unique 2-digit code.
Number Range − Number Range Code.
Reverse Document Type − Reverse Document Type Key Code.
Number Range Information − Number ranges are maintained for document
types.
Account Types allowed − Asset, Customer, Material, Vendor, and G/L
Account.
Control Data − Control data for document type.
Once you enter the above data, click the Save icon. Enter the description of
document and save. It will save the configuration of the document type.
1) Explain the term SAP FICO?
b) Material Management
c) Human Resource
d) Production Planning
a) Company Code
b) Business Area
c) Chart of Account
d) Functional Area
In order to determine the transaction type which is entered in the line item,
a two digit numerical is used known as ‘Posting Key’
a) Account Types
b) Types of posting. Debit or Credit
You can have one Chart of Account for one company code which is
assigned.
There are three currencies that can be configured for a Company code,
one is a local currency and two are the parallel currencies.
Fiscal year in SAP is the way financial data is stored in the system. In SAP,
you have 12 periods and four special periods. These periods are stored in
fiscal year variant that is:
SAP system does not know what is broken fiscal year e.g April 2012 to
March 2013 and only understand the calendar year. If, for any business,
the fiscal year is not a calendar year but the combination of the different
months of two different calendar year and then one of the calendar year
has to classified as a fiscal year for SAP and the month falling in another
year has to be adjusted into the fiscal year by shifting the year by using the
sign -1 or +1. This shift in the year is known as ‘year shift’.
Example: April 2012 to Dec 2012 is our first calendar year, and Jan 2013
to March 2013 is our second year, now if you are taking April-12 to Dec-12
as your fiscal year, then Jan-13 to March-13 automatically becomes the
second year, and you have to adjust this year by using -1 shift, and vice
versa if the scenario is reversed, here you will use +1 shift.
10) What is year dependent fiscal year variant?
11) In SAP how input and output taxes are taken care?
For each country tax procedure is defined, and tax codes are defined within
this. There is a flexibility to either expense out the Tax amounts or
capitalise the same to stocks.
a) Document Level
13) What are the application areas that use validation and
substitutions?
b) CO-Cost accounting
c) AM-Asset accounting
e) CS-Consolidation
f) PS-Project system
g) RE-Real estate
‘Field status groups’ control the fields which come up when the user does
the transactions. In FIGL (Financial General Ledger) master, the field
status group is stored.
17) What is the default exchange rate type which is picked up for all
SAP transactions?
For all SAP transaction, the default exchange rate is M (Average Rate).
18) What are the methods by which vendor invoice payments can be
made?
a) Manual payment without the use of any output medium like cheques etc.
Each company code can have two additional currencies, in addition to the
company code, currency entered to the company code data. The currency
entered in the company code creation is called local currency and the other
two additional currencies are called parallel currencies. Parallel Currencies
can be used in foreign business transactions. In order to do international
transaction, parallel currency can be used. The two parallel currencies
would be GROUP CURRENCY and HARD CURRENCY.
To track the cost, internal orders are used; they are proposed to be
incurred over on a short term basis.
26) What is the importance of asset classes? What asset classes are
there?
The asset class is the main class to classify assets. Every asset must be
assigned to only one asset class. Example of asset class is Furniture &
Fixtures, Plant & Machinery, and Computers etc. The asset class also
contains G1 account, when any asset is procured, G1 account is debited.
Whenever you create and asset master, it becomes mandatory to mention
the assest class for which you are creating the required assets. So,
whenever any asset transaction occurs, the G1 account attached to the
asset class is automatically picked up and the entry is passed. You can
also specify the default values for calculating the depreciation values and
other master data in each asset class.
27) How capital WIP (Work In Process) and Assets accounted for in
SAP?
b) Name
c) Maintain Language
e) Controlling Integration
g) Block indicator
By using transaction code OB45 or path you can create Credit Control Area
in SAP
a) Update
d) Description
e) Credit Limit
f) Risk Category
g) Fiscal Variant
h) Rep group
In fiscal year posting period is a period for which the transactions figures
are updated. The posting period variants in SAP is accountable to control
which Accounting period is open for posting and ensures that the closed
periods remain balanced.
32) Explain in simple terms what is field status and what does it
control?
A short-end fiscal year results when you change from a normal fiscal year
to a non-calendar fiscal year, or other way around. This type of change
happens when an enterprise becomes part of a new co-corporate group.
To control the data that needs to be entered at the time of the creation of a
master record an account group is used. Account group exist for the
definition of GL account, Customer Master and Vendor.
b) Types of accounts that can be posted are controlled by it, e.g Assets,
Vendor, Customer, Normal GL account
c) It is used for the reversal of entries
No. Business area is at client level which means other company codes can
also be posted to the same business area.
37) In SAP, Customer and Vendor code are stored at what level?
The Vendor and Customer codes are stored at the client level. It means
that by extending the company code view any company code can use the
customer and vendor code.
a) Small differences
c) Quantity variances
d) Price variances
41) In SAP FICO what are the terms of payment and where are they
stored?
Payment terms are created in the configuration and determine the payment
due date for vendor/customer invoice.
They are stored on the customer or vendor master record and are pulled
through onto the customer/vendor invoice postings. The due date can be
changed on each individual invoice if required.
43) What are the standard stages of the SAP payment run?
The following steps are the standard stages of the SAP payment run
‘Residual payment’ and ‘Part payment’ are the two methods for allocating
partial methods from customers. For example, an invoice for $100 is
generated, customer has paid $70. Now this $70 will be off-set and leaving
the remaining balance $30. With residual payment, the invoice is cleared
for the full value of $100 and a new invoice is generated for the remaining
balances $30.
46) What is the purpose of the account type field in the GL (General
Ledger) master record?
At the end of the year, profit and loss accounts are cleared down to the
retained earnings balance sheets account. The field contains an indicator
which is linked to a specific GL (General Ledger) accounts to use in this
clear down.
47) Explain what is recurring entries and why are they used?
Recurring entries can eliminate the need for the manual posting of
Accounting documents which do not change from month to month. For
example, an expense document can be generated which can be scheduled
for the last days of each month or whenever an individual wants it. Usually
multiple recurring entries are created at one go and then processed all
together as a batch month end using transaction.
Value fields are number or value related fields in profitability analysis such
as quantity, sales revenue, discount value etc.
Statistical internal orders are dummy cost objects used for reporting and
analysis purposes. It must be posted to in conjunction with a real object
such as a cost center.
d) Orders with Revenue: It display the cost controlling parts of Sales and
Distribution, it does not affect the core business of the company