Matrix Consoldiation Help

Hello Gurus
please provide infomation on Matrix Consolidation advantages and disadvantages  on Company/PC Consolidation.
We have hierarchy's  from Legal (Company) and Management(Profit Center) sides.
If i want to keep management consolidation(PC) is my book of legal then what  is the best approaches?
appreciated your comments and help
Thx
Ramana_12

Hello Dan,
We have EC-CS consolidation with Legal and Mangement ( Company - Legal and Profit Center- Managment ) dimensions and would like to continue same manner in BCS. In EC-CS i have to change every time global parameters to work on consolifations.
where as in BCS , we can use Matrix organization/consolidation to accommodate both dimesions .and EC-CS  thesource of  data collection  is company  based on  real time  and PC is rollup.
I ve two options here one with 0BCS_10 or 0BCS_C11. what is the best way to handle?
if i want to load data manually into BCS, how many loads i need to do for one consolidation unit( Company- legal /Profit Center- managment)?
thanks in advance
R

Similar Messages

  • How to create matrix template help pls

    hi frs,
    i have generated xml file after creating matrix report in report builder.
    i want to know how to create matrix template(rtf) in word document.
    if i use wizard or insert> all fields i am not getting rtf like matrix.
    help pls
    Thanks
    Rajesh

    This issue is really becoming a problem for us. Does anyone have any examples of label templates. The label when generated automatically converts from pontrait to landscape. If you increase the size of the template then word complains about the page and margin size before printing.
    Anyone have any ideas?
    Thanks

  • Boolean matrix - Please Help

    Would anyone be able to help me out with code to create a boolean (1/0) for a GUI? Iam looking to use a matrix of up to 10 rows and columbs that would resize depending on an entered value. It would then be possible to use the mouse to click on each element within the matrix to make it a 1 or a 0. I would appretiate any help.

    yay !!!!
    import java.awt.*;
    import java.awt.event.*;
    import java.util.BitSet;
    import javax.swing.*;
    import javax.swing.event.MouseInputAdapter;
    * @author  Ian Schneider
    public class BooleanMatrix extends JPanel {
        BitSet bits;
        int w = 10;
        int h = 10;
        /** Creates a new instance of BooleanMatrix */
        public BooleanMatrix() {
            resizeMatrix(w,h);
            MouseUpdater updater = new MouseUpdater();
            addMouseListener(updater);
            addMouseMotionListener(updater);
        public boolean isSet(int x,int y) {
            return bits.get(idx(x,y));
        public void toggle(int x,int y) {
            bits.flip(idx(x,y));
        private int idx(int x,int y) {
            return x + y * w;
        public void resizeMatrix(int w,int h) {
            bits = new BitSet(w * h);
            this.w = w;
            this.h = h;
        public Dimension getPreferredSize() {
            return new Dimension(w * 10,h* 10);
        public void paintComponent(Graphics g) {
            super.paintComponent(g);
            for (int i = 0, ii = w; i < ii; i++) {
                for (int j = 0, jj = h; j < jj; j++) {
                    if (isSet(i,j))
                        g.setColor(Color.green);
                    else
                        g.setColor(Color.red);
                    g.fillOval(i * 10 + 2,  j * 10 + 2, 6,6);
        class MouseUpdater extends MouseInputAdapter {
            public void mouseClicked(MouseEvent me) {
                int x = me.getX() / 10;
                int y = me.getY() / 10;
                toggle(x,y);
                repaint();
            public void mouseDragged(MouseEvent me) {
                mouseClicked(me);
        public static final void main(String[] args) throws Exception {
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
            f.getContentPane().add(new BooleanMatrix());
            f.pack();
            f.setLocationRelativeTo(null);
            f.show();
    }The rest of the exercises are left to the student :)

  • SSRS 2008 Matrix grouping help

    Hi. I have a requirement to create an SSRS report with a tablix or matrix which looks like the image below. My dataset will hold the following column values: Project name, overall rag, cost rag, scope rag, headline and commentary.
    The RAG values are all colours which I will represent via a background expression. The grey columns will be static.
    The headline and commentary values are long text values and should run under the RAG columns as depicted.
    I have no idea how to group and create this in an SSRS 2008 report; please can someone let me know how I should configure this?

    We can merge cells in Data Region of tablix. Refer this link
    http://technet.microsoft.com/en-us/library/dd207131.aspx
    Moreover it is important that we know how the data looks like in Data Set. Post the sample data.
    Regards, RSingh

  • Tirplets in grid matrix - please help!

    Hello All,
    I just switched from ableton live and am very pleased indeed , the macbook pro and logic 7 really do go hand in hand! - However one issue i have is that i cannot program triplets in the matrix editor - for example if i have an ultrabeat set up i cant snap the grid[on the channel's midi grid not the inbuilt step sequencer] so that i can do swingy hi hat patterns - on ableton one just presses ctrl+3 and it switches from 16 to 16/t for example but on logic it seems that it just goes 8-12-16 etc
    sorry if i expressed my question in a slightly jumbled manner but i'm desperate to get stuck into some nitty gritty drum programing!
    thanks in advance!

    on th left side of the matrix editor just under the tool box is a small box, the default is 16. change it to 12 for 8th note triplets, 24 for 16

  • Matrix code help

    Experts,
    code written
    Dim str As String
    Dim omat As SAPbouiCOM.Matrix
    Dim recset As SAPbobsCOM.Recordset
    str = "Select *from [@TableName] where  Code='" & FieldName& "'"
      recset.DoQuery(str)
    omat = objform.Items.Item("mtx_0").Specific
                            If recset.EoF = False Then
                                While recset.EoF = False
                              omat.Columns.Item("1").Cells.Item(omat.VisualRowCount).Specific.value = recset.Fields.Item("U_Field1").Value
                              omat.Columns.Item("2").Cells.Item(omat.VisualRowCount).Specific.value =  recset.Fields.Item("U_Field2").Value
                                End While
                            End If
                            omat.AddRow()
    But this is not giving correct value in loop, it is going on and epeating
    How to write loop correctly in matrix

    Hi,
    Try This.....
       Dim str As String
                    Dim omat As SAPbouiCOM.Matrix
                    Dim recset As SAPbobsCOM.Recordset
                     str = "Select *from @TableName where Code='" & FieldName& "'"
                    recset.DoQuery(str)
                    omat = objform.Items.Item("mtx_0").Specific
                    If recset.RecordCount > 0 Then
                        While recset.EoF = False
                            omat.Columns.Item("1").Cells.Item(omat.VisualRowCount).Specific.value = recset.Fields.Item("U_Field1").Value
                            omat.Columns.Item("2").Cells.Item(omat.VisualRowCount).Specific.value = recset.Fields.Item("U_Field2").Value
                            recset.MoveNext()
                        End While
                    End If
                    omat.AddRow()
    Thanks
    Shafi
    Edited by: shafi_sunshine on Sep 17, 2011 9:41 AM

  • Matrix Problem Help !!!

    I am new to solve matrix using labview.
    I have this
    equation
    Vt = Ia*Ra + Wm*Km
    Vt = 10X1 matrix
    Ia = 10X1 matrix
    and Wm = 10X1 matrix
    I want to solve Ra and Km
    I have tried to solve it by using
    [Vt] = [Ia ; Wm]* [Ra Km]'
    it becomes a
    [10X1]= [10X2] * [2X1]    matrix
    A=B *[Ra Km]'
    solving it by
    inverse(B)*A = [Ra Km]
    this style cant work ......
    cause B can not be inverse as it is not a square matrix ....
    Any idea how to solve Km and Ra ???

    I have already found a soultion to this problem ...
    Thanks

  • How to add new columns in predefined matrix  in system form

    Hi all,
    I am new to SAP B1. I am going to add New column to Good Receipt PO matrix. I faced the one error " Matrix Line Exists " While adding new column to good receipt PO matrix".
    =========================================================
    Private Sub SBO_Application_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.ItemEvent
                 oMat = oForm.Items.Item("38").Specific
                   oCols = oMat.Columns
                    oCol = oCols.Item("U_MyCol")
            If pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_LOAD And pVal.BeforeAction = True And pVal.FormType = "143" Then
                Try
                    oForm = SBO_Application.Forms.Item(pVal.FormUID)
                    oMat = oForm.Items.Item("38").Specific
                    oCols = oMat.Columns
                    'oCol = oCols.Item("U_MyCol1")
       oCol = oCols.Add("U_MyCol1", SAPbouiCOM.BoFormItemTypes.it_EDIT)
                    oCol.TitleObject.Caption = "Qty Accepted"
                    oCol.Width = 40
                    oCol.Editable = True
                    oCol = oCols.Item("U_MyCol1")
                Catch ex As Exception
                    SBO_Application.MessageBox(ex.Message)
                End Try
            End If
    oDBDataSource = oForm.DataSources.DBDataSources.Add("PDN1")
            ''oEdit.DataBind.SetBound(True, "PDN1", "U_QtyAccepted")
    ============================================================
    And i also added for Datasource to Databind. what there is no result ??i wanted Clear information regarding this to add new columns in matrix in  middle of Matrix items. I wanted Clear coding& information for this to add new Columns in Matrix ?help me regarding this asap??
    Regards
    ANAND

    Anand,
    If you use the "search" feature of this forum and type "add column", you will find many posts that may help you such as this one ...
    How to add a column on sales order matrix?
    HTH,
    Eddy

  • Combo in matrix

    hi
    im using combo in my matrix
    how to load data from database table  to column(ocombo) of the matrix
    plz help me
    Edited by: hareeshKR on Jul 18, 2011 12:37 PM
    Edited by: hareeshKR on Jul 18, 2011 1:15 PM

    Hi,
    ObjMatrix = ObjForm.Items.Item("6").Specific
    ObjCombo = ObjMatrix.Columns.Item("4").Cells.Item(row).Specific
    strSQL="Select Code,ItemName from OITM"
    obRS= objAddOn.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
    objRS.doQuery(strSQL)    
        for i=1 to objRS.recordcount
                ObjCombo.ValidValues.Add(ObjRS.Fields.Item("Code").Value, ObjRS.Fields.Item("ItemName").Value)
                ObjRS.MoveNext()
        Next

  • Setup Matrix

    We are using repetative manufacturing, I want to know if I can group all materials by set-up time - hence reduce change overtimes from one group of products to the other.
    Can I use Setup group category & setup group Key with planned orders.
    Thanks in advance.

    1.Set up grop key and categroy will not help in the REM manufacturing table.
    2.This setup group and matrix will help in the capacity planning only.Where dispatching can be done by grouping at the setpu group key etc.
    3.Even that would complicate the things becuase again we need to check what things system has pushed.
    4. But int he capcity planning table -graphical it can belp you to highlight the order by the setup grou key .
    5.So if you are looking for a funcitoanlity of grouping the materials in the setup group then that is not possible.
    let us know if you have anydoubts..
    reg
    Dsk

  • Midi sound cracks and stops while editing in matrix

    When I use the matrix editor occasionally I get a horrible clicking sound when adding a note, moving a note around or resizing a note using the editor.
    The clicking sound is then followed by silence. The only way I can get my sound back is by restarting my Mackie Onyx Satellite interface. This happens every 5-8 clicks of editing in the matrix. Help appreciated.
    Thanks

    Provide the name of the program you are using so a Moderator may move this message to the correct program forum
    The Cloud is not a program, it is a delivery process... a program would be Photoshop or InDesign or Muse or ???

  • Activating sort menu on user defined matrix.

    Hi all,
    How to activate the sort menu on user matrix? I filtered user matrix but not able to sort the user defiend matrix.
    any help will be most appreciated..
    Regards,
    Mahendra.

    I dont think, that user matrix should by sorted with sort menu. Im doing it so, that after dbl click on header of matrix I rerun the query with proper ORDER BY statement.
    If is it complicated query, the normal result I have in user table and the matrix is bounded to this table - then the order by is quick.

  • 10.6.4 Server on Mini Server - DNS Problems - Slow, EDNS log messages

    Like a few of other people here, I'm having a hard time getting DNS to work smoothly on my new Mac Mini Server, now running Snow Leopard Server 10.6.4. I'd been running Leopard Server on a previous machine with much smoother DNS (though the Server Admin config didn't work, that's another story).
    Resolution takes a very, very long time and eventually I'll get messages in the log saying 'success resolving 'xxxxxx' after reducing the advertised EDNS UDP packet size to 512 octets'.
    I've searched everywhere and there seem to be two reasons why this is happening:
    1. The DNS server is stopping responding on TCP, and is only responding on UDP;
    2. Some other portion of my network (maybe the router) doesn't like UDP packets bigger than 512 octets.
    For the first - is there any way I can fix this within OS X Server? There is no problem in the network since the router itself (running Linux) can resolve via TCP (using the forwarder addresses that are set up in my OS X Server config) instantly, and any clients that I switch from using the internal OS X Server (for DNS resolution) to use an external resolver work immediately too. I'm not sure why the daemon on OS X Server stops listening on TCP port 53 and only accepts UDP - and then only forwards on queries via EDNS via UDP - which is where I seem to have a problem.
    Secondly - can I disable EDNS somehow and just do plain old DNS?
    Some of the threads point to routers that don't like UDP packets over 512 octets, some point to firewalls and adaptive code that closes off ports when an app tries too many times, etc. I've opened ALL firewalls - turned off the OS X Server firewall, turned off the SPI firewall in the router (it's a Netgear DG834 with the DGTeam custom firmware), and I'm as far as I can go without buying a new router.
    If the only answer is 'OS X Server needs a better router' then I'd appreciate what router I should buy - this situation is becoming untenable since the DNS resolution performance of my entire network is unpredictable, and I don't want to have to reboot the Server on a regular basis when there are loads of clients and their home directories sitting on it, since OS X Client gets twitchy when your home folder vanishes off the network…
    I'm happy hacking config files - but can't seem to see anything in the DNS config that would allow me to either turn off EDNS or restrict the packet size to 512 octets (there's a comment in the config file that the directive is ignored for this one, fat lot of help that is). As to why the server itself stops listening to TCP port 53…. I have no idea and I can't find a solution with a search.
    So in the absence of solutions - can anyone help me with a workaround? The only 'answered' question in this domain was 'answered' with the OP finding a workaround in their router firmware that changed the DNS cache packet size. I can't find anything like this in my router config, so I can't use this workaround. Are there any workarounds I can apply to my OS X Server, that don't rely on my router?
    Yes, I know the router isn't that special, but it's a small business network. Advice on an upgrade would be welcome but doesn't solve the problem for me now. I'm based in the UK, if anyone also in the UK can recommend a suitable small-business NAT router I can use then I'd find that helpful, but I don't want to be told to purchase an enterprise-class router, turn off NAT and be recommended a store in the USA as it won't be that helpful
    Ideally there'd be a way to tweak the DNS server on OS X to not bother with EDNS, or to stick to 512 octet sized packets (can I do this globally for all UDP from my server?), or to keep working on TCP…
    Anyone know? The machine hosts client homes internally and serves mail, web and DNS externally. It's not a high-traffic system and it sits at the end of a business-grade ADSL line. I'm not being DoS'd - this behaviour seems random as to when it strikes. I try to restart the named daemon on the server when it strikes, but I need to be on the network to make that happen….
    Solutions appear to be out, but I'd really appreciate a workaround. Many thanks in advance!

    Hi Rob,
    Not much of a MAC person myself however this support matrix might help:
    http://www.adobe.com/products/coldfusion/coldfusion7/pdfs/cfmx7_systemsupportmatrix.pdf
    Seeing your getting a few Java errors perhaps the JVM in CF7 1.4.2_09 is too early for MAC OS 10.6.4?
    HTH, Carl.

  • Sales Order specific Purchase Order

    Dear Experts,
    our client has scenario which is sales order centric, which mean that when PO is created it has to be with reference to sales order, however this is not a third party scenario. How do we link sales order details on PO ? How can we do sales order specific receiving ? suggestions on standard configuration are welcome.
    Thks,

    AHD,
    ???? What you are describing sounds like standard Make to Order.  Nothing special required.  Probably a third of all SAP Finished Goods planning implementations are set up this way.  If you wish, it is possible to carry the sales order reference all the way down to the raw materials.
    In Make to order, all the supply elements (including stock) are planned in a separate segment, one segment for each sales order/item.  The planned orders, production orders, purchase requisitions, and purchase orders are all specific to a single planning  segment.  These non-stock supply elements may not be received to any other segment.  Stock may not be issued to any other segment.
    Here is one of the most common MTO scenarios, 'Make to Order without Variant', SAP Best Practices
    http://help.sap.com/bp_bl604/BBLibrary/HTML/148_EN_IN.htm
    As always, for Best Practices, don't forget the Prerequisite matrix.
    http://help.sap.com/bp_bl604/BL_IN/Documentation/Prerequisites_Matrix_BL_EN_IN.xls
    Best Regards,
    DB49

  • [SOLVED] Confused about Mobility Radeon HD 3200

    I've always found hard to find good information about this card - some sources, even, contradict themselves. All what I know is that it is an integrated graphics card and that it features the RS780M chipset. These are some tips I've got from the system logs:
    grep -i r600 /var/log/Xorg.0.log
    [ 23.353] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 23.353] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 24.099] (II) AIGLX: Loaded and initialized r600
    dmesg | grep -i radeon
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux-hf root=UUID=ab92c2db-22b5-4fcb-a33f-2efe3f3f104c ro radeon.modeset=1 radeon.benchmark=0 radeon.tv=0 radeon.pm=0 init=/usr/lib/systemd/systemd quiet
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-hf root=UUID=ab92c2db-22b5-4fcb-a33f-2efe3f3f104c ro radeon.modeset=1 radeon.benchmark=0 radeon.tv=0 radeon.pm=0 init=/usr/lib/systemd/systemd quiet
    [ 1.463857] [drm] radeon kernel modesetting enabled.
    [ 1.464337] radeon 0000:01:05.0: VRAM: 256M 0x00000000C0000000 - 0x00000000CFFFFFFF (256M used)
    [ 1.464340] radeon 0000:01:05.0: GTT: 512M 0x00000000A0000000 - 0x00000000BFFFFFFF
    [ 1.464779] [drm] radeon: 256M of VRAM memory ready
    [ 1.464781] [drm] radeon: 512M of GTT memory ready.
    [ 1.472494] radeon 0000:01:05.0: WB enabled
    [ 1.472499] radeon 0000:01:05.0: fence driver on ring 0 use gpu addr 0x00000000a0000c00 and cpu addr 0xffff8800374a5c00
    [ 1.472502] radeon 0000:01:05.0: fence driver on ring 3 use gpu addr 0x00000000a0000c0c and cpu addr 0xffff8800374a5c0c
    [ 1.472570] [drm] radeon: irq initialized.
    [ 1.472672] radeon 0000:01:05.0: setting latency timer to 64
    [ 1.504277] [drm] radeon atom DIG backlight initialized
    [ 1.504279] [drm] Radeon Display Connectors
    [ 1.504311] [drm] radeon: power management initialized
    [ 2.344989] fbcon: radeondrmfb (fb0) is primary device
    [ 2.441483] radeon 0000:01:05.0: fb0: radeondrmfb frame buffer device
    [ 2.441486] radeon 0000:01:05.0: registered panic notifier
    [ 2.441502] [drm] Initialized radeon 2.30.0 20080528 for 0000:01:05.0 on minor 0
    I also found good (?) information, or at least a clearly-explained article, here. After reading it, UVD appears as the AMD's counterpart of NVIDIA's VDPAU for video acceleration.
    What I'm not sure about, is:
    -  Does it support video acceleration? I'd like to offload video processing to the GPU, but am not sure if my card and the open-source drivers support it or not. Wikipedia's article about VDPAU states it comes from NVIDIA, but then it says it has an open-source implementation.
    -  What has gallium to do with it? What gallium drivers should I enable in mesa? And what about DRI drivers?
    I configured mesa as follows:
    ./configure --prefix=/usr \
    --sysconfdir=/etc \
    --with-dri-driverdir=/usr/lib/xorg/modules/dri \
    --with-gallium-drivers=r600 \
    --with-dri-drivers=radeon \
    --with-llvm-shared-libs \
    --enable-gallium-llvm \
    --enable-egl \
    --enable-gallium-egl \
    --with-egl-platforms=x11,drm \
    --enable-shared-glapi \
    --enable-gbm \
    --enable-glx-tls \
    --enable-dri \
    --enable-glx \
    --enable-osmesa \
    --enable-texture-float \
    --enable-xa \
    --enable-vdpau
    Not sure if I missed something, though.
    I am very confused about how Linux manages graphics, and what all those layers are for. DRM, DRI, VDPAU, VA-API, gl, gl3, xv, xvmc... it's a mess!
    Thanks in advance.
    Last edited by Kalrish (2013-06-16 17:54:04)

    The feature matrix might help. The easy part to answer is that the 3D driver is split into two parts: DRM which is part of the kernel and DRI which is in userspace and comes from the mesa package.
    Xv is an Xserver extension supported by pretty much all drivers. Found in the DDX (xf86-video-*), it uses features of the card to speed up the display of video (but not decoding). It can either do this by using the "video overlay" or creating a shader.
    Now if you want to use Xv but also offload decoding to the card, you need a video acceleration API. The ones to choose from are XvMC, VA-API, VDAPU in increasing order of feature support. They were developed by Xorg, Intel, Nvidia respectively but anyone is free to implement them. I don't think it's correct to call UVD a counterpart of VDPAU. UVD is a bunch of registers on newer AMD cards. And if you sent bits to those registers in the right way, you can implement VDPAU.
    The other way to implement VDPAU (say if the documentation for UVD registers was not released) is to use gallium. There is a gallium state tracker which can still do it at the expense of being slower. It is a hack whereby you convert video frames to polygon textures and make the OpenGL part of the card think that it's calculating part of a 3D scene when really it's decoding video.

Maybe you are looking for

  • PDF Document will not print on wireless network

    Recently purchased Fujitsu laptop with Vista Home Premium O/S, 2.4 Gig chip, 2 Gig Ram. Printer is Canon Image Class 880 multi-function printer. I am able to print Microsoft Word documents via the wireless network and can also print documents off of

  • [TOPLINK-7027] The sequence named X is setup incorrectly.  Its inc

    I am testing a SOA composite application, that with a DB adapter performs an INSERT against an Oracle DB 11g and I'm getting this exception, on which I am bit confused since on my opinion the sequence definition looks fine. ps: from sqlplus works fin

  • AppleWorks 6.2.9 will not display Tools

    The machine has both a student and administrator Accounts. AW Tools will display on the admin side, but not the student side? any ideas? Disk Repair has been run with no results.

  • Scanned Documents = 0 bytes (OfficeJet Pro 8500 A909g)

    So, I was pretty thrilled to successfully set up my network folder.  That excitement quickly faded. Every time I scan something, it comes through as 0 bytes.  Color PDF, B/W PDF, TIFF, JPEG, all the same result.  This is with the multi document scann

  • Urgent Help! Elements doesn't recognise my photos

    Hi I've created a slideshow in Premiere Elements 9 with photos and published it. But I want to edit the slideshow again, but none of the photos are filling in the timeline. It just shows red blocks instead of my photos. I need to complete this projec