Can we use FAGLFLEXT totals for cost center-cost element totals?

Hi All
I would like to extract data out of our sap ECC 6.0 for our data ware housing system. We have cost center and profit center as scenarios. Now my question is , Is it advisable to extract cost element-cost center totals from FAGLFLEXT or is it better to get the values from COSS?.
Please throw your views
Thanks

Hi,
I think you're better off using a combination of COSP and COSS since changes in a cost center's balance due to CO  internal allocations within the same company code will not reflect in FAGLFLEXT.
Regards,
Kenneth

Similar Messages

  • How can I choose another name for Game Center? (not a nick)

    How can I choose another name for Game Center ? (not a nick)

    Hi XxCarrisxX,
    I apologize, I'm a bit unclear on exactly what you are asking. If you are talking about changing to or using a different Apple ID in Game Center, you may find the following article helpful:
    Sign in to your Game Center account using your Apple ID. If you don't have an Apple ID or another Apple account, tap or click Create New Account to create an account to use with Game Center.
    You can change the account you are signed into by:
    iOS: Tap Settings > Game Center.
    OS X: Click the Me tab in the Game Center app and click on your Account.
    Apple Support: Using Game Center
    http://support.apple.com/kb/ht4314
    However, make sure you are aware of the following:
    Note: Please note each Apple ID has its own associated scores, achievements, and friends.
    Apple IDs are also tied to your other Apple services, and therefore should not be created lightly.
    Regards,
    - Brenden

  • Can I use / find drivers for an HP Deskjet 3520e on OSX 10.4.11

    Can I use / find drivers for an HP Deskjet 3520e on OSX 10.4.11

    Thanks for suggestion but HP Support Center don't support the HP Deskjet 3520 e.
    Our old iMac wont upgrade to "snow-leopard"  -   the drivers supplied with the printer are not backwards compatible beyond IOS 10.6.  We are max-updated at 10.4.11.
    Tried a "gimp" (?) set of drivers which goes through an auto-install but I can't see or select the drivers.
    Find it hard to believe that there is no solution

  • Can I use Publications SDK for merging PDFs?

    Hi,
    Can i use Publications SDK for merging PDFs.? Logically i think it should be possible.
    Scenario:-  PDFs will be the report output format for webI, Crystal etc. I will query the repository and get the PDF instances from various BO Reports. Can i use this PDFs as input for Publications SDK? Is there any known limitations?
    Please help.
    Ted, if you are there please update.
    Thanks,
    Anu

    Thanks Ted. Thats really informative.
    Can you please provide a brief description on 'There's an out-of-the-box post-processing extension that merges PDF from Crystal.'
    I'm already using Itext. but it is a costly affair as PDF file size is an issue (200 single page PDF results in 8 MB). And seems like there is no otherway around in Itext to compress PDF.
    About using WebI and Crystal together, I will export PDF from these and give those PDF as input for Publications.Then it should work. Right?
    Edited by: Anu Cherian on Feb 2, 2011 11:35 AM

  • I know I get 2 downloads. I have one on my Mac. Can I use the other for my PC laptop?

    I know I get 2 downloads. I have one on my Mac. Can I use the other for my PC laptop?

    Hello david,
    that's correct. Cloud software can be installed on Mac and/or Windows for no extra cost. No platform swapping process is required.
    On the Mac simply sign in to creative.adobe.com with your Adobe ID and download the software. Same as you did on the PC.
    Hans-Günter

  • Can I use one account for both my labtop and my ho...

    can I use one account for both my labtop and my home computer?
    Solved!
    Go to Solution.

    Softthunder wrote:
    can I use one account for both my labtop and my home computer?
    Hello,
    Yes you can. You can access your account using any Skype enabled computer/device in any country worldwide.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • HT204053 Dear Support Team, every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud???

    Dear Support Team,
    Every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud?
    Thanks

    It is not possible to create a new iCloud account using a Windows machine. You must create the account using a Mac (10.7.5 or more) or an IOS device (iPhone etc). Once that is done you can sign into and use the account on your Windows machine.

  • Can I use touch ID for App Store without using a passcode?

    It seems that the ony way I can use the touch ID for App Store and iTunes is if I have a passcode to get into my phone. I don't want a passcode, it get in and out of my phone too often to have to unlock it all the time and I hate manually typing in my password for App I buy. Why can't it do both, isn't the touch ID just as secure for purchases even if you don't have to unlock the phone to get to it??

    From the article:
    You can set up Touch ID in iOS Setup Assistant or by tapping Settings > Touch ID & Passcode. To set up Touch ID, you must first set a passcode. Touch ID is designed to minimize the input of your passcode, but you need a passcode for additional security validation, such as enrolling new fingerprints.
    So yes, that's how it's designed. You must have a passcode, though as long as you understand the caveats:
    In addition, you will need to enter your passcode to unlock your iPhone in these conditions:
    After restarting your iPhone 5s
    When more than 48 hours have elapsed from the last time you unlocked your iPhone 5s
    To enter the Touch ID & Passcode setting
    and
    You can't use Touch ID for purchases if Require Password in Settings > General > Restrictions is set to Immediately.
    you should be able to use Touch ID without needing your passcode. If none of those circumstances is true and you're still being asked for your passcode to make a purchase from the iTunes Store, it would seem that something is amiss with your iPhone.
    Regards,

  • HT3354 how can i use one table for reference to another

    how can i use a table for a referance to another eg when i type a word in a cell, i will like it to match the word with another table then return the information in the cell i am using

    you can use vlookup() (or any of the lookup family of functions) to locate an item based on a key value:
    Here is an example of something you can do with two tables:
    The table on the right is title "Data" and stores a list of names with age and favorite color.
    The table on the left uses the value in the first column to lookup up information in the table Data
    in the table on the left:
    B2=IFERROR(A2&" is " & VLOOKUP(A2, Data :: A:D, 2, 0)&" years old and likes the color "& VLOOKUP(A2, Data :: A:D, 3, 0), "NOT FOUND")
    I know this look complicated.  so I'll break it up into smalled pieces:
    first the "&" is called the concatenate operator and joins two strings.  like this:
    a string is a set of characters between double quotes.
    so "string 1" & "string 2" becomes "string 1string2"  or "Sam " & "Jones" becomes "Sam Jones"
    you can use cell references instead of strings directly in which case the concatenation is performed on the contents of the cells.
    so if cell A1 contains "Hi " and the cell A2 contains "There"  then A1 & A2 will result in "Hi There"
    so you could add the formula
    A3=A1 & A2
    this is short hand for select cell A3 then type everything including the A3 so that A3 contains "=A1 & A2" (omit the double quote)
    OK.  So the formula I provided concatenates several items together:
    it concatenates A2, then the string " is " then a formula, then the string " years old and likes the color " then a formula
    the two formulas (highlighted in blue) perform a lookup of the value in cell A2 in columns A thru D of the table named "Data".  If if finds the value in cell A2 in the first column of the lookup range in the table Data (column A) then it returns the value from the same row but in the second or third column.
    all that is in a function calld iserror() to trap the condition where the calue you enter in A2 does not exist in the table Data:
    You will find the Numbers users guide and function reference helpful.  You can download then from Apple here:
    http://support.apple.com/manuals/#productivitysoftware

  • Can I use same account for android and PC and how ...

    Can I use same account for android tablet and PC and how do I link both?

    You can use the same Apple ID for both phones, you would then be able to use the purchased Apps/Content on both phones without having to pay again.

  • I have two iphone one is iphone 5 and othere is iphone 4 . can i use same id for both ? And do i have to purchase the application again for iphone 4 which i have buyed for iphone 5.??

    i have two iphone one is iphone 5 and othere is iphone 4 . can i use same id for both ? And do i have to purchase the application again for iphone 4 which i have buyed for iphone 5.??

    You can use the same Apple ID for both phones, you would then be able to use the purchased Apps/Content on both phones without having to pay again.

  • Can I use a domain for one site and mobile me for a different site?

    Can I use a domain for one site and mobile me for a different site?
    I have two sites, I would like to have up and I would like to do one through a domain and one through mobileme is this possible?

    Yes you can. You can use the CNAME method of forwarding for the first site (the top site in iWeb) and use the MMe URL for your account for the other site: http://web.me.com/YourAccount_Name/SiteName/
    OT

  • Have iPad, iPod Touch and iPhone 4s. Can I use one charger for all

    I have and iPad, iPhone 4S and iPod 4. Can I use one charger for all 3 and if so, which one. TZ all

    You can use the iPad charger for all.

  • In Bte can i use same Product for 2 different process

    in Bte can i use same Product for 2 different process

    hi
    as per i know yes but since there r two type of interface behaviour is defferent .
    For
    Publish & Subscribe interfaces 
    if any event occur in this type both the process can work simultaneously and they will not intervene each other
    whereas in
    Process interfaces
    at an time any one process can be active.
    Reward if usefull
    Cheers
    Snehi

  • Can you use one PC for 2 different Ipods, with out erasing the others music from Itunes?

    Can you use one PC for different Ipod touch's , with out erasing the other persons Itunes music?

    Yes.  See:
    How to use multiple iPods, iPads, or iPhones with one computer

Maybe you are looking for

  • Cannot install windows, starting to get really pissed off with this PLEASE HELP

    ok, i'm starting to get agitated with this. i cannot install windows XP, 2003, OR Longhorn on my machine. right now, i have the following setup: msi 865pe neo2 motherboard intel p4 3.2ghz w/HT (factory HS/Fan currently) 1 dimm of PC3200 crucial DDR40

  • Graph Canvas Height and Width

    Hello guys! It is any way to set that Height and Width default values in any configuration file? We need set our custom default size. Thanks for your time. Regards, Ariel

  • Downloading 2.1 and keeping music?

    I'm not exactly computer savvy...but when I try to download 2.1 it says all my music and photos will be deleted. It suggests downloading it to my computer...I'm not sure how. Anyone know how to download 2.1 and keep all my stuff?

  • PS CS5 - moving to new PC

    Hi, I'm building a new PC and will be deactivating CS5 on WinXp and installing it on Win7 x64, clean install.  I have my PS CS5 full install disk (not an upgrade). Is there a web page that describes how to copy all of my customizations from the old P

  • On loading backup file to new computer, I keep getting an error message.

    I have been trying to move my bookmarks to a new computer using the backup file which I prepared and stored on my external hard drive, but I keep getting an error message.