PowerView Bar Chart not working

Hi all,
I have created one Bar Chart in PowerView which is deployed on SharePoint 2013.
The Chart structure is like this:
AXIS - Account Name & Country
LEGENDS -  Account Name
VALUES - Hours (Measure)
it is giving a weird error as follows :
"Sorry We Can't show your data because closely related fields are on different areas. try moving closely related fields to the same axis."
And the worst thing is, the same chart is populating on different machine correctly (shown below). And both the machines have same configurations
So what can be the root cause of this Issue?
is it because
1. SilverLight Issue?
2. Same fields in AXIS & LEGENDS section?
3. SharePoint Issue?
Help me to solve the issue.
Thanks in advance!

Rameshwar, 
I found this. 
You see this message if a visualization has the same field in both the Axis and Legend areas.
If you’re creating Power View reports in SharePoint (RDLX files) with a SQL Server Analysis Services multidimensional model, you may see this message even with different fields if they are “closely related” (if they share some key fields). This restriction
is due to the addition of support for multidimensional models.
Solution 1: Remove the field
Remove the field from all but one of the areas. For example, if you have a column chart with the same field on both Axis and Legend, remove it from Legend, leaving it on Axis only.
Solution 2: Create a duplicate field in the data model
If you have access to the data model for the Power View report, create a copy of that field. For example, say you have a column chart with the field "Country" on both Axis and Legend. In the data model, create a calculated column with the formula
"=[Country]", and name it "Country2". Then, in Power View, drag Country to Axis and Country2 to Legend.
Hope this helps.
Reeves
Denver, CO

Similar Messages

  • Date Axis Line/bar Chart not working properly when rendering through SDK

    Hi all,
    When i render a existing Crystal report 2011 through java SDK code(Eclipse) bar chart is working fine, But the Date Axis line chart is not displaying properly. the properties are getting changed.. Any clue how to handle this? Do we have particular jar for Chart?
    Thanks in Advance!
    Regards,
    Mirthu

    Hi Mirthu
    I moved your post to the SAP Crystal Reports, version for Eclipse SCN Space. Unfortunately, all I know about Java is that it's in the cup in front of me . But I will get someone to have a look that should be able to help you ASAP.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada

  • Please see my site about Navigation Bar Links not working

    Greetings,
    I have an urgent issue with www.ForexProFund.com and it's navigation bar links. For some reason only some of the links work in the navigation bar. I have tried and recreated new pages and moved all the content over to the new pages with no luck. I moved the nav bar to the most "forward" position and pushed everything else to the back so it's on the top for sure. You can see that on the "contact" page, the navigation bar does not work, and I have no idea why...it's the same on the "Open Account" page.
    I really need this fixed, as I am sure many of you do.
    Thanks in advance for any input or ideas.
    Jason :>

    Hi there,
    Can you tell me how to "reduce" these things? I am not sure why some links in the nav bar and others do not...maybe I am doing something wrong? Very frustrating since Mac. does not let you simply setup a nav bar....it all has to be template based and then these types of things happen. Either way, if you have details of how to remedy this, please let me know. I tried to remove the line under the nav bar on the first two pages and still no luck.
    Thank you!

  • Bookmark bar does not work on one of my computers - w XP

    Firefox 4.0 - the bookmark bar does not work. It appears but will not accept drags.
    PC w Windows XP - 3.
    Another thing too - The open new tab does not show up at all, in order to open a new tab I had to put the "open new tab" tab into the navigation toolbar.
    (Works fine on my other computer, & it drives me nuts to have to use Firefox w 2 different setups...)

    What's the URL of your site so we can examine it first hand?  Have you tried republishing your site with the File ➙ Publish Entire Site menu option?
    OT

  • The "Awesome Bar" is not working. It does not recall anything from the Bookmarks

    Just updated to new Firefox. In the past, when I would start to type a site in the address bar firefox would complete it as it was already in my bookmarks. But now it does not do anything. It just sits there waiting for me to complete the address. I could start to type Netf and it automatically finish Netflix.com
    Why is this happening. Also, for the first couple days of the new version I had to go back into Tools, Options and reset things at least 3 or 4 times before they would finally stay the way I wanted them.
    I would tell it Never Remember History and after while I would look and it would say, Remember History. I wanted a Blank Start page, and it kept changing it. It's okay now but the Awesome Bar is not working at all.

    Do your bookmarks show up in the auto-suggest drop-down list?
    ''If not:'' Under Options > Privacy, in the bottom section, does it still show that Firefox should suggest Bookmarks in the Location bar?
    If auto-suggest works but the autofill isn't happening, you could double-check that it has not been disabled here:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''autof''' and pause while the list is filtered
    (3) If the '''browser.urlbar.autoFill''' preference is bold and "user set" to false, double-click it to switch its value back to the default value of true. That should work in new tabs.
    It's it already true, hmm, I wonder whether this is a private browsing issue? (I didn't test with automatic private browsing.)

  • Search Bar is not working for me in windows 7 32 bit OS

    Search Bar is not working for me in windows 7 32 bit OS'''bold text'''

    Hi Sameer,
    There's no version of Windows Vista that is supported, regardless of service packs.  You can always upgrade to Windows 7, though.
    Your other option is to use Brackets, the open source editor that Edge Code is based on.  It still supports Vista for now.  The downside is that Brackets lacks some features of Edge Code: Kuler integration, Edge Inspect integration, and Edge Web Fonts code hints -- although all of those except Kuler are offered as optional Brackets extensions too (you just have to install them).
    Hope that helps,
    - Peter

  • ALV GRID Tool bar options not working

    Hello Experts,
    I copied the standard tool bar into my program with the name 'ZSALV_STANDARD' and displaying the output in the grid format in a container with the method set_table_for_first_display
    When I execute the program the standard buttong in the tool bar are not working... Can anyone guide where am I going wrong...
    Here is my code
    DATA :    gr_event_handler TYPE REF TO lcl_event_handler .
      DATA:  threed TYPE i VALUE 1.
      SET PF-STATUS  'ZSALV_STANDARD'.
    * Creating an instance for the event handler
      CREATE OBJECT gr_event_handler .
      TRY.
          CREATE DATA i_table TYPE TABLE OF (viewname).
          ASSIGN i_table->* TO <i_itab>.
          CREATE DATA wa_all LIKE LINE OF <i_itab>.
          ASSIGN wa_all->* TO <wa_tab>.
    *     Selecting data dynamically
          SELECT * FROM (viewname) INTO TABLE <i_itab>.
    *     Building the fieldcatelog
          CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
            EXPORTING
              i_structure_name       = viewname
            CHANGING
              ct_fieldcat            = li_fieldcat
            EXCEPTIONS
              inconsistent_interface = 1
              program_error          = 2
              OTHERS                 = 3.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
    *     Making fields editable except key fields
          IF sy-ucomm = 'UPD' OR  sy-ucomm = 'CHANGE'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              IF lwa_fieldcat-key = space.
                lwa_fieldcat-edit = 'X'.
                MODIFY li_fieldcat FROM lwa_fieldcat.
              ENDIF.
            ENDLOOP.
          ENDIF.
    *     Making fields editable
          IF sy-ucomm = 'NEW'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              lwa_fieldcat-edit = 'X'.
              MODIFY li_fieldcat FROM lwa_fieldcat.
            ENDLOOP.
            lh_flag = 'X'.
            CLEAR : <i_itab>.
            DO 100 TIMES.
              APPEND <wa_tab> TO <i_itab>.
            ENDDO.
          ENDIF.
    *     Exclude buttons
          PERFORM exclude_tb_functions CHANGING i_exclude.
          IF g_custom_container IS INITIAL.
            CREATE OBJECT g_custom_container
              EXPORTING
                container_name = g_container.
            CREATE OBJECT grid1
              EXPORTING
                i_parent = g_custom_container.
          ENDIF.
    *     Making all fields non-editable if display mode
          IF sy-ucomm = 'SHOW'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              lwa_fieldcat-edit = ' '.
              MODIFY li_fieldcat FROM lwa_fieldcat.
            ENDLOOP.
          ENDIF.
          IF sy-ucomm = 'SAVE'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              IF lwa_fieldcat-key NE space.
                lwa_fieldcat-edit = space.
                MODIFY li_fieldcat FROM lwa_fieldcat.
              ENDIF.
            ENDLOOP.
          ENDIF.
    *     Displaying ALV Grid
          i_layout-NO_TOOLBAR = 'X'.
          i_layout-edit = 'X'.
          CALL METHOD grid1->set_table_for_first_display
            EXPORTING
              i_structure_name              = viewname
              it_toolbar_excluding          = i_exclude
              i_default                     = 'X'
              is_layout                     = i_layout
            CHANGING
              it_outtab                     = <i_itab>
              it_fieldcatalog               = li_fieldcat
            EXCEPTIONS
              invalid_parameter_combination = 1
              program_error                 = 2
              too_many_lines                = 3.
          IF sy-subrc NE 0.
            EXIT.
          ENDIF.
    *      Getting the changed data
          SET HANDLER gr_event_handler->handle_data_changed FOR grid1 .
        CATCH cx_sy_create_data_error.
      ENDTRY.
    Thanks alot in advance.
    Sri

    Hello ,
    try
        call method g_grid%->set_table_for_first_display
          exporting
            i_save               = p_save_layout%
            i_default            = 'X'
            is_layout            = ps_layout%
            is_variant           = ps_variant%
            it_toolbar_excluding = pt_exclude%
          changing
            it_outtab            = pt_alv_tab1[]
            it_fieldcatalog      = pt_fieldcat%[].
        call method g_grid%->set_toolbar_interactive.
    regards
    Prabhu

  • HT4061 iphone 3GS screen locked, slide bar does not work

    Iphone 3GS. The slide bar does not work, ie the screen lock does not unlock. I have tried to reset (power and home buttons) and also to restore my iphone several times using iTunes without any success. Any suggestions? My son uses the phone now for games, so it has no carrier.

    A reset can be done by tapping and holding the Home button and the Sleep/On/Off buttons at the same time for approximately 10-15 seconds, until the Apple logo reappears.
    Stedman

  • Tool Bar is not working

    I upgraded my browser. I used Mozilla firefox. Ever since then my tool bar does not work. say if I wanted to go to www.facebook.com. I type in the web address and it will not even go to the site, or the drop down menu

    If you are successfully running Firefox in Safe Mode, this might be an indication that you have too many, or simply have any out of date, Add-ons which creates a too much of a workload for your system.
    You can find out which version of Firefox you are running by choosing About Firefox from the Help entry in the Menu Bar.

  • My big fish and Norton tool bar will not work with fire fox 4

    My Big Fish Tool Bar and my Norton Tool Bar will not work with firefox4. However they work fine on internet explorer

    Symantec need to update their Firefox add-ons so that they are compatible with Firefox 4. They have indicated that for Norton 360 they plan to release an update to Norton 360 to support Firefox 4 in early May - http://us.norton.com/support/kb/web_view.jsp?wv_type=public_web&docurl=20100720113635EN&ln=en_US
    I do not know about the time scale for updates for other Norton products. Pending the update by Symantec, if you want to use the Norton add-ons you will need to downgrade to Firefox 3.6.
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • When Firefox is open the zoom function (option/command/space bar) does not work in Adobe programs (InDesign, Photoshop, Illustrator)

    Mac OS X 10.6.7
    CS 5.5
    When Firefox is open the zoom function (option/command/space bar) does not work in Adobe programs (InDesign, Photoshop, Illustrator). This happens only when Firefox is open and when I close it the zoom functions work fine again without having to restart the applications.
    This is intermittent but happens quite frequently each day if Firefox is active.

    MDN doesn't mention -chrome being used for ordinary web pages: https://developer.mozilla.org/docs/Mozilla/Command_Line_Options#Chrome
    When I use
    firefox.exe -chrome about:permissions
    I get a usable window, but zoom doesn't work as you noted.
    How about using an intermediate page and window.open() for the target page? You can (mostly) restrict the chrome of windows opened that way, but it will leave behind the intermediate window...
    https://developer.mozilla.org/docs/Web/API/Window.open

  • Report using charts not work on non-development machine

    Post Author: ftsoft
    CA Forum: .NET
    using visual studio report uses charts.  works fine on development machine when I move the web app to a test machine which does NOT contain visual studio, the chart report does not worknote: other reports which only display data records work fine. the space where the charts should be displayed contain the following two lines CrystalReportViewer - CrystalReportViewer1 Error: Fail to render the page.  any help would be appreciated

    Solution suggested worked for me. 
    On my test server Crystal was trying to use the c:\temp directory to write the temporary images, my report always ran ok on the test server.  On the live server CRW was running under with the ASPNET account and / or my own user account. 
    I ran FileMon and filtered on the aspnet_wp.exe process across both servers and ran the application up to the point of generating the issue.  The FileMon output from the test server showed no issues we as the output from FileMon off the live server showed an access denied message.
    I gave access right to the relevant accounts on the relevant folders on the live server and the report ran fine.

  • SAPUI5 Chart not working in OverlayContainer

    Hi Experts,
    I am trying to show a Bar graph in an Overlay Container. But the same is not shown up in the screen. I checked the inspect element property, and the SVG object is rendered. Any Hope? I am adding my codes below.
    var overlay;
    jQuery.sap.require("sap.viz.ui5.Bar");
    jQuery.sap.require("sap.viz.ui5.data.FlattenedDataset");
    sap.ui.jsview("overlay.Main", {
      /** Specifies the Controller belonging to this View.
      * In the case that it is not implemented, or that "null" is returned, this View does not have a Controller.
      * @memberOf overlay.Main
      getControllerName : function() {
      return "overlay.Main";
      /** Is initially called once after the Controller has been instantiated. It is the place where the UI is constructed.
      * Since the Controller is given to this method, its event handlers can be attached right away.
      * @memberOf overlay.Main
      createContent : function(oController) {
      overlay = new sap.ui.ux3.OverlayContainer();
      return new sap.ui.commons.Button({
      text : "Press for overLay",
      press : function(){
      overlay.addContent(getChart());
      overlay.open();
    function getChart(){
      var oModel = new sap.ui.model.json.JSONModel({
      businessData : [
      {Country :"Canada",revenue:410.87,profit:-141.25, population:34789000},
      {Country :"China",revenue:338.29,profit:133.82, population:1339724852},
      {Country :"France",revenue:487.66,profit:348.76, population:65350000},
      {Country :"Germany",revenue:470.23,profit:217.29, population:81799600},
      {Country :"India",revenue:170.93,profit:117.00, population:1210193422},
      {Country :"United States",revenue:905.08,profit:609.16, population:313490000}
        // A Dataset defines how the model data is mapped to the chart
      var oDataset = new sap.viz.ui5.data.FlattenedDataset({
      // a Bar Chart requires exactly one dimension (x-axis)
      dimensions : [
      axis : 1, // must be one for the x-axis, 2 for y-axis
      name : 'Country',
      value : "{Country}"
      // it can show multiple measures, each results in a new set of bars in a new color
      measures : [
         // measure 1
      name : 'Profit', // 'name' is used as label in the Legend
      value : '{profit}' // 'value' defines the binding for the displayed value  
      name : 'Revenue',
      value : '{revenue}'
      // 'data' is used to bind the whole data collection that is to be displayed in the chart
      data : {
      path : "/businessData"
        // create a Bar chart
        // you also might use Combination, Line, StackedColumn100, StackedColumn or Column
        // for Donut and Pie please remove one of the two measures in the above Dataset. 
      var oBarChart = new sap.viz.ui5.Bar({
      width : "80%",
      height : "400px",
      plotArea : {
      //'colorPalette' : d3.scale.category20().range()
      title : {
      visible : true,
      text : 'Profit and Revenue By Country'
      dataset : oDataset
        // attach the model to the chart and display it
      oBarChart.setModel(oModel);
      return oBarChart;
    Regards
    Sreehari

    Hi Wenjun,
    Can I do the same for Bullet charts?
    This is my code
    sap.ui.controller("sap.ui.demo.myFiori.view.Master", {
      onInit : function(oEvent) {
        var oVizFrame = this.getView().byId("idVizFrameBullet_with_forecast_and_additional_value");
        var oPopOver = this.getView().byId("idPopOver");
        var oModel = new sap.ui.model.json.JSONModel({
          "Products":[
                     "Part no.": ["Product1","level1"],
                     "Profit": 100,
                     "Forcast": 200,
                     "Current": 20,
                     "Trigger": 50,
                     "KabanOrder": 0,
                     "Trigger3": 100,
                     "Trigger4": 512,
                       "Part no.": ["Product2","level2"],
                       "Profit": 159,
                       "Forcast": 140,
                       "Current": 50,
                       "Trigger": 30,
                       "KabanOrder": 70,
                       "Trigger3": 100
                       "Part no.": ["Product3","level3"],
                       "Profit": 129,
                       "Forcast": 120,
                       "Current": 10,
                       "Trigger": 15,
                       "KabanOrder": 0,
                       "Trigger3": 100
                       "Part no.": ["Product4","level4"],
                       "Profit": 58,
                       "Forcast": 60,
                       "Current": 80,
                       "Trigger": 20,
                       "KabanOrder": 20,
                       "Trigger3": 100
                       "Part no.": ["Product5", "level5"],
                       "Profit": 149,
                       "Forcast": 120,
                       "Current": 20,
                       "Trigger": 10,
                       "KabanOrder": 40,
                       "Trigger3": 100
                       "Part no.": ["Product6","level6"],
                       "Profit": 49,
                       "Forcast": 60,
                       "Current": 65,
                       "Trigger": 40,
                       "KabanOrder": 40,
                       "Trigger3": 100
                       "Part no.":  ["Product7","level7"],
                       "Profit": 58,
                       "Forcast": 60,
                       "Current": 80,
                       "Trigger": 20,
                       "KabanOrder": 20,
                       "Trigger3": 100
                       "Part no.": ["Product8","level8"],
                       "Profit": 149,
                       "Forcast": 120,
                       "Current": 20,
                       "Trigger": 10,
                       "KabanOrder": 40,
                       "Trigger3": 100
                       "Part no.":  ["Product9","level9"],
                       "Profit": 49,
                       "Forcast": 60,
                       "Current": 65,
                       "Trigger": 40,
                       "KabanOrder": 40,
                       "Trigger3": 100
        var oDataset = new sap.viz.ui5.data.FlattenedDataset({
           dimensions: [{
          axis:1,
             name: 'Part no.',
             value: "{Part no.}"
          axis:1,
             name: 'Profit',
             value: "{Profit}"
           measures: [
             {group:1,
               name : 'Current',
               value : '{Current}'
             {group:2,
               name : "Trigger",
               value : "{Trigger}"
             {group:3,
               name : 'KabanOrder',
               value : '{KabanOrder}'
             {group:3,
               name : "Trigger3",
               value : "{Trigger3}"
           data: {
             path: "/Products"
        oVizFrame.setVizProperties({ 
          plotArea: {
         colorPalette :  ['#CC0000','#339966','#66CC99'],
          legend : {
            title: {visible : true}
              title: {
                  visible: true,
                  text: 'Title'
        oVizFrame.setDataset(oDataset);
    //    oVizFrame.attachInitialized(this,function(){
    //     align=function(){
    //     window.setTimeout (function (){
    //     $('.v-forecast').each( function( i, val ) {
    //      wi=$(this).next().attr('width');
    //      $(this).attr('width',wi);
    //      tr=$(this).next().attr('transform');
    //      tr=tr.substring(0,tr.indexOf(',')) +')';
    //      $(this).attr('transform',tr);
    //     }, 500);
    //     $(window).resize(align);
    //     align();
    //     $('.v-m-root>defs:first').html('<linearGradient y2="1" x2="1" id="grad" x1="1" y1="0" spreadMethod="repeat">\
    //     <stop stop-color="rgb(255, 255, 255)" offset="0" stop-opacity="0"/>\
    //     <stop stop-color="rgb(0, 0, 0)" offset="0.0217"/>\
    //     <stop stop-color="rgb(0, 0, 0)" offset="0.0517"/>\
    //     <stop stop-color="rgb(255, 255, 255)" offset="0.0717" stop-opacity="0"/>\
    //     </linearGradient>');
        oVizFrame.setModel(oModel);
       var feedPrimaryValues = new sap.viz.ui5.controls.common.feeds.FeedItem({
         'uid' : "primaryValues",
         'type' : "Measure",
         'values' : ["Trigger","KabanOrder"
                    // ,"Trigger3",
        feedAxisLabels = new sap.viz.ui5.controls.common.feeds.FeedItem({
          'uid' : "valueAxis",
          'type' : "Dimension",
          'values' : ["Part no.","Profit"]
        feedTargetValues = new sap.viz.ui5.controls.common.feeds.FeedItem({
          'uid' : "targetValues",
          'type' : "Measure",
          'values' : ["Current"]
        feedForecastValues = new sap.viz.ui5.controls.common.feeds.FeedItem({
          'uid' : "forecastValues",
          'type' : "Measure",
          'values' : ["Trigger3"]
        oVizFrame.addFeed(feedPrimaryValues);
        oVizFrame.addFeed(feedAxisLabels);
        oVizFrame.addFeed(feedTargetValues);
      oVizFrame.addFeed(feedForecastValues);
        oPopOver.connect(oVizFrame.getVizUid());
    I am getting this error
    Failed to create chart:[50005] - categoryAxis : does not meet the minimum or maximum number of feeds definition.

  • Bookmark "star" in URL bar is not working

    I'm clicking on the "star" to bookmark this page. It is not working and doesnt seem to be doing anything. The star shows it's animation on click, but does not allow me to save a bookmark.

    Make sure that you do not double-click the highlighted star.
    Just to be sure that you understand how it works:
    * Clicking the star in the location bar will bookmark the page in the "Unsorted Bookmarks" folder and the star turns yellow (blue on Mac) to show that.
    * If the URL in the location bar is bookmarked (star at the right end is yellow/blue) then click the highlighted star or use "Bookmark This Page" (Ctrl+D) to edit the properties of the bookmark (name, location) and move it to another folder or remove the bookmark.
    * The "Unsorted Bookmarks" folder shows in the sidebar and the Library, but not in the Bookmarks menu drop down list.
    * Bookmarks > "Bookmark This Page" (Ctrl+D) will bookmark the page in the Bookmarks Menu folder (you need to confirm that).

  • My scroll bar is not working properly. It works if I click the outline only. How do I fix this?

    I have tried reinstalling the lastest version but it did not fix the problem. I am running windows 7 on a hp envy. My scroll bar was working fine before the firefox version 4 update. Also the up and down arrows do not work unless I click on the outline of the boxes either. Any help in resolving this issue would be greatly appreciated as this is vary annoying.

    Does your MacBook have a removable battery?
    If so, try removing the battery and running just on the power adapter. Don't do anything too important as the computer will power off if the power adapter comes loose! Just do this for a few minutes to see if your trackpad works any better.
    If your battery isn't removable, run your hand over the bottom of the computer - or run a level over it if you have one - to see if it's flat.
    In either case, it's possible your battery has swollen and is applying pressure on the connection for the trackpad, which in turn means the trackpad won't work as expected.
    ~Lyssa

Maybe you are looking for

  • External Hard Drive -- What do you recommend plase

    I use super duper and do not have the backup drive on except when doing a backup. I need a capacity in the 750 to 1 TB size. When I look at Amazon or other ratings they are all over the place. One size is good and another is bad for the same manufact

  • Primary key, column, sequence : best practice.

    Hi I was wondering when designing table should you limit the length of primary key. Because if you have limited column length, and your adding and removing items than you have sequence gap, than you will need to resize column length and if their fore

  • Virus in Motherboard?

    I have a computer that is just loaded with viruses and spyware due to leaving for a week and not having a password set to keep others off my computer. I tried reformatting the hard drive but the virus and other objects remained. I then tried a low le

  • Dividing the overhead costs to production orders !

    Hi all, This is regarding the overhead costs split to different Production orders. The scenario is for e.g There are 3 production orders P-1 P-2 P-3 and the first 2 production orders(P-1 and P-2 ) are assigned profit center 1 and the last production

  • ETL parameters tab empty in BI Applications Configuration Manager

    Hi all, I am trying to do a POC in BIApps 7.9.5.2 . After installing and configuring the Configuration Manager, i am not able to see any pre-built parameters which are supposed to be as per the documentation. When do these parameters get generated (