Problems about function area

Dear all
when I use function area ,for example :
The function area of cost element "A "is "magagement"
The function area of cost center B is "manufacting".
When I post document :Dr Cr:A ,and related cost center is B.
will the systmen gives the error message?
richard

anyone can help me ? 
if anyone can give me the config procedure step by step..thanks...
richard

Similar Messages

  • Problem of Functional Area in Allocation

    Dear All
    We want to allocate some ADMIN Cost Centres which have "x" Functional Area with Secondary Cost Element (SCE) which *does not*  have any Functional Area to BRAND Cost Centre which doesnot have any Functional Area using a Secondary Cost Element (SCE) which has "Y" Functional Area.
      The Cycle is Dr & Cr the correct cost Centre,and forcing both Functional Are,so in the P&L report in the collector cost centers we see a debit still sitting in FA X (because it didnu2019t clear) and a credit in FA Y (because it was forced).
    We tried everything within the cycle to make this work correctly; derive functional area checked and unchecked, each with forcing correct sender and receiver functional areas within the cycle and even removing the functional area from the SCE "Y" with various options above,but still the problem persists,Can any one Guide how to do ,is there any Note available
    Thanks

    HI,
    check SAPNET note 764485, especially point 2 and 3:
    "2. Set the functional area derivation of characteristics so that the functional area is already derived on the entry screen, and not when you are posting as is the case in earlier releases. For more information, see Note 740519.
    To capitalize the functional area derivation on the entry screen, proceed as follows: Financial Accounting (New) -> Financial Accounting Basic Settings (New) -> Tools -> Customer Enhancements -> Enhance Determination of Functional Area.
    3. To set the update of the functional area in the CO totals tables, proceed as follows: Controlling -> General Controlling -> Include Characteristics in CO Totals Records. You can activate the update of the characteristics can independently."
    Best regards, Christian

  • About function area

    can any one tell me what's the function area ?and what is it for? how to use?

    Hi
    FA - is just like the Business area
    - based on the functionality of the GL values goto the particular FA
    - this will be activated in GL screen only if you activate the Cost of sales accounting
    - basically it is used for reporting purposes where the reporting is based on the Functionality of the expenditure ( factory expenses will be in FOH functional area)
    - this can be populate directly by assigning in the GL or entering at line item level
    VVR

  • Had a problem about function which includes bitand, decode, etc..

    Hi everyone,
    As I said at topic, I need some help on function. First of all, I will explain what kind of data I need to have. I had a table which has a column called FLAG1, this column gives me an information about a meter's situation. But this column only have numbers I need to look at it bit by bit. Here is my query;
    create or replace
    function FLAG1_CONTROL(F1 varchar2) return varchar2 is
    result varchar2(250);
    vF1 integer;
    begin
    vF1:= TO_NUMBER(F1, 'XX');
    result:= '';
    SELECT result|| DECODE(BITAND(vF1,1), 0, 'close,', 'open,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,2), 0, '', 'dafds,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,4), 0, '', 'jkf,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,8), 0, '', 'rewrw,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,16), 0, '', 'fdsfsa,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,32), 0, '', 'dfas,') into result from dual;
    SELECT result|| DECODE(BITAND(vF1,64), 0, '', 'jjll,') into result from dual;
    return(Result);
    end FLAG1_CONTROL;
    When I run this query, I had exception like
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "AKSAPROC.FLAG1_CONTROL", line 11
    ORA-06512: at line 7
    Process exited.
    Can anyone help me about that topic?
    Regards,
    Edited by: sedcal on Aug 9, 2010 5:19 PM

    Hi,
    You're referencing a table called dualI that, apparantly, has more than 1 row:
    SELECT result|| DECODE(BITAND(vF1,2), 0, '', 'dafds,') into result from dualI;If you use CASE (or IF ... THEN .. ELSE) instead of DECODE, you won't need SELECT INTO.
    create or replace
    function FLAG1_CONTROL     (F1     IN     varchar2)
    return       varchar2
    is
         vF1    integer          := TO_NUMBER (F1, 'XX');
    begin
         RETURN  CASE WHEN BITAND (vF1,  1)  = 0 THEN 'close,'  ELSE 'open,'   END
         ||       CASE WHEN BITAND (vF1,  2) != 0 THEN 'dafds,'                  END
         ||       CASE WHEN BITAND (vF1,  4) != 0 THEN 'jkf,'                       END
         ||       CASE WHEN BITAND (vF1,  8) != 0 THEN 'rewrw,'                END
         ||       CASE WHEN BITAND (vF1, 16) != 0 THEN 'fdsfsa,'                END
         ||       CASE WHEN BITAND (vF1, 32) != 0 THEN 'dfas,'                END
         ||       CASE WHEN BITAND (vF1, 64) != 0 THEN 'jjll,'                END
    end     FLAG1_CONTROL;
    /Edited by: Frank Kulash on Aug 9, 2010 10:44 AM
    Added code for SELECT-free function

  • Problem about function

    can we give table as parameter to the function ,
    the table parameter should be out type parameter .
    how ?
    please explain with example.
    Thanks in advance

    I'm not sure - are you looking for this or anything else --
    SQL> create or replace type rec_emp_type is object
    emp_id number (4),
    ename varchar2 (12),
    job varchar2 (12),
    mgr_id number(4),
    hiredate date,
    salary number (8),
    comm number(8),
    dept_id number (2)
    Type created.
    SQL> create or replace type table_emp_type is table of rec_emp_type;
    Type created.
    SQL> ed
    Wrote file afiedt.buf
    1 CREATE or REPLACE function transform Return table_emp_type PIPELINED as
    2 BEGIN
    3 For query in (select * from emp)
    4 Loop
    5 query.sal := query.sal*1.2;
    6 Pipe row (rec_emp_type (
    7 query.EMPNO,
    8 query.ENAME,
    9 query.JOB,
    10 query.MGR,
    11 query.HIREDATE,
    12 query. SAL,
    13 query.COMM,
    14 query.DEPTNO));
    15 End loop;
    16 Return;
    17* END;
    SQL> /
    Function created.
    Elapsed: 00:00:00.02
    SQL> select * from table (cast (transform as table_emp_type));
    7369 SMITH CLERK 7902 17-DEC-80 960 20
    7499 ALLEN SALESMAN 7698 20-FEB-81 1920 300 30
    7521 WARD SALESMAN 7698 22-FEB-81 1500 500 30
    7566 JONES MANAGER 7839 02-APR-81 3570 20
    7654 MARTIN SALESMAN 7698 28-SEP-81 1500 1400 30
    7698 BLAKE MANAGER 7839 01-MAY-81 3420 30
    7782 CLARK MANAGER 7839 09-JUN-81 2940 10
    7788 SCOTT ANALYST 7566 09-DEC-82 3600 20
    7839 KING PRESIDENT 17-NOV-81 6000 10
    7844 TURNER SALESMAN 7698 08-SEP-81 1800 0 30
    7876 ADAMS CLERK 7788 12-JAN-83 1320 20
    7900 JAMES CLERK 7698 03-DEC-81 1140 30
    7902 FORD ANALYST 7566 03-DEC-81 3600 20
    7934 MILLER CLERK 7782 23-JAN-82 1560 10 Regards.
    Satyaki De.

  • Derivation of functional areas

    Hi everybody:
                       I wonder if you can help me with the following:
    New P/L accounts were created and when I'm testing them in development, the functional area stays blank.
    However, when I'm testing with another account, which was the origins of the new ones, this time the functional area field is completed ok.
    I don't understand why is this happening??
    I've checked the FMDERIVE and there is no derivation about functional areas and FI-GL.
    Thanks in advance,
    Regards,
    Lorena

    HI,
    Dear, functional areas can be derived into the GL account only if the Cost Sales Accounting is Active so make sure it is active and Functional are is entred into the GL master or you have set the substitution for the same..
    Regards,
    Chintan Joshi

  • Functional Area - Balance sheet accounts

    Hi Friends,
    We are facing one problem with Functional area. Functional area is posting to Balance sheet accounts which should not happen.
    Note ; not activate Public sector.
    We foung when we do MIRO transaction.Can any one tell us is there any OSS note to apply or any solution.
    Thanks in advance
    Bathineni.Ram

    ok

  • Ask about "depreciation area"

    Hi everybody!
    I'm a new employee about SAP. I have some problem about "depreciation area", such as:
    - When I "creat asset". Why I click about "depreciation area", It doesn't appear anything. Although I configured FA.
    It notice "Depreciation area difined not in asset"
    I hope everybody answer early for me
    Thanks so much
    NGOC

    Depreciation needs to be activated in an asset class to carry the depreciatio values of the aset class.
    Check whether any depreciation areas are activated for your asset class in OAYZ.  YOu also need to assign a depreciation key and a screen layout in OAYZ.

  • My apple Tv will not airplay, this is the 3rd one i have exchanged and my devices airplay just fine elsewhere, could there be a problem with the wifi even though all of the other functions are working fine?

    My apple Tv will not airplay, this is the 3rd one i have exchanged and my devices airplay just fine elsewhere, could there be a problem with the wifi even though all of the other functions are working fine?

    Hello there, AntRambo.
    The following Knowledge Base articles may provides some steps to go over for troubleshooting your issue:
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/HT4199
    And also the following:
    iOS: Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS4215
    Particularly but not exclusively of note:
    If the AirPlay icon doesn't appear
    Ensure that you have followed the steps in using AirPlay and AirPlay Mirroring.
    If you are still unable to see the AirPlay icon  , try one of the following steps:
    If trying to AirPlay, or AirPlay mirror, to your Apple TV, ensure that AirPlay is enabled on your Apple TV as well. You can enable or disable AirPlay on Apple TV in the AirPlay menu: Settings > AirPlay.
    Check Internet or network connectivity on all affected devices. Some content requires an Internet connection to authorize content playback. AirPlay capabilities may be limited if your network is not connected to the Internet.
    If attempting to use AirPlay from a third-party app or a website from your Safari app on your iOS device, confirm that the app or website is AirPlay compatible (refer to the developers of the app or website for additional information).
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro

  • PCA Functional Area Report Problem With Co-Product Settlements

    I have built a profit center functional area report for use in a manufacturing client.  The reason is because the factory cost centers flow to the product cost (via costing sheets) and the administrative cost centers are expensed monthly.  However, SAP seems to have no other approach to handle the issue where common expense elements must be reported in these two separate sections.  Anyway, here is my problem:
    After creating the functional areas and matching them to each cost center appropriately and then applying a different functional area to orders, I see that settlement of co-products causes my report to zero out the functional area that should match the overhead cost centers.  These obviously should not be impacted by settlement and I see that they are not impacted in the transactional data.  However, the functional area report shows a different story.  I believe it somehow has to do with the unusual way that co-product split up and settle versus other types of orders.  I may need some sort of subtitution rule, but like I said, the raw transactional data looks correct and the report should bring in these values. 
    I used ledger 8A if that helps.  I am sure I missed some small thing somewhere.
    David

    It looks to me like the New G/L may have taken care of some of my issue.  The FI reconciliation G/L account (690000 usually) includes the secondary cost center postings as well as the secondary order postings.  The cost center side of the secondary transaction reflects the functional area for cost centers (Factory Exp or Admin Exp in my case), whereas the order side of the secondary posting shows the functional area associated with order consumption (Net Consumption in our case). 
    This appears to mean that the standard report for Functional Areas from FI should work to break up the income statement for manufacturing purposes.  This report is S_PLO_86000029.  That report looks to me like it will replace my need for a PCA based Functional Area Report.
    David

  • Problems with DHTML popup: Required DHTML functions are not supported in this browser.

    When I try to open a Date calendar I receive this message:
    Required DHTML functions are not supported in this browser.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • The problem of function-based reuse

    I read the quoted text as follows from a book authored by a Microsoft developer. I googled and found a lots of quotes of it, but did not find any explanation.
    ============
    With languages like C, the basic unit of reuse is the function. The problem with function-based reuse is that the function is coupled to the data it manipulates. and if the data is global, a change to benefit one function in one reuse context damages another function used somewhere else.
    ============
    C uses libraries widely,which is of function-based reuse. Can anybody kindly give me a scenario when this problem happens?
    Java is typically object-based reuse, and I admit that my question is not a Java one. But I feel it would help to understand more about the concept or benefits of design of Java language. So, thank you to allow me to post this question here,
    Edited by: 799160 on Sep 30, 2010 12:38 PM
    Edited by: 799160 on Sep 30, 2010 12:57 PM

    This is what I got out of reading the quote you posted:
    I suppose something like the following could happen:
    You (being a general person) have been given a class to modify. You look at the code for the first time and it has a bunch of methods and some class variables in it. Some of the methods use the class variables. How can you be sure if you change the functionality to change a class variable in one method won't affect the other methods when they are used? This problem can be solved by learning what everything does, how it interacts and the correct way to use it. But then again, if you don't think about it and just make changes...Oops!
    Perhaps another abstract example would make sense:
    Imagine a calculator that could be used by 2 people at the same time? I bet it'd come up with some funny answers :)
    I wrote up a short example of this, hopefully it makes some sense:
    public class SuperBigProgram
         private int globalVar;
         public static void main ( String[] args )
              new SuperBigProgram();
         public SuperBigProgram()
              System.out.println("I'm a super big program.");
              globalVar = 0;
              //Let's pretend these series of events occur during the program:
              doItHighChanceActivity(); //1
              doItHighChanceActivity(); //2
              doItHighChanceActivity(); //3
              //Whoops super rare event occured!
              doesNotHappenALot();
              doItHighChanceActivity(); //4????    but is really 5.
          * This happens A LOT!
         private void doItHighChanceActivity ()
              superUtilityMethod();
              System.out.println("globalVar: " + globalVar);
          * This utility method does some awesome utility stuff for our Super Big Program.
          * This changes some global data.
         private void superUtilityMethod()
              globalVar++;
          * This does not happen a lot, if at all.
         private void doesNotHappenALot()
              //Hey I don't happen a lot but I'm reusing this really cool utility method that contains global data...
              //Code reuse for the win!
              superUtilityMethod();
    }Here is the output:
    I'm a super big program.
    globalVar: 1
    globalVar: 2
    globalVar: 3
    globalVar: 5
    Edited by: kilosi on Sep 30, 2010 1:22 PM

  • Problem using function call in WHERE part of a Report's SQL query

    I tried doing some searches on this, but couldn't find anything. I'm trying to run something similar to the following query in my report, but keep getting a "Query cannot be parsed within the Builder" error:
    SELECT function1(TABLE2.ID) A
    FROM TABLE1, TABLE2
    WHERE TABLE1.ID = TABLE2.ID AND
               TABLE1.NAME = 'BLAH' AND
               TABLE2.DATE > SYSTIMESTAMP AND
               (function2(TABLE2.ID) = 'YES' OR
                function3(:USER_ID) = 'YES')
    ORDER BY TABLE1.NAMEWhy won't this work? I can take out the 2 lines with function calls from the WHERE clause, and it works, so I'm assuming that APEX doesn't like something about my function calls. I know the functions are valid and work properly, because I tested them independently. Can anyone see what the problem is? Thanks!

    Here's the actual query:
    SELECT BUILD_EXT_RES_LIST(EXT_FILE.ID) A
    FROM EXT_FILE_RES, EXT_FILE
    WHERE EXT_FILE_RES.ON_OWNER_PROFILE = 'Y' AND
          EXT_FILE.OWNER_ID = :PROFILE AND
          EXT_FILE.ID = EXT_FILE_RES.EXT_ID AND
         (RES_SUBSCRIBER_YN(EXT_FILE.ID,:CURR_ID) = 'YES' OR
          ADMINYESNO(:CURR_ID,:PROFILE) = 'YES')
    ORDER BY EXT_FILE.FILE_NAMEAnd here's the actual error message:
    1 error has occurred
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. ORA-00904: "SER_IS_ADMINYESNO": invalid identifier

  • Problem with function arguments

    I am having a problem with arguments to a function not
    working. In the attached example, the values passed to the function
    are never reflected within the function.
    Can any one tell me what I am doing wrong?
    Thanks,
    David

    hey drzeller,
    i just copied and pasted the original code you attached to
    this thread into flash and kglad is right. there is no problem with
    any of it. i didn't check your values before i altered your code
    originally, i just assumed they were outputting the values you
    posted. if you will copy and paste your original code back into
    flash and check the output window you will see what kglad is
    talking about.
    just so you know, all the advice i've ever seen in this forum
    from kglad has been spot on. definitely use his advice.

  • Time series functions are not working in OBIEE for ESSBASE data source

    Hi All,
    I am facing a problem in OBIEE as I am getting error messages for measure columns with Time series functions(Ago,ToDate and PeriodRolling) in both RPD and Answers.
    Error is "Target database does not support Ago operation".
    But I am aware of OBIEE supports Time Series functions for Essbase data source.
    using Hyperion 9.3.1 as data source and obiee 11.1.1.5.0 as reporting tool.
    Appreciate your help.
    Thanks,
    Aravind

    Hi,
    is because the time series function are not supported for the framentation content, see the content of the oracle support:
    The error occurs due to the fact the fragmented data sources are used on some Time series measures. Time series measures (i.e. AGO) are not supported on fragmented data sources.
    Confirmation is documented in the following guide - Creating and Administering the Business Model and Mapping Layer in an Oracle BI Repository > Process of Creating and Administering Dimensions
    Ago or ToDate functionality is not supported on fragmented logical table sources. For more information, refer to “About Time Series Conversion Functions” on page 197.
    Regards,
    Gianluca

Maybe you are looking for

  • How can i get a iphone 3G out of recovery mode without restoring it

    Need Help, How can I get a iPhone 3G out of recovery mode without restoring it. it has never been backed up so restoring it will loose all contacts etc.

  • Windows server 2012 RDSH

    I have application servers running on windows server 2008 R2. Is it possible that i can install session host role on windows server 2008 R2 and web access and connection broker role with windows server 2012.

  • Cant restore Iphone 3G after failed install of OS 4

    Hi ppl, I tried to update my iphone 3G with the new OS4. I downloaded and installed the new itunes 9.2 beta along with os4. The initial setup went well but the I had an unknown 2006 error along with this code. 2010-06-15 18:06:51.000 iTunes[246:20b]:

  • Refine Search on App Store?

    Earlier today i was looking for a magazine but when i looked for it on search, i could find it because loads of other apps came up because of what i searched. What i was thinking is that if apple added a refine search to the app store it would be 10x

  • Airport Extreme-Airport Utility SAYS I'm connected to internet but I'm not

    Have several apple computers connected via ethernet to ATT DSL; was using a Netgear router...but it was SLOW SLOW SLOW to open new internet pages: trouble shooting with AT&T proved that when I hooked my computer direct to modem, internet speed was FA