Help: Column Chart Display Issue

Post Author: ermiller
CA Forum: Xcelsius and Live Office
I have a chart that displays its data correctly 11 out of 12 times...and I can't seem to get the last one to work correctly. Here's the issue:
I have a table of data that looks like this:
REGION                                   GAIN                           LOSS                      NET
ALL                                           =SUM(BELOW)          =SUM(BELOW)       =SUM(BELOW)
REGION 1                                  10                               (1)                          9
REGION 2                                  20                               (2)                          18
REGION 3                                  30                               (7)                          23
REGION 4                                  40                               (0)                          40
I have a "Data Display" area that has the following formulas in it:
CRITERIA                                   GAIN                           LOSS                    NET
[USER INPUT]                           =VLOOKUP([USER INPUT],[TABLE ABOVE],0,[2,3,4 FOR EACH COLUMN])
If the user enters 'REGION 1', 'REGION 2', 'REGION 4, or 'REGION 4', the data is displayed in the column chart perfectly. However, if the user selects 'ALL', the process doesn't work and displays 0s in each of the columns above.
Does any one have any ideas on how to fix that issue or what could be causing it in the first place? I just noticed that the same thing occurs if I use a Grid component as well...even though Excel is processing the data accurately.
Thanks in advance,
Erik

Post Author: debdeb
CA Forum: Xcelsius and Live Office
Hi,
Without trying out your actual data, the first thing that comes to mind is that you aren't using all the options in VLOOKUP. I've discovered that Xcelsius requires all arguments even optional ones in many formulas but this isn't document). The last argument is TRUE (default) for the closest match, and FALSE for exact match. If the user can only enter from a set of values which are known to be in your lookup table, then either one will work but you should still specify this last argument.

