AR Receipts On Account and Unapplied fields

Hi All
Can you please help me finding out what are the database field names for On Account and Unapplied fields in AR receipts form and in which table these two fields reside?
Please let me know asap on the same.
Appreciate your time on this in advance.
Regds
Mano

Hello.
Have a look to AR_RECEIPT_AMOUNTS_V view where you can see what you are looking for in a simplified manner.
Octavio

Similar Messages

  • Check double invoice with GL account and Reference field

    Dear SAP GURU's,
    I am very new to SDN. I have one query.
    I know we have the option of control double invoice against Vendor/Customer by using reference field. But here my client is asking that control has to be from GL account and reference field, becoz some times he will receive the shipping bills 3 or 4 times agianst one billing document ( i am booking Transporter Vendor invoice by using FB60) with same bill number but expense GL's will be different most of the times. Some times knowingly or unknowingly same GL Expenditure account will be repeated with the same shipping bill number. This was happend most of the times.
    So can i know how can i get the GL account and Reference field checking and error message for the same.
    Thanks & Regards,
    Shobha.

    Dear Shobha,
    I feel that having a check on GL is not a good idea.  If your client insists you can go for an exit or BTE. 
    We used BTE to have the same functionality of Logistics for FI documents also in our office.
    Duplicate Invoice check process documentation is given below for your ready reference --
    with Regards
    Check Flag for Double Invoices or Credit Memos
    Indicator which means that incoming invoices and credit memos are checked for double entries at the time of entry.
    Use
    Checking Logistics documents
    Firstly, the system checks whether the invoice documents have already been entered in the Logistics invoice verification; the system checks invoices that are incorrect, or invoices that were entered for invoice verification in the background.
    Checking FI documents
    The system then checks whether there are FI or Accounting documents that were created with the original invoice verification or the Logistics verification, and where the relevant criteria are the same.
    Checking Logistics documents
    In checking for duplicate invoices, the system compares the following characteristics by default:
    Vendor
    Currency
    Company code
    Gross amount of the invoice
    Reference document number
    Invoice document date
    If all of these characteristics are the same, the system issues a message that you can customize.
    When you enter credit memos or subsequent adjustments, the system does not check for duplicate invoices.
    Exception: Country-specific solution for Argentina, where invoices and credit memos are checked for duplicate documents.
    No message is issued if you enter a document that has previously been reversed.
    Dependencies
    The system only checks for duplicate invoices in Materials Management if you enter the reference document number upon entering the invoice.
    In Customizing for the Logistics invoice verification, you can specify that the following characteristics should not be checked:
    Reference document number
    Invoice document date
    Company code
    This means that you can increase the likelihood that the system will find a duplicate invoice, because you can reduce the number of characteristics checked.
    Example
    The following document has already been entered and posted:
    Reference document number: 333
    Invoice date: 04/28/00
    Gross invoice amount: 100.00
    Currency: EUR
    Vendor: Spencer
    Company code: Munich
    You have made the following settings in Customizing:
    The field "Reference document number" and "Company code" are deselected, which means that these characteristics will not be checked.
    Now you enter the following document:
    Reference document number: 334
    Invoice date: 04/28/00
    Gross invoice amount: 100.00
    Currency: EUR
    Vendor: Spencer
    Company code: Berlin
    Result
    Because you entered a reference document when you entered the invoice, the system checks for duplicate invoices.
    The reference document number and the company code are different from the invoice entered earlier, but these characteristics are not checked due to the settings you have made in Customizing.
    All other characteristics are the same. As a result, the system issues a message that a duplicate entry has been made.
    If the "Reference document number" had been selected in Customizing, the system would have checked the document and discovered that it was different from the invoice entered earlier, so it would not have issued a message.
    Checking FI documents
    Depending on the entry in the field "Reference", one of the following checks is carried out:
    1. If a reference number was specified in the sequential invoice/credit memo, the system checks whether an invoice/credit memo has been posted where all the following attributes agree:
    Company code
    Vendor
    Currency
    Document date
    Reference number
    2. If no reference number was specified in the sequential invoice/credit memo, the system checks whether an invoice/credit memo has been posted where all the following attributes agree:
    Company code
    Vendor
    Currency
    Document date
    Amount in document currency

  • GL Coding for an On Account and Unapplied Receipts

    How do I get the GL code to an unapplied and/or on account receipt? It's the ar_distributions table that is messing with me I think.
    This is giving me two lines of code, one of which I want, the other is not the one I want.
    SELECT /*+ parallel(cash,4) parallel(cashh,4) */
    'On Account' acct_type
    , cash.receipt_number
    , trunc(cash.creation_date) creation_date
    , TRUNC(cash.last_update_date) last_update_date
    , SUM(DECODE(araa.status,'ACC'
    ,DECODE(UPPER('USD'),NULL,
    ROUND(araa.acctd_amount_applied_from,2),araa.amount_applied),0)) amount
    , araa.acctd_amount_applied_from
    , araa.amount_applied
    , dist.source_id
    , dist.acctd_amount_cr
    , dist.acctd_amount_dr
    , dist.source_type
    , dist.source_type
    , dist.currency_code
    , dist.creation_date
    , dist.last_update_date
    , dist.line_id
    , dist.location_segment_id
    , dist.org_id
    , gl.segment1
    , gl.segment2
    , gl.segment3
    , gl.segment4
    , gl.segment5
    , gl.segment6
    FROM ar.ar_cash_receipts_all cash
    , ar.ar_cash_receipt_history_all cashh
    , ar.ar_payment_schedules_all pay
    , ar.ar_receivable_applications_all araa
    , ar.ar_distributions_all dist
    , gl.gl_code_combinations gl
    WHERE cash.cash_receipt_id = araa.cash_receipt_id
    AND pay.payment_schedule_id = araa.payment_schedule_id
    AND cash.cash_receipt_id = pay.cash_receipt_id
    AND cashh.cash_receipt_id = cash.cash_receipt_id
    AND cashh.cash_receipt_history_id(+) = dist.source_id
    AND dist.code_combination_id = gl.code_combination_id(+)
    AND NVL(cash.confirmed_flag,'Y') = 'Y'
    AND NVL(araa.confirmed_flag,'Y') = 'Y'
    AND cashh.first_posted_record_flag = 'Y'
    AND pay.status = 'OP'
    AND araa.status = 'ACC'
    AND cash.receipt_number = '&RECNUM'
    AND dist.source_type = 'UNAPP'
    HAVING SUM(DECODE(araa.status,'ACC'
    ,DECODE(UPPER('USD'),NULL
    ,ROUND((araa.acctd_amount_applied_from * NVL(cash.exchange_rate, 1)),2)
    ,araa.acctd_amount_applied_from),0)) != 0
    GROUP BY cash.receipt_number, cash.creation_date, cash.last_update_date, pay.amount_applied, dist.source_id , dist.acctd_amount_cr
    , dist.acctd_amount_dr, araa.acctd_amount_applied_from, araa.amount_applied
    , gl.segment1, gl.segment2, gl.segment3, gl.segment4, gl.segment5, gl.segment6
    , dist.source_type
    , dist.source_type, dist.currency_code, dist.creation_date, dist.last_update_date, dist.line_id
    , dist.location_segment_id
    , dist.org_id
    ORDER BY 2

    OK I figured it out - I deleted the ar_distributions table and linked the cash history table directly to the gl code table so the GL code is actually linked to the header record:
    AND cashh.account_code_combination_id = gl.code_combination_id

  • Expense account and ledger fields

    Dear Brothers,
    I am uploading assignments data and i want to upload the ledger and expense account that are in the "Purchase Order Information" tab, can you please tell me what are the column names for these two fields, or how can i upload them ?
    Thanks,

    Hi;
    Pelase review:
    Re: What is Best Way to Get Table Name in Oracle Applications : 12.1.1 (web)
    For table-field relation and defination you can check e-trm site
    Regard
    Helios

  • AD user account and description field

    Has anyone ever encountered login problems if there was verbiage entered in the AD description field that had carriage returns(line feed)  I am hearing that somehow the description filed  is not just harmless text   but can  have
    effect on login ability where as the comment filed is benign  ? 

    The description attribute is not used during the logon process. So it does not affect the ability for the user account to log on.
    I guess that if you are suspecting this to be an issue, you do see a problem with that account. Maybe other attributes of the user are affecting the user (logon time or logon workstation restriction for example).
    Do you have some logs to share, error message or anything for this user?
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Ageing 7 Buckets - By Account Report - Unapplied Receipts Register

    Hi Guys,
    I am not a disco professional, just wanted to know if i want the following reports (Ageing 7 Buckets - By Account Report - Unapplied Receipts Register) to run from disco how do i achive this ?
    Thanks
    Bal

    Hi Bal
    Does the report exist? If so you need to share it with a user that you have access to then log in as that user and run it.
    If the report does not exist you will need to create it.
    If you're asking whether Discoverer can create an aging report with buckets the answer is yes and the trick is to master the CASE statement. This might help:
    CASE WHEN days_late < 8 THEN 'Within 1 week'
    WHEN days_late < 15 THEN 'More than 1 but less than 2 weeks'
    WHEN days_late < 22 THEN 'More than 2 but less than 3 weeks'
    .... and do on until .....
    WHEN days_late < 91 THEN 'some suitable bucket'
    ELSE 'More than 90 days'
    END
    As you create the CASE statement the set of values remaining is decreased by that statement just processed. So for example if you start out by looking for anything less than 8 then once those have been determined there will be no more values in the set. Thus next we look for anything less than 15, and so on.
    If you want to work the other way, from the top down you need to use the greater than symbol like this:
    CASE WHEN days_late > 89 THEN 'More than 90 days'
    WHEN days_late > 59 THEN 'More than 60 days'
    .... and do on until .....
    WHEN days_late > 7 THEN 'More than 7 days'
    ELSE 'Within 1 week'
    END
    Best wishes
    Michael

  • GL account and cost center field appearing for Goods issue movt type 201

    Hi SAP Gurus
    We are trying to post goods issue in ecc6 . The problem is that the GL Account and cost center fields are available fields .The cost center field is logical but why the GL account field is avaiable .
    How we can grey out the same field as it is going to be picked up from the valuation class setting in GBB - VBR ? Any ideas
    Regards
    Hitesh

    Hi Ravi
    You think that its ok we have to input the cost center .
    But if you allow the users to input the GL then you are overriding the whole purpose of defining the valuation class and offsetting entries ? What is your opinion ?When you input the material in the goods issue screen the offsetting entry needs to be picked from the GBB -VBR .Although even if you do not enter the GL the system posts the Godds issue document .But from the control perspective this needs to be suppressed .
    What do you think ?
    I have also posted the same in Logistics forum .
    Once  again many thanks for your help .In case you find some solution this would be of great help
    Regards

  • Table name and field name for accounting and material document in MM

    Hi
    Table name and field name for accounting and material document in MM
    how can we diffreentiate the accounting document in MIGO and MIRO ?

    Hi,
    For Goods reciept documents you can search from the tables  MKPF-Header: Material Document and MSEG-Document Segment: Material,
    and for Invoice documents you can search in  tables   BKPF-Accounting Document Header and BSEG-Accounting Document Segment.
    For differentiating the Accounting documents in MIRO and MIGO based on posting key and document types for GRN -document key is -WE and for MIRO document is -RE.......
    Hope this may help you.....................

  • I just received a receipt for a purchased song on my account and no one in my family purchased it, what do i do

    I just received a receipt for a purchased song on my itunes account and no one in my family purchased this song, what should i do?

    Change your password, contact your credit card company and discuss reimbursement with them, and you can let itunes know that you may have been hacked by clicking "Support" at the top of this page and then click "Contact Us"

  • Difference between unapplied cash and unapplied receipts

    Can anyone explain the Difference between unapplied cash and unapplied receipt ?

    Unapplied cash simply means customer over paid and there is some dollar left which is 'Unapplied' then there is no transaction or Credit Memo associated to the unapplied amount.
    Unapplied receipt : You have only collected the money from customer ie receipt is created but you havn't tag this particular invoice is being appllied.

  • Getting "Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452)" error after upgradating to siebel Open UI 8.1.1.11

    Hello Team,
    We have upgraded from Siebel 8.1.1.3 to Siebel Open UI  8.1.1.11.
    But after up-gradation we are getting the below error in   "My Account Opportunity" View.
    We detected an Error which may have occurred for one or more of the following reasons:
    Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452).
    Thanks,
    Tirupati Nanda
    Mob:-9742404115

    Hello Team,
    We have upgraded from Siebel 8.1.1.3 to Siebel Open UI  8.1.1.11.
    But after up-gradation we are getting the below error in   "My Account Opportunity" View.
    We detected an Error which may have occurred for one or more of the following reasons:
    Join in business component definition 'CG Opportunity My Accounts' has source fields that come from tables 'S_OPTY' and 'S_ORG_EXT'(SBL-DAT-00452).
    Thanks,
    Tirupati Nanda
    Mob:-9742404115

  • I want a SAP Financial Accounting and Controlling question,

    hi

    Hi
    Can u send me your personal Email ID, I will forward it again.
    Enterprise Structure
    What is a Company Code and what are the basic organizational
    assignments to a company code?
    Company Code is a legal entity for which financial statements like Profit
    and Loss and Balance Sheets are generated. Plants are assigned to the
    company code, Purchasing organization is assigned to the company code,
    and Sales organization is assigned to the company code.
    What is the relation between a Controlling Area and a Company
    code?
    A Controlling area can have the following 2 type of relationship with a
    Company code
    a. Single Company code relation
    b. Cross Company code relation
    This means that one single controlling area can be assigned to several
    different company codes. Controlling can have a one is to one
    relationship or a one is to many relationship with different company
    codes.
    Controlling Area is the umbrella under which all controlling activities of
    Cost Center Accounting, Product Costing, Profit Center and Profitability
    Analysis are stored.
    In a similar way Company Codes is the umbrella for Finance activities.
    How many Chart of Accounts can a Company code have?
    A single Company code can have only one Chart of Account assigned to
    it. The Chart of Accounts is nothing but the list of General Ledger
    Accounts.
    What are the options in SAP when it comes to Fiscal years?
    Fiscal year is nothing but the way financial data is stored in the system.
    SAP provides you with the combination of 12 normal periods and also
    four special periods. These periods are stored in what is called the fiscal
    year variant.
    There are two types of Fiscal Year Variant
    · Calendar Year – e.g. Jan-Dec
    · Year Dependent Fiscal Year .
    What is a year dependent fiscal year variant ?
    In a year dependent fiscal year variant the number of days in a month
    are not as per the calendar month. Let us take an example:- For the year
    2005 the period January ends on 29th, Feb ends on 27th, March ends on
    29. For the year 2006 January ends on 30th, Feb ends on 26th, March
    ends on 30th. This is applicable to many countries especially USA. Ever
    year this fiscal year variant needs to be configured in such a case
    How does posting happen in MM (Materials Management) during
    special periods?
    There is no posting which happens from MM in special periods. Special
    periods are only applicable for the FI module. They are required for
    making any additional posting such as closing entries, provisions. which
    happen during quarter end or year end.
    How many currencies can be configured for a company code?
    A company code can have 3 currencies in total. They are local currency
    ie company code currency) and 2 parallel currencies. This gives the
    company the flexibility to report in the different currencies.
    Do you require to configure additional ledger for parallel currencies?
    Where only 2 currencies are configured (Company code currency and a
    parallel currency) there is no need for an additional ledger. In case the
    third parallel currency is also configured and if it is different than the
    second currency type, you would then need to configure additional
    ledger.
    If there are two company codes with different chart of accounts how
    can you consolidate their activities?
    In this case you either need to write an ABAP program or you need to
    implement the Special Consolidation Module of SAP. If both the company
    codes use the same chart of accounts then standard SAP reports give
    you the consolidated figure.
    FI-GL
    Give some examples of GL accounts that should be posted
    automatically through the system and how is this defined in the
    system.
    Stock and Consumption accounts are instances of GL accounts that
    should be automatically posted . In the GL account master record, a
    check box exists wherein the automatic posting option is selected called “
    Post Automatically Only”
    What is a Account group and where is it used?
    An Account group controls the data that needs to be entered at the time
    of creation of a master record. Account groups exist for the definition of a
    GL account, Vendor and Customer master. It basically controls the fields
    which pop up during master data creation in SAP.
    What is a field status group?
    Field status groups control the fields which come up when the user does
    the transactions. There are three options for field selection. They are:
    Display only
    Suppressed
    Mandatory
    So basically you can have any field either for display only or you can
    totally suppress it or make it mandatory.
    The field status group is stored in the FI GL Master Record.
    What is the purpose of a “Document type” in SAP?
    A Document type is specified at the Header level during transaction entry
    and serves the following purposes:
    · It defines the Number range for documents
    · It controls the type of accounts that can be posted to eg
    Assets, Vendor, Customer, Normal GL account
    · Document type to be used for reversal of entries
    · Whether it can be used only for Batch input sessions
    Document Type is created for differentiating business transactions. Eg
    Vendor Invoice, Credit Memo, Accrual Entries,Customer Invoice. It is a
    two digit character.
    What is a Financial Statement Version?
    A FSV (Financial Statement Version) is a reporting tool and can be used
    to depict the manner in which the financial accounts like Profit and Loss
    Account and Balance Sheet needs to be extracted from SAP. It is freely
    definable and multiple FSV's can be defined for generating the output for
    various external agencies like Banks and other Statutory authorities.
    How are input and output taxes taken care of in SAP?
    A tax procedure is defined for each country and tax codes are defined
    within this. There is flexibility to either expense out the Tax amounts or
    Capitalize the same to Stocks.
    What are Validations and Substitutions?
    Validations/Substitutions in SAP are defined for each functional area
    e.g. FI-GL, Assets, Controlling etc at the following levels
    1. Document level
    2. Line item level
    These need to be specifically activated and setting them up are complex
    and done only when it is really needed. Often help of the technical team
    is taken to do that.
    Is it possible to maintain plant wise different GL codes?
    Yes. To be able to do so the valuation group code should be activated.
    The valuation grouping code is maintained per plant and is configured in
    the MM module. Account codes should be maintained per valuation
    grouping code after doing this configuration.
    Is Business area at company code Level?
    No. Business area is at client level. What this means is that other
    company codes can also post to the same business area.
    What are the different scenarios under which a Business Area or a
    Profit Center may be defined?
    This question is usually very disputable. But both Business Areas and
    Profit centers are created for internal reporting. Each has its own pros
    and cons but many companies nowadays go for Profit center as there is a
    feeling that business area enhancements would not be supported by SAP
    in future versions.
    There are typical month end procedures which need to be executed for
    both of them and many times reconciliation might become a big issue. A
    typical challenge in both of them is in cases where you do not know the
    Business Area or Profit Center of the transaction at the time of posting.
    What are the problems faced when a Business area is configured?
    The problem of splitting of account balance is more pertinent in case of
    tax accounts.
    Is it possible to default certain values for particular fields? For e.g.
    company code.
    Yes it is possible to default values for certain fields where a parameter id
    is present.
    Step 1 Go to the input field to which you want to make defaults.
    Step 2 Press F1, then click technical info push button. This would open
    a window that displays the corresponding parameter id (if one has been
    allocated to the field) in the field data section.
    Step 3 Enter this parameter id using the following path on SAP Easy
    access screen System à User profile à Own data.
    Step 4 Click on parameter tab. Enter the parameter id code and enter the
    value you want as default. Save the usersettings.
    Which is the default exchange rate type which is picked up for all
    SAP transactions?
    The default exchange rate type picked up for all SAP transactions is M
    (average rate)
    Is it possible to configure the system to pick up a different exchange
    rate type for a particular transaction?
    Yes it is possible. In the document type definition of GL, you need to
    attach a different exchange rate type.
    What are the master data pre-requisites for document clearing?
    The Gl Account must be managed as an ‘open item management’ . This
    checkbox is there in the General Ledger Master Record called Open Item
    Management. It helps you to manage your accounts in terms of cleared
    and uncleared items. A typical example would be GR/IR Account in SAP
    (Goods Received/Invoice Received Account)
    Explain the importance of the GR/IR clearing account.
    GR/IR is an interim account. In the legacy system of a client if the goods
    are received and the invoice is not received the provision is made for the
    same.
    In SAP at the Goods receipt stage the system passes an accounting entry
    debiting the Inventory and crediting the GR/IR Account .Subsequently
    when an invoice is recd this GR/IR account is debited and the Vendor
    account is credited. That way till the time that the invoice is not received
    the GR/IR is shown as uncleared items.
    How many numbers of line items in one single entry you can have?
    The number of line items in one document you can accommodate is 999
    lines.
    A Finance Document usually has an assignment field. This field
    automatically gets populated during data entry. Where does it get
    its value?
    This value comes from the Sort key entered in the Gl master record.
    How do you maintain the number range in Production environment?
    Do you directly create it in the Production box or do you do it by
    means of transport?
    Number range is to be created in the production client. You can
    transport it also by way of request but creating in the production client is
    more advisable.
    In customizing “company code productive “means what? What does
    it denote?
    Once the company code is live(real time transactions have started) this
    check box helps prevents deletion of many programs accidentally. This
    check box is activated just before go live.
    What is done by GR/IR regrouping program?
    The balance in a GR/IR account is basically because of 2 main types of
    transactions:-
    Goods delivered but invoice not received – Here the Goods receipt is
    made but no invoice has yet been received from the vendor. In such a
    scenario GR/IR account will have a credit balance.
    Invoiced received but goods not delivered – Here the Invoice is
    received from the vendor and accounted for, but goods have not been
    received. In such a scenario GR/IR account will have a debit balance.
    The GR/IR account would contain the net value of the above two types of
    transactions. The GR/IR regrouping program analyses the above
    transactions and regroups them to the correct adjustment account. The
    balance on account of first transactions will be regrouped to another
    liability account and the balance on account of second transactions will
    be regrouped to an asset account.
    What are the functionalities available in the financial statement
    version?
    In the financial statement version the most important functionality
    available is the debit credit shift. This is more important in case of
    Bank overdraft accounts which can have a debit balance or a credit
    balance. Thus in case of a debit balance you would require the overdraft
    account to be shown on the Asset side. In case of credit balance you
    would require the account to be shown on the Liability side.
    Is it possible to print the financial statement version on a SAPscript
    form?
    Yes. It is possible to print the financial statement version on a SAPscript
    form.
    How do you configure the SAPscript form financial statement
    version?
    It is possible to generate a form from the financial statement version and
    print the financial statements on a SAPscript form. In the customizing for
    financial statement version select the FSV you created and choose Goto
    à Generate form à One column or Two column form.
    You can also copy form from the standard system.
    Is it possible to generate a financial statement form automatically?
    Yes. It is possible to generate a form automatically.
    Is it possible to keep the FI posting period open only for certain GL
    codes?
    Yes. It is possible to keep open the FI posting period only for certain GL
    codes.
    How do you keep the FI posting period open only for certain GL
    codes?
    In transaction code OB52 click on new entries and maintain an interval
    or a single GL code for the account type S with the posting period
    variant. If the GL codes are not in sequence then you need to maintain
    further entries for the posting period variant and account type S.
    Can posting period variant be assigned to more than 1 company
    code?
    Yes. Posting period variant can be assigned to more than one company
    code.
    Accounts Receivable and Accounts
    Payable
    At what level are the customer and vendor codes stored in SAP?
    The customer and vendor code are at the client level. That means any
    company code can use the customer and vendor code by extending the
    company code view.
    How are Vendor Invoice payments made?
    Vendor payments can be made in the following manner:
    Manual payments without the use of any output medium like cheques
    etc.
    Automatic Payment program through cheques, Wire transfers, DME etc.
    How do you configure the automatic payment program?
    The following are the steps for configuring the automatic payment
    program:-
    Step 1 Set up the following:
    Co. code for Payment transaction
    Define sending and paying company code.
    Tolerance days for payable
    Minimum % for cash discount
    Maximum cash discount
    Special GL transactions to be paid
    Step 2 Set up the following:
    Paying company code for payment transaction
    Minimum amount for outgoing payment
    No exchange rate diff
    Separate payment for each ref
    Bill/exch payment
    Form for payment advice
    Step 3 Set up the following:
    Payment method per country
    Whether Outgoing payment
    Check or bank transfer or B/E
    Whether allowed for personnel payment
    Required master data
    Doc types
    Payment medium programs
    Currencies allowed
    Step 4 Set up the following:
    Payment method per company code for payment transactions
    Set up per payment method and co. code
    The minimum and maximum amount.
    Whether payment per due day
    Bank optimization by bank group or by postal code or no
    optimization
    Whether Foreign currency allowed
    Customer/Vendor bank abroad allowed
    Attach the payment form check
    Whether payment advice required
    Step 5 Set up the following:
    Bank Determination for Payment Transactions
    Rank the house banks as per the following
    Payment method, currency and give them ranking nos
    Set up house bank sub account (GL code)
    Available amounts for each bank
    House bank, account id, currency, available amount
    Value date specification
    Where do you attach the check payment form?
    It is attached to the payment method per company code.
    Where are Payment terms for customer master maintained?
    Payment terms for customer master can be maintained at two places i.e.
    in the accounting view and the sales view of the vendor master record.
    Which is the payment term which actually gets defaulted when the
    transaction is posted for the customer (accounting view or the sales
    view)?
    The payment term in the accounting view of the customer master comes
    into picture if the transaction originates from the FI module. If an FI
    invoice is posted (FB70) to the customer, then the payment terms is
    defaulted from the accounting view of the customer master.
    The payment term in the sales view of the customer master comes into
    picture if the transaction originates from the SD module. A sales order is
    created in the SD module. The payment terms are defaulted in the sales
    order from the sales view of the customer master.
    Where are Payment terms for vendor master maintained?
    Payment terms for Vendor master can be maintained at two places i.e. in
    the accounting view and the purchasing view.
    Which is the payment term which actually gets defaulted in
    transaction (accounting view or purchasing view)?
    The payment term in the accounting view of the vendor master comes
    into picture if the transaction originates from the FI module. If an FI
    invoice is posted (FB60) to the Vendor, then the payment terms is
    defaulted from the accounting view of the vendor master.
    The payment term in the purchasing view of the vendor master comes
    into picture if the transaction originates from the MM module. A
    purchase order is created in the MM module. The payment terms are
    defaulted in the purchase order from the purchasing view of the vendor
    master.
    Explain the entire process of Invoice verification from GR to Invoice
    verification in SAP with accounting entries?
    These are the following steps:
    A goods receipt in SAP for a purchased material is prepared referring a
    purchase order.
    When the goods receipt is posted in SAP the accounting entry passed is:-
    Inventory account Debit
    GR/IR account credit
    A GR/IR (which is Goods receipt/Invoice receipt) is a provision account
    which provides for the liability for the purchase. The rates for the
    valuation of the material are picked up from the purchase order.
    When the invoice is booked in the system through Logistics invoice
    verification the entry passed is as follows:-
    GR/IR account debit
    Vendor credit
    How are Tolerances for Invoice verification defined?
    The following are instances of tolerances that can be defined for Logistic
    Invoice Verification.
    c. Small Differences
    d. Moving Average Price variances
    e. Quantity variances
    f. Price variances
    Based on the client requirement, the transaction can be “Blocked” or
    Posted with a “Warning” in the event of the Tolerances being exceeded.
    Tolerances are nothing but the differences between invoice amount and
    payment amount or differences between goods receipt amount and
    invoice amount which is acceptable to the client.
    Can we change the reconciliation account in the vendor master?
    Yes. Reconciliation account can be changed in the vendor master
    provided that the authority to change has been configured. Normally we
    should not change the reconciliation account.
    What is the impact on the old balance when the reconciliation
    account in the vendor master is changed?
    Any change you make to the reconciliation account is prospective and
    not retrospective. The old items and balances do not reflect the new
    account only the new transactions reflect the account.
    There is an advance given by the customer which lies in a special GL
    account indicator A. Will this advance amount be considered for
    credit check?
    It depends on the configuration setting in the special GL indicator A. If
    the “Relevant to credit limit” indicator is switched on in the Special GL
    indicator A the advances will be relevant for credit check, otherwise it will
    not be relevant.
    In payment term configuration what are the options available for
    setting a default baseline date?
    There are 4 options available:-
    1) No default
    2) Posting date
    3) Document date
    4) Entry date
    What is generally configured in the payment term as a default for
    baseline date?
    Generally document date is configured in the payment term as a default
    for base line date.
    How do you configure a special GL indicator for Customer?
    You can use an existing special GL indicator ID or create a new one.
    After creating a special GL indicator id, update the chart of accounts and
    the Reconciliation account. Also as a last step you need to update the
    special GL code.
    The special GL code should also be marked as a Reconciliation account.
    Switch on the relevant for credit limit and commitment warning
    indicators in the master record.
    Bank Accounting:
    How is Bank Reconciliation handled in SAP?
    The bank reco typically follows the below procedure:
    First, the payment made to a Vendor is posted to an interim bank
    clearing account. Subsequently, while performing reconciliation, an entry
    is posted to the Main Bank account. You can do bank reconciliation
    either manually or electronically.
    How do you configure check deposit?
    The following are the steps for configuring check deposit:-
    Step1: Create account symbols for the main bank and incoming check
    account.
    Step2: Assign accounts to account symbols
    Step3: Create keys for posting rules
    Step4: Define posting rules
    Step5: Create business transactions and assign posting rule
    Step6: Define variant for check deposit
    What is the clearing basis for check deposit?
    In the variant for check deposit we need to set up the following
    a) fields document number ( which is the invoice number),
    b) amount
    c) Short description of the customer.
    The document number and the invoice amount acts as the clearing
    basis.
    How do you configure manual bank statement?
    The following are the steps for configuring manual bank statement:-
    Step1: Create account symbols for the main bank and the sub accounts
    Step2: Assign accounts to account symbols
    Step3: Create keys for posting rules
    Step4: Define posting rules
    Step5: Create business transaction and assign posting rule
    Step6: Define variant for Manual Bank statement
    How do you configure Electronic bank statement?
    The steps for Electronic Bank Statement are the same except for couple
    of more additional steps which you will see down below
    Step1: Create account symbols for the main bank and the sub accounts
    Step2: Assign accounts to account symbols
    Step3: Create keys for posting rules
    Step4: Define posting rules
    Step5: Create transaction type
    Step6: Assign external transaction type to posting rules
    Step7: Assign Bank accounts to Transaction types
    Fixed Assets
    What are the organizational assignments in asset accounting?
    Chart of depreciation is the highest node in Asset Accounting and this is
    assigned to the company code.
    Under the Chart of depreciation all the depreciation calculations are
    stored.
    How do you go about configuring Asset accounting?
    The configuration steps in brief are as follows:-
    a) Copy a reference chart of depreciation areas
    b) Assign Input Tax indicator for non taxable acquisitions
    c) Assign chart of depreciation area to company code
    d) Specify account determination
    e) Define number range interval
    f) Define asset classes
    g) Define depreciation areas posting to general ledger
    h) Define depreciation key
    Explain the importance of asset classes. Give examples?
    The asset class is the main criterion for classifying assets. Every asset
    must be assigned to only one asset class. Examples of asset class 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 mention 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 is automatically picked up and the entry passed.
    You can also specify certain control parameters and default values for
    depreciation calculation and other master data in each asset class.
    How are depreciation keys defined?
    The specifications and parameters that the system requires to calculate
    depreciation amounts are entered in Calculation methods. Calculation
    methods replace the internal calculation key of the depreciation key.
    Depreciation keys are defaulted in Asset Master from the asset class.
    Refer to the configuration for more details of how depreciation is
    calculated.
    A company has its books prepared based on Jan –Dec calendar year
    for reporting to its parent company. It is also required to report
    accounts to tax authorities based on April- March. Can assets be
    managed in another depreciation area based on a different fiscal
    year variant?
    No. Assets accounting module cannot manage differing fiscal year variant
    which has a different start date (January for book depreciation and April
    for tax depreciation) and different end date (December for book
    depreciation and March for tax depreciation). In this case you need to
    implement the special purpose ledger.
    What are the special steps and care to be taken in Fixed asset data
    migration into SAP system especially when Profit center accounting
    is active?
    Data migration is slightly different from a normal transaction which
    happens in Asset accounting module.
    Normally, in asset accounting the day to day transactions is posted with
    values through FI bookings and at the same time the asset reconciliation
    is updated online realtime. Whereas In data Migration the asset master
    is updated with values through a transaction code called as AS91. The
    values updated on the master are Opening Gross value and the
    accumulated depreciation. The reconciliation GL account is not
    automatically updated at this point of time.
    The reconciliation accounts (GL codes) are updated manually through
    another transaction code called as OASV.
    If profit center is active, then after uploading assets through AS91 you
    should transfer the asset balances to profit center accounting through a
    program.
    Thereafter you remove the Asset GL code (reconciliation accounts) from
    the 3KEH table for PCA and update the Asset reconciliation account (GL
    code) through OASV.
    After this step you again update the Asset reconciliation account in the
    3KEH table.
    The reason you remove the Asset reconciliation code from 3KEH table is
    that double posting will happen to PCA when you update the Asset
    reconciliation manually.
    Is it possible to calculate multiple shift depreciation? Is any special
    configuration required?
    Yes it is possible to calculate multiple shift depreciation in SAP for all
    types of depreciation except unit of production. No special configuration
    is required.
    How do you maintain multiple shift depreciation in asset master?
    The following steps are needed to maintain multiple shift depreciation:
    1. The variable depreciation portion as a percentage rate is to be
    maintained in the detail screen of the depreciation area.
    2. The multiple shift factor is to be maintained in the time dependent
    data in the asset master record. This shift factor is multiplied by
    the variable portion of ordinary depreciation.
    Once you have done the above the SAP system calculates the total
    depreciation amount as follows:-
    Depreciation amount = Fixed depreciation + (variable depreciation * shift
    factor)
    Let’s say you have changed the depreciation rates in one of the
    depreciation keys due to changes in legal requirements. Does
    system automatically calculate the planned depreciation as per the
    new rate?
    No. System does not automatically calculate the planned depreciation
    after the change is made. You need to run a program for recalculation of
    planned depreciation.
    What are evaluation groups?
    The evaluation groups are an option for classifying assets for reports or
    user defined match code (search code). You can configure 5 different
    evaluation groups. You can update these evaluation groups on to the
    asset master record.
    What are group assets?
    The tax requirements in some countries require calculation of
    depreciation at a higher group or level of assets. For this purpose you
    can group assets together into so-called group assets.
    What are the steps to be taken into account during a depreciation
    run to ensure that the integration with the general ledger works
    smoothly?
    For each depreciation area and company code, specify the following:
    1 The frequency of posting depreciation(monthly,quarterly etc)
    2 CO account assignment (cost center)
    3 For each company code you must define a document type for
    automatic depreciation posting: This document type requires its
    own external number range.
    4 You also need to specify the accounts for posting. (Account
    determination)
    Finally to ensure consistency between Asset Accounting and Financial
    Accounting, you must process the batch input session created by the
    posting report. 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 which is run in
    batches and then once the batch input is run the system posts the
    accounting entries into Finance.
    How do you change fiscal year in Asset Accounting?
    n Run The fiscal year change program which would open new annual
    value fields for each asset. i e next year
    &#159; The earliest you can start this program is in the last posting period of
    the current year.
    &#159; You have to run the fiscal year change program for your whole
    company code.
    &#159; You can only process a fiscal year change in a subsequent year if the
    previous year has already been closed for business.
    Take care not to confuse the fiscal year change program with year-end
    closing for accounting purposes. This fiscal year change is needed only in
    Asset Accounting for various technical reasons.
    Is it possible to have depreciation calculated to the day?
    Yes it is possible. You need to switch on the indicator “Dep to the day” in
    the depreciation key configuration.
    Is it possible to ensure that no capitalization be posted in the
    subsequent years?
    Yes it is possible. You need to set it in the depreciation key
    configuration.
    How are Capital Work in Progress and Assets accounted for in SAP?
    Capital WIP is referred to as Assets under Construction in SAP and are
    represented by a specific Asset class. Usually depreciation is not charged
    on Capital WIP.
    All costs incurred on building a capital asset can be booked to an
    Internal Order and through the settlement procedure can be posted 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.
    The company has procured 10 cars. You want to create asset
    masters for each of this car. How do you create 10 asset masters at
    the same time?
    While creating asset master there is a field on the initial create screen
    called as number of similar assets. Update this field with 10. When you
    finally save this asset master you will get a pop up asking whether you
    want to maintain different texts for these assets. You can update
    different details for all the 10 cars.
    FI-MM-SD Integration
    How do you go about setting the FI MM account determination ?
    FI MM settings are maintained in transaction code OBYC. Within these
    there are various transaction keys to be maintained like BSX, WRX,
    GBB, PRD etc. In each of these transaction keys you specify the GL
    accounts which gets automatically passed at the time of entry.
    Few examples could be: BSX- Stands for Inventory Posting Debit
    GBB-Standsfor Goods Issue/Scrapping/delivery
    of goods etc
    PRD- Stands for Price Differences.
    At what level is the FI-MM, FI-SD account determination settings?
    They are at the chart of accounts level.
    What are the additional settings required while maintaining or
    creating the GL codes for Inventory accounts?
    In the Inventory GL accounts (Balance sheet) you should switch on the
    ‘Post automatically only’ tick. It is also advisable to maintain the
    aforesaid setting for all FI-MM accounts and FI-SD accounts. This helps
    in preserving the sanctity of those accounts and prevents from having
    any difference between FI and MM, FI and SD.
    What is Valuation and Account assignment in SAP?
    This is actually the link between Materials Management and Finance.
    The valuation in SAP can be at the plant level or the company code level.
    If you define valuation at the plant level then you can have different
    prices for the same material in the various plants. If you keep it at the
    company code level you can have only price across all plants.
    Valuation also involves the Price Control .Each material is assigned to a
    material type in Materials Management and every material is valuated
    either in Moving Average Price or Standard Price in SAP. These are the
    two types of price control available.
    What is Valuation Class?
    The Valuation Class in the Accounting 1 View in Material Master is the
    main link between Material Master and Finance. This Valuation Class
    along with the combination of the transaction keys (BSX,WRX,GBB,PRD )
    defined above determine the GL account during posting.
    We can group together different materials with similar properties by
    valuation class. Eg Raw material,Finsihed Goods, Semi Finished
    We can define the following assignments in customizing :
    All materials with 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.
    Can we change the valuation class in the material master once it is
    assigned?
    Once a material is assigned to a valuation class in the material master
    record, we can change it only if the stocks for that material are nil. If the
    stock exists for that material, then we cannot change the valuation class.
    In such a case, if the stock exists, we have to transfer the stocks or issue
    the stocks and make the stock nil for the specific valuation class. Then
    only we will be able to change the valuation class.
    Does the moving average price change in the material master during
    issue of the stock assuming that the price control for the material is
    Moving Average?
    The moving average price in the case of goods issue remains unchanged.
    Goods issue are always valuated at the current moving average price. It
    is only in goods receipt that the moving average price might change. A
    goods issue only reduces the total quantity and the total value in relation
    to the price and the moving price remains unchanged. Also read the
    next question to learn more about this topic.
    If the answer to the above question is ‘Yes’, then list the scenario in
    which the moving average price of the material in the material
    master changes when the goods are issued.
    The moving average price in the material master changes in the scenario
    of Split Valuation which is sometimes used by many organizations. If the
    material is subject to split valuation, the material is managed as Several
    partial stocks and each partial stock is valuated separately.
    In split valuation, the material with valuation header record will have ‘v’
    moving average price. This is where the individual stocks of a material
    are managed cumulatively. Here two valuation types are created, one
    valuation type can have ‘v’ (MAP) and the other valuation type can have
    ‘s’(standard price).
    In this case, whenever the goods are issued from the respective valuation
    types, always the MAP for the valuation header changes.
    What is the accounting entry in the Financial books of accounts
    when the goods are received in unrestricted use stock? Also
    mention the settings to be done in the ‘Automatic postings’ in SAP
    for the specific G/L accounts.
    On receipt of the goods in unrestricted-use stock, the Inventory account
    is debited and the GR/IR account gets credited. In customization, in the
    automatic postings, the Inventory G/L account is assigned to the
    Transaction event key BSX and the GR/IR account is assigned to the
    Transaction event key WRX.
    If a material has no material code in SAP, can you default the G/L
    account in Purchase order or it has to be manually entered?.
    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 posting, 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 groups.
    What is the procedure in SAP for Initial stock uploading? Mention
    the accounting entries also.
    Initial stock uploading in SAP from the legacy system is done with
    inventory movement type 561( a MM transaction which is performed).
    Material valuated at standard price: For a material valuated at
    standard price, the initial entry of inventory data is valuated on the basis
    of standard price in the material master. If you enter an alternative value
    at the time of the movement type 561, then the system posts the
    difference to the price difference account.
    Material valuated at moving average price: The initial entry of
    inventory data is valuated as follows : If you enter a value when
    uploading the initial data, the quantity entered is valuated at this price.
    If you do not enter a value when entering initial data, then the quantity
    entered is valuated at the MAP present in the material master.
    The accounting entries are: Inventory account is debited and Inventory
    Historical upload account is credited.
    How do you configure FI-SD account determination?
    The FI-SD account determination happens through an access sequence.
    The system goes about finding accounts from more specific criteria to
    less specific criteria.
    This is the sequence it would follow:
    1) It will first access and look for the combination of Customer
    accounts assignment grp/ Material account assignment grp/
    Account key.
    2) If it does not find the accounts for the first combination it will look
    for Customer account assignment grp and account key
    combination.
    3) Furthermore, if it does not find accounts for the first 2 criteria’s
    then it will look for Material account assignment grp/Account key.
    4) If it does not find accounts for the all earlier criteria’s then finally it
    will look for Account key and assign the GL code.
    Thus posting of Sales Invoices into FI are effected on the basis of a
    combination of Sales organization, Account type, or Customer and
    Material Account assignment groups and following are the options
    available.
    a. Customer AAG/Material AAG/Account type
    b. Material AAG/Account type
    c. Customer AAG/Account type
    For each of this option you can define a Gl account. Thus the system
    uses this gl account to automatically pass the entries.
    Logistics Invoice Verification
    Can you assign multiple G/L accounts in the Purchase order for the
    same line item?
    Yes, we can assign multiple G/L accounts in the Purchase order for the
    same line item. The costs can be allocated on a percentage or quantity
    basis. If the partial goods receipt and partial invoice receipt has already
    taken place, then the partial invoice amount can be distributed
    proportionally, i.e. evenly among the account assigned items of a
    Purchase order. Alternatively the partial invoice amount can be
    distributed on a progressive fill-up basis, i.e. the invoiced amount is
    allocated to the individual account assignment items one after the other.
    What is Credit memo and subsequent debit in Logistics Invoice
    verification?
    The term credit memo refers to the credit memo from the vendor.
    Therefore posting a credit memo always leads to a debit posting on the
    vendor account. Credit memos are used if the quantity invoiced is higher
    than the quantity received or if part of the quantity was returned.
    Accounting entries are : Vendor account is debited and GR/IR account is
    credited.
    Subsequent debit : If a transaction has already been invoiced and
    additional costs are invoiced later, then subsequent debit is necessary. In
    this case you can debit the material with additional costs, i.e. GR/IR
    account debit and Vendor account credit. When entering the Subsequent
    debit, if there is no sufficient stock coverage, only the portion for the
    available stock gets posted to the stock account and rest is posted to the
    price difference account.
    What do you mean by Invoice parking, Invoice saving and Invoice
    confirmation?
    Invoice parking : Invoice Parking is a functionality which allows you to
    create incomplete documents and the system does not check whether the
    entries are balanced or not. An accounting documents is also not created
    when the invoice is in parked mode.
    Thus you can create incomplete documents and then post it later to
    accounting when you feel it is complete. You can even rectify the Parked
    invoice. This feature is used by many companies as on many occasions
    all data relating to the invoice might not be available.
    Invoice saving : This is also called Invoice processing or Invoice posting.
    The accounting document gets created when the invoice is posted in SAP.
    Invoice confirmation : There is no terminology in SAP as Invoice
    confirmation.
    What are Planned delivery costs and Unplanned delivery costs?
    Planned delivery costs: are entered at the time of Purchase order. At
    goods receipt, a provision is posted to the freight or customs clearing
    account.
    e.g. FRE is the account key for freight condition, hence the system can
    post the freight charges to the relevant freight revenue account and FR3
    is the account key for Customs duty, hence the system can post the
    customs duty to the relevant G/L account.
    These account keys are assigned to the specific condition types in the
    MM Pricing schema.
    In terms of Invoice verification : If the freight vendor and the material
    vendor is the same : then we can choose the option : Goods service items
    + Planned delivery costs.
    If the freight vendor is different from the material vendor: then for
    crediting only the delivery costs, we can choose the option: Planned
    delivery costs.
    Unplanned delivery costs: are the costs which are not specified in the
    Purchase order and are only entered when you enter the invoice.
    What is the basis on which the apportionment is done of unplanned
    delivery costs?
    Unplanned delivery costs are either uniformly distributed among the
    items or posted to a separate G/L account.
    For a material subjected to Moving average price, the unplanned delivery
    costs are posted to the stock account, provided sufficient stock coverage
    exists.
    For a material subjected to Standard price, the unplanned delivery costs
    are posted to the Price difference account.
    There are cases where Invoice verification is done first before the
    Goods receipt is made for the purchase order . In these cases with
    what values would the Goods receipt be posted ?
    Since the invoice verification has been done first the Goods Receipts will
    be valued with the Invoice value.
    FI Month End Closing Activities
    What are the Month End Closing Activities in Finance?
    1. Recurring Documents.
    a) Create Recurring documents
    b) Create Batch Input for Posting Recurring Documents
    c) Run the Batch Input Session
    2. Posting Accruals or Provisions entries at month end
    3. Managing the GR/IR Account-Run the GR/Ir Automatic Clearing
    4. Foreign Currency Open Item Revaluation-Revalue Open Items in
    AR.AP
    5. Maintain Exchange Rates
    6. Run Balance Sheets –Run Financial Statement Version
    7. Reclassify Payables and Receivables if necessary
    8. Run the Depreciation Calculation
    9. Fiscal Year Change of Asset Accounting if it is year end
    10. Run the Bank Reconciliation
    11. Open Next Accounting Period
    Controlling Module
    Explain the organizational assignment in the controlling module?
    Company codes are assigned to the controlling area. A controlling area
    is assigned to the operating concern.
    Controlling Area is the umbrella under which all controlling activities of
    Cost Center Accounting, Product costing, Profitability Analysis and Profit
    Center are stored.
    Operating Concern is the highest node in Profitability Analysis
    What is primary Cost element and secondary cost element?
    Every Profit and Loss GL account that needs to be controlled has to be
    defined as a cost element in SAP. Just as in FI General Ledger Accounts
    exist, in Controlling we have Cost element.
    Each FI General Ledger Account that is a Profit and Loss Account is also
    created as a Cost element in SAP.
    Primary Cost Elements are those which are created from FI general
    Ledger Accounts and impact the financial accounts eg. Travelling
    expenses, consumption account infact, any Profit and Loss GL account
    Secondary Cost Elements are those which are created only in
    controlling and does not affect the financials of the company. It is used
    for internal reporting only. The postings to these accounts do not affect
    the Profit or Loss of the company.
    The following categories exist for secondary cost elements:
    21 Internal Settlement:
    Cost elements of this category is used to settle order costs to objects in
    controlling such as cost centers, pa segments etc.
    31 Order/Results Analysis:
    Used to calculate WIP on the order/project
    41 Overhead
    Used to calculate indirect costs from cost centers to orders
    42. Assessment
    Used to calculate costs during assessment
    43 Internal Activity Allocation
    Used to allocate costs during internal activity allocation such as Machine
    Labour etc
    What are cost objects?
    A cost object means a cost or a revenue collector wherein all the costs or
    revenues are collected for a particular cost object. Examples of this could
    be cost center, production order, internal order, projects, sales order
    So whenever you look at any controlling function the basic thing you
    need to ask yourself is What is the cost element(expense) I want to
    control and what is the cost object ( i.e. either the production order, sales
    order, internal order) I am using to control this cost element. Sounds
    confusing read it again it is very simple
    Controlling is all about knowing the cost element and the cost
    object. Every time pose this question to yourself what is the cost
    element what is the cost object.
    At the end of the period all costs or revenues in the cost object are settled
    to their respective receivers which could be a gl account, a cost center,
    profitability analysis or asset.
    It is very important that you understand this otherwise you would
    struggle to understand Controlling.
    Cost Center Accounting:
    How is cost center accounting related to profit center?
    In the master data of the Cost Center there is a provision to enter the
    profit center. This way all costs which flow to the cost center are also
    captured in the profit center.
    Cost centers are basically created to capture costs e.g. admin cost center,
    canteen cost center etc
    Profit centers are created to capture cost and revenue for a particular
    plant, business unit or product line.
    What is a cost element group?
    Cost element group is nothing but a group of cost elements which help
    one to track and control cost more effectively. You can make as many
    number of cost element groups as you feel necessary by combining
    various logical cost elements.
    What is a cost center group?
    In a similar line the cost center group is also a group of cost centers
    which help one to track and control the cost of a department more
    effectively. You can make as many number of cost centers as you feel
    necessary by combining various logical cost centers
    Infact you can use various combinations of cost center group with the
    cost element group to track and control your costs per department or
    across departments
    What is the difference between Distribution and Assessment?
    Distribution uses the original cost element for allocating cost to the
    sender cost center. Thus on the receiving cost center we can see the
    original cost element from the sender cost center. Distribution only
    allocates primary cost.
    Assessment uses assessment cost element No 43 defined above to
    allocate cost. Thus various costs are summarized under a single
    assessment cost element. In receiver cost center the original cost
    breakup from sender is not available. Assessment allocates both primary
    as well as secondary cost.
    What are the other activities in Cost center?
    If you have a manufacturing set up, entering of Activity prices per cost
    center/activity type is an important exercise undertaken in Cost center
    accounting.
    What is an Activity Type?
    Activity types classify the activities produced in the cost centers.
    Examples of Activity Type could be Machine, Labour, Utilities
    You want to calculate the activity price through system? What are
    the requirements for that?
    In the activity type master you need to select price indicator 1 – Plan
    price, automatically based on activity.
    When activity price is calculated through system whether activity
    price is shown as fixed or variable?
    Normally when activity price is calculated through system it is shown as
    fixed activity price since primary cost are planned as activity independent
    costs.
    What is required to be done if activity price is to be shown both
    fixed and variable?
    In this case you need to plan both activity independent cost which are
    shown as fixed costs and activity dependent costs which are shown as
    variable costs.
    Is it possible to calculate the planned activity output through
    system?
    Yes. It is possible to calculate the planned activity output through
    system by using Long term Planning process in PP module.
    Explain the process of calculating the planned activity output
    through Long term planning?
    In Long term planning process the planned production quantities are
    entered for the planning year in a particular scenario. The Long term
    planning is executed for the scenario. This generates the planned activity
    requirements taking the activity quantities from the routing and
    multiplying with the planned production.
    The activity requirements are then transferred to the controlling module
    as scheduled activity quantities. Thereafter you execute a plan activity
    reconciliation which will reconcile the schedule activity and the activity
    you have planned manually. The reconciliation program updates the
    scheduled activity quantity as the planned activity in the controlling
    module.
    You want to revalue the production orders using actual activity
    prices. Is there any configuration setting?
    Yes. There is a configuration setting to be done.
    Where is the configuration setting to be done for carrying out
    revaluation of planned activity prices in various cost objects?
    The configuration setting is to be done in the cost center accounting
    version maintenance for fiscal year. This has to be maintained for version
    0. You need to select revalue option either using own business
    transaction or original business transaction.
    At month end you calculate actual activity prices in the system.
    You want to revalue the production orders with this actual activity
    prices. What are the options available in the system for revaluation?
    The options available are as follows:-
    You can revalue the transactions using periodic price, average price or
    cumulative price.
    Further you can revalue the various cost objects as follows:-
    Own business transaction – Differential entries are posted
    Original business transaction – The original business transaction is
    changed.
    Internal orders
    What is the purpose of defining Internal orders.?
    An example would help us understand this much better.
    Lets say in an organization there are various events such as trade fairs,
    training seminars, which occur during the year. Now lets assume for a
    second that these Trade fairs are organized by the Marketing cost center
    of the organization. Therefore in this case marketing cost center is
    responsible for all the trade fairs costs. All these trade fairs costs are
    posted to the marketing cost centers. Now if the management wants an
    analysis of the cost incurred for each of the trade fair organized by
    the marketing cost center how would the marketing manager get
    this piece of information across to them? The cost center report
    would not give this piece of info
    Now this is where Internal Order steps in .If you go through all cost
    center reports this information is not readily available since all the costs
    are posted to the cost center.
    SAP, therefore provides the facility of using internal orders which comes
    in real handy in such situations. In the above scenario the controlling
    department would then need to create an internal order for each of the
    trade fair organized. The cost incurred for each of the trade fair will be
    posted to the internal orders during the month. At the month end, these
    costs which are collected in the internal order will be settled from these
    orders to the marketing cost center. Thus the controlling person is now
    in a position to analyze the cost for each of the trade fair separately.
    Thus internal order is used to monitor costs for short term events,
    activities. It helps in providing more information than that is provided on
    the cost centers. It can be widely used for various purposes .
    How can you default certain items while creation of internal order
    master data?
    You can do so by creating a model order and then update the fields
    which you want to default in this model order. Finally attach this model
    order in the internal order type in the field reference order.
    Once the above is done whenever you create an internal order for this
    order type the field entries will get copied from the model order.
    What is the configuration setting for the release of the internal
    order immediately after creation?
    You have to check the “release immediately” check box in the
    internal order type.
    Product Costing
    What are the important Terminologies in Product Costing?:
    Results Analysis Key – This key determines how the Work in Progress is
    calculated
    Cost Components - The break up of the costs which get reflected in
    the product costing eg. Material Cost, Labour Cost, Overhead etc
    Costing Sheets - This is used to calculate the overhead in
    Controlling
    Costing Variant - For All manufactured products the price control
    recommended is Standard Price. To come up with this standard price for
    the finished good material this material has to be costed. This is done
    using Costing Variant. Further questions down below will explain this
    concept better.
    What are the configuration settings maintained in the costing
    variant?
    Costing variant forms the link between the application and Customizing,
    since all cost estimates are carried out and saved with reference to a
    costing variant. The costing variant contains all the control parameters
    for costing.
    The configuration parameters are maintained for costing type, valuation
    variants, date control, and quantity structure control.
    In costing type we specify which field in the material master should be
    updated.
    In valuation variant we specify the following
    a) the sequence or order the system should go about accessing
    prices for the material master (planned price, standard price,
    moving average price etc).
    b) It also contains which price should be considered for activity price
    calculation and .
    c) How the system should select BOM and routing.
    How does SAP go about costing a Product having multiple Bill of
    materials within it?
    SAP first costs the lowest level product, arrives at the cost and then goes
    and cost the next highest level and finally arrives at the cost of the final
    product.
    What does the concept of cost roll up mean in product costing
    context?
    The purpose of the cost roll up is to include the cost of goods
    manufactured of all materials in a multilevel production structure at the
    topmost level of the BOM(Bill of Material)
    The costs are rolled up automatically using the costing levels.
    1) The system first calculates the costs for the materials with the
    lowest costing level and assigns them to cost components.
    2) The materials in the next highest costing level (such as semifinished
    materials) are then costed. The costs for the materials
    costed first are rolled up and become part of the material costs of
    the next highest level.
    What is a settlement profile and why is it needed?
    All the costs or revenues which are collected in the Production order or
    Sales order for example have to be settled to a receiver at the end of the
    period. This receiver could be a Gl account, a cost center, profitability
    analysis or asset. Also read the question “What is a cost object “ in the
    section Controlling.
    In order to settle the costs of the production order or sales order a
    settlement profile is needed.
    In a settlement profile you define a range of control parameters for
    settlement. You must define the settlement profile before you can enter a
    settlement rule for a sender.
    The Settlement Profile is maintained in the Order Type and defaults
    during creating of order.
    Settlement profile includes:-
    1) the retention period for the settlement documents.
    2) Valid receivers GL account, cost center, order, WBS element, fixed
    asset, material, profitability segment, sales order, cost objects, order
    items, business process
    3) Document type is also attached here
    4) Allocation structure and PA transfer structure is also attached to the
    settlement profile e.g. A1
    The settlement profile created is then attached to the order type.
    What is Transfer or Allocation structure?
    The transfer structure is what helps in settling the cost from one cost
    object to the receiver. It is maintained in the Settlement profile defined
    above.
    The Transfer structure has 2 parts:
    a) Source of cost elements you want to settle
    b) Target receiver whether it is a Profitability segment or fixed asset or
    cost center
    So basically for settling the costs of a cost object you need
    to define the Transfer structure where you mention what
    are the costs you want to settle and the target receiver for
    that.
    This information you fit it in the settlement profile which
    contains various other parameters and this settlement
    profile is defaulted in the Order type. So every time a
    order is executed the relevant settlement rule is stored
    and at the month end by running the transaction of the
    settlement of orders all the cost is passed on to the
    receiver
    So to put in simple terms:
    a) You define your cost object which could be a
    production order a sales order for eg
    b) You collect costs or revenues for it
    c) You determine where you want to pass these costs or
    revenues to for eg if the sales order is the cost object
    all the costs or revenues of a sales order could be
    passed to Profitability Analysis
    What do you mean by primary cost compon

  • Cisco Jabber for Mac - Directory Lookup and Contact Fields

    Hello,
    After having issues myself with Cisco Jabber for Mac 9.2 specifically with Active Directory lookups not working, or contact information not populating (and therefore not being able to call users from the contact list as no telephone information exists) I am including a sample jabber-config.xml file that works for me.
    Please note: there are many different ways to configure this. What I will be showing is the method that works for me and my deployment, which is pretty standard.
    As always and as a disclaimer, once again, this is what has worked for my deployment scenario. Always keep backups of your configuration files, and always be mindful of anything you have configured already, especially in the jabber-config.xml file.
    Background
    My deployment is based on CUCM 9, with 1 publisher and 2 subscribers. I also have a CUCM IM & Presence 9.0 server. This assumes that you have already configured your deployment and Jabber is functioning already, albeit with the aforementioned issues.
    As for Active Directory, my deployment will be based on Windows 2008 R2 Domain Controllers running in native 2008 mode. For this example, we will be searching directly against one of the DCs with a Global Catalogue role. Please be aware that in large deployments you will have to plan accordingly with regards to lookup traffic from Jabber clients to the DCs.
    Also, as of Cisco Jabber for Mac 9, the client no longer can search via the CUCM internal directory (which may be made of local end users, Active Directory synced users, or a mix of both) and this must be done via a LDAP mechanism.
    Scenario
    In this deployment scenario, Cisco Jabber for Windows is working properly - you can search and add people from Active Directory, and contacts in your contact list have all the appropriate fields populated from Active Directory. However, when trying the same with Jabber for Mac, Jabber for iPhone or Jabber for iPad you notice that you cannot perform a directory lookup, and if you add people directly (for example, [email protected]) the user only has the IM field populated. No telephone, email or additional information is displayed.
    Solution
    Whereas Cisco Jabber for Windows uses the EDI mechanism (native Windows), whereby when running from a computer that is on the domain (or in the event that you are search for contacts in another Active Directory domain where a domain trust exists) , Jabber for Mac / iPhone / iPad uses the BDI mechanism.
    In this case, you will need to provision a jabber-config.xml file that you will upload to your TFTP server (or Publisher) that will be "downloaded" by your Jabber for Mac client and also used by the iPhone and iPad client. You can configure many options in the jabber-config.xml file, but for this example we will place just the information that we need to order for these clients to request and display Active Directory information.
    Please note that the configuration may vary depending on your deployment, but at the very least we will be:
    - Configuring a DC where we will perform the lookup.
    - Configure credentials that will be used to perform the lookup. This will be an Active Directory account that has read rights on the Active Directory domain. Please note that these credentials are saved in plain text in the file, so ensure that the account that you will be using is not privileged.
    - Configure the server port that we will be using to perform the lookup.
    - Configure the Search Base. This is basically where we want the directory lookup to happen. You can either choose for this lookup to start at the "base" of the domain (and therefore the search will iterate through all the user accounts and and OUs below the root base) or define a specific OU where you want to search.
    Caution!
    - There is a current limitation with Cisco Jabber for Mac whereby you can only have 1 search base configured. Please keep this in mind if, like me, you have multiple OUs (like an OU for each company in your organization) and under these OUs you have sub OUs as a user account container.
    - If using the top level search base, unless you specify a filter, you will potentially be able to search for all user accounts in the domain. You will need to configure the <BDIBaseFilter> parameter if you want to fine tune your search ability.
    Steps
    These are the steps I have followed. Other steps or considerations may vary.
    - Log in to your TFTP server and download the jabber-config.xml file and keep it as a backup. If you are already using the jabber-config.xml file for other purposes, do not worry - you can add your BDI information parameters inside.
    - Remove the jabber-config.xml file
    - Edit the jabber-config.xml file and configure thus:
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0">
        <Directory>
            <DirectoryServerType>BDI</DirectoryServerType>
            <BDILDAPServerType>AD</BDILDAPServerType>
            <BDIPrimaryServerName>DOMAIN CONTROLLER IP ADDRESS</BDIPrimaryServerName>
            <BDIPresenceDomain>YOUR PRESENCE DOMAIN</BDIPresenceDomain>
            <BDIServerPort1>3268</BDIServerPort1>
            <BDISearchBase1>YOUR SEARCH BASE</BDISearchBase1>
            <BDIConnectionUsername>[email protected]</BDIConnectionUsername>
            <BDIConnectionPassword>PASSWORD</BDIConnectionPassword>
            <BDIEnableTLS>0</BDIEnableTLS>
        </Directory>
    </config>
    For example, let´s assume the following:
    - Domain controller IP address is 10.1.1.2 .
    - Your presence domain is test.local .
    - Your search base will be test.local using the top level of the domain.
    - Your username with which you will be doing your searches is called walt . Usually you can either identify walt as test.local\walt or [email protected] . It is always best, in these sort of scenarios, to use the UPN convention so we will be configuring a [email protected] .
    - The password is the Active Directory password for the account walt .
    - I have disabled TLS in my case. There are issues with the Jabber for Mac client when using other security methods.
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0">
        <Directory>
            <DirectoryServerType>BDI</DirectoryServerType>
            <BDILDAPServerType>AD</BDILDAPServerType>
            <BDIPrimaryServerName>10.1.1.2</BDIPrimaryServerName>
            <BDIPresenceDomain>test.local</BDIPresenceDomain>
            <BDIServerPort1>3268</BDIServerPort1>
            <BDISearchBase1>DC=test,DC=local</BDISearchBase1>
            <BDIConnectionUsername>[email protected]</BDIConnectionUsername>
            <BDIConnectionPassword>walt01!</BDIConnectionPassword>
            <BDIEnableTLS>0</BDIEnableTLS>
        </Directory>
    </config>
    One you have configured the jabber-config.xml file, you will now need to upload it to you TFTP server. Once uploaded, you will need to restart the Cisco TFTP service. Again, my TFTP server is on my CUCM publisher, so:
    - I go to Cisco Unified OS Administration on my Publisher server, TFTP File Management and I upload jabber-config.xml to / directory
    - I then go to Cisco Unified Serviceability on my Publisher server, I locate the Cisco TFTP service and I restart the service
    Once this is done, you can figure up your Jabber for Mac client. As a test, on your Mac (using Terminal) go to:
    /Users/username/Library/Application Support/Cisco/Unified Communications/Jabber/Config
    In here you will see several files, but what we want to see is jabber-config.xml . As soon as you start the Jabber for Mac client and log in, the jabber-config.xml file will download from your TFTP server and get saved here. When you see it appear, just type in your terminal window more jabber-config.xml and make sure that the output is the same as the xml file you created.
    From there, try doing directory search. If you have previously added contacts and they still lack attribute information, you will need to remove them (sometimes it will not refresh properly) and add them again from the directory.
    I will be updating this guide and ammending anything that is incorrect, but this is meant to be a quick checklist and steps to get this, at least in the most very basic version, up and running for Jabber for Mac.

    Hello, 
    Thanks for this post! It works, I can do lookup and also I can add found contact to contact list and get information about contact from LDAP.
    One more question: - I can't get all information about contact. I don't get e.c mobile phone number and more others attributes. I have tried to expand your file as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0">
        <Directory>
            <DirectoryServerType>BDI</DirectoryServerType>
            <BDILDAPServerType>AD</BDILDAPServerType>
            <BDIPrimaryServerName>IP of AD</BDIPrimaryServerName>
            <BDIPresenceDomain>Presence Domain</BDIPresenceDomain>
            <BDIServerPort1>3268</BDIServerPort1>
            <BDISearchBase1> Search Base</BDISearchBase1>
            <BDIConnectionUsername>User</BDIConnectionUsername>
            <BDIConnectionPassword>Password</BDIConnectionPassword>
            <BDIEnableTLS>0</BDIEnableTLS>
            <BDISipUri>msRTCSIP-PrimaryUserAddress</BDISipUri>
            <BDIPhotoSource>thumbnailPhoto</BDIPhotoSource>
            <BDIBusinessPhone>telephoneNumber</BDIBusinessPhone>
            <BDIMobilePhone>mobile</BDIMobilePhone>
            <BDIHomePhone>homePhone</BDIHomePhone>
            <BDIOtherPhone>otherTelephone</BDIOtherPhone>
            <BDITitle>title</BDITitle>
            <BDICompanyName>company</BDICompanyName>
            <BDILocation>co</BDILocation>
            <BDIPostalCode>postalCode</BDIPostalCode>
            <BDICity>l</BDICity>
            <BDIState>st</BDIState>
            <BDIStreetAddress>streetAddress</BDIStreetAddress>
        </Directory>
    </config>
    But it didn't help.
    When I capture lookup via Wireshark, I can see that Jabbers sends search request with bunch of attributes, but from LDAP answer contains only 8 attributes. (see attached screenshots)

  • BT wont credit my account and re-bill me!! Chat in...

    I have been having difficulties with BT for 7 months now! they really are driving me mad, i have phoned, been on instant chat to them soooo many times, no one listerns at all to what you say.
    I was made unemployed back in Nov, this meaning i was unable to pay my BT bill, i called BT and told them my situation and that i was having to sign on, but with the amount i was getting, trying to support myself with food, pay bills and rent difference i was setting up payment plans with people, of £5-10 month, BT said that "everyone is treated the same" and wouldnt set up a payment plan for me, just wanted me to pay the bill in full, again i said i couldnt do this, i said i would pay what amount i can - which i did do up until BT decided to terminate my contract, send me final bills and say that i cancelled it all!!!!! they then charge me £49 for the BB Box!!! i spoke to someone on BT Chat i again explained my situation, and they were not interested, i said i will send the box back and thay can refund acc £49, she kept saying cant do this, until i pointed out that BT had sent me an email stating i can do this and amount be credited back.  She then agreed and sent me a returns envelope, told me to keep receipt of posting, which i have done.  Today i have come back onto Live Chat, spekaing to someone who has taken over an hour now to not get anywhere, as i type they still not replied to a message i have asked 5 times.....he has checked and seen BB box has been returned, said will credit acc, so i asked for re-bill to be sent out showing this credit applied and new balance, apparently BT cannot do this as bill has already been sent - YES for the old amount, surely when a credit is applied this amends my account and a re-billed gets sent?? i have had a re-bill sent before years ago, so why cant this be done now?
    Also i have debt collectors now chasing for BT adding 25% admin fee ontop, i asked the man on Live Chat if he can inform them of new amount/explain whats happened or cancel this action as RE-BILL me - but he has avoided this question 5 times now and i am getting right hacked off!!!!
    Yes i am ranting, but this is really stressing me out now, i cant help fact i am unemployed - wasnt my intention to be jobless and it isnt greatest time of my life right now struggling and applying for jobs and getting nowhere in this countrys state at the mo.....at least im trying and i have phone BT back 6months ago to let them know straight away - as shows on back of bill - difficulty paying ring - well whats the point when "everyone treated same" and no payment plans allowed!!! 
    I have asked for a manager to call me, but they wont do this either, i would really appricate some help with this issue to get resolved ASAP.
    Rant over 

    Hi
    I am sorry to see you are having problems
    I suggest you contact the forum mods they may  be able to get this problem sorted for you this is a link to them http://bt.custhelp.com/app/contact_email/c/4951
    They normally reply by email or phone directly to you within 3 working days they will take personal ownership of your problem until resolved and will keep you informed of progress
    They are a UK based BT specialist team who have a good record at getting problems solved
    This is a customer to customer self help forum the only BT presence here are the forum moderators
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Question on how to Hide the User Name, Password, and Domain fields in the MDT Wizard

    MDT 2012 U1
    Deploying Windows 7 via Offline Media (ISO) to MS Virtual PC's
    I am looking on how to Hide the User Name, Password, and Domain fields which are prepopulated in the MDT wizard via the CS.ini (Not so concerned about the Domain field as I am User Name and Password)
    We do need the Computer Name and OU fields to be seen, so skipping the wizard is not a option
    The client just does not want these fields to be seen by the end users, they dont want them to even know the account name used for adding the machine to the domain, of course the password is not displayed but it must not be displayed either.
    But since we use the fields they must still  be fuctional just not seen.
    Thanks.....
    If this post is helpful please click "Mark for answer", thanks! Kind regards

    You shouldn't have to edit DeployWiz_Definition_ENU.xml. You should only need to add "SkipAdminPassword=YES" to the CS.ini file and your authentication information.
    Example:
    [Settings]
    Priority=Default
    Properties=MyCustomProperty
    [Default]
    OSInstall=Y
    SkipCapture=NO
    SkipAdminPassword=YES
    UserID=<MyUserID>
    UserPassword=<MyPassword>
    UserDomain=<MyDomain.com>
    SkipProductKey=NO
    SkipComputerBackup=YES
    SkipBitLocker=NO
    -Nick O.
    Nick,
    SkipAdminPassword=YES is for:
    You can skip the Administrator Password wizard page by using this property in the
    customsettings.ini.
    I am hidding the Username/Password/and domain field in the computer name Wizard pane which is read from the cs.iniDomainAdmin=xxxxx
    DomainAdminPassword=xxxxx
    DomainAdminDomain=xxxxxx
    JoinDomain=xxxxxx
    If this post is helpful please click "Mark for answer", thanks! Kind regards

Maybe you are looking for

  • Accessing same Content Management Repository from Multiple Domains

    I'm attempting to point many different domains to a single content management repository to avoid the duplication of data. All the domains are able to read content correctly, but when trying to create content (whether programmatically or through the

  • ID CS3 - Cannot change image color (imported using "Place")

    Hello. I'm using ID CS3, Windows XP, SP3. I am new to ID CS3, coming from PageMaker 6.5, and when I converted one of our brochures, everything looked great. In fact, we have some images that are tif's (I think this means it's a bitmap). The images ar

  • Mac Mini crashes when exporting imovie projects

    Hi. When I try to export imovie projects, my Mac Mini crashes. Not ever, just every two or three times. My system is 10.6.7 and imovie is 11. Can anyone help me? Thanks, I apologize for my bad English

  • Itunes keeps on crashing after Activiating Itunes Match...

    Installing and re-installing versions don't make a difference...Itunes is unusable this way. Any solution out there?

  • When is stricly equal not equal?

    at the end of a lengty debugging session, I have this situation public dynamic class AA extends Array      public function close():void      {     this[this.length-1] = this[0];     // if the array describes a circular structure, the last element def