Missing records in BW Production

In BW production system, while running reports, we were able to identify few records loaded on 11/1/2005 that are missing from BW.  The recurring theme is records entered on 11/1/2005 in PA R/3, are not loaded(delta) in the ZCOPAE001 custom cube in BWP.
We checked the TR & UR there were no issues.
PSA check was also done. Perfect.
records in PSA - 717
records loaded in the data target - 717
I don't know what checks to be done in the source system.
or
Clues to proceed further..
It would be great, if some one will share the information/steps. Resolution of this issue is urgent. Please help me.

Hi Manoj,
Thanks a lot for ur quick reply. We are loading data for Header, Item and conditions in BW, we are not doing any transformations anywhere from R/3 BW, its all 1-2-1 mappings.
We have been loading this for last 2 yrs, it suddenly started misbehaving. I suspect there must be some job which might be deleteing the records from RSA7, but im not sure if there is any prog or job which does this.
Thanks
BN

Similar Messages

  • Insert missing records dynamically in SQL Server 2008 R2

    Hi, I am working on a requirement where I will have to work on some % calculations for 2 different states where we do business. The task that I am trying to accomplish is technically we need to have any Product sales in both the states if not for instance
    in the following example ProductC does not have sales in OR so I need to insert a record for ProductC - OR with 0. This is an intermediary resultset of all the calculations that I am working with.
    Example Dataset:
    CREATE TABLE [dbo].[Product](
    [Product] [varchar](18) NOT NULL,
    [State] [varchar](5) NOT NULL,
    [Area1] [int] NOT NULL,
    [Area2] [int] NOT NULL,
    [Area3] [int] NOT NULL,
    [Area4] [int] NOT NULL,
    [Area5] [int] NOT NULL,
    [Area6] [int] NOT NULL,
    [Area7] [int] NOT NULL,
    [Area8] [int] NOT NULL,
    [Area9] [int] NOT NULL,
    [Area10] [int] NOT NULL,
    [Total] [int] NULL
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductA','OR',0,0,2,0,2,0,0,0,0,0,4)
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductA','WA',0,0,1,0,0,0,0,0,0,0,1)
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductA','Total',0,0,3,0,2,0,0,0,0,0,5)
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductB','OR',0,0,5,0,0,0,0,0,0,0,5)
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductB','WA',0,0,2,0,0,1,0,0,0,0,3)
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductB','Total',0,0,7,0,0,1,0,0,0,0,8)
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductC','WA',0,0,0,0,0,0,0,0,0,1,1)
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductC','Total',0,0,0,0,0,0,0,0,0,1,1)
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductD','OR',5,2,451,154,43,1,0,0,0,0,656)
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductD','WA',0,20,102,182,58,36,0,1,0,0,399)
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductD','Total',5,22,553,336,101,37,0,1,0,0,1055)
    How to accomplish this in SQL Server 2008 R2.
    Insert missing record:
    INSERT INTO [Product] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductC','OR',0,0,0,0,0,0,0,0,0,0,0)
    Thanks in advance......
    Ione

    CREATE TABLE [dbo].[Products](
    [Product] [varchar](18) NOT NULL,
    [State] [varchar](5) NOT NULL,
    [Area1] [int] NOT NULL,
    [Area2] [int] NOT NULL,
    [Area3] [int] NOT NULL,
    [Area4] [int] NOT NULL,
    [Area5] [int] NOT NULL,
    [Area6] [int] NOT NULL,
    [Area7] [int] NOT NULL,
    [Area8] [int] NOT NULL,
    [Area9] [int] NOT NULL,
    [Area10] [int] NOT NULL,
    [Total] [int] NULL
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductA','OR',0,0,2,0,2,0,0,0,0,0,4)
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductA','WA',0,0,1,0,0,0,0,0,0,0,1)
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductA','Total',0,0,3,0,2,0,0,0,0,0,5)
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductB','OR',0,0,5,0,0,0,0,0,0,0,5)
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductB','WA',0,0,2,0,0,1,0,0,0,0,3)
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductB','Total',0,0,7,0,0,1,0,0,0,0,8)
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductC','WA',0,0,0,0,0,0,0,0,0,1,1)
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductC','Total',0,0,0,0,0,0,0,0,0,1,1)
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductD','OR',5,2,451,154,43,1,0,0,0,0,656)
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductD','WA',0,20,102,182,58,36,0,1,0,0,399)
    INSERT INTO [Products] ([Product],[State],[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])VALUES('ProductD','Total',5,22,553,336,101,37,0,1,0,0,1055)
    ;WIth mycte as (
    Select Product,State From (Select distinct Product from Products) p, (
    Select distinct State from Products) s
    Insert into [Products](Product,State,[Area1],[Area2],[Area3],[Area4],[Area5],[Area6],[Area7],[Area8],[Area9],[Area10],[Total])
    Select m.Product,m.State
    ,0,0,0,0,0,0,0,0,0,0,0
    from mycte m Left Join Products p on m.[Product]=p.Product and m.State=p.State
    WHERE p.Product is null and p.State is null
    select * from Products
    Order by Product
    ,Case when State='Total' Then 2 else 1 End
    Drop table Products

  • How to get missing records from one table

    I have one table with many records in the table. Each time a record is entered the date the record was entered is also saved in the table.
    I need a query that will find all the missing records in the table.
    so if I have in my table:
    ID          Date          Location
    1           4/1/2015        bld1
    2           4/2/2015        bld1
    3           4/4/2015        bld1
    I want to run a query like
    Select Date, Location FROM [table] WHERE (Date Between '4/1/2015' and '4/4/2015') and (Location = bld1)
    WHERE Date not in
    (Select Date, Location FROM [table])
    and the results would be:
    4/3/2015   bld1
    Thank you

    Do you have a table with all possible dates in it?  You can do a left join from that to your above mentioned table where the right side of the join is null.  If you don't have a table with all possible dates you could user a numbers table.
    Below is one way to achieve what you want with a numbers table...
    DECLARE @Table table (ID Int, DateField Date, Location VarChar(4))
    DECLARE @RunDate datetime
    SET @RunDate=GETDATE()
    IF OBJECT_ID('dbo.Numbers') IS NOT NULL 
    DROP TABLE NUMBERS
    SELECT TOP 10000 IDENTITY(int,1,1) AS Number
       into Numbers
        FROM sys.objects s1
        CROSS JOIN sys.objects s2
    ALTER TABLE Numbers ADD CONSTRAINT PK_Numbers PRIMARY KEY CLUSTERED (Number)
    INSERT INTO @Table (ID, DateField, Location)
    VALUES ('1','20150401','bld1')
    ,('1','20150402','bld1')
    ,('1','20150404','bld1');
    WITH AllDates
    as
    SELECT DATEADD(dd,N.Number,D.StartDate) as Dates
    FROM Numbers N
    cross apply (SELECT CAST('20150101' as Date) as StartDate) as D
    select * 
    from AllDates AD
    left join @Table T on AD.Dates = T.DateField
    where ad.Dates between '20150401' and '20150404'
    AND T.ID IS NULL
    LucasF

  • How to identify missing records in a single-column table?

    How to identify missing records in a single-column table ?
    Column consists of numbers in a ordered manner but the some numbers are deleted from the table in random manner and need to identify those rows.

    Something like:
    WITH t AS (
               SELECT 1 ID FROM DUAL UNION ALL
               SELECT 2 ID FROM DUAL UNION ALL
               SELECT 3 ID FROM DUAL UNION ALL
               SELECT 5 ID FROM DUAL UNION ALL
               SELECT 8 ID FROM DUAL UNION ALL
               SELECT 10 ID FROM DUAL UNION ALL
               SELECT 11 ID FROM DUAL
    -- end of on-the-fly data sample
    SELECT  '[' || (id + 1) || ' - ' || (next_id - 1) || ']' gap
      FROM  (
             SELECT  id,
                     lead(id,1,id + 1) over(order by id) next_id
               FROM  t
      where id != next_id - 1
    GAP
    [4 - 4]
    [6 - 7]
    [9 - 9]
    SQL> SY.
    P.S. I assume sequence lower and upper limits are always present, otherwise query needs a little adjustment.

  • How to find out the missing records

    Dear all,
    I feel that there is some Inconsistent records between R/3 and the extracted records BI for the data source 2LIS_03_BF. some of the records may not be updated through delta.. Is this possible? as we have created  Zkey figures to capture the diffrent unit of measure's quantity from the table MSEGO2 and updated to IC_c03 cube.
    Can any one tell me how to go about the missed records..where to find them.. and how to extract them.
    Poits will be assigned
    Regards
    venu

    hi,
    inventory scenario is difficult to handle as this have non cumulative key figures which can be viewed at the repors.
    extreme care is required while compression and intila loads and their compression.
    run the report or ask the user to run the report and sort out the missing records.
    chk out the document and chk if the procedure done by you is correct.
    inventory management
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Ramesh

  • Missing records while fetching data from Data mart

    Hi,
    I have some missing records in the ODS.The data is fetched from the other BW system.
    It is a delta load & all the loads are succesfull as of now.But still some records are missing.
    If i see in reconstruction tab, some requests are showing the Transfer structure status as clock(transfer stucture has changed sine the last request). Is it because of this time stamp status got changed ?
    I have done reinitialization & the missing Datas are fetched .But i would like to know the cause of missing records.
    Regrads,
    ANita

    Hi kedar,
    If there was a time stamp difference ,the data load should have got failed.All the delta loads were succesfull.
    But now they realised there are some missing records.Just for analysis purpose , i was looking into reconstruction tab & the transfer structure status was displayed as clock.
    But actually there was no change in the transfer stucture.
    Sometimes we used to get timestamp error &
    we used to replicate the data source & activate the transfer structure.
    To avoid these things in future what needs to be done.As this load gets triggered through process chain & each time the data load status was succesful.
    Every time we cant do replication of datasource while loading through Process chain unless the transfer structure gets changed.
    But my concern was is this the cause for missing records or something else.
    Regards,
    ANita

  • Condition Records of a product

    hi experts..,
    i have a requirement to read  condition records of a product
    can any one tell me table or function module to get the same.
    Thanks
    sam

    hi john..
    thnks for reply ...
    but i could not find  cnccrmprzin_tab1 table in crm 5.0
    thnks
    sam
    Edited by: Sam on Nov 12, 2008 4:41 PM

  • Missing records in BW

    Hi friends,
    We load sales order daily in our Quality system using a process chain, but lately we are facing a strange issue. The records in BW rae not matching in R/3.
    EX: on 17.10.2007 in VBAK table there are around 6500 Orders created (Created on), the same will be loaded to our BW ODS without any transformation or restrictions, so we should get the same number of records. Instead we got 100 records only.
    This missing records is not happening every day. It happened in the 1st week of OCt and also on 17th of Oct rest other days its OK.
    I wanted to know if anyone of u have faced similar issue? if yes  how did u solve ( Filling up of setup tables for the missing records is not the solution), what i am looking at is is there any programs which deletes records either from the LBWQ or RSA7?.
    Your help is very much needed.
    Thanks in advance.
    BN

    Hi Manoj,
    Thanks a lot for ur quick reply. We are loading data for Header, Item and conditions in BW, we are not doing any transformations anywhere from R/3 BW, its all 1-2-1 mappings.
    We have been loading this for last 2 yrs, it suddenly started misbehaving. I suspect there must be some job which might be deleteing the records from RSA7, but im not sure if there is any prog or job which does this.
    Thanks
    BN

  • "Missing version string for product" error when trying to get updates on Lion Server

    I am not getting the latest updates from Apple on my 10.7.4 server.  When I attempt to do so the log has a bunch of errors stating "Missing version string for product".  I've tried deleting and recreating the swupd files but I am still having the same issue.  Is there any fixes to this problem I am missing? Thanks in advance!

    ok, I went back and made a new database but changed the character set / collation... aside from that change, everything is the same, but I get an error saying that the datasource could not be found when I can see all the tables in intermedia's phpmyadmin page... would changing the character set / collation cause this error?

  • Missing record in archive log

    hello all,
    to the point, i am trying to mirroring 2 database using archive log.
    so, i do some test by inserting large data (1200 record / s) into 4 table for some interval (like 10 menit).
    Each time database create archive log, my daemon in Master will copy the archive log to the Slave, and daemon in the Slave will extract them using dbms_logmnr.
    the problem is number of rows in all Slave table is not equal (less than) number of all rows in Master.
    even if i try to alter the system log file manuallly, still there is missing rows in slave.
    i have try some alternative like,
    - increasing db_writer_processes (from 1 to 2 to 4)
    - increasing redo log size (from 50 MB to 100 MB)
    - increasing redo log group (from 3 to 6)
    but still there is a missing record.
    where is those missing record go ?
    master db: 10.2.0.1.0 + ASM
    master os: SunOS z8 5.10 Generic_137138-09 i86pc
    slave db: 10.2.0.1.0
    slave os: GNU/Linux 2.6.18-8.el5 x86_64 (RHEL)

    Thank you for your reply sir.
    The problem with CDC (and/or Streams implementation) is they use a cpu resource within Oracle it self. So, if in peak time Oracle in Master has already reaching 80-90%, with addition using Streams they will make it to > 90%. Don't imagine 1000000 / day transaction here, but imagine with 1000/s transaction. And That's what the-one-who-already-use-stream says.
    i am not reinvent the wheel here, i am seeking for best alternative. in fact i am looking for answer from "where is those missing record go ?"

  • Missing record in customizing tabele after client copy

    Hi,
    A box with Solaris 10 X64, SAP ECC 6.03, SAP AFS 6.03 and MaxDB 7.6.
    In a just installed system we have crate two client as copy from 000 .... in this two client some customizing tables has missing records. In 000 client all is OK.
    Have you have any idea ?
    Regards.
    Ganimede Dignan.

    Hi,
    You have said customizing tables, are those the default one or build by you. If they are given default from SAP, please note that ceratin data  content is not copied even by Client copy (SAP_ALL profile) you have to do a manual entry.
    Since CCopy have ended with no error and you ahve selected SAP_ALL profile but you dont see the data in the table, which means they cannot be moved by C.Copy and you have enter them manually.
    Regards,
    Raju.

  • Loading issue..missing records .. randomly

    HI ALL,
    Thanks for ur replies.
    We found on 11/09 some records are missing from last 6 months ( 3 to 4 records for each group with diff dates) in daily delta loads 1pm.
    It is very difficult to load each group as full loads on that dates.
    We did repeat delta with no selections on 12.09.2005 at 9 am (loads 8 million rec) and on the same day daily delta also run at 1pm( it also loads 8 million rec) . Finally we seen on 13/09 we get duplicate records. We forcibly removed these request which we had run on 12th (i.e Repeat Delta & Delta).  Those were now in reconstruct tab.
    How to get my missed records from 6 months? How to handle this with out effecting cube data?
    Can we do selections in repeat delta / delta cases?
    Initialization was done on 04/04/2004.
    What is the reason for missing these recors?/
    pls tell the step wise.
    Please guide me.
    Regards,
    Srilakshmi

    Hi Roberteo:
    It is 2.X , I think so, its not possible Full repir request here.
    You Mean 1)re-init with transfer/without transfer ? selection?( before this we should remove previous init load) 2) then daily delta.
    I am thinking :to do like this , please guide me:
    “My suggestion would be since we have the option of transfered date in the selection conditions of infopackage , what we have do is we can do selective deletion of the contents of last and current month based on the closing date of the HR system and load only that data .
    For ex: if you want to delete the contents of MAY 2005 and June 2005 , and the delta failed lies in the month of May 2005. so delete the two months and load only May 2005 in a separate infopackage. After that you can continue your normal loads with the month June 2005. By this way we won’t miss any data as you are loading to cube no problem of duplication.”
    Is it advisable??
    cheers,
    sri

  • The row was not found at the Subscriber error keeps popup and stopped synchronization even after inserting missing record at subscriber - transcational replication.

    The row was not found at the Subscriber error keeps popup and stopped synchronization even after inserting missing record at subscriber - transcational replication.
    first error throws: Grab exact sequence number, find row and inserted at subscriber...
    Start synchronizing, ran fine for a while, stopped again with error with different exact sequence number, repeat again same as step 1.......
    how can we stop this and make it run without this error?
    Please advise!!!

    Hi,
    This means that your database is out of sync. You can use the continue on data consistency error profile to skip errors. However, Microsoft recommends that you use -SkipErrors parameter cautiously and only when you have a good understanding of the following:
    What the error indicates.
    Why the error occurs.
    Why it is better to skip the error instead of solving it.
    If you do not know the answers to these items, inappropriate use of the
    -SkipErrors parameter may cause data inconsistency between the Publisher and Subscriber. This article describes some problems that can occur when you incorrectly use the
    -SkipErrors parameter.
    Use the "-SkipErrors" parameter in Distribution Agent cautiously
    http://support.microsoft.com/kb/327817/en-us
    Here are two similar threads you may refer to:
    http://social.technet.microsoft.com/Forums/en-US/af531f69-6caf-4dd7-af74-fd6ebe7418da/sqlserver-replication-error-the-row-was-not-found-at-the-subscriber-when-applying-the-replicated
    http://social.technet.microsoft.com/Forums/en-US/f48c2592-bad7-44ea-bc6d-7eb99b2348a1/the-row-was-not-found-at-the-subscriber-when-applying-the-replicated-command
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Record results per Product, not per inspection characteristic

    Dear,
    Is is possible, in transaction QE51N to record results per product (or serial number) rather than per characteristic?
    Today, I can only see a result recording per characteristic. For example: for inspection characteristic 1, I enter all the results for each product, then I go to inspection characteristic 2, etc. I would like to enter my results per products, i.e. for product 1: enter results for inspection characteristic 1, 2, ..., and then do the same for product 2, etc.
    Is that possible?
    Regards,

    NehSAP wrote:
    What are the parameters you entering to execute QE51N? I believe you are ececuting this transaction for chara not inspection lot or material. Make sure you are not entering MIC in intial screen throgh variant.
    >
    > If you execute QE51N for particular one lot then you can see all assigned MIC to that lot in transaction output & you can record them one by one.
    >
    That is what I do. I execute the transaction for one particular inspection lot. However, when I enter into the record results screen for this particular inspection lot, I first have to "enter" into one of the master inspection characteristic, and then start recording per product (or serial number). What I would like to have is to "enter" into one product (or serial number), and for this particular product, enter all the master inspection characteristics I have previously defined.
    If you still don't see what I mean, can you give me your e-mail so that I can attach an image
    Oh yes, and by the way, is it possible to execute the transaction qe51n based on the criteria "production order" instead of on the criteria "inspection lot" or "plant" or whatever. I know that you change it in the layout, but I really can't find the production order on the "hidden fields"
    Regards,
    Edited by: MrFitch on Nov 8, 2011 9:11 AM

  • Missing Records from R/3 Production to BW 3.5 Production (Sales Documents)

    Hi Experts
    I am working on SAP BW 3.5 Version
    When I am Loading data from R/3 Production to BW 3.5 Production half of the Sales Documents are Missing which are start with Alphabetical and I have done right LO-Cokpit procedure properly for
    2LIS_11_VAITM
    2LIS_11_VAHDR
    2LIS_13_VDITM
    2LIS_13_VDHDR
    It Capture only Numerical sales Documents, but there so many alphabetical Sales Documents like
    Ex:
    BPCL-KOCHI
    CHEMPLAST
    DEGREMONT
    E125012800
    F085012605
    Y00P4A010G
    Kindly let me know on urgent basis( why it happens )
    Thanks in Advance
    Suma

    Hi,
    Have you done an init on 11 extractors.
    If not do an init (Filling of the Setup tables) without any selections.
    What I think is happening here is that in your init selections you have put a numerical range for the document numbers. Thats why the alphabetical docs are not comming.
    Check this and let me know if this helps.
    Regards,
    Jadeep

Maybe you are looking for

  • Getting error when launching Infoview application

    Hello, I am new to Crystal Reports, i installed Crystal Reports Server XI on Windows 2003 server with SP2 (64 bit), when i am trying to launcg Inforview application using the link: http://(my servername)/businessobjects/enterprise11/InfoView/logon.as

  • Word crashes all the time

    Word for Mac crashes if I use a table, and especially if I cut and paste inside a table.  Like every few minutes. All software updated.

  • Transitioning with Dynamic images

    I am working on a project now where I will have to call a sequece of jpeg images and I will need to be able to crossfade IMAGE01 OUT and IMAGE02 IN....etc. I need to also focuse this inside one movie clip that resides on the master.swf file that is l

  • Columns in to Rows

    Hi All I have a row like this ID Column_1 Column_3 1 5 6 I got this values from a query Now i want the ouput like this Column1 5 Column3 6 Thanks In advance Hari

  • Sequence does not keep up with playhead on timeline. Shouldn't it?

    Hi! When I view a sequence of clips on the canvas, I expect the timeline sequence to keep moving left off screen as the playhead moves right. Instead, the playhead disappears off screen to the right and the sequence of clips remains on the starting b