New GL Budget rate ledger

Hello
We have 2 seperate ledgers maintained for Leading ledger & Budget rate. (New GL)
I am aware that 0FI_GL_14 will extract all line item from leading ledger only.
Which Datasource should we use for Budget Rate?
SAP suggests that we should use 3FI_GL_XX_SI extractors for enhancement package 3 and above. Please refer to below link
General Ledger Accounting (New): Line Items of Any Ledger (Generated) - SAP Documentation
but we are not able to generate datasource as system is throwing error that "Extractors for general ledger documents are not yet supported". Is there any settings we need to maintain?
Any other suggestions on this?
Thanks
Sunil

Hi,
Did you done the
Prerequisites
In Customizing of the OLTP system, you have activated new General Ledger Accounting under Financial Accounting Financial Accounting Global Settings .
The generated extractors use extract structure FAGLPOSBW.
You can check this structure in SE11 as wee. Take help from functional if required for SPRO settings.
Check the FAGLFLEXT table and confirm with functional team whether it is maintaining the required budget data or any ztable is being used.
Are you following the steps correctly like
ECC - Tcode FAGLBW03 and then find your table and double click and generate the datasource.
Thank-You.
Regards,
VB

Similar Messages

  • Actual at budget rate

    Does the SPRUNCONVERSION rule calculate the scenario Categories (Actual at Budget rate, Actual at Prior Yr rate ...). I have all the required properties in place but cannot get the FX conversion to run on these categories.
    Aimee

    Hi Aimee,
    This should work.
    Most important is some requirements and settings in the category dimension. Below some properties in the category dimension that are needed:
    FX_SOURCE_CATEGORY: is the category where the data comes from
    RATE_CATEGORY: is the category where the rates are retrieved from
    RATE_YEAR: is the relative year where the rates come from (ie -1/1)
    RATA_PERIOD: is the period where the rates are retrieved from (ie dec)
    For example if you want actual @ budget rates then you have to create a new category called ACTBUD en apply the following property values:
    FX_SOURCE_CATEGORY: actual
    RATE_CATEGORY: budget
    RATE_YEAR: blank
    RATA_PERIODL blank
    Hope this helps,
    Alwin

  • Translate not working for Budget rate for different scenarios

    I have created 2 new scenarios and the custom4 exchange rates is only working for [None] but not for BUDR, BUDRPY, or CONR.
    I can't see anything obvious within the translate rule that affects these new scenarios.
    '     =========================
    '      (25) Translation
    '     =========================
    Sub Translate()
         Dim strYear,aC2,aC3,aC4,aC5,aC6,opinp,curr,svt16,op,fxinp
         strYear = HS.Year.Member()
              aC2 = HS.Custom2.List("MVMT_EQ","[Base]")
              aC3 = HS.Custom2.List("MVMT_IFA","[Base]")
              'aC4 = HS.Custom2.List("MVMT_IFA_DEPN","[Base]")
              aC5 = HS.Custom2.List("MVMT_MASTER","[Base]")
              aC6 = HS.Custom2.List("MVMT_INVEST","[Base]")
              opinp = ".C2#OPBAL_INP.C4#[None]"
              curr = ".C4#[None]"
              svt16 =     ".C2#MVT1600.C4#[None]"
              op = ".C2#OPBAL.C4#[None]"
              fxinp = ".C2#FXINPUT.C4#[None]"
    HS.Trans "C4#BUDR", "", "A#BUDR", ""                                             
    HS.Trans "C4#BUDRPY", "", "A#BUDRPY", ""                                        
    HS.Trans "C4#CONR", "", "A#CONR", ""
    Both these new scenarios are setup the same as our main Actual scenario as YTD for data input.
    We do expand on the translation rule for specific C2 balances for just the Actual scenario for the various balance sheet sections like Equity, Investments to apply specific exch rates for OPE and movements but this should not affect these new scenarios I would not have thought.
    Grateful for any assistance.
    Thanks
    LG
    I found another rule that could be where my problem stems from: - halfway down it refers to Budget and Forecast scenarios and my new scenarios are Cashflow and Strategy so do I have to add them here??
    Sub copyC4None()
         'Debug
         If Debug = True then
              Writetxt("Debug," & HS.Entity.Member() & ",CopyC4None sub-routine started")
         End If
         'Copy all data for conversion to Budget rates
         dim strReviewStatus,strScenario,strYear,strPeriod,strEntityDefCurrency,strEntity,strView,strDataUnit,myDataUnit,lNumItems,i,lAccount,lICP,lCustom1,lCustom2
         dim lCustom3,lCustom4,dData,strCustom4,lC4Dest,strAccC4Top,sAccount
         strScenario=HS.Scenario.Member()
         strPeriod=HS.Period.Member()
         strYear=HS.Year.Member()
         strEntity=HS.Entity.Member()
         strReviewStatus = HS.ReviewStatus("")
    ' Copy Entity Currency to Entity Currency and Entity Curr Adj to Entity Curr Adj on the alternate translation members
              'strDataUnit = "C4#[None].V#<Entity Curr Total>"
              Select Case lcase(Left(strScenario, 6))
              Case "budget", "forecast", "budget_final"
                   strDataUnit = "W#YTD.C4#[None]" ' changed by sarav on 29-05-2008 from W#Periodic to W#YTD
              Case Else
                   'strDataUnit = "C4#[None].V#<Entity Curr Total>"
                   strDataUnit = "C4#[None]"
              End Select
              SET MyDataUnit = HS.OpenDataUnit(strDataUnit)
    lNumItems = MyDataUnit.GetNumItems
              IF strScenario <> "" THEN
    For i = 0 To lNumItems - 1
         Call MyDataUnit.GetItemIDs2(i, lAccount, lICP, lCustom1, lCustom2, lCustom3, lCustom4, dData)
                             sAccount = HS.Account.MemberFromID(lAccount)
                             sAccountUD1 = Left(HS.Account.UD1(sAccount),2)
                             strAccC4Top = HS.Account.C4Top(sAccount)
                             If strAccC4Top = "TotalCustom4" And sAccountUD1 = "TB" Then
                                  For Each strCustom4 In HS.Custom4.List("EXCHANGE", "[Base]")
                   If strCustom4 <> "[None]" Then
                   lC4Dest = HS.Custom4.IDFromMember(strCustom4)
              Call HS.SetData(0, lAccount, lICP, lCustom1, lCustom2, lCustom3, lC4Dest, dData, False)
              End If
              Next
                             End If
                        'End If
    Next
              END IF
    Edited by: jamdom on Aug 3, 2011 11:42 PM

    I have worked it out - the first issue was the scenarios in the Select Case were not all stated nor were they 6 characters in length
    Select Case lcase(Left(strScenario, 6))
    Case "budget", "forecast", "budget_final"
    now Case "Budget", "Foreca", "Cashfl", "Strate", "Actual"
    The second issue was the account list in UD1 - I had to amend the member list to include these new accounts, then in the metadata tag the UD1 for these codes then amend the sAccountUD1 to include this new list
    sAccount = HS.Account.MemberFromID(lAccount)
    sAccountUD1 = Left(HS.Account.UD1(sAccount),2)
    strAccC4Top = HS.Account.C4Top(sAccount)
    If strAccC4Top = "TotalCustom4" And sAccountUD1 = "TB" Then
    now If strAccC4Top = "TotalCustom4" And sAccountUD1 = "TB" or sAccountUD1 = "CF" Then
    and it works!! Yeh!!
    LG

  • New year budget payment

    Should I use Tcode FR04 to set a new year Budget payment without having close the last year period (12/2006) ?
    Do anyone can help me?
    Thanks a lot!

    Jim Henderson wrote:
    > On Wed, 19 Mar 2014 23:39:03 +0000, Preferred User wrote:
    >
    >> Jim Henderson wrote:
    >>
    >>> On Mon, 13 Jan 2014 15:17:22 +0000, Bob Crandell wrote:
    >>>
    >>>
    >>> Terminal services or Citrix would solve the latter issue. For the
    >>> first issue, that sounds like a process issue rather than a technology
    >>> issue.
    >>>
    >>> Jim
    >>>
    >> Ok. With this solution, can he who is running Firefox slide it over to
    >> her who is using Calc and drag her Calc over to his desktop? He would
    >> then finish the inventory report while she is playing online poker.
    >>
    >> This would work?
    >
    > Probably not, because it's not a share desktop amongst all users - you
    > end up with very poor security with a single shared desktop.
    >
    > But I know that in hospitals, this type of solution is sometimes used so
    > a user's desktop can be moved from room to room. The most recent
    > experience I had in a hospital ER (a couple weeks ago), I noticed it was
    > VMware Infrastructure.
    >
    > Jim
    >
    In this case it is a dentist office. The users are sitting next to each
    other. Looks like to make this work they will need a combination of MDM and
    VMware.
    Oh well. The hunt goes on. I wonder just how badly he really wants this

  • New GL or Special Ledger

    We are in the midst of upgrading our environment to ECC 6.0 but we are taking on a Financial Re-design effort  - I am looking to leverage the NEW GL to remove some of our dependency on a CO-PA reporting design and I am hearing from some colleagues that they would like to use  - the Special Ledger to support the new Financial reporting requirements u2013 but I feel the NEW GL is the way to go with the design since it is more integrated with standard reporting u2013 What are your thoughts about continuing to use the Special Ledger functionality over the New GL functionality in ECC 6.0 ?
    Moderator: Please, search SDN

    Hi,
    Definitely, switching over to New GL rather than continuing in conventional SPL.  New GL has lots of advantage and flexibility.  Please go thru the documentation AC210 - New General Ledger Accounting for more details or refer below mentioned link.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/2d/830e405c538f5ce10000000a155106/frameset.htm
    Best Regards,
    Madhu

  • Pricing date control for new tax code rate

    Hi All
    I have changed the tax code rate , now have few old POs where I want to capture tax as per the new rate. But PO was picking up old tax rate as pricing date was coming as the PO creation date.
    Now I changed the pricing date in PO to current date. But still tax condition is showing old pricing date and hence old rate is picking up.
    Can anyone help in capturing new tax rate for an old PO.
    Regds
    Mukta

    Hi
    This Program doesn't give option to enter tax code for different line items of PO.
    My PO is having multiple line items and I have to change new tax code for each line item.
    Different tax rates are applicable for each line item material.
    Can you please let me know how this can be happened. I changed it manually as well, but where partial GRN done , it is capturing the old tax code only inspite have changed new tax code in the particular line item.
    Regards
    Mukta

  • Post SKF only to New GL -Non leading ledger

    Hi New GL experts,
    We have an issue with SKF ( Statistical key figures) in New GL.
    The below 2 options are considered:
    1. Entry from KP46 ( CO Module) - Flowing to Leading and Non leading ledger. But the period is wrongly derived in Non leading ledger.
    2. Entry from FAGLSKF1 ( New GL) - Posts to both Leading / Non leading ledger ( with correct periods) - But does not flow to Controlling.
    Is there any way to post the SKF to Non leading ledger only ? or to CO module only without updating to Leading / Non leading ledger ?
    Thanks in advance for your help.
    Siva

    Hi Siva
    Option 1 - If you deactivate the "Integrated Planning" in CO Version 0 OKEQ and also in GL Planning, the Plan data in CO wont auto update to New GL at all..
    You need to then manually push the plan data into New GL using a special T code.. You can find the T code in the SPRO where you set up GL planning
    Option 2
    FAGLSKF1 does not update controlling, as designed.. So, maintain your SKFs independently in FI and CO
    Option 3
    Try to raise it to SAP if the period in Non Leading Ledger is wrong.. Ideally, the period you enter in KP46 should convert to the Non Leading Ledger period as per the Fiscal yr variant of Non leading Ledger
    Br, Ajay M

  • SAP Note number  for new indian budget

    Can anyone plz provide me Note number for new budget.  will really appreciate.

    hi
    The Sap Note no is 1361644
    for budget changes
    Rgds
    Hemant V. Mahale

  • Currency conversion based on budget rate

    Hi All,
    I want to do the currency translation from GBP to EUR,EUR to USD and GBP to USD.there is no table maintained in the BW system.Currency conversion should be based on budget values and they are asked me to do on reporting level.I have gone thru the documents and blogs but not able to follow them.Could you pls share any one knowledge and step by step process.
    Thanks

    Use RSCUR transaction to create currency translation type.
    Here under "Time Ref" tab use "Variable Time Ref" and special infoobject.
    You should be able to choose Posting period or posting date here.
    Now in query designer maintain the currency conversion based on this currency translation type.
    Hope this helps.

  • About those new data plan rates......

    not sure how accurate this is since it only cites droidlife and doesn't appear to have got any of the info directly from verizon, so take it as you will:
    http://www.huffingtonpost.com/2011/06/21/verizon-unlimited-data-plan_n_881091.html

    PJNC284 wrote:
    They really should fire whoever came up with that pricing scheme.  Really doesn't make sense to have the cheapest tier at $30 for 2GB when they claim most people use much less than that.  Oh well, the QOS better increase substantially or they're going to have even more unhappy customers
    They did release some good news today though. 
    http://news.vzw.com/news/2011/06/pr2011-06-21k.html
    06/21/2011
    RALEIGH, NC — Verizon Wireless announced today it is turning on the world’s first large-scale 4G LTE (Fourth Generation, Long Term Evolution) Network in Raleigh-Durham, N.C. on July 21, 2011. Verizon Wireless’ 4G LTE Mobile Broadband network is the fastest and most advanced 4G network in America.
    The deployment of Verizon Wireless’ 4G LTE in Raleigh-Durham, N.C. also provides LTE coverage throughout the surrounding areas of Cary, Apex, Clayton, Morrisville, Chapel Hill, Carrboro, Gorman, Wake Forest, Rolesville, Knightdale, Wendell, Holly Springs, Fuquay-Varina, Garner and Smithfield.
    congrats pjnc! 20mbps is pretty nice!!! 
    as far as the pricing goes (if this is even accurate), my guess is that they have figured out that $30/month is an acceptable minimum plan. i rarely us even close to 2gb's and would love to have a $20 plan for up to 1gb.....but they tried the $10 plan with media phones a couple years ago and then did those promotional $15 plans over the past holiday season. i suspect that they figured out that daily users of data are fine with $30 and that people that only pull email once in a while or download a game on a media phone will just pay the few bucks per month it costs to do those sorts of things. apps are getting bigger and the amount of data being consumed has drastically increased in the past year. i suspect that 2 years from now (i believe the average customer always signs the 2 year contract) 2gb's wont seem like much and we will all likely be using that much data???

  • How to get actuals at budget exchange rate

    Hi All,
    I am working on a multi currency planning application.
    I want to do variance reproting wherein I have to calculate variance between actual * actual exchage rate and actual * budget exchange rate.
    What can be the best way to do this?

    To get actuals at budget exchange rate the normal practice is to have another scenario called something like actual_bud_rate where you have the budget exchange rates loaded.
    The variance can then be accomplished in many ways whether that be via SmartView, Financial Reports, or creating another scenario and using one of the variance functions @VAR, @VARPER.
    The key to any of the methods for variance is that new scenario and loading the budget rates to that scenario.
    Regards,
    John A. Booth
    http://www.metavero.com

  • General Ledger Budget Extractor

    Hi,
    Is there a BC extractor for extracting General Ledger budget data?
    I looked at help.sap.com and I couldnt find any thing.
    Thanks,
    Ravi.

    There isn't any standard extractors for planned (budgeted) General Ledger values, per se. If these budgeted values are posted as accruals, to future Fiscal Year/Periods, to the General Ledger in your R3/ECC source environment, the standard content DataSources for General Ledger will pickup that data.
    If the General Ledger budgeted values aren't being posted as accruals to future Fiscal Year/Periods, then where are they being posted to in your source R3/ECC environment?

  • Material Ledger New Status - 05 "Period Opened Without Stock"

    Hello,
    We are thinking of implementing note 1120562 into our system and feel pretty comfortable so far, but I had one question that is stopping me.  If I implement this note and it applies the new status so that materials are not selected to run in the material ledger close, will that be an issue when closing next month?  I know that previously I was not allowed to close for a material if it had not been closed in the prior month.  Has anyone applied this status and had issues?
    Thanks in advance!

    Hi Rebe,
    To see the transactions and documents for ML category in t-code CKM3 report  i.e., Beginning Inventory--> choose "Expand sub tree" and choose the corresponding line. I guess these , period status quantities and values entered entries are  for New period opening. Whenever  the New period is opened, for New materials also, Material Ledger document will be created and updated in Material Price analysis report. The Material ledger records the following categories of data and the system generates ML documents automatically :
    01.     Beginning Inventory
    02.     Price change
    03.     Receipts
    04.     Other receipts/consumption
    05.     Cumulative inventory
    06.     Consumption
    Also whenever Price determination for Material Master is changed from 02 to 03 or vice-versa, ML documents will be generated automatically and updates in Material Price Analysis report-t-code-CKM3.
    Regards
    appalas
    Regards
    appalas

  • New exchange rate type

    1. Our client would like to maintain a new exchange rate type for the company code W100. Presently there are some 20 company codes are useing EURX exchange rate type including the company code W100.Is it possible to maintain new exchange rate type only for the company code W100 and what are all the procedure has to be followed to maintain the new exchange rate type?
    Thanks and Regards,
    Vimal

    Hi Vimal,
    Ex-rate types are not limited to company codes. But a new created Ex-rate type XXZZ (OB07) even with all currency translation ratios and maintained Ex-rates (OB08 or TCURMNT) does not effect anything unless it is used (e.g. for foreign currency valuation,...). Steps for creating a new Ex-rate see in General settings / currencies in the Customizing.
    BR Christian

  • Excise Duty Rate Chnge -No CIN

    Hello
    Changes in budget rate for excise.PO with old rate
    already entered.No CIN.Need to write a validationor
    (how can i do it) that On MIRO,if tax rate(which has
    been manually enterd in PO) is 16%,should change to
    14%(shud i create a new Tax code for the same)
    Please help.WOuld be highly appreciated.

    Dear Friend
    For Budget changes you just maintened excise rate is J1ID for each material.
    you have maintane 16%  upto 29-2-08 and from 01-03-08 to 31-03-9999 you have to maintned 14%.
    so at the time of  doing miro  depend upon posting  dtae syatem will propose excise .
    Hope this will hgelp you
    Jain
    Assign Points

Maybe you are looking for