Gantt Chart: Problems with more than 39 elements

Hi all,
I have a problem with Gantt Project Chart.
Please have a look at http://tryapexnow.com/apex/f?p=2141:2 (credentials: demo/demo)
If you limit to 39 rows this works fine, but with 40 rows or more the timeline is not in line with the datagrid.
Strange thing is that as soon as you collapse all tasks the timeline is correct.
Uncollapsing brings back wrong display.
Has anybody seen this behaviour before and can help me out on that?
Thanks for help,
Moritz
Edited by: commi235 on 31.05.2011 13:23

Hello Moritz,
the "Maximum Rows"-option is as default set to 40.
if you created the chart by "Create Region => Chart => Flash Chart => ..." you can change this value in tab "Chart Series", below the "Build Query"-button.
But I don't know how to change the maximum number of rows, when the chart is created via
"var chart = new AnyChart(''#IMAGE_PREFIX#flashchart/anygantt_4/swf/AnyGantt.swf''); " in a HTML-region.
I'm very interested in finding a solution.
Kirsten

Similar Messages

  • To print an Pie Chart image with more than 1 slice is not working

    Hi friends,
    I'm using a version 12.0.4 and when I try to generate an Pie Chart image with more than 1 slice using the function saveImage() it's not working. The image is only generate when its return is just 1 value (1 peace of pie).
    Anybody help me?
    Regards!

    It's not unique for your setup, but it also happens in 12.0.11, so it's a bug.  Looks like it is throwing a null pointer for some bizzare reason when generating the GIF output by the ImageStorageServlet (per the NW logs). 
    Your best bet would be to log a ticket so it can be patched.
    12.1.7 seems to work fine.
    Edited by: Michael Appleby on Nov 23, 2010 2:39 PM

  • Problem with more than one item in a track

    DVDSP 4.0.2 / OSX.4.2 I've built a DVD with several tracks. In each track I've placed several .m2v files, one after another. Finished build plays fine on my Mac and on one of my stand alone DVD players. But on another stand alone (Sony DVP-S360) something very odd happens. DVD begins to play just fine, but whenever it encounters a track with more than one source file, it will play until it gets to the spot in the program where the second source file is in the track and then it hangs and won't do anything. I'm just curious if anyone has any insight into this problem. Is it a DVDSP conflict thing with certain players? Or is this Sony player just not capable of playing a DVD built this way? Thanks.

    This page here:
    http://www.videohelp.com/dvdplayers.php?DVDnameid=428&Search=Search&
    has someone talking about finally getting burned DVDs to work, which suggests they previously had problems. I can't think why the track would not seem like continuous video, as if it had always been that way. Our Sony DVD player at work seems sensitive to higher data rates. What data rate did you use?

  • ITUNES Windows problems with more than 2 speakers

    I can play any music in Winamp or WMP and hear it in my quadraphonic system speakers. However, when I play them through Itunes, I can hear the music only in the front speakers.
    I have a Soundblaster Live sound card with the most updated drivers, and have already checked the sounds and audio devices properties in Windows Control Panel.
    Does anyone knows how to fix it in Itunes 7.1.1.5?
    AMD64 3200+ 1GB RAM   Windows XP Pro   Soundblaster Live sound card

    apparently this problem is fixed in Itunes 7.2.035

  • CS3, exporting to tape has problems with more than two video tracks

    Well, not quite, but that's the best I could do in the subject line.
    I record multiple performances and edit scenes from among them.  At times, this results in three or four video tracks on the timeline at once.  Each track is 100% opaque, so only the top Enabled track shows.  By Enabling or Disabling the various tracks, I can get the sequence I want.
    And the sequence plays back fine in the Monitor window.  But when I try to Export it to tape, as soon as I get to such a place, the image hiccups around the same small number of frames (think of the video equivalent of an audio sample).
    It's not the number of video tracks.  I can add Image Mattes on a third video track operating on the two below.  I can add any number of titles on different tracks.  They need to render, but then they export to tape perfectly.
    What's different about three or more .avi tracks, even when they are Disabled?

    Thanks, Jim, for your reply to this and other threads.  (Warning:  I had two other questions — been saving them up for awhile — that I'll post shortly.  It was too late already last night).
    > AVIs need to be "read" from the hard drive and can create a bottleneck depending on certain conditions.
    Agreed, but unless there is partial opacity in the top Enabled track, only one track at a time is exported.  And in the cases I cited, the unused clips were Disabled.  No need for Premiere to read them at all.  I assume the state of each clip is part of the Project.
    Ah well, I was only curious if I was missing something obvious, or perhaps it was a known bug that would be addressed.  Apparently the additional resources needed for tape export push Premiere over some edge.  Remember, I can watch (even Preview) the sequence in the Monitor window without seeing this artifact.
    > Render before exporting to tape is SOP.  Go with that.
    Naturally.  And I do.  And if I didn't, Premiere would do it for me automatically before opening the Export to Tape window.
    Thanks again.  On to the next thread.

  • Performance problem with more than one COUNT(DISTINCT ...) in a query

    Hi,
    (I hope this is the good forum).
    In the following query, I have 2 Count Distinct on 2 different fields of the same table.  Execution time is okay (2 s) with one or the other COUNT(DISCTINCT ...) in the SELECT clause, but is not tolerable (12 s) with both together in the query! I have
    a similar case with 3 counts: 4 s each, 36 s when together!
    I've looked at the execution plan, and it seems that with two count distinct, SQL server sorts the table twice before joining the results.
    I do not have much experience with SQL server optimization, and I don't know what to improve and how. The SQL is generated by Business Objects, I have few possibilities to tune it. The most direct way would be to execute 2 different queries, but I'd like
    to avoid it.
    Any advice?
    SELECT
      DIM_MOIS.DATE_DEBUT_MOIS,
      DIM_MOIS.NUM_ANNEE_MOIS,
      DIM_DEMANDE_SCD.CAT_DEMANDE,
      DIM_APPLICATION.LIB_APPLICATION,
      DIM_DEMANDE_SCD.CAT_DEMANDE ,
      count(distinct FAITS_DEMANDE.NB_DEMANDE_FLUX),
      count(distinct FAITS_DEMANDE.NB_DEMANDE_RESOL_NIV1)
    FROM
      ALIM_SID.DIM_MOIS INNER JOIN ALIM_SID.DIM_JOUR ON (DIM_JOUR.SEQ_MOIS=DIM_MOIS.SEQ_MOIS)
       INNER JOIN ALIM_SID.FAITS_DEMANDE ON (FAITS_DEMANDE.SEQ_JOUR=DIM_JOUR.SEQ_JOUR)
       INNER JOIN ALIM_SID.DIM_APPLICATION ON (FAITS_DEMANDE.SEQ_APPLICATION=DIM_APPLICATION.SEQ_APPLICATION)
       INNER JOIN ALIM_SID.DIM_DEMANDE_SCD ON (FAITS_DEMANDE.SEQ_DEMANDE_SCD=DIM_DEMANDE_SCD.SEQ_DEMANDE_SCD)
    WHERE
      ( ( DIM_MOIS.NUM_ANNEE_MOIS ) >201301
    GROUP BY
      DIM_MOIS.DATE_DEBUT_MOIS,
      DIM_MOIS.NUM_ANNEE_MOIS,
      DIM_DEMANDE_SCD.CAT_DEMANDE,
      DIM_APPLICATION.LIB_APPLICATION

    Here is the script, nothing original. Hope this helps.
    -- Fact table :
    -- foreign keys begin by FK_,
    -- measures to counted (COUNT DISTINCT) begin with NB_
    CREATE TABLE [ALIM_SID].[FAITS_DEMANDE](
        [SEQ_JOUR] [int] NOT NULL,
        [SEQ_DEMANDE] [int] NOT NULL,
        [SEQ_DEMANDE_SCD] [int] NOT NULL,
        [SEQ_APPLICATION] [int] NOT NULL,
        [SEQ_INTERVENANT] [int] NOT NULL,
        [SEQ_SERVICE_RESPONSABLE] [int] NOT NULL,
        [NB_DEMANDE_FLUX] [int] NULL,
        [NB_DEMANDE_STOCK] [int] NULL,
        [NB_DEMANDE_RESOLUE] [int] NULL,
        [NB_DEMANDE_LIVREE] [int] NULL,
        [NB_DEMANDE_MEP] [int] NULL,
        [NB_DEMANDE_RESOL_NIV1] [int] NULL,
     CONSTRAINT [PK_FAITS_DEMANDE] PRIMARY KEY CLUSTERED
        [SEQ_JOUR] ASC,
        [SEQ_DEMANDE] ASC,
        [SEQ_DEMANDE_SCD] ASC,
        [SEQ_APPLICATION] ASC,
        [SEQ_INTERVENANT] ASC,
        [SEQ_SERVICE_RESPONSABLE] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY],
     CONSTRAINT [AK_AK_FAITS_DEMANDE_FAITS_DE] UNIQUE NONCLUSTERED
        [SEQ_JOUR] ASC,
        [SEQ_DEMANDE] ASC,
        [SEQ_DEMANDE_SCD] ASC,
        [SEQ_APPLICATION] ASC,
        [SEQ_INTERVENANT] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE]  WITH CHECK ADD  CONSTRAINT [FK_FAITS_DEMANDE_DIM_APPLICATION] FOREIGN KEY([SEQ_APPLICATION])
    REFERENCES [ALIM_SID].[DIM_APPLICATION] ([SEQ_APPLICATION])
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE] CHECK CONSTRAINT [FK_FAITS_DEMANDE_DIM_APPLICATION]
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE]  WITH CHECK ADD  CONSTRAINT [FK_FAITS_DEMANDE_DIM_DEMANDE] FOREIGN KEY([SEQ_DEMANDE])
    REFERENCES [ALIM_SID].[DIM_DEMANDE] ([SEQ_DEMANDE])
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE] CHECK CONSTRAINT [FK_FAITS_DEMANDE_DIM_DEMANDE]
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE]  WITH CHECK ADD  CONSTRAINT [FK_FAITS_DEMANDE_DIM_DEMANDE_SCD] FOREIGN KEY([SEQ_DEMANDE_SCD])
    REFERENCES [ALIM_SID].[DIM_DEMANDE_SCD] ([SEQ_DEMANDE_SCD])
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE] CHECK CONSTRAINT [FK_FAITS_DEMANDE_DIM_DEMANDE_SCD]
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE]  WITH CHECK ADD  CONSTRAINT [FK_FAITS_DEMANDE_DIM_INTERVENANT] FOREIGN KEY([SEQ_INTERVENANT])
    REFERENCES [ALIM_SID].[DIM_INTERVENANT] ([SEQ_INTERVENANT])
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE] CHECK CONSTRAINT [FK_FAITS_DEMANDE_DIM_INTERVENANT]
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE]  WITH CHECK ADD  CONSTRAINT [FK_FAITS_DEMANDE_DIM_JOUR] FOREIGN KEY([SEQ_JOUR])
    REFERENCES [ALIM_SID].[DIM_JOUR] ([SEQ_JOUR])
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE] CHECK CONSTRAINT [FK_FAITS_DEMANDE_DIM_JOUR]
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE]  WITH CHECK ADD  CONSTRAINT [FK_FAITS_DEMANDE_DIM_SERVICE_RESPONSABLE] FOREIGN KEY([SEQ_SERVICE_RESPONSABLE])
    REFERENCES [ALIM_SID].[DIM_SERVICE] ([SEQ_SERVICE])
    GO
    ALTER TABLE [ALIM_SID].[FAITS_DEMANDE] CHECK CONSTRAINT [FK_FAITS_DEMANDE_DIM_SERVICE_RESPONSABLE]
    GO
    -- not shown : extended properties
    -- One of the dimension  tables (they all have a primary key named SEQ_)
    CREATE TABLE [ALIM_SID].[DIM_JOUR](
        [SEQ_JOUR] [int] IDENTITY(1,1) NOT NULL,
        [SEQ_ANNEE] [int] NOT NULL,
        [SEQ_MOIS] [int] NOT NULL,
        [DATE_JOUR] [date] NULL,
        [CODE_ANNEE] [varchar](25) NULL,
        [CODE_MOIS] [varchar](25) NULL,
        [CODE_SEMAINE_ISO] [varchar](25) NULL,
        [CODE_JOUR_ANNEE] [varchar](25) NULL,
        [CODE_ANNEE_JOUR] [varchar](25) NULL,
        [LIB_JOUR] [varchar](25) NULL,
        [LIB_JOUR_COURT] [varchar](25) NULL,
        [JOUR_OUVRE] [tinyint] NULL,
        [JOUR_CHOME] [tinyint] NULL,
     CONSTRAINT [PK_DIM_JOUR] PRIMARY KEY CLUSTERED
        [SEQ_JOUR] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    GO
    ALTER TABLE [ALIM_SID].[DIM_JOUR]  WITH CHECK ADD  CONSTRAINT [FK_DIM_JOUR_DIM_ANNEE] FOREIGN KEY([SEQ_ANNEE])
    REFERENCES [ALIM_SID].[DIM_ANNEE] ([SEQ_ANNEE])
    GO
    ALTER TABLE [ALIM_SID].[DIM_JOUR] CHECK CONSTRAINT [FK_DIM_JOUR_DIM_ANNEE]
    GO
    ALTER TABLE [ALIM_SID].[DIM_JOUR]  WITH CHECK ADD  CONSTRAINT [FK_DIM_JOUR_DIM_MOIS] FOREIGN KEY([SEQ_MOIS])
    REFERENCES [ALIM_SID].[DIM_MOIS] ([SEQ_MOIS])
    GO
    ALTER TABLE [ALIM_SID].[DIM_JOUR] CHECK CONSTRAINT [FK_DIM_JOUR_DIM_MOIS]
    GO

  • Percentage Bar chart with more than 1 measure

    Hi everbody,
    i have a new big problem.
    point of departure: i want to create a bar chart (stacked vertical) with more than 1 measure.
    Vertical axis should be from 0% to 100%. Horizontal there are diverse, let's say departments.
    Now it becomes tricky: Every department once more has its own under-departments.
    So far so good. The measure is the number of employees per under-department.
    So: in one bar you can see the complete number of employees per department AND the number of employees of one under-department in each block of this bar.
    -> That's the idea!
    Now: The whole chart should be presented in percentage.
    -> Therefore i need to divide the particular block by the complete number of employees per bar and multiply it by 100.
    My question is: How can i create a kind of dynamic variable, which adatps itself to the particular department
    Edited by: 941338 on 27.06.2012 04:53

    Looks like you need a dynamic variable to hold the value to calculate futher, for that using prompt(this should follow your criteria to get value) with prsentation variable, use the presentation variable in the report to calculate.
    If it is helpful, please mark as correct or helpful

  • Problems deploying Windows 7 x64 computers with more than 8GB RAM

    SCCM 2012 R2 CU1
    Windows 7 x64
    We have a weird problem after upgrading from SP1 to R2 CU1. We have built a Windows 7 64 bit image with the latest updates (currently September 2014 updates). It deploys fine to all computers. But after some days – don’t know exactly – guess after 4-7 days
    - we start getting errors on computers with more than 8 GB of RAM. The errors just start out of the blue. We didn't change TS, image or driver package.
    The error shows in 3 different ways – depending of the computer model.
    1) BSOD – STOP 0x000000F4. Disk error.
    2) Task Sequence error 0x87D00269 when installing the first Application in TS. The error seems to have something to do with Management Point not found.
    3) Task Sequence simply stops after installing CMclient. No errors - it simply stops.
    For instance we get the BSOD on the Lenovo ThinkCentre M93p. But on the ThinkCentre M83 we get the TS error 0x87D00269. M93p and M83 uses the same driver package. They consequently  fail every time after the error has begun. If we reduce (remove physically)
    the memory to max. 8GB of RAM, they successfully run the Task Sequence.  We get the above errors on both Lenovo and HP machines with more than 8GB. 
    I made a copy of the production TS and started testing. I created a new driver package for M93p/M83. It contains only the NIC drivers. Now M93p an M83 successfully finishes the TS. Adding sata or chipset or MEI/SOL drivers to the package I get the 0x87D00269
    error on both m93p and M83. At least not the BSOD on the M93p ;-)
    Tried setting  SMSTSMPListRequestTimeout to 180 in the TS. Also tried putting in a 5 minute break before installing the first Application in the TS. Also tried putting in SMSMP=mp1.mydomain in the installation properties for the CMclient. It is still
    the same problem.
    Investigating the smsts.log on a computer with the 0x87D00269 error.
    Policy Evaluation failed, hr=0x87d00269 InstallApplication
    25-09-2014 08:59:59 3020 (0x0BCC)
    Setting TSEnv variable 'SMSTSAppPolicyEvaluationJobID__ScopeId_654E40B7-FC55-4213-B807-B97383283607/Application_d9eea5a0-0660-43e6-94b8-13983890bae2'=''InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    EvaluationJob complete InstallApplication25-09-2014 08:59:59 3020 (0x0BCC)
    MP list missing in WMI, sending message to location service to retrieve MP list and retrying. InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    m_hResult, HRESULT=87d00269 (e:\qfe\nts\sms\client\osdeployment\installapplication\installapplication.cpp,1080) InstallApplication
    25-09-2014 08:59:59 3020 (0x0BCC)
    Step 2 out of 2 complete InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    Install application action failed: 'SCIENCE PC Guide'. Error Code 0x87d00269 InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    Sending error status message InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
     Setting URL = http://mp1.mydomain, Ports = 80,443, CRL = false InstallApplication 25-09-2014 08:59:59 3020 (0x0BCC)
    Investegating the 0x87D00269 error on the siteservers Status Messages Queries is weird.
    Install Static Applications failed, hr=0x87d00269. The operating system reported error 617: You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that
    you have not previously used.
    Hopefully this is a bug in translating the errorcodes? Just to be sure I checked all the SCCM serviceaccounts and none of them have expired passwords.  And again why only on computers with more than 8GB RAM.
    Anyone else had problems rolling computers with more than 8GB og RAM?
    Why does this happens after a few days? To begin with, it runs just perfect and then starts failing on all machines with more than 8GB. Without a change in TS, image and driverpackage. We have seen this pattern for the last 3 month after
    updating our image with the latest Windows Updates. It all started after updating from SP1 to R2 CU1.
    Why does it only affect machines with more than 8GB RAM?
    How to get rid of the 0x87D00269 error?
    Seems to be somehow related to driver installation mechanism in SCCM in combination with Windows 7 64 bit, +8GB RAM and SCCM 2012 R2 CU1 or perhaps just R2.
    Any help or hints would be appreciated!
    Thanks
    Anders

    We have the same workaround, using a x64 boot image resolved all our issues with WinPE 5.0.
    Machines with >4GB of RAM
    Lenovo ThinkPad T540p failed applying drivers with 80040005
    Black screen/white cursor issues intermittently
    No updates from Microsoft, they are still looking through the logs, but we have updated our boot images and all is well now. Our case it still open with Microsoft, they are researching the logs.
    Daniel Ratliff | http://www.PotentEngineer.com

  • Line Chart with more than 15 datapoints

    I'm using Apex 3.1.
    I am trying to create a line chart with more than 15 data points. Apparently 15 is the default. Question is, How do I change the default?
    The Wiki has advice for changing the "Maximum Rows" parameter, but "Maximum Rows" is not to be found, either in the chart attributes or series attributes.
    http://wiki.shellprompt.net/bin/view/Apex/ChartIssues
    I have encountered this limitation with SVG line charts and Flash line and scatter charts. Seems like it must be an easy thing to figure out; I feel embarassed asking such a question. But I've been through all the application property pages, much of the documentation, and several tutorials... Where can I change this? It's driving me nuts!
    Thanks
    Fred

    Hello,
    Which version of APEX are you using?
    Go to your Flash Chart attributes - get into your series (click the icon) in the section of Series Query you'll find the maximum rows.
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://apex-evangelists.com/
    -- http://apexblogs.info/

  • Hello. I have an iPad2, and iMovie software. My main problem, for the moment, is the length of the videos: I can´t create a video with more than 56 seconds. When I try, the app shuts off... Can anyone help me?

    Hello. I have an iPad2, and iMovie software. My main problem, for the moment, is the length of the videos: I can´t create a video with more than 56 seconds. When I try, the app shuts off... Can anyone help me?

    Sorry. We can't help you. It's no longer an iPhone. Apple won't touch it.
    Take it to whoever replaced the screen and see if they can help you.
    iPhones are not user servicable and Apple does not sell iPhone parts at all. I'd be surprised if you were actually able to back it up at this point. It sounds like it's completely borked.

  • Arrays with more than 2^31-1 (2147483647) elements?

    Hi,
    I'm working with very large datasets and would like to be able to process arrays with more than 2^31-1 elements. This limit seems to come about because Java requires a signed integer to be passed as a parameter to an array declaration, e.g.:
    Object bytes = new byte[2147483647]; // works
    Object bytes = new byte[2147483648]; // failsIs there any way to get around this?
    Thanks very much,
    - Davi

    Is there any way to get around this?What about creating a class that aggregatesseveral
    arrays and implements the List API?
    KajUnfortunately, many of the methods in the List
    interface depend on int indexes also. You would
    probably want these methods to use a long index
    instead.True. I should have said that he should mimic the behaviour of the List interface, but not implement it.
    Kaj

  • Sales order with more than 9 items causing problem

    Hi,
    I have a situation here.
    A sales order is created in the system and since it is order related billing so its billing document is also generated. The billing document is not relevant for accounting. So, the only 2 documents are a sales order and its billing document.
    Due to some technical restrictions,if the number of lines is more than 9 the printout wont come.Henceforth,the user is unable to take a printout so I need to give him a solution.
    What shall I suggest him?

    Hi,
    >So, my question is that,should I ask the user to create a credit memo wrt the billing document and then split the sales order with 2 invoices(one with say 5 and the other invoice with the rest of the quantities)?
    So, if my undestanding is right then you want to create a credit memo after invoice ? If yes, then why are you splitting the sales order ? Also, this is something strange kind of ABAP logic which would not allow to print an invoice with more than 9 line items... Now, as you said if your sales order is having more than 9 line items then only print doesn't come.. right ? then in your case at this moment there are only 9 line items so ideally you'd be able to get a print.. right ?
    I think there is some confusion out here with your two posts.. kindly clarify...
    Hrishi

  • Formating Line thickness for lines in graphs with more than 6 lines.

    I have a line graph with more than 6 lines on it and I'm trying to make them all 1px.
    I can specify a line thickness for the first 6 lines but after that, the lines go back to the default thickness.
    Is it possible to change the default line thickness for a graph or format the line thickness for the 7th line and more?

    Good news! I found out how to format more than 6 lines of data and it's really simple to do!
    In the bottom left hand corner of the Format Chart Data, next to the Clear All button, is a button marked ADD.
    If you click this button, another row is added allowing you to format the 7th line of data.
    Click again and you get a row for the 8th line and keep clicking to add more lines.
    I'm making a note of it here in case it is useful to someone out there who searches on this problem in the future.
    Edited by: user2052587 on Jan 6, 2010 2:45 PM

  • Bugged audio playback? When I start working with more than 1 audio track.

    Hi!
    I have been using premiere elements 12 for editing FullHD videos.
    Brand new for me just bought it like 2 weeks ago.
    Now during the last couple weeks I have had this MAJOR proglem with editing the audio.
    This problem is headache and turns my simple editing into almost impossibilites.
    I have had this problem with all my projects. _ALL_
    Usually the problem seems to appear when I want to start working with several audio tracks.
    At somepoint my projects just get ruined, I simply cannot hear the audio tracks.
    The audio starts to disapear randomly from all the audio tracks.
    It is not only playback problem. When I exported the video, the audio was partly missing, same as the project.
    I have tried to look help on forums and search all what I could find, but havent been able to solve this.
    Small fix has slightly helped:
    I export audio to single track and bring it back to project. This works but I still usually have more editing to do.
    I simply cannot understand why the playback disapears, I fear it is a bug.
    I found lot of earlier version problems on people with similar type of problems, but no help for this version of program.
    To solve the matter I have changed my audio setting in PE12.
    Tried Premiere Elements WDM Sound and ASIO4ALL V2, but same problem on both.
    I have looked up that my audio playback device and PE12 matches, and are not muted, and volumes maxed.
    I have deleted my C:\ appdata\roaming\adobe  premiere elements & premiere elements 12 folder preferences.. not helping..
    I press the update pretty much everyday hoping for new version.. But yes, program keeps telling me its the latest.
    I usually only work with 3 audio track maxinum. And I am doing really the most basic stuff here..
    I have set all my audios to foreground and it has given me best results, but it does not seem to take the problem away as at somepoint randomly my audio playback is missing again, randomly across the playback.
    Please anyone? I am feeling hopeless here.
    Info on my computer:
    Operating system: Win7
    Processor: AMD Phenom(tm) x4 955 processor 3.20 GHz
    memory (RAM): 4GB
    system: 64bit
    <moved from downloading, installing, setting up forum by mod- kglad>
    Message was edited by: kglad

    First of all, thank you for replying my message!
    I will go and try to answer best I can.
    Source media properties:
    Progressive frame rate, I record this from a game.
    Recording program: dxtory
    codec: Lagarith Lossless codec
    Format: avi
    Frame width: 1920
    Frame height: 1080
    Data rate: 1990656kbps
    total bit rate 1992192kbps
    Frame rate 30/frames/seccond
    Audio of video properties:
    Codec: PCM
    Format: 16bit, stereo
    Bit rate: 1536kbps
    Channels: 2(stereo)
    Audio sample rate 48 kHz
    In addition to that I use wav files for music and narrate
    Music files sizes 20-50mb
    bit rate: ~1411kbps
    In total sizes of audio involved is usually something like 300mb
    What are you or the program setting as the project preset in the new project dialog. See Edit Menu/Project Settings/General and its Editing Mode, Timebase, and Frame Size readings.
    I opened new project and this is what i got:
    Editing mode: HD 1080i
    Timebase: 25,00 frames/second
    Frame size: 1920 x1080
    Audio is 48000 Hz
    (I dont know how to change these, btw. Program don't seem to let me change editing mode.
    I also looked up my most recent project and found these settings:
    Editing Mode: DSLR
    Timebase: 30,00 frames/second
    Frame size: 1920 x1080
    ..and same audio settings
    Do the problems persist if you start a new project? Do you find the audio problems develop when the Timeline content is fairly well developed or can the problems occur when there a minimal amount of content of those tracks? Let us look at the size and duration of this project.
    Yes, I have had this problem with all my projects. Sometimes it goes away tho, just enough for me to work bit more. My work progress usually starts by clipping the video material, like 1h material to 8minutes in clips. After that I want to work with audio tracks, and here problems start! When I start working with more than 1 track, so the problem is at later stage. To fix the problem a small fix I have used, I export audio like music and effects tracks together to 1 wav and bring it back. After that, I start working with narrate track. To describe the problem with audio:
    Audio Randomly starts to disapear when I playback, and can also be gone if I export the video out.
    My source videos total size are usually within 80Gb max limit and audio edit material 300mb total.
    In my last project my biggest source video was 47GB and leingth of 1h 4m, in addition to that I had 3 smaller videos, sizes of 1GB, 1,54GB and 300MB.
    Is there any evidence that you are accidentially moving the audio track rubberband to alter the audio volume. That rubberband is the orange line that runs horizontally through the middle of the audio clip when you are looking at the wave form display style of that audio track. The rubberband represents audio volume.
    No, audio volumes might have been adjusted in my tracks but they are present. The problem is usually like ~2-5seconds, a random audio track can be heard (like music or narrate) or just no sounds at all. This makes it very difficult to work with the audio. Also I gotta say that this problem starts by simply having the 2-3 audio tracks.. In my recent project the only adjustment I used to edit the audio was fade in/out.
    I don't have any other audio problems with any other programs.
    I am more than happy to provide more information if needed. I hope this information helps.
    In addition I can say that when I close Adobe Premiere Elements 12, it crashes. No idea why.
    I have also looked up my firewall settings, anything involved adobe and premiere..
    In addition some effects like HD text templates make "Adobe Media Core CS6" crash. I tend to just not use em, or if I need em, I add em at end of the edits.
    I hope this helps, I would really like to solve this problem.
    Thank you alot for taking the time to answer! I welcome anyone to help mee too! Please giev links to similar problems too. Thank you everybody!

  • Reports 9i Graphs with more than one query..

    Hello,
    I am converting my 6i reports to 9i reports. On my graph reports with more than one query, when I invoke the graph wizard it changes the value of the src to the wrong query automatically. When I run my report, I am getting the error REP-0069 Internal Error rwlib-1: REP-6219 Column (Column Name) not in given cursor hierarchy. Although it's a pretty easy fix to go into the graph settings in the property palette and change it back, it is extremely frustrating. Has anyone else ran into this problem and did you find a permanent fix?
    Thanks,
    Laura

    Hi Laura
    One workround would be to create a new query in the Data Model that includes desired fields, and then source
    chart to the new group.
    FYi, bug2527100 was filed on this issue and is already fixed. The fix would be available in 9i Reports 9.0.2.2 patch. Reports 9.0.2.2 patch is scheduled to be released on Mar 05 2003 (tentative date).
    Thanks
    The Oracle Reports Team

Maybe you are looking for