Similar Messages

  • Help we column chart display

    HI,
    I'm extending my dashboard to display printer information.
    From the sample data below I want to display, each printers
    job total count for each quarter.
    Bottom access should show Q2-07,Q3-07-Q1-08 vertical axis
    should show integers.
    From the table below I want to display in each quarter a
    column bar for each printer showing total jobs, and another column
    in same quarter showing page total for each printer
    AEc2880->JOBCOUNT:AEc2880->PAGECOUNT:CreativeFirey240->JOBCOUNT:CreativeFirey240->PAGECOUN T:
    I can either get the grid to show quarters but only on
    printer, or printers but only one quarter.
    <ColumnChart id="colChart" width="100%" height="100%"
    showDataTips="true" visible="true" >
    <horizontalAxis>
    <CategoryAxis categoryField="Quarter" />
    </horizontalAxis>
    <series>
    <ColumnSeries yField="JOBCOUNT" xField="Quarter" />
    <ColumnSeries yField="JOBCOUNT" xField="Quarter" />
    <ColumnSeries yField="JOBCOUNT" xField="Quarter" />
    </series>
    </ColumnChart>
    +------------------+----------+-----------+---------+-------------------+
    | PrinterName | JOBCOUNT | PAGECOUNT | Quarter |
    printStartQuarter |
    +------------------+----------+-----------+---------+-------------------+
    | AEc2880 | 748 | 1034 | Q2-07 | 2007-04-01 |
    | CreativeFirey240 | 2404 | 5454 | Q2-07 | 2007-04-01 |
    | AEc2880 | 2248 | 6552 | Q3-07 | 2007-07-01 |
    | AEiR5055 | 979 | 2845 | Q3-07 | 2007-07-01 |
    | CreativeFirey240 | 5017 | 12321 | Q3-07 | 2007-07-01 |
    | AEc2880 | 1439 | 6256 | Q4-07 | 2007-10-01 |
    | AEiR5055 | 1753 | 5587 | Q4-07 | 2007-10-01 |
    | CreativeFirey240 | 4731 | 9990 | Q4-07 | 2007-10-01 |
    | AEc2880 | 1817 | 2707 | Q1-08 | 2008-01-01 |
    | AEiR5055 | 1158 | 2817 | Q1-08 | 2008-01-01 |
    | CreativeFirey240 | 3822 | 9665 | Q1-08 | 2008-01-01 |
    +------------------+----------+-----------+---------+-------------------+
    Thanks in advance
    Dean

    Sorry this losses formating:
    I'm posting this hoping that it will point others in a
    direction right or wrong. Also hoping to get some feed back on
    improvements or even 'dude what where you smoking this code is
    awful'.
    Test Data I'm playing with from mysql.:
    +------------------+----------+-----------+---------+-------------------+
    | PrinterName | JOBCOUNT | PAGECOUNT | Quarter |
    printStartQuarter |
    +------------------+----------+-----------+---------+-------------------+
    | AEc2880 | 748 | 1034 | Q2-07 | 2007-04-01 |
    | CreativeFirey240 | 2404 | 5454 | Q2-07 | 2007-04-01 |
    | AEc2880 | 2248 | 6552 | Q3-07 | 2007-07-01 |
    | AEiR5055 | 979 | 2845 | Q3-07 | 2007-07-01 |
    | CreativeFirey240 | 5017 | 12321 | Q3-07 | 2007-07-01 |
    | AEc2880 | 1439 | 6256 | Q4-07 | 2007-10-01 |
    | AEiR5055 | 1753 | 5587 | Q4-07 | 2007-10-01 |
    | CreativeFirey240 | 4731 | 9990 | Q4-07 | 2007-10-01 |
    | AEc2880 | 1817 | 2707 | Q1-08 | 2008-01-01 |
    | AEiR5055 | 1158 | 2817 | Q1-08 | 2008-01-01 |
    | CreativeFirey240 | 3822 | 9665 | Q1-08 | 2008-01-01 |
    +------------------+----------+-----------+---------+-------------------+
    Each row is a printerName, JobCount, PageCount,Quarter,
    printStartQuarter (first day of each quarter)
    Requirements:
    I need to display summaries in a column chart of Queue
    (printer) usage. For each Queue summary I need to show total jobs
    sent (printed) and total pages sent (printed) for a given period.
    The one I'm dealing with here is quarterly view. With the
    sample data above I want to show for each quarter total job, total
    pages for AEc2880,CreativeFirey240 and AEIR5055
    If I use the data has is, I only get one queue per quarter. I
    need to have each queue its own column, twice. One for total jobs
    and total pages. Then one row per quarter for it to work.
    AEc2880_TJ - AEc2880_TP - CreativeFirey240_TJ -
    CreativeFirey240_TP - AEIR5055_TJ - AEIR5055_TJ - Quater -
    printStartQuarter.
    Now for the big issue, the queues are dynamic. The test data
    is from 3 queues only. There could be 1 to n number of queues and
    not all quarters will be the same as queues get added and deleted.
    This is how I approached this in AS Flex 2, I have flex 3 but
    not installed yet, I can not find much info on the new grouping
    classes to see if they will help.
    Most examples are with the advanced data grid. There is also
    very little information on charting bar the basics around.
    My data comes in from PHP middle ware as JSON.
    First think we need to do is pass the de-serialized array
    into a function that finds all the unique queue names.
    [Bindable]
    private var groupQueueEvent:ArrayCollection;
    private function setUpHandler(event:ResultEvent):void{
    //get the raw JSON data and cast to String
    var rawData:String = String(event.result);
    //decode the data to ActionScript using the JSON API
    //in this case, the JSON data is a serialize Array of
    Objects.
    var arr:Array = (JSON.decode(rawData) as Array);
    //Send array for processing.
    groupPrinters(arr);
    //function that takes quartly events and finds unique queues
    private function
    populateComboYearArray(eventsArray:Array):Array {
    var queueArrayHashMap : Object = new Object(); //create hass
    array, used to make sure array unique
    var queueArray : Array = new Array; //create arry to hold
    queues
    //now run through each row of passed data looking for queue
    names
    for (var i:int = 0; i < eventsArray.length; i++)
    //check to see if this
    queue is all ready in hash.
    if (queueArrayHashMap[eventsArray .PrinterName] ==
    undefined){
    //it not in hash so add it
    queueArrayHashMap[eventsArray
    .PrinterName] = new Object();
    // now add the queue array
    queueArray.push(eventsArray .PrinterName);
    return queueArray; //send back final array
    private function groupPrinters(data:Array):void {
    //create array to hold unique names
    var printerNames:Array = new Array();
    //process data and get unique queue names back
    printerNames = populateComboYearArray(data);
    var printGroup:Array = new Array;//hold the final array
    var tempRowArray:Object;//used to build each row of new data
    var pgCountColumnName:String;//used to build queue names for
    page count
    var jobCountColumnName:String;/used to build queue names for
    job count
    for (var printRow:int = 0; printRow < data.length; ) {
    //run through each row of data
    tempRowArray = new Array; //create a new row each time
    // we will always want the Quarter and printStartQaurter in
    every row so add now
    tempRowArray.Quarter = data[printRow].Quarter;
    tempRowArray.printStartQuarter =
    data[printRow].printStartQuarter;
    // now for the tricky bit, we need to process each queue
    name
    for (var i:int = 0; i < printerNames.length; i++) {
    // we need to see if we have a queue name match not all
    quarters will
    // have the same queue names
    if (printerNames
    .PrinterName == data[printRow].PrinterName) {
    //if match found add to our row
    //make dynamic column name would like to use queue name but
    may be tainted
    pgCountColumnName = "column" + String(i) + "pgcount";
    jobCountColumnName = "column" + String(i) + "jbcount";
    now create the columns with the names and add the data to
    them
    tempRowArray[pgCountColumnName] = data[printRow].PAGECOUNT;
    tempRowArray[jobCountColumnName] = data[printRow].JOBCOUNT;
    // we found a match so move along in outer loop
    printRow++;
    // we didn't find a match don't advance outer loop
    // we checked all the queue names advanced outer loop where
    needed,
    // next time trough we should be in new quarter
    printGroup.push(tempRowArray);// push temporary row to our
    array
    //assign are data to an array collection
    groupQueueEvent = new ArrayCollection(printGroup);
    //assign data to test grid for checking
    detailedPrintReport.dataProvider = groupQueueEvent;
    //assign data to chart.
    colChart.dataProvider = groupQueueEvent;
    //now make up the dynamic series
    //PLEASE NOTE this code does not work yet still playing with
    it
    // testing purpose hard coded in mxml
    var dynamicColumnSeries:ColumnSeries = new ColumnSeries;
    colChart.series = [dynamicColumnSeries];
    for ( i = 0; i < printerNames.length; i++) {
    pgCountColumnName = "column" + String(i) + "pgcount";
    jobCountColumnName = "column" + String(i) + "jbcount";
    dynamicColumnSeries = new ColumnSeries;
    dynamicColumnSeries.yField = 'jobCountColumnName;
    dynamicColumnSeries.xField="Quarter";
    dynamicColumnSeries.displayName =
    printerNames.PrinterName;
    colChart.series.push(dynamicColumnSeries);
    dynamicColumnSeries = new ColumnSeries;
    dynamicColumnSeries.yField = pgCountColumnName;
    dynamicColumnSeries.displayName = printerNames
    .PrinterName;
    colChart.series.push(dynamicColumnSeries);
    <ColumnChart id="colChart" width="100%" height="100%"
    showDataTips="true" visible="true" >
    <horizontalAxis>
    <CategoryAxis categoryField="Quarter" title="Quartly"
    labelFunction="defineLabel"/>
    </horizontalAxis>
    <series>
    <ColumnSeries yField="column0jbcount" xField="Quarter"
    />
    <ColumnSeries yField="column0pgcount" xField="Quarter"
    />
    </series>
    </ColumnChart>
    <DataGrid id="detailedPrintReport" visible="true"
    width="100%" height="100%"/>

  • Column chart display

    Hi experts,
                  I amusing column chart, its having 100 line of date, but when  i preview its showing all the 100 line of data, but i need scroll right to see the columns first 10 columns should display, then i have to scroll n see the data, how to achieve this
    thanks

    Hi Russel,
    Use the range slider to achieve this, give 1 in beginning range and 10 to end range value.
    hope this helps!!!!

  • Column Chart Colour issue!

    Hi All
    1.  I am using the column Chart...But my Series count color is not changing..it is coming in default color as green..I have done all the color settings..
    2.How to display chart with negative values???
    Anyone has faced such issues & any solution for this..
    Thanks
    BI Learner

    Hi All
    Alast I resolved the color issue...Due to exceptions it was not dispplaying..
    I think even for negative value, we can set the MIN value with -ve value...
    Hope resolved it on my own...
    Thanks
    BI Learner

  • Column Chart displaying blank columns

    I've this column chart whose data provider is set dynamically. The chart has a two Column Series. Occasionally the columns are displayed as blank.
    Although the corresponding labels on x-axis and tool tips are displayed correctly. Has anyone experienced similar issue? Kindly suggest a solution.

    Thanks for the reply. No the data provider is surely not null as the same collection
    is being set as data provider for a data grid too. And data grid always displays the data.
    Besides if the data provider was null it wouldn't have shown the x-axis labels and the
    tool tip values.
    Code Sample:
    Basically chartData is a XMLListCollection object, its being populated on a call back method of a
    HTTPService request.
    The following method is called once the chartData is populated.
    //Populate columns for abcChart
    private function populateColumns():void {
         abcChart.series = new Array();
         var haltsSeries:ColumnSeries = new ColumnSeries();
         var haltsFill:SolidColor = new SolidColor(0xFF0000);
         haltsSeries.dataProvider = chartData;
         haltsSeries.displayName = "Halts";
         haltsSeries.yField = "HALTS";
         haltsSeries.setStyle("fill",haltsFill);
         abcChart.series.push(haltsSeries);
         var warningsSeries:ColumnSeries = new ColumnSeries();
         var warningsFill:SolidColor = new SolidColor(0xFFFF66);
         warningsSeries.dataProvider = chartData;
         warningsSeries.displayName = "Warnings";
         warningsSeries.yField = "WARNINGS";
         warningsSeries.setStyle("fill",warningsFill);
         abcChart.series.push(warningsSeries);
         return;
    Following is the Columnchart with its children and properties.
    <mx:ColumnChart id="abcChart" showDataTips="true"
    width="100%" height="95%" visible="false"
    dataTipFunction="chartDataTip">
    <mx:backgroundElements>
    <mx:GridLines direction="horizontal">
    <mx:horizontalStroke>
    <mx:Stroke color="0xCCCCCC" weight="1"/>
    </mx:horizontalStroke>
    </mx:GridLines>
    </mx:backgroundElements>
    <mx:horizontalAxis>
    <mx:CategoryAxis displayName="Area"
    categoryField="AREA"/>
    </mx:horizontalAxis>
    <mx:horizontalAxisRenderer>
    <mx:AxisRenderer fontSize="8"
    cachePolicy="off" rotation="40"/>
    </mx:horizontalAxisRenderer>
    <mx:verticalAxis>
    <mx:LinearAxis title="Count"
    minimum="0" autoAdjust="true"/>
    </mx:verticalAxis>
    </mx:ColumnChart>

  • Column chart labeling issues

    Hi
    Im trying put a label on top of each column chart bar vertically(Outside),
    Im able to do it if it is a single column .
    with "showlabelvertically" option but,
    when i tried with multiple columns(column set) im not able to do it. do any one have a better idea in doing it.
    Thanks in advance

    hi rootsounds,
    Thanks for responding, But i require is some thing like this app
    http://blog.flexexamples.com/2008/01/23/displaying-the-labels-vertically-in-flex-columncha rt-control/
    for column sets this doesnt work for some other examples that i worked too.

  • MTA - CNMT Chart display issue

    hi All,
    I am having issue displaying all the 'Milestones' associated to a Network in CNMT.
    Milestones created are checked with 'Trend Analysis' checkbox in 'Milestone - Basic Data' tab.
    The activities are 100% confirmed and the Actual date of the activity is copied over to 'Actual date' field for the Milestone.
    I checked the graph axis to display the 'Date range' which falls within the 'Actual Dates' of Milestones. It is showing only 'One' milestone, but not others (there are 2 more milestones which fall in the same date range and the activity is 100% confirmed).
    Please suggest if I am missing something here.
    -thnx in advance

    Yes, I did create a new project version and Saved it Via CN41. The Data has been refreshed via Edit -> Scope of current data -> All fields in CN41. The chart is still showing only 'ONE' milestone.
    Ex: The milestone currently being displayed in the chart is related to an activity which was confirmed on 26 Dec 2011. There are two more milestones related to two different activities which were confirmed on 30 Dec 2011, 10 Jan 2012. These are missing from the chart display.
    Moreover, the system displays the following message:
    Diagnosis
    You have restricted the number of milestones to be displayed by using operative milestone data.
    Procedure
    To display all the milestones for the project, choose View -> Historical milestones.
    SAP Library states:
    Historical curve:
    This standard view displays those milestones that have the MTA indicator set at the time of the current report.
    These milestones are displayed across the entire reporting period, also when the indicator was not set for them at an earlier reporting time.
    The Historical Curve is what I am assuming is needed to display all the Milestones on a particular reporting date. I checked in CNMT -> View -> Choose Dates, which shows the Milestones & Reporting times. I guess I am missing something else.
    Please advise.
    Edited by: sdn sap on Jan 13, 2012 8:40 AM
    Edited by: sdn sap on Jan 13, 2012 8:41 AM

  • Need help with Firefox display issue on one page of site

    I have a page that W3C validates, displays properly in IE and Netscape, but does not display properly in Firefox. The issue is with a style class applied to the inner centered table. class= "vert_table" This class works on all of the other pages in the site, but not in this one.
    The page:
    http://www.redshift.com/~lorac/sdy-46-49.html
    The issue:
    < table class="vert_table" width="760" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="#f1ebe8" >
    The vertical rule does not display, and further down the page a dark left-right border appears starting with this text.
    my mother, when I was wasting my life away not knowing who I was,
    and ends with:
    Mojin: (hugging him) I don't expect you to love me. I just want you to live, that's all.
    I have been looking through this code for two days, searching for any offending omission in code or redundancy that would break the page. I've searched for missing div tags but none are apparent to me. I'm hoping someone with fresh eyes can spot it right away.
    It's odd that the page validates but Firefox cannot display it properly.
    Sample page of code working properly:
    http://www.redshift.com/~lorac/sdy-41-45.html
    Any help is appreciated.

    Hi Jim, thanks for the reply. Your suggestions sound interesting but I'd like to figure out why this particular page doesn't work when all of the others do. I'm sure it's just a little code thing that I'm overlooking.
    I could revert back to a saved page, but I updated text and images on this page before the verticle border broke, so I don't want to lose those edits. And that is why I'd like to fix this one instead of redesigning the page.
    BTW, I forgot to mention in my first post, GoLive CS, W2K.

  • Column Chart  datalables issue.

    Hi All,
    I want to show the numeric value on the top of the column series.
    I set the property labelPosition="outside"  to column series.
    It is displaying all the numeric value except 0 but I want to display as well.
    please, If anyone  know share with me
    Thanks
    Niranjan
    Message was edited by: niranjan swain

    Hi All
    Alast I resolved the color issue...Due to exceptions it was not dispplaying..
    I think even for negative value, we can set the MIN value with -ve value...
    Hope resolved it on my own...
    Thanks
    BI Learner

  • Crystal 2008 Pie Chart Display Issues

    Hello all,
    I am having some problems with the Crystal Viewer displaying charts and legends. Basically, what is going on is, I have a report that displays a pie chart and legend containing data on departments within a store. I have 39 departments that need to show in the chart/legend, but only about 33 show up on the chart and 24 show up in the legend. Does anyone have any ideas if this is a limitation of the chart or anything?
    TIA
    -Coty

    There is no limitations for  pie chart and legend.   maximise the chart through edge draging.it shows all(increase the chart size)...
    All the best,
    Praveen

  • Visio interactive org chart display issue

    Hi, 
    I've imported data from exchange server to automatically generate structure chart for a department. I've then saved it as a webpage as well as the normal visio file.
    I save all the files on a network folder, before transferring them to the 'live' web server.
    The webpage displays correctly when i launch it from the network folder, but as soon as i transfer it to the live server all the boxes on the page are empty, almost as if it's missing the data which should go inside each box.
    Any ideas anyone?
    Thanks

    Preview from launcher wouldn't work, but configured link iview and then it worked.

  • How to reset drill-down column-chart based on map-chart?

    Hi guys,
    I'm facing pritty common issue while designing one of my dashboards.  Let me describe a little bit  more:
    1. I have some data extracted from BW using Query as WebService into my Xcelsius spreadsheet.
    2. I have map-chart - regions for some country.
    3. I have a drill-down column-chart, which displays data for a selected region.
    At the beginning column-chart displays results for entire country (which, in fact, is not exactly drill-down). The issue I'm fasing is, that in case I select any region and the data is drilled-down into my column-chart, I have no option to show data for the entire county in the column-chart anymore (the only one way is to restart the report).
    Are there any possible way to do this, or am I doing a design error while displaying data, which is not drilled-down, into a chart which is intended to display drill-down data only?
    Any help would be highly appreciated.
    Thanks in advance.
    Ivaylo Mutafchiev
    Varna Business Services
    Project Manager BOBJ

    Ivaylo Mutafchiev,
    I understand your problem now. So your column chart data which is coming from the QAAWS query should be having a prompt which is bound to some cell in excel. and your map might be passing the values for prompt isn't it? in your case the map might be passing a region.
    All you need to do is put the prompt in the web service for region as a optional prompt. Now pull in a check box or a Push button(name it as reset or something.). while binding the data to the check box or push button (source data) bind it to a blank cell. when user clicks on it , it passes a blank vlaue to the region(this is ur input for region) which will inturn makes the prompt optional for the region web service. which should pull all the data for all the region.
    The whole idea lies in somehow passing a blank cell to your  web service whose region prompt is optional.
    Thanks,
    Karthik

  • Overlapping data when more data column chart SSRS

    Hi guys,
    In my ssrs report the column chart  display is not good when more number of datas are viewed.How to overcum this issue
    I searched more on this issue no good solution found.
    I attached screenshot for this report,
    any suggestions pls
    Thanks,
    R.B

    Hi R.B,
    I can reproduce the issue in my local environment. If there are more column data with adjacent values in the chart, the label will be overlapped due to the insufficient space. In this scenario, there are several properties you can use to try to get the labels
    to fit better. Click the data point to open the Properties Windows, then go to the SmartLabels node.
    Expand the "NoMoveDirections" node. This will give us a lot of directions that we can use to restrict the directions that the labels can move in. We can try to change directions to see if it helps.
    Try to enlarge the chart size and use the method below to adjust the column size, it will free up more space to contain the label.
    http://www.bidn.com/blogs/ChrisAlbrektson/bidn-blog/1832/ssrs-adjust-bar-chart-width
    If we want to remove the black arrow, we can refer to the following thread:
    http://social.technet.microsoft.com/Forums/en-US/e3019086-4f72-4898-ba86-2e7c97c8fae4/ssrs-series-lable-overlaping-issue?forum=sqlreportingservices
    Alternatively, we can use Tooltip property to instead of actually displaying. Type the same expression with Value field in the Tooltip property.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Display last 12 months data in column chart

    Hi All,
    I have one  dashbord  requirement in list box i have (example:):  "oct-11" i need to display previous 12 mnth data in column chart anybody help in excel formula how to display last 12 mnths based on list box selection.
    example:  if i select oct-11 from list box i need to display in chart like
    nov-10 dec-10 nov-10...................................oct-11
    please provide how to write in logic in excel

    Hi Shankar,
    Try this formula in excel : DATE(YEAR(A1),MONTH(A1)-1,DAY(A1))
    A1 will be your cell which is the destination of your List box. & then drag it till 12 months.
    If you are not having day from your list box then manually enter 1 in any cell and map that cell in place of A1 for day.
    HTH.
    Neeraj..

  • Display Column Chart Y Axis Labels in Kilo(K), Million(M)...

    Hi Folks,
    I would like to display the Y-axis labels of a column chart in Kilo, Millions etc. I used the below mentioned formula in excel for that set of data. Here is the formula [>=1000000]0,,"M";[>=1000]0,"K";0
    Though in embedded excel it displays the values as desired, when I assign them to the column chart in Xcelsius the Y axis labels are not as expected. For Kilo it works fine but when it comes to millions it is not displaying accordingly. Any help is appreciated.
    Thanks,
    Sukumar

    Hi Sukumar,
           If You want to display the Y Axis Labels like Kilo(k),Million(M),Billions(B)...etc.Do the following things ,
            goto column chart properties->behaviour->scale in that Enable the Fixed Label size checkbox.
    Regards,
    Ramana

Maybe you are looking for

  • How to edit data from a "View Table"?

    I am importing data from a "table view" where in sql it joins several tables into one view. When I passed it in using the template it doesnt have the "Edit command column" like other direct link tables. Is there anyway I could make a view table edita

  • Clarification Regarding Logical System Names

    HI all, I read the blogs regarding Logical System Name, even I am having the some problems in my system. For PI system client is 100.       R/3 System Client is 100 is created. IN PI when I checked the sale->basic setting-> LOgical Settings-> Assign

  • Error in FBZP step

    Hi I am into OBVCU (5th step in FBZP). There is giving one error for payment method W: "Clearing acct only allowed for outgoing bills of exchange" Its not allowing me to delete or remove clearing account GL account. Let me know what to do. Edited by:

  • ALV tree: code is getting dumped............................

    Hi all, I want to display output using ALV tree. I havent worked on this before, So kindly provide me useful sample programs to display output using ALV tree. Also i am creating field catalog using following code:   data :  gt_fieldcatalog type lvc_t

  • Business sites with iweb

    Hi I've a few questions about creating my new business site with iweb and whether it's worth doing it with iweb (loving the designs I can do) or stick with dreamweaver or use sandvox. I've built one site already with iweb http://www.weddingcooperatio