Tcode to view functional area for g/l account

Hi,
I'm doing substitution enhancement at callup point 6 to add value to cobl-fkber(Functional Area). the tcode that triggers this enhancement is f-02 however i'm not sure on which tcode to use to view if the functional area is updated or not. Please help.

Hi,
Go to tbale view maintanance SM30 Transaction
and check the functional area data with V_TFKB
view
reward me points if it is helpful
Regards
Praneeth

Similar Messages

  • No functional area derived from GL account and cost center ccombination sel

    Hi,
    When doing a goods issue for a delivery, am getting this error. Hope somebody could advice.
    "No functional area derived from GL account and cost center combination selected."

    Hi,
    Go to FS00 and specify the functional area for the gl account. Go cost center change mode specify the functional area. Define the f area in Tcode OKBD, FSP2,KA02,KS12,
    Hope this is clear, if yes assign points
    Regards,
    Sankar

  • How to fetch Functional Area for FTE (Full Time Equivalent)

    Hi
    We have a report that needs to be developed--FTEs for each Functional Area.
    We are trying to fetch Functional Area from Employee's Master Cost Center. Our structure has Employee; Master Cost Center, Functional Area and FTE. However this structure is not showing any values. What is the way out. We are on BI-7.0 and we are using standard BI Objects [0Employee; 0Cost Center].
    Appreciate your suggestion.
    Regards
    Srinivas

    Hi
    I wish to provide more information to you.
    We are implementing Integrated Planning (BI 7.0).
    Even though Functional Area is a Navigational Attribute of Cost Center when I am trying to establish Characteristic Relationship between Cost Center and Functional Area. I am not seeing Functional Area for the Cost Center.
    I believe if we could establish the relationship we can fetch the relevant report from the layout.
    Regards
    Srinivas

  • Functional Area for WBS Element

    Hi Friends
    While posting Invoices in SRM 7.0 for WBS elements the Functional Area is sometimes picked up from WBS element directly and sometimes from Responsible Cost Center of the WBS.
    Also in cases when we have split account assignment with CC and WBS elements then many times only the COST Center Functional Area is passed for all the account assignment split.
    E.G. we have 1 line item with 10000 value and Account Assignment is split in 4 parts 1 CC and 3 WBS element. For this functional are of the Cost Center is passed for all four account assignments rather than passing 4 different functional areas based on each cost element.
    Can someone help me understand how the standard functionality works or is there any specific condition in which the responsible cost center Functional Area is picked up instead of WBS element Functional Area.
    There are some documents where in case of split accounts system is passing separate functional area for each account assignment. So i am not able to conclude what is the standard function to determine Functional Area.
    Regards
    Ushir

    Hi Akash,
    The scenario you mentioned is correct it will pick up the CC functional area in case there is no functional are on WBS but in our case that is not the case. For all the WBS we have the functional area maintained but still some times the functional area is picked up from responsible cost center of the WBS.
    The problem is we are not able to replicate this in Q or D environment. The documents posted by users in production are pointing to some wrong Functional Area and its not correct.
    Regards
    Ushir

  • Any docs regarding Table/View,Function Module for Generic Extraction

    Hello All
    I need to do Generic Extraction,for that if anyone has docs., I need docs on how to create table,view,Function module and infoset query ,on that pl forward to my id
    [email protected]
    Many Thanks
    balaji

    hi Amit
    Thanks for your docs,but this docs i have already,do u have any thing different one,if so please forward?
    Facing a Problem
    Iam trying to create view(database view)for <b>vbak</b> and <b>vbap</b> and given in Tables in <b>Table/Join Conditions</b> tab and clicked in <b>Relationship</b> and the relantionship has been generated automatically,now when i tried to activate this view its saying like "<b>No tables and/or fields are defined for view xxxxx</b>(xxxx-> name of a view)
    what will be the problem?pl let me know how to create a view?
    And also I need to know the diffference between database view,Manintenance view,Projection view and help view?
    Pl let me know on this?
    Many Thanks
    balaji

  • Is the possible to have Business Area for CVD Clearing Account

    Hi Friends,
    Is the possible to have Business Area for CVD Clearing GL Account?
    If yes, then how can it be done/configured.
    Pls advice.

    .

  • Is it possible to have Business Area for CVD Clearing Account

    Hi Friends,
    Is it possible to have Business Area for CVD Clearing GL Account?
    If yes, then how can it be done/configured.
    Pls advice.

    .

  • Tcode to view plants & slocs for a material

    Dear Experts,
    I have a Material no. Is there any transaction code through which i can see in which all plants and storage locations it is stored in.
    Pls give a solution...
    Kind Regards
    Sajid

    Hi,
    You can see in the table MARD.
    Go to SE16-table MARD-Input the material and execute-it will list all the plants and storage locations

  • Functional areas vs. cost center groups for cost of goods sales

    What are the benefits of using functional areas over cost center groups when building your p&l for cost absorbtion or visa versa?  Which of the two is recommended?

    Hi,
    1: a P&L statement does not only contain cost-center related postings, you can have different CO-objects (Internal order, WBS-Element,...)but all of them contain the functional area in its master record.
    The P&L reporting structure (created via report painter) can use account groups but restricted to one functional area for porper P&L structure creation.
    Best regards, Christian

  • Open hub destination of text and attribute for Functional Area

    Hi Expert
    I have a requirement to accommodate both attribute ( 0FUNCT_LOC_ATTR)  and text ( 0FUNCT_LOC_TEXT ) for functional area in open hub destination .For this a DSO has been created from both 0FUNCT_LOC_ATTR, 0FUNCT_LOC_TEXT data sources .Problem is that DSO has 0FUNCT_AREA ( Functional Area ) as only key fields . So text for both english ( EN ) and Dutch ( NL) for particular 0FUNCT_AREA not getting loaded .If we assign both 0LANGU and 0FUNCT_AREA as composite key of dso , data from attribute transformation is loaded as blank as there is no language filed in attribute data source ( 0FUNCT_LOC_ATTR ).   Please let me know how can I design to accommodate both text for different language and functional area for open hub destination  .
    I know that I can create separate open hub destination for master data TEXT and Attribute.
    Any help is highly appreciated.
    Regards
    Saikat

    HI Saikat,
    You can create an additional characteristics counter and make it a key field in the DSO.After that we can populate this characteristics in the end routine .It value would increase by 1 everytime  different text comes for the same functional area.
    Sample code
    data: counter type n,
             w_farea type /bio/oifunc_area.
    Sort result_package by func_area.
    count =0.
    *checking whether we have the same functional area or we have a different functional area.
    Loop at result_package assigning <Result_fields>.
    if w_farea is initial or w_farea = <result_fields>-func_area.
    count = count +1.
    else
    count =1.
    endif.
    w_farea= <result_fields>-func_area.
    <Result_fields>-zcount = count.
    ENDLOOP.
    Clear w_farea.
    This way the value of counter would get increased by one everytime a new text comes for the same functional area.We can have any number of texts for the same functional area by this method.
    The only issue would be when some delta update comes for the existing text in this method.If you are doing a full load to the DSO from the datasource, then there would be no issue with this method.

  • Functional Area (FN) missing in objects list

    Hi All,
    In transaction PP01, we cannot view "Functional Area (FN)" object under the Object type drop down list. It is als not shown under "Maintain Object Type" list. Can someone help how can be available. Is there any business function or switch to be activated?
    We are currently on EHP6 version
    Thanks,
    Ashwni J

    Use SAP Talent Visualization by Nakisa - TalentHub for HR&Exec or SAP GUI transaction HRTMC_PPOM to create and maintain FN objects.
    Sorry, to add ... you need to have activated the business functions for Talent Management.  Have you done this?
    ("HCM_TMC_CI_3" see http://help.sap.com/saphelp_globext607_10/helpdata/en/07/d8e04bca4649988b5bb985dda809bb/frameset.htm )
    Stephen
    Message was edited by: Stephen Burr

  • No Functional Area Found Error while creating service data in me22n

    Hello,
    While creating service data for a purchase order in ME22n I am getting error like " No functional area found"  .
    Please tell me how to maintain the Functional area for a particular GL account
    In the help i can found that we can find the functional area "The functional area can be determined either using the cost element, the account assignment object (such as the cost center or order)"
    How we can determine this please through some light on this statement.
    Thanks
    Pradeep
    Moderator message: not directly related to ABAP development, please post again in the appropriate functional forum.
    locked by: Thomas Zloch on Oct 15, 2010 9:55 AM

    Hello Madhav,
    You have to maintain your 'business transaction profile' (SPRO->CRM->IC Web->Business Transaction->Define bus. trans. prof.) in the customizing and assign that profile to your IC WebClient profile (the one you assigned in the org. model)
    In the business transaction profile you must make sure that at least one transaction type (e.g. ZSRV) is assigned as 'Dependent business transaction' and that entry is flagged as 'Service'.
    Also make sure that that transaction type (ZSRV) has leading business transaction category 'Service process' (BUS2000116).
    This should solve your problem!
    Kind regards,
    Joost

  • How to post cost of goods sold to io per functional area and account determ

    1. We create a sales order with reference to a revenue IO with functional area ABC01.
    2. We create a delivery document on the sales order and goods issue XYZ.
    3. We expect the cost of goods sold for the coal to hit an existing IO with functional area ABC02 based on account determination for XYZ.
    4. Instead we see both the revenue and the COGS hitting the revenue IO on the Sales roder.
    5. For now, the accountants responsible for those companies have been making journal entries all along to correct the postings.
    Please advise what needs to be done for step 3 to happen so that the extra step 5 need not be done.
    (IO - internal order)
    Thanks,
    Venkat

    What is the IO you have assigned in the Sales Order please?
    Just check the Sales Order - Account assignement, so that you can able to change if there is a different IO.
    System won't pick up IO automayically until unless you secify in Sales order to done OKB9 settings.
    Chek the above
    Thanks

  • Functional Area not picked

    Hi,
    I have major issue. I have activated functional area in FI and for Revenue accounts the functional area is defaulted from the GL account.
    But for the month of August for few line items the functional area is not picked, therefore all you reporting are incorrect.
    I have two questions;
    A. How can only for certain line items functional area is not picked?
    B. Is there any way to manually include the functional area for those line items?
    Thanks
    Gayani

    Check the GL Account master data for changes at COA level. Also verify whetehr master data was ALE'd from other client that might have created this issue - check whether data was fixed with another ALE transfer.
    Obviously you cant chagne existing documents. You may reverse and repost if possible.
    Regards
    Subodh

  • In KA02 screen how can I get different functional area like (Production, Sales, Adminstration etc)

    In KA02 screen how can I get different functional area like (Production, Sales, Adminstration etc)

    Hi,
    Please check below configuration for defining functional areas for cost elements
    SPRO> FI > FI Global settings> company code> cost of sales accounting>Functional area > enter functional area
    Regards,
    Jyoti

Maybe you are looking for

  • Document Set shared columns not propagated to documents newly added

    I have a Document Set with shared Managed Metadata and Person fields. I have found that sometimes some managed metadata fields are not propagated to newly added documents using drag and drop with Windows Explorer. [ Note : Sharepoint 2013 with SP1 ]

  • Driver prg name  for predefined form F110_IN_AVIS

    hi all, I need print program (driver prg name) for predefined form F110_IN_AVIS, and also what is the output type for that. T-code for F110_IN_AVIS is F110. It is related to payment advice. If u know tell me plz.., or tell me where I have to search t

  • Sitewide Splash page?

    http://webscom.zendesk.com/entries/10272- http://www.dynamicdrive.com/dynamicindex- Those are two tutorials that tell me how to make a splash page. What I want to do though is show a splash page whenever a user comes to my site through ANY link. So t

  • Deploy nexus1000v on HP C7000 Virtual Connect

    Today i have a problem , i should deploy a N1KV on my enclosure c7000 with virtual Connect, I have 3 Clusters :  1 cluster : 2  X ESX 5.5  Management   1 Cluster :  1 X ESX 5.5  PCA/PRA 1 Cluster : 2 X ESX 5.5 Production  The first cluster Management

  • IPhoto does not start but gives an error message

    As soon as I start the iPhoto this messages shows up: I actually do not know  what I did wrong previously with iPhoto. Any help appreciated Ueli