Orgainisational steps break down financial statment.

Dear Friends,
"In the financial statment adjustment breaks the receivables, payables and taxes down in the additional account assignments "Business area" and "Prfit Center" which are store in GL account."
I m in the mid of Organizational Steps Lesson and and not able to understand the above mentioned statement.
Can anyone please explain the term breaks and down in the additional account assignment.
It works as a what and what is the out put function.
Thanks and regards,
Mahendra Dev

Similar Messages

  • Link between Financial Statement Item and Break-Down-Category

    Dear all,
    we try to create an own data entry functionality in SAPNetweaver for our BCS Data.
    Therefore we need to implement a coding vor a validation (IP-coding). Do you know in which table we get the link between the financial statement item and the break-down category?
    The customizing phath is
    TA UCWB > Master Data > Items > Item (select item) > Field Breakdown Category (field name: ITGRP).
    We need the tecnical link (table/structure) so that we can create a validation based on the financial statement and the breakdown category).
    Thanks!
    XmchX

    The tables themselves are generated objects that are structured based on how you've defined your master data (custom attributes, etc). 
    You can probably find them through table UGMD2011 and entering the fieldname of your FS Item (I think the delivered item is /1FB/CS_ITEM).
    The following snippet is from a function module I wrote to check movement type restrictions (min/max selection set) might be useful.  I've previously created a custom task for posting custom documents (that could not be defined with standard reclassifications or IU eliminations). 
    I've never worked with the portal, but presumably you can create an RFC interface and replicate the selections which normally come from the cons monitor (Cons Area, GC, FYV, Period, Year, Cons Chart, + and additional fields fixed in the cons area) on a portal page and inherit them that way.  I actually thought about creating an Excel workbook that would send postings directly into BCS...just never got the time, and it was never a "requirement" as the volume of manually entries has been pretty low (or, at least always planned to be low)
      CONSTANTS:
      c_area            TYPE uc_area      VALUE 'US',              " Consolidation Area
      c_chart           type uc_value     value 'US',              " Chart of Accounts
      c_item_fieldname  TYPE uc_fieldname VALUE '/1FB/CS_ITEM',    " FS Item Fieldname
      c_chart_fieldname TYPE uc_fieldname VALUE '/1FB/CS_CHART',   " Chart of Accounts Fieldname
      c_mt_fieldname    TYPE uc_fieldname VALUE '/1FB/MOVE_TYPE'.  " Movement Type Fieldname
      TYPES:
    " Item attributes required from BCS databasis
      BEGIN OF s_item,
        /1fb/cs_chart TYPE /bi0/oics_chart,
        /1fb/cs_item TYPE /bi0/oics_item,
        txtmi TYPE uc_txtmi,
        itgrp TYPE uc_itgrp,
        itgrp_max_set TYPE  uc_itgrp_max_set,
      END OF s_item,
      t_item TYPE HASHED TABLE OF s_item WITH UNIQUE KEY /1fb/cs_chart /bic/bcs_litem,
    " Breakdown Category attributes required from BCS databasis
      BEGIN OF s_itgrp,
        itgrp TYPE uc_itgrp,
        selid_max TYPE uc_selid,
        txtmi TYPE uc_txtmi,
      END OF s_itgrp,
      t_itgrp TYPE HASHED TABLE OF s_itgrp WITH UNIQUE KEY itgrp,
    " Movement Type and Description
      BEGIN OF s_mt_txt,
        move_type TYPE /bi0/oimove_type,
        txtsh TYPE uc_txtsh,
      END OF s_mt_txt,
      t_mt_txt TYPE HASHED TABLE OF s_mt_txt WITH UNIQUE KEY move_type.
      DATA:
    " BCS Interfaces
      do_factory        TYPE REF TO if_ug_md_factory,
      do_char           TYPE REF TO if_ug_md_char,
      do_value          TYPE REF TO if_ug_md_char_value,
      do_area           TYPE REF TO if_uc_area,
      do_model          TYPE REF TO if_uc_model,
      do_context        TYPE REF TO if_uc_context,
      do_char_itgrp     TYPE REF TO if_ug_md_char,
      lt_field_val      TYPE ugmd_ts_field_val,
      ls_field_val      TYPE ugmd_s_field_val,
      lt_value          TYPE uc0_ts_value,
      ls_value          TYPE uc0_s_value,
      lt_itgrp          TYPE t_itgrp,
      ls_itgrp          TYPE s_itgrp,
    " Lookup tables
      lt_sel            TYPE ugmd_ts_sel,
      ls_sel            TYPE ugmd_s_sel,
      lt_fieldname      TYPE ugmd_ts_fieldname,
      ls_fieldname      TYPE fieldname,
      ls_item           TYPE s_item,
      ls_item2          TYPE s_item,
      lt_item           TYPE t_item,
      lt_mt_txt         TYPE t_mt_txt,
      ls_mt_txt         TYPE s_mt_txt,
      l_tabname         TYPE tabname,
      l_itgrp           TYPE uc_itgrp,
    " Output tables
      lt_lookup_bdc     TYPE STANDARD TABLE OF zsbcs_movement_type_lookup_bdc,
      lt_lookup         TYPE STANDARD TABLE OF zsbcs_movement_type_lookup,
      ls_lookup_bdc     TYPE zsbcs_movement_type_lookup_bdc,
      ls_lookup         TYPE zsbcs_movement_type_lookup.
    " Initialize BCS interfaces
      IF do_area IS INITIAL.
        CALL METHOD cl_uc_area=>if_uc_area~get_area_instance
          EXPORTING
            i_area  = c_area
          IMPORTING
            eo_area = do_area.
      ENDIF.
      IF do_model IS INITIAL.
        CALL METHOD do_area->get_model
          IMPORTING
            eo_model = do_model.
      ENDIF.
      IF do_factory IS NOT BOUND.
        CALL METHOD cl_uc_area=>if_uc_area~get_md_factory
          EXPORTING
            i_area        = c_area
          IMPORTING
            eo_md_factory = do_factory.
      ENDIF.
    " Create reference to FS Item characteristic
      do_char = do_factory->get_char_instance(
          i_fieldname = c_item_fieldname ).
    " Define restrictions on FS Item for reading values
    " Always filter on chart of accounts
      ls_sel-fieldname = c_chart_fieldname.
      ls_sel-sign      = uc00_cs_ra-sign_i.
      ls_sel-option    = uc00_cs_ra-option_eq.
      ls_sel-low       = c_chart.
      INSERT ls_sel INTO TABLE lt_sel.
    " filter on FS Item if provided as input parameter
      IF NOT i_item IS INITIAL.
        ls_sel-fieldname = c_item_fieldname.
        ls_sel-sign      = uc00_cs_ra-sign_i.
        ls_sel-option    = uc00_cs_ra-option_eq.
        ls_sel-low       = i_item.
        INSERT ls_sel INTO TABLE lt_sel.
      ENDIF.
    " Get FS Item values
      CALL METHOD do_char->read_value
        EXPORTING
          it_sel   = lt_sel
        IMPORTING
          et_value = lt_item.
    " Exit if invalid item was passed as parameter
      if lines( lt_item ) = 0.
        raise no_data.
      endif.
    " Additional logic for next finding ITGRP details, etc.........
    Would recommend debugging these two methods to get an idea of what BCS is doing:
    cl_uc_tx_data_change->if_uc_tx_data_change~analyze_and_add_data
    cl_uc_tx_data_change->save_data
    Anyway, hope that helps.  It took me a lot of debugging to figure out exactly which objects were being used by the posting process, getting the refresh right (delete/reverse existing documents based on special version customizing), etc.  I wouldn't recommend slamming them into the cube and ODS directly with a RSDRI_CUBE_WRITE_PACKAGE or anything...
    - Chris

  • How to Calcluate the MCI7 Report Break Down Analysis

    Dear Experts,
    Our User wants to know the Calculation of Break Down Analysis Report. MMTR & MTTF reports. The report shows the record not as per our data & calculation.
    Please explain with step by step process of calcuate the Break Down analysis.
    How can we check the Customization and formula with data for calculation the Break down analysis report.
    Please tell the process and any other related infromation how can we check the output data to calcuate with process.
    Thanks in advance.
    Regards
    Ajit

    Dear Sir,
    Our we have got the data in MCI7, in August 2011 Month selectin report shaows the Actual Break Donw 3,
    Mean Time to Repair 1.167 Hours, Mean Time Between Repair 38,365.083 H.
    But, Our Uses Calcuate the MTTR = Total Break Down Time / No. Of Break Down is ok
    MTBF = Available Time - Break Down Tiime / No. of Break Down not correct as per our record.
    Below is the MCI7 report data
    Equipment             ActBreakdn     MnTmToRepair        MnTmBetRepair
    Total                          3                     1.167 H        38,365.083 H
    Out Users calcuate the Acutal as per formula, MTBF should be calculate (i.e. 22 No fo Machine * 31 Days * 24 Hourd daily =  16368 total Availabel Time) - ( Break down time 3.50 Hours )  /  No of Break Down 3.
    Actaul MTBF calclauate 5454.83 H.
    But SAP Report Shows the 38,365.083 H.
    So We want to know the Formulat to calcuate the MTBF in SAP.
    Please explain , how we can check the exact data.
    Regd
    Ajit

  • Help! I will break down for the question...

    Hi:
    When I start the OAS Manager and the websit40,the error message occurs as follows:
    Please wait while the command is being processed on host XYZ ...
    Starting ORB processes...
    Returning filename e:\AppSrv\orb\admin\.event
    waiting for ORB to be ready...
    ORB is not responding. Please restart manually...
    OWS-20214: The OAS processes can not be started, because the CORBA orb processes can not be started.
    What's more the OracleOASStart40, admin and www listener can not start!!!
    What is the problem and what shall I do? Please help me. The configure is as follows:
    Winnt4.0 + Service Pack
    Oracle8.1.5.0
    Express Server6.2
    Oracle Application Server 4.0
    I will break down nearly. Please give me some advance.
    Waiting for your reply and thanks in advance!
    null

    The reset link will only show if you have a rescue email address (which is not the same thing as an alternate email address) set up on your account : http://support.apple.com/kb/HT5312
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • Display breaks down

    I'm using Safari 8.0.2 with Yosemite 10.10.1 (14B25). The display on Safari breaks down in a section of or the entire display.  Sometimes the screen goes to vertical lines or Safarii simply crashes and the computer restarts.  I cleared the history and held down "On" and "home" to ?reset.  That did not help. I ran disk aid and all was OK.  Help!

    Hey aggiedoc69,
    Sorry to hear you are having this issue with your Mac. Based on your description of the issue (intermittent but persistent display issues, mostly out of Safari but sometimes affecting the entire screen, computer restarting, etc), it sounds like you may be experiencing some form of kernel panic. If that is the case, you may find the information and troublehshooting steps outlined in the following article helpful:
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem." - Apple Support
    Cheers,
    - Brenden

  • AMEX Hotel Folio Break down

    Hello everyone,
    I search first and could not find anything on this subject (AMEX Hotel Folio Break Down), hope you guys can help.
    This is regarding the pre pop for credit card charges. What the Hotel Folio is suppose to do is take a hotel charge that may have a movie and a meal as part of the charge is break it down so that it will appear as three different charges. This way users do not have to use the Wizard to break out the charges, which they do not do most of the time anyhow.
    Currently we get the AMEX file and move it to SAP and it shows up in the pre pop.
    AMEX tells us that they are already sending the file and that SAP should be able to help us with the break out, but I could not find any documentation on how the process work and what I need to do.
    Can anyone speak to what steps need to be taken in this process?
    Thanks!
    Gerardo

    Hi,
    I have the same problem. My client will be receiving Amex hotel folio feeds. Could you please let me know, which program is used to upload this. How is it done.

  • Site Web Analytics Reports - Top Pages - Visitor break down

    Hi,
    I would like to know if there is a way to get the top pages with visitors break down under the Site Web Analytics Reports?
    Please advice. And thank in advance.

    Hi,
    According to your post, my understanding is that you wanted to get the top pages with visitors break down under the Site Web Analytics Reports.
    I recommend to use the
    SharePoint flavored Weblog reader which aggregates stuff nicely.
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/en-US/d770105c-65bf-4db4-b3a4-b64b2b1206df/analytics-for-top-pages-by-visitor?forum=sharepointadminprevious
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • C7 breaks down after choosing the resolution for a new project

    Hello Community,
    finally I succeeded in installing C7 on my MacBook Pro with Mavericks 10.9. But it breaks down every time after I choose the resolution for my project. The beachball appears for one second and then C7 breaks down.
    On the same MacBook I can open C7 on another account. But I want to use C7 on my account.
    Has anybody expereienced the same problems?
    Has anybody a solution for my problem?
    Cheers,
    Tom

    Hi there,
    can you please try deleting preferences by using the "CleanPreferencesMac" present in the Captivate installation location/Ultils folder, relaunch Captivate and see it resolves the issue or not.
    Thanks,
    Nimmy Sukumaran.

  • EC-CS Cons Chart of Accounts & Financial Statment Version

    Hi Experts,
    I need your valid input on this issue. We have 6 company codes and wanted to have a consolidation P&L and BS. I have implemented EC-CS and have done all the all necessary configuration and the data is flowing to EC-CS without any problems. My concern here is whether i have done right in Cons chart of accounts or not. I have created one consolidated chart of accounts in FI which as 1:1 relationship with operational coa and also copied Financial statment version. But for some reason the FSV is not copied correctly to EC-CS in FS hierarchy for example under assets->current assets->cash i just get the group as cash but it doesnt bring all the FS items or GL accounts under it, where as FI i can see all the GL accounts under cash. My question here is how to copy the same FSV from FI to EC-CS as FS hierarchy.
    Since I am using 1:1 relationship between consolidated coa and operation coa, what's the best way bring all the GL accounts in FI to EC-CS as FS item including the financial statment version. I went to CX16 and transfered automatically from FSV, it just brought in the higher level groups and not the lower level FS item.
    Could somebody suggest me the better way of doing it or am i doing something wrong? Another question is how does the retained earnings work, does it work the same way as FI, transfering net income/loss from p&l to BS, since the data is transfered from FI on real time update?
    Thanks in advance
    Best Regards,
    gj

    Hi Dan,
    Thanks again. I did figured it out and i was able to post the retaining earning account. Simultenously I was trying to post a reclassification  and i am getting error message GK897 (Auto posting item 0000330000 contains wrong value (cons unit 000000000000003200). Basically in the reclassification rule, i specified the percentage rate in further settings and in trigger i had given the P&L retained earning account, source as RE account and destination as another FS item. The reason behind doing this to take certain percentage of RE account and to reclassify to another account. but im getting this error message, im not sure what i am missing here.
    thanks
    Best Regards,
    gj

  • Breaking down Spry Data Repeat

    Hi,
    I'm trying to create a spry data set  in a table from a XML data file. I have done that in below are the  codings I obtained from Spry tool.
    <div  spry:region="KomtarETA">
      <table>
        <tr  class="TableHeader">
          <td width="100">Route</td>
           <td width="1266">Current</td>
          <td  width="1366">Destination</td>
          <td  width="1266">Next</td>
          <td  width="100">Lane</td>
        </tr>
        <tr  class="TableContent" spry:repeat="KomtarETA">
           <td>{route}</td>
          <td>{desitnation</td>
           <td>{current}</td>
          <td>{next}</td>
           <td>>{lane}</td>
    I have some individual  codings need to be done on each individual  data field. I need to  seperate all the spry data into each individual  column.
    My question  is how I can control these data individually when it's in the table ? Is  there any codings changes need to be done ?
    Please advise.
    Thanks.

    Hi,
    Actually what I mean by breaking down the data and not by means of filtering.
    I still want to display every single data but I wan it to be individualised.
    Here's the link to the test site.
    http://www.pcsb.my/test/KomtarETA.html
    What I need is that some column will be static and some will be dynamic. The actual external XML data will be dynamic as there will be a live server feeding and overwritting it.
    If you look at the Spry table portion coding inside the HTML file, it's actually a Spry repeat and I don't have much control over each individual data I want to manipulate the codings.
    Please take a look at it.
    Thanks.

  • My apple tv(3rd Gen) total screws. connection always break down, nothing changes on the setting!!! no movies, no iTunes, only seconds than it is gone!!

    One month after purchase and perfect functioning my apple Tv is screwed! I can not stream any content to since the connection always breaks down after second, also itunes etc cannot be accessed!!
    I did everything, changed Routher channels to all possible options(13 different and although everything worked before), resetted at the PC ( Was not possible to wifi, connection broke doWn), also resetted the Router. I switched of HD and all kinds off things, no sign of change!
    I found out that actually some apple TV's have a problem with the wifi chip, might be one of those?
    Contacted Apple, they are exchanging it against a used and repaired one?!?! Hello?! It is one month old!!!! No scratches!! And I still had to wait before they checked mine!!!
    I want a new one!! Support is an hilarious excuse for a company that sells this kind of quality image!!! I am hugely disappointed!!
    Did anyone else have this kind of problems?

    So you are having a network connection issue.  Have you run the network diagnositics to test the connection?  Have you trying using a wired connection to isolate if it is a WiFi issue?
    I can not stream any content to since the connection always breaks down after second
    How are you streaming?  AirPlay?  ATV menu?
    I can not stream any content to since the connection always breaks down after second, itunes etc cannot be accessed!!
    Is homesharing enabled?
    I did everything,
    Clearly you have not done everything since the problem has not been found.  Lets try to stick to reality here.
    I found out that actually some apple TV's have a problem with the wifi chip, might be one of those?
    It is not likely if you just bought it new.  You can google for the model numbers that were specificly recalled though if you want to check.
    Did anyone else have this kind of problems?
    A lot of the issues posted are network related.  Most come down to WiFi issues.  Streaming video rarely works well over WiFi unless you have extremely high end WiFi hardware to support it.  Any streaming video product will work better connected via eithernet.

  • Could somebody please give me a quick break down...

    Hi there guys,
    i'm new to Flash so apologies but i am a seasoned user of
    photoshop, illustrator and indesign so i'm not completely inept at
    Adobe packages.
    Anyway i really want to learn Flash and have been dabbling a
    little, i've found a site that works similar to the way i envision
    my new site to look, i'm not going to rip it off, just taking
    inspiration from it.
    Could anyone please break down how they'd go about creating
    the fold out square effect that is on
    Periscope.
    I've tried using the 3-d rotation tool to flip the squares
    over but there must be a simpler way instead of repeating that over
    and over? if anyone could please help it would be very much
    appreciated. Breaking it down as simple as possible would be a
    great help.
    Thanks

    Thanks for replying. i've tried doing it with one square as a
    movie clip symbol and then flipping that square over with the 3d
    rotation tool and then over and over. but i'm having to draw other
    squares on other layers to make up the rest of the square as it
    gets created. is this the right way to do it? what would be the
    simplest way? i know you said its just an animation, but how would
    you create the animation?
    Thanks

  • Is it possibloe to get a detailed break down of my calls and sms that would include phone numbers?

    I am on a family plan and was wondering is it possible to get a detailed break down of my calls and sms that would include phone numbers for my line only?

    If you are the account owner, you can log into your My Verizon ccount online and view the usage details for all the lines on the account.  If you are only an account member, you should be able to view some details for your line, but I am not sure exactly how much.

  • What's happen if one of hardware part in my Phone is break down?

    Apple has a new activation way, if one of hardware part in your device is not match with Apple database. Your phone could not active again. I think if I buy an Iphone from Apple, is totally my phone, I can access all data in it, I can fix it if break down without Apple's permission. What's happen if  one day my phone's Wifi, Signal, Bluetooth... are break down? I cannot access my data, continuing using my own phone?
    Apple can do everything to reject illegal activation, but not people likes me. I'm not a thief, I'm using a global phone!

     

  • Images are cutted and youtube-videos are breaking down in ie7, ie8

    hi muse-experts,
    have the problem, that some images are cutted in ie7, ie8. the side is now working on businesscatalyst and another server.
    images are cutted here on bc: http://trabbitour.businesscatalyst.com/angebote.html , http://trabbitour.businesscatalyst.com/ostalgisches.html , http://trabbitour.businesscatalyst.com/deine-trabbitour.html
    the same on the other server: http://trabbitour.de/angebote.html , http://trabbitour.de/ostalgisches.html , http://trabbitour.de/deine-trabbitour.html
    the videos are breaking down, by starting to scroll the side: http://trabbitour.businesscatalyst.com/trab(b)i-was-is-n-das.html
    for ie adaption I inserted on all pages between html and head this line: <!— switch IE 7,8,9,10 to quirks mode —> but with or without this, the error is the same.
    maybe you have an idea, what I can do and what the problem is?
    thank you.

    It's very difficult to say without knowing more about your system. There are a number of possibilities. First, your 13" lacks a discrete GPU, so the CPU is doing the work that a GPU would have done as far as decoding video streams, etc. Each video stream will consume considerable resources from the machine, and if you have multiple things running with video streams being decoded (for example, a browser with video Flash or cumbersome animation and iMovie running at the same time), then that may be a factor.
    Additionally, it could be that you are memory constrained. You didn't post a picture of the process list from activity monitor or the memory usage stats, but you probably want to look and see what the memory and CPU usage is and who's consuming what. Some applications are pretty inefficient. For example, if you have iPhoto open and have thousands of images, the indexed metadata and thumbnails are all stored in RAM. iMovie pulls in clip thumbnail sets - (and worse, it has to do on-the-fly transcoding video assets from some cameras that don't encode the video using the parameters it expects to make indexing frames easier). Again, this would show up as periodic spikes in CPU activity for the app.
    You seem to have plenty of disk space, that's not likely to be a problem.
    Check if Time Machine is running. Time Machine introduces a performance impact, but it's exacerbated by the presence of frequently changed large files (e.g., you don't want Time Machine backing up your video projects while you are working on them).
    Lastly, you may consider checking the console for error messages. This might reveal background processes that might be bogging down the system, or things like filesystem/disk errors. If there are errors in the filesystem, when you access certain portions of the disk, the OS and applications can slow down or lock-up as a result.

Maybe you are looking for

  • Audiobooks on Ipod Classic 160GB

    I have some audiobooks in my iTunes, organised into different books, each separated into chapters (20-30 minute mp3 tracks, just changed to media type "audiobook"). They are all fine, and remain grouped together as books in my iTunes, but not on my i

  • Can't get JSP debugging to work with WebLogic 6.0 and Eclipse 2.1.1

    Is native JSP debugging supported in WebLogic 6.0? If so, what are           the steps involved in getting it to work? I'm in debug mode and my           servlets will catch at my breakpoints but the JSP pages' breakpoints           are ignored. I am

  • Query on B2B_In_Queue/B2B_Out_Queue

    Hi I am using SOA Suite for HealthCare/B2B 11.1.1.7 version and had the below query- Similar to listening on B2B_IN_Queue for exception messages(with MSG_TYPE='3'), need to listen to success messages for logging. But B2B_IN_Queue/B2B_Out_Queue seems

  • Where do the graphics in templates come from?

    I'm trying to use an existing template in Pages to create an invitation. It doesn't suit my needs but I'm trying to make it work. I don't want to purchase a template, though I've not even found anything affordable and appropriate in my searches. Anyw

  • I can only use the internet (and web-related apps) when I'm connected to wifi.

    When I try to use the 3G, it says I'm not subscribed to a cellular data plan, which is clearly not true because I'm paying ridiculous amounts of money for it. This means I cannot use the maps feature, which is half the reason I bought the thing. Ther