FMAVCR01 Consumed Amt Drill down detail results show less than report total

Our budget reports as well as FMAVCR01 show a consumed amount total of 18,000 for our 1st fiscal year in SAP. But when drilling down to the document journal only 15,750 total items are displayed. Why is that?
Using FMRP_RFFMTO10X I can tell that the difference is in period 1 in which the Cmmts/act is 5,625 but when drilling down to the document journal only 3,375 is displayed.
Period 1 is July. Note that we went live on SAP as of October... Period 4. Even after reinitializing our avc ledger, the discrepancy still exists. Any ideas why or how to narrow down the problem or get to the source of the extra 2,250 displayed in budget reports?

Hi Will,
Hmmm... That's a tough question without seeing the results of FMAF, at least. Sometimes, something goes wrong with the reassignment (if you did any) or the carry-forward. Sometimes, it's somehow connected to internal process which differs from SAP standard (again, if you have any). Could be really several reasons, but most of them are resulted from enhanced solutions in FM.
Regards,
Eli

Similar Messages

  • Activity monitor says I have 1 -3% of System Memory free, yet CPU usage shows less than 10% total of all processes

    Activity monitor says I have 1 -3% of System Memory free, yet CPU usage shows less than 10% total of all processes

    I think you should review what you wrote. There is no question, hence, my reply. I can't tell by the AM listing what applications are using memory. You need to click on the Real Mem column once or twice to display in descending order.
    Aside from what you see in AM, what exactly is your problem or perceived problem. You are very low on Free Mem at the moment the screen shot was taken. Those displays are not depicting your computer's instantaneous memory usage.
    About OS X Memory Management and Usage
    Using Activity Monitor to read System Memory & determine how much RAM is used
    Memory Management in Mac OS X
    Performance Guidelines- Memory Management in Mac OS X
    A detailed look at memory usage in OS X
    Memory Usage Performance Guidelines- About the Virtual Memory System
    Understanding top output in the Terminal
    The amount of available RAM for applications is the sum of Free RAM and Inactive RAM. This will change as applications are opened and closed or change from active to inactive status. The Swap figure represents an estimate of the total amount of swap space required for VM if used, but does not necessarily indicate the actual size of the existing swap file. If you are really in need of more RAM that would be indicated by how frequently the system uses VM. If you open the Terminal and run the top command at the prompt you will find information reported on Pageins () and Pageouts (). Pageouts () is the important figure. If the value in the parentheses is 0 (zero) then OS X is not making instantaneous use of VM which means you have adequate physical RAM for the system with the applications you have loaded. If the figure in parentheses is running positive and your hard drive is constantly being used (thrashing) then you need more physical RAM.
    Adding RAM only makes it possible to run more programs concurrently.  It doesn't speed up the computer nor make games run faster.  What it can do is prevent the system from having to use disk-based VM when it runs out of RAM because you are trying to run too many applications concurrently or using applications that are extremely RAM dependent.  It will improve the performance of applications that run mostly in RAM or when loading programs.

  • HT5527 Hello, I had 25Go transfered from MobileMe, skimmed down to 5Go now. I cleaned my emails. From mail, on my mac, 'get account information' shows less than 1 Go... From System preferences/iCloud, up to yesterday it showed 12Go... I don't understand!

    Hello, I had 25Go transfered from MobileMe, skimmed down to 5Go now. I cleaned my emails. From mail, on my mac, 'get account information' shows less than 1 Go... From System preferences/iCloud, up to yesterday it showed 12Go...
    I don't understand!
    These information are contradctory. Now my account is locked.
    What Am I supposed to do???
    thanks for your help!

    Well as far as I can tell the only developed alternative to Apple is Microsoft, sure you want to go there?
    iCloud (and Mobile Me before it) are consumer level systems, working correctly they are a poor choice for business use, if you want to stay all Mac try Zimbra if you can let a little Microsoft in the mix use Microsoft Exchange (Mail, iCal & Address Book are compatible as clients), hosted Exchange systems cost about $10 per month.
    Or try to fix what is wrong with your installation (which is clearly not running as it should)

  • How we can   drill-down, sorting, traffic lights,  in ALV report

    hi gurus ,
    how we can   drill-down, sorting, traffic lights,  in ALV report .
    please any one suggest that...
    regards,
    praveen

    Check the sample code for drill-down, sorting, traffic lights,  in ALV report.
    REPORT YMS_COLOURALV NO STANDARD PAGE HEADING.
    TYPE-POOLS: SLIS, ICON.
    DATA: FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA: BEGIN OF IMARA OCCURS 0,
    LIGHT(4) TYPE C,
    MATNR TYPE MARA-MATNR,
    MTART TYPE MARA-MTART,
    MAKTX TYPE MAKT-MAKTX,
    COLOR_LINE(4) TYPE C,
    TCOLOR TYPE SLIS_T_SPECIALCOL_ALV, "cell
    END OF IMARA.
    DATA: XCOLOR TYPE SLIS_SPECIALCOL_ALV.
    START-OF-SELECTION.
    PERFORM GET_DATA.
    PERFORM WRITE_REPORT.
    FORM GET_DATA.
    WRITE ICON_GREEN_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'ABC'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for ABC'.
    APPEND IMARA.
    WRITE ICON_YELLOW_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'DEF'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for DEF'.
    APPEND IMARA.
    WRITE ICON_RED_LIGHT AS ICON TO IMARA-LIGHT.
    IMARA-MATNR = 'GHI'.
    IMARA-MTART = 'ZCFG'.
    IMARA-MAKTX = 'This is description for GHI'.
    APPEND IMARA.
    LOOP AT IMARA.
    IF SY-TABIX = 1.
    IMARA-COLOR_LINE = 'C410'. " color line
    ENDIF.
    IF SY-TABIX = 2. " color CELL
    CLEAR XCOLOR.
    XCOLOR-FIELDNAME = 'MTART'.
    XCOLOR-COLOR-COL = '3'.
    XCOLOR-COLOR-INT = '1'. " Intensified on/off
    XCOLOR-COLOR-INV = '0'.
    APPEND XCOLOR TO IMARA-TCOLOR.
    ENDIF.
    MODIFY IMARA.
    ENDLOOP.
    ENDFORM. "get_data
    FORM WRITE_REPORT.
    DATA: LAYOUT TYPE SLIS_LAYOUT_ALV.
    LAYOUT-COLTAB_FIELDNAME = 'TCOLOR'.
    LAYOUT-INFO_FIELDNAME = 'COLOR_LINE'.
    PERFORM BUILD_FIELD_CATALOG.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    IS_LAYOUT = LAYOUT
    IT_FIELDCAT = FIELDCAT
    TABLES
    T_OUTTAB = IMARA.
    ENDFORM. "write_report
    FORM BUILD_FIELD_CATALOG.
    DATA: FC_TMP TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE.
    CLEAR: FIELDCAT. REFRESH: FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Status'.
    FC_TMP-FIELDNAME = 'LIGHT'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '4'.
    FC_TMP-ICON = 'X'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material Number'.
    FC_TMP-FIELDNAME = 'MATNR'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '18'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material Type'.
    FC_TMP-FIELDNAME = 'MTART'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '10'.
    APPEND FC_TMP TO FIELDCAT.
    CLEAR: FC_TMP.
    FC_TMP-REPTEXT_DDIC = 'Material'.
    FC_TMP-FIELDNAME = 'MAKTX'.
    FC_TMP-TABNAME = 'IMARA'.
    FC_TMP-OUTPUTLEN = '40'.
    APPEND FC_TMP TO FIELDCAT.
    ENDFORM. "build_field_catalog

  • EPM 2013 Report is displayed as cut off and shows less than half the width of the report in IE 10 and IE 9.

    EPM 2013 Report is displayed as cut off and shows less than half the width of the report in IE 10 and IE 9.  This issue occurs for some users only.I tried the same url in google chrome and is working fine.
    Can you please help.
    Please find the attached screenshot.

    Hi BJ1986,
    According to your description, I think this issue is caused by the IE browser that runs the report. To trouble shoot this issue, I suggest that we can try to clear internet temporary files, cookies and others in IE browser. And also add this site
    as a trusted site in IE browser to check this issue again.
    If this issue is still existed, it can also be occurred due to the setting or third party add-ons of Internet Explorer (IE). In this scenario, you can try to run IE in compatibility mode to check the issue again. Or I suggest that you can refer to the
    steps below to troubleshoot the issue:
    Click Tools -> Internet options.
    Switch to the Security tab, click Local intranet, and then select Default level.
    Switch to the Advanced tab, and click Restore advanced settings.
    Temporarily disable third party add-ons. For detailed steps, please see the link below: 
    http://windows.microsoft.com/en-IN/internet-explorer/manage-add-ons#ie
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • The amount of down payment must be less than the invoice amount

    Hi all,
    Our customers are using SAP 2007-PL15 and SAP 2007-PL41.
    When we want to create a down payment for a sales order, and we want to pay the entire amount of the sales order, including tax, we have to put an amount inthe TOTAL field of the Down Payment window since by default, the down payment amount is the total of the invoice before applying tax.  The DPM is
    higher than 100% (strange but I think it's normal since the down payment is not planned to take the tax in consideration).
    Then, we create an incoming payment for this down payment. It's ok.
    Then, we create an invoice based on the sales order we have paid with the down payment. It's impossible to use the down payment for the invoice... why that ? We receive the error 'The amount of down payment must be less than the invoice amount'. This causes big headaches to our customers !!
    Could you explain us what to do please ?
    thanks,
    Luce

    I'm very sorry, I have a similar question in dealing with AP Down Payment Request Linked to AP Invoice,  my case like this:
    1. I created 3 AP DPRs,their amount are each 100,000 RMB(for example, their document number are 10,11,12). then do the outgoing payment fully paided.
    2. I created a AP Invoice with the amount 150,000 RMB(for example, this AR Invoice document number is 5). I use the buttom"Total Down Payment",and selecet AP DRP No.10 and 11. When I click the buttom"Add",an error shows:
    The amount of down payment must be less than the invoice amount
    and I don't know how to continue.....
    Many Thanks
    Kam
    (PS:My English is poor,forgive me please. Shall I Speak in Chinese? then I can describe this question more clearly.)

  • HT1848 On itunes, when synced to my pc, I show less than half of the music that is on my iphone 4. How do I get all the music onto my pc?

    I am about to scream if I don't figure this out or just decide to leave Apple and get a Galaxy phone. On itunes, when synced to my pc, I show less than half of the music that is on my iphone 4. How do I get all the music onto my pc? I have read many forums and tried many things, but apple/iTunes is not intuitive at least not on a PC. When I go to devices it won't let me select "transfer music". It's grayed out. Why is this and what can I do? I'd like to delete some of the music off of my iPhone but don't want it gone forever. Pleae help.

    Thanks Turingtest2,
    I appreciate your response. I have done all of the things mentioned, but still when I click on "devices", the "transfer music" option is still not selectable. I see it, but can't select it.  I am running Windows 7 on my PC.
    However, one thing I read makes me take pause. At one point I did erase my computer back to factory settings using the mirrored image. We backed up all information and put the important stuff back on, but I don't believe we did anything with iTunes, so it's a possibility that the music that is in my library now, may only be music I have purchased since then. But, (thinking out loud) that was a while ago and I am pretty sure I have purchased more music than what is in my iTunes library, since then.  Maybe I will approach it from that angle and see what happens.
    It just doesn't make any logical sense that syncing goes from computer to device. Ostensibly then, my iPhone would only have the music that is on my computer after syncing and that is not the case. I still have all my music on my phone. I can see the new music that's on my phone get added to my iTunes library when I connect, which would make one think that syncing occurs both ways. I don't know. It's maddening. Maybe I should just follow my husbands advice and go to an Android. LOL. Or maybe I will take my laptop and phone to the Apple store and make them figure it out. Ha.
    If you have any thoughts about this, let me know. Thanks again.

  • Why export dump shows less than the actual size?

    why export dump shows less than the actual size?

    i tried to find to find out the logical size using the following command
    select sum(bytes/1024/1024) from dba_segments;
    SUM(BYTES/1024/1024)
    739when i tried the following query removing index segement:
    select sum(bytes/1024/1024) from dba_segments where SEGMENT_TYPE \<\> 'INDEX' ;
    SUM(BYTES/1024/1024)
    535What other type of information is not exported in a full database export?

  • OBIEE 11g: Build a drill down detail on the count of records

    Hello:
    I have a summary report based on certain criteria shows the count of certain number of records for example, count(sales_id).
    Region (North), Product Category(ABC) -> 15 (Sales record count using count(sales_id))
    I want the ability to provide another detail report which will be the drill down of 15 that shows 15 sales records in detail.
    The detail report will be invoked using the Action Link which has the BI navigation from the Measure Column (that has 15) to pass the list of sales_id's as the prompted filter based on the analysis results from the summary report.
    Any idea on what I need to do in the summary report to pass the list of sales id's instead of the count 15? I do not want to display the sales_id's in the summary report.
    Thanks
    Sankar

    589151 wrote:
    Hello:
    I have a summary report based on certain criteria shows the count of certain number of records for example, count(sales_id).
    Region (North), Product Category(ABC) -> 15 (Sales record count using count(sales_id))
    I want the ability to provide another detail report which will be the drill down of 15 that shows 15 sales records in detail.
    The detail report will be invoked using the Action Link which has the BI navigation from the Measure Column (that has 15) to pass the list of sales_id's as the prompted filter based on the analysis results from the summary report.
    Any idea on what I need to do in the summary report to pass the list of sales id's instead of the count 15? I do not want to display the sales_id's in the summary report.
    Thanks
    SankarIn your example, each of the 15 sales IDs are in the same Product Category (ABC), yes? So put the action link on this column instead of the measure (so ABC in this example would be the link). In the detail report, you will need to include the Sales ID column in order to produce the 15 rows, but you can hide it so it doesn't show up on the report. (The reason you want to include the sales ID in the destination report is because the measure column would break out the rows only assuming there are no measures that are the same. If they are the same, they might roll up so having the sales ID in the report ensures that the rows remain distinct.)
    Edited by: David_T on Mar 15, 2012 2:34 PM

  • How to go to a particular object in drill down detail pdf report?

    In drill down html reports I could directly go to a particular object in the detail report from the summary report by using hyperlink destination property in the detail report and hyperlink property in the summary report.
    How can I do the same thing in drill down pdf reports? The summary pdf report is opened first and then clicking on any of the object in summary pdf report should direct me to the same object in detail report.
    Thanks for your help.
    -Jayshree

    Unfortunately PDF doesn't support this concept. You could ensure that the detail report has bookmarks, then the user can easily see the different sections of the report.
    Hope this helps,
    Danny

  • Drill down in Bex is different than drill down in WAD

    Hello experts.
    I have been creating queries in Bex for 6 years and am very familiar with the Bex functionality.  I recently started embedding some Bex queries into the WAD and of course am displaying them on the web.  I am experiencing an unexpected problem with drill downs on the web.  In a nutshell, the query drills DOWN as expected in Bex, but when I drill down on the web, the results are displayed ACROSS the web page instead of down the web page.
    I am not using any custom HTML, Java, or other custom code.  Has anyone experienced this?  Any thoughts on how to correct?  Here is more specific detail:
    Bex query looks like this:
    3 Characteristics in characteristics section.
    3 Key figures in COLUMNS section
    Nothing in ROWS section
    Drill down in Bex yields characteristic values in rows, and key figures in columns (appears to be perfectly normal behaviour)
    Drill down in Web yields characteristic values ACROSS the columns and key figures ACROSS the columns (not expected)
    Objective is get to Web result to behave identical to Bex results where characteristic values display in rows, and key figures display in columns
    Thank you.

    Hi
    Go to WAD and check for the Web items under Navigation.. and the result table.
    you will find the options for the same.
    Regards,
    Vishwa,.

  • Down Payment not showing in PS Reports S_ALR_87013537

    I am executing the ps report S_ALR_87013537, but i am not getting the Down Payment information.
    Down Payment are released from Finance against the Purchase Order Account assignment WBS.
    In Report  S_ALR_87013537, Project  Cost Plan, Actual Cost & Actual+Down Payment is showing but Down Payment Column having no figure...
    rgd
    rkp

    Sorry ...Correct T-Code is S_ALR_87013536
    I am executing the ps report S_ALR_87013536, but i am not getting the Down Payment information.
    Down Payment are released from Finance against the Purchase Order Account assignment WBS.
    In Report S_ALR_87013537, Project Cost Plan, Actual Cost & Actual+Down Payment is showing but Down Payment Column having no figure...
    rgd
    rkp

  • Drill down value not matching with Displayed Report Painter Issue-GR55

    Hi,
    Need your help for an issue in drill down value of report painter from actual cost coloumn.
    I have created a new report group based on OSS Note-157720 in GR55 Traction. This new report group will provide data of Planed / Actual cost, Planned / Actual Quantity of the project in range of fiscal year/periods. The issue in this report is displayed data of actual cost is not matching with drill down data. The actual cost coloumn is formula coloumn which framed by subtracting All periods cost coloumn, Before Periods Cost Coloumn and After periods cost coloumn.
    Could you suggest on this issue.
    Thank you for your cooperation.
    Regards,
    Rakesh

    The report you are running first might have been created with some hidden columns that contain more than one variables relating to period and fiscal year. These may not be matching those that are required to run the drilldown. Look into the definition of the drilldown report. If you would want to match the first report, It may be better to identify which report runs on drilldown and the run that report with the required parameters.

  • MM Drill down on any line on the report ME2N the line defaults to item 10

    We have recently upgraded to ECC 6.0 EHP5 .
    When you drill down in ME2N on any line on the report,  it takes you to the tab of line item 10 and not on the line
    where drill down was initiated .
    Thank you in advance .

    was this different in your older release?
    If you are sure it was, then you should open a call at SAP directly and ask for a fix.
    I am on EHP4 and I get as well to the first item in a PO, whatever item I click in ME2N.
    But I cannot remember that this was different in any release in the past.
    Edited by: Jürgen L. on Feb 7, 2012 8:29 PM

  • Internet slows down at night to less than 1Mbs, poor customer service

    I'm having the same problem. I had originally 1-3 Mbps (Oct 2008 - Jan 2012). It used to work fine but then the speed seems to be slowing down as years passed by, I was getting less than 1Mbps most of the time so I upgraded to 3-7Mbps with 2 years holding period (Jan 2012 to Jan 2014). From Jan 2012 to Nov. 2012 it was fine, then starting Dec. 2012, the internet started to slow down at night. I'm getting 6-7Mbps during daytime and until around 9pm, then the internet slows down to less than 1Mbps after 9pm. Then starting mid January 2013, the situation seems to get worst, the internet slows down starting around 7pm, and then on the 3rd wk of January, the internet started to slow down as early as 5pm.
    I've contacted the customer service twice. First, the person who attended remotely accessed my computer and after more than 15 minutes trying to find fault at my computer, wiring, set-up or wireless router (instead of the verizon network), he realized he doesn't have any excuses and instead instructed me to hard reset the modem. I told him that if I hard reset the modem, he will be disconnected to my computer. He said, "that's fine, I will call you you to give instruction on how to set-up the modem". After I have hard reset the modem, he never called up and I was left all by myself figuring out how to set-up the modem. I've contacted the customer service the 2nd time, a different person attended and exactly the same thing happened, the guy instructed me to hard reset the modem but never called up after he got disconnected. I guess this is their expertise, how to rudely leave the communication once they figure out that they can't resolve the problem.
    Once the 2 years holding period is over, I will change to other internet provider and will never switch back to verizon again. I will never ever recommend verizon to my friends and will share them my experience with verizon.

    This is one of the reasons we are leaving Verizon as well.  We previously left Brighthouse because the initial deal sounded great, until the rebates expired.  When the price jacked up, I told them they had to better because Brighthouse was much less expensive for the same package but their service didn't slow down at 7pm.  The customer service agent said I really couldn't compare the two because Verizon has a superior quality of service.  I asked, "Then why does my internet slow down around 7pm, because the Brighthouse service didn't do that".  All the customer service agent has to say was, "That's not true."  Nice try.  He essentially called me a liar, about something I've seen firsthand, and I have experienced that same 7pm slowdown with a similar service we had in NC.  Sorry Verizon, we left Brighthouse because we thought we were saving a few bucks, and getting a higher speed on our internet.  Not true on both accounts and we're going back.    PS To the person who made this initial blog post, I noticed there were 484 views but no "likes"  - it's because that button won't let you click it, at least that's what I experienced on my end.  I'm certain there are a lot more people out there who deal with this same issue and are quite frustrated. 

Maybe you are looking for