Records are Missing when we run Delta Load( FIGL-ACCOUNT ITEMS)

Hi,
  Some records are missing when we run Delta load.
We have one generic data source on FAGLFLEXA table.
We select  Field nm TIMESTAMP
TIME STAMP IS LOCAL.
upper limit is Blank
Lower limit is 1000.
we run this process chain every day.
we select delta settings is New status for changed records.
Please give me any idea why records are missing when we run deltas.
Thanks
Naik

Hi Anju,
Please ensure that you are following the below steps while Initilizing the application 13:
1. All the users in source system, must be locked.
2. Ensure that SMQ1 and RSA7 are having no data for application 13. Delete the application 13 datasource entries from RSA7.
3. Delete and refill the setup tables for application 13.
4. Run a INIT with data transfer load for the required datasources of application 13.
5. The Deltas can follow from the next day.
This will ensure that your deltas are fetching correct data. Note that, delta will pick up the same conditions on which the INIT load was run.
Please let me know if you need any more information.
Regards,
Pankaj

Similar Messages

  • Data Records are missing in between while loading from R/3 (ECC) to BI.

    Dear Experts,
    I have created a custom DataSource on Custom Function Module.  This datasource contains 600 fields. (I know its a monster and splitting options are thinner).
    1) Validate the data using RSA3 in R/3 and showed the correct record count.
    2) Validate the data by debugging the FM, still showed the correct record count.
    But while loading from R/3 to BI, records are missing.
    Various Scenarios load from R/3 to BI:
    1a) Loaded full load (78000 records) with all default data transfer settings.  PSA showed up with 72000 records (missing 6000) only.  Compared the Idocs vs data packets, both reconciled.
    1b) Loaded full load (78000) with modified settings (15000 KB / data packet).  PSA showed up with 74000 records (missing 4000) only.
    2a) Loaded with selection parameters (took a small chunk) (7000 records) with default data transfer settings.  PSA showed up only 5000 records (missing 2000).
    2b) Loaded with selection parameters (7000 records) with modified settings (15000 KB / data packet).  PSA showed up all 7000 records.
    3a) Loaded with selection parameters (took further small chunk) (4000 records).  PSA showed up all records regardless data transfer settings.
    Also please look at this piece of code from the function module,
    IF l_wa_interface-isource = 'ZBI_ARD_TRANS'.
          l_package_size = l_wa_interface-maxsize DIV 60.
        ENDIF.
    I really appreciate your advise or help in this regard.
    Thanks much,
    Anil

    Hi,
    Which module u want?
    if its SD(for example)
    steps>>
    1>In AWB goto "business content"
    2> goto "Info provider"
    3>Under infoarea select SD cubes
    4> Drag related cubes and ODS to right panel
    5> Set the grouping option "In Data flow before&afterwards"
    6>Install the collected objects
    Go to R/3
    7> Use Tcode RSA5 Transfer all regarding SD module datasources
    Goto BW
    8> Right click on the source system "Replicate datasources"
    [DataSources|http://help.sap.com/saphelp_nw70/helpdata/en/3c/7b88408bc0bb4de10000000a1550b0/frameset.htm]
    Edited by: Obily on Jul 10, 2008 8:36 AM

  • Few records are missing while downloading to a Spreadsheet  from a Report

    Dear Gurus,
    few records are missing while downloading to a Spread sheet from a Z report.  There are around 300 records, out of which 11 records are not appearing in Spreadsheet file after saving.  But, the funny thing is when i try to save in other format like, HTML or to a clip board all records are coming. 
    When asked, the ABAPer said -
        your report is coming correctly.  if the report is wrong then we can try checking some code in the Z report.  Saving it into Spread sheet is the standard program provided by SAP.
    He is also facing this problem for the first time.
    Can anybody help.
    Thanks in advance and u will get points if useful.
    Regards

    Hi,
    Few days back we got this kind of error, when i tried to down load the asset balances in excel format.
    It was observed that, for one of the asset description ends with cama",".  Due to this reason all other details has been stored in single cell.  Once we changed the master data of that asset, then we able to get the report properly.
    2) Some other time, when we tried to download material master details, for one of the material ... description not maintained.  this is another issue. After maintain the description problem got resolved.
    Hope this information will be helpful to u.

  • How to display list process, when i run sql*loader in c#

    Hello,
    How to display list process, when i run sql*loader in c#. I mean when i run sql*loader from cmd windows, i get list process how many row has been inserted. But when i run SQL*Loader from C#, i can't get process SQL*Loader.
    This is my code:
    string strCmd, strSQLLoader;
    string strLoaderFile = "XLLOAD.CTL";
    string strLogFile = "XLLOAD_LOG.LOG";
    string strCSVPath = @"E:\APT\WorkingFolder\WorkingFolder\sqlloader\sqlloader\bin\Debug\8testskrip_HTTP.csv";
    string options = "OPTIONS (SKIP=1, DIRECT=TRUE, ROWS=1000000,BINDSIZE=512000)";
    string append = "APPEND INTO TABLE XL_XDR FIELDS TERMINATED BY ','";
    string table = "OPTIONALLY ENCLOSED BY '\"' TRAILING NULLCOLS (xdr_id,xdr_type,session_start_time,session_end_time,session_last_update_time,session_flag,version,connection_row_count,error_code,method,host_len,host,url_len,url,connection_start_time,connection_last_update_time,connection_flag,connection_id,total_event_count,tunnel_pair_id,responsiveness_type,client_port,payload_type,virtual_type,vid_client,vid_server,client_addr,server_addr,client_tunnel_addr,server_tunnel_addr,error_code_2,ipid,c2s_pkts,c2s_octets,s2c_pkts,s2c_octets,num_succ_trans,connect_time,total_resp,timeouts,retries,rai,tcp_syns,tcp_syn_acks,tcp_syn_resets,tcp_syn_fins,event_type,flags,time_stamp,event_id,event_code)";
    strCmd = "sqlldr xl/secreat@o11g control=" + strLoaderFile + " LOG=" + strLogFile;
    System.IO.DirectoryInfo di;
    try
    System.Diagnostics.ProcessStartInfo cmdProcessInfo = new System.Diagnostics.ProcessStartInfo("cmd.exe");
    di = new DirectoryInfo(strCSVPath);
    strSQLLoader = "";
    strSQLLoader += "LOAD DATA INFILE '" + strCSVPath.ToString().Trim() + "' " + append + " " + table;
    StreamWriter writer = new StreamWriter(strLoaderFile);
    writer.WriteLine(strSQLLoader);
    writer.Flush();
    writer.Close();
    // Redirect both streams so we can write/read them.
    cmdProcessInfo.RedirectStandardInput = true;
    cmdProcessInfo.RedirectStandardOutput = true;
    cmdProcessInfo.UseShellExecute = false;
    cmdProcessInfo.LoadUserProfile = true;
    //System.Diagnostics.Process.Start("CMD.exe", strCmdLine);
    // Start the procses.
    System.Diagnostics.Process pro = System.Diagnostics.Process.Start(cmdProcessInfo);
    // Issue the dir command.
    pro.StandardInput.WriteLine(strCmd);
    // Exit the application.
    pro.StandardInput.WriteLine("exit");
    //Process[] processlist = Process.GetProcesses();
    //foreach(Process pro in processlist){
    Console.WriteLine("Process: {0} ID: {1}", pro.ProcessName, pro.Id);
    Console.WriteLine(pro.StandardOutput.ReadLine());
    // Read all the output generated from it.
    string strOutput;
    strOutput = pro.StandardOutput.ReadToEnd();
    pro.Dispose();
    catch (Exception ex)
    return;
    finally
    Thanks.

    friend
    sqlldr is an application residing in the OS. procedure runs in the dbms engine.
    you cannot run an os command directly from a procedure or a function or a package .
    If you want to do so you need to use either a daemon process created by a PRO*C program
    or a JAVA stored procedure to do so.
    just refer to previous question forums, you can find the solution. Somebody has already given a solution using
    java to run an OS command . check it out
    prakash
    [email protected]

  • When client open folder with html files to preview web site, some pictures are missing when previewed.

    However all images are in "images"folder. Same images are missing when previewed in Firefox and Explorer.
    Any idea why?
    Thanks.

    Are you sending this other person all of the image files in
    the same relative location as they are on your local computer?
    For instance, if you are sending them index.html and your
    images are in a folder called images, you should be sending them a
    Zip file with the following enclosed:
    index.html
    images (folder)
    image1.gif
    image2.jpeg
    If you are sending this type of structure to your other
    party, check the links in code view. Make sure they are relative.
    If they are, on the index.html page they would look like
    images/image1.gif. If it says anything like C:/ or something that
    points to a local drive they you will need to make sure the image
    are within the site definition and then save the files
    again.

  • Always assets links are missing when changing the location.

    Hi community: Can you share your ideas with me?
    Since adobe muse older versions, asssets files are missing when changing the location or computer. For example develop some project on "desktop" when it move to another location( ex: Another partition or folder with different name), assets says links are missing, we have to relink all assest, is there are any way to fix it? why is that keep happenings? when i design muse templates to sell, it is serious problems to me .
    Can you help me, thank you community!

    Hi,
    Oracle have a tool for precompiling JSP's it's called ojspc
    You can then turn JSP compilation off on the server.
    Here's a batch file that I use.
    Brenden
    @echo off
    set ORACLE_HOME=C:\[Jdev_install]\jdevstudio10133
    if not exist %ORACLE_HOME%\j2ee\home\ojspc.jar goto error
    java -Djava.compiler=NONE -Doracle.home=%ORACLE_HOME%  -jar %ORACLE_HOME%\j2ee\home\ojspc.jar -extend com.orionserver.http.OrionHttpJspPage yourapp.war
    goto end
    :error
    @echo ERROR: %%ORACLE_HOME%%\j2ee\home\ojspc.jar not found.  Please set ORACLE_HOME to point to an OC4J or OracleAS instance and retry.
    :end
    if "%OS%" == "Windows_NT" endlocal

  • Why does message say application components are missing when trying to open Photoshop?

    why does message say application components are missing when trying to open Photoshop?

    The probable causes are:
    A bad, or incomplete install
    Inability of the program to access the location of those components
    Deleted files, that are required for those components
    What is the exact text of the error message?
    Good luck,
    Hunt

  • 10 minutes of the center part of a skype video recording are missing? Help!

    10 minutes of the center part of a skype video recording are missing? Help!

    I'd urge you not to be too hasty. Record more. Does the problem repeat? If you experience similar audio dropouts on other recordings, then it's time to worry. Whatever you experienced may have been a one-time event.
    There are many ways to capture audio besides QuickTime: Audacity (free) and Piezo ($) are two popular alternatives. Piezo 1.2.2 is the last version for Snow Leopard. You can get a free demo version here: https://rogueamoeba.com/legacy/. I don't know which one has lower system requirements--and, in fact, QT may be the most efficient of the lot. Experiment.
    4GB RAM should be sufficient, though more RAM never hurts. That iMac (Core i3, 3.2GHz, mid 2010) will accept as much as 16GB. Adding RAM is generally the easiest and most cost-effective way to boost performance of an older machine.
    490MB for 31 minutes of audio. It sounds as if you've set QuickTime X to record with "maximum" quality. Change to "high" and the file size will shrink to around 10% of that amount.  In fact, with simple voice recordings, maximum is usually overkill. However, I doubt that the maximum/high setting will have a dramatic effect on the resources needed to make the recording.
    As far as backups, that voice recorder could save your bacon one day. If these Skype sessions can't be repeated, any backup system will be better than none. Most voice recorders these days have a USB port and sometimes an application that will allow you to transfer the recording to your computer. Even old voice recorders with only a headphone jack can be connected to your Mac via audio in for a "better than nothing" file.

  • Why itunes 10.5 64 bit wont install on my 64bit hp probook ? when i run it my user account control asks me that do you want the following program from unknown purblisher to make changes on you on this computer?  program name :itunes 64setup.exe  purblishe

    why itunes 10.5 64 bit wont install on my 64bit hp probook ? when i run it my user account control asks me that do you want the following program from unknown purblisher to make changes on you on this computer?
    program name :itunes 64setup.exe
    purblisher:unknow
    file location: hard drive on this computer when i click yes nothing happens
    aditional ateps iv taken, uninstalled all itunes including quick time,banjour mobile updates ,everthing that has to do with apple products.went into window regestry and i dint find anything that has to do with apple in software bar
    restarted my laptop several times, put the setup on a External USB but still nothing happens ,blowsed all most all sites on goggle no where iv seen this problem ,pliz who can help?

    why itunes 10.5 64 bit wont install on my 64bit hp probook ? when i run it my user account control asks me that do you want the following program from unknown purblisher to make changes on you on this computer?
    program name :itunes 64setup.exe
    purblisher:unknow
    file location: hard drive on this computer when i click yes nothing happens
    aditional ateps iv taken, uninstalled all itunes including quick time,banjour mobile updates ,everthing that has to do with apple products.went into window regestry and i dint find anything that has to do with apple in software bar
    restarted my laptop several times, put the setup on a External USB but still nothing happens ,blowsed all most all sites on goggle no where iv seen this problem ,pliz who can help?

  • When I run delta infopackage  no data was loaded

    Dear all friends
    I created a datasource by view in R3 side(t-cd rso2)
    and delta field is one of view key
    In bw side I created two infopackage init&delta
    one case
    1, run init infopackage without data , no problem
    2,create delta infopackage (timestamp UL 1800,LL 0)
    3,run delta infopackage but no data can be loaded
    two case
    1, run init infopackage withdata , no problem (32 records were loaded)
    2,create delta infopackage  (timestamp UL 1800,LL 0)
    3,run delta infopackage but no data can be loaded
    4, I checked rsa7, and found the time stamp is 0 WHY?
    When I test I also insert or delete r3 side records into table
    but I can not load data to psa with delta update
    PLEASE HELP ME

    Hi,
        What Delta specific field are you using ?
    Have you mentioned the Safety Upper & Lower limit ?
    Follow this document. It will show you where you have missed out..
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/84bf4d68-0601-0010-13b5-b062adbb3e33
    Regards,
    Balaji V

  • Problem in running Delta load for 2LIS_13_VDKON

    Hi Friends,
    I am working on LO Data Source i.e., 2LIS_13_VDKON, i have run the INIT setup tables through OLI9BW. There were 2389443 records.
    Now, since in BW these records multiply depending on condition types I didn't want unnecessary records. So I have run multiple INITs in BW with selection criterias as I wanted data only from 01-Jan-10. Having done that, now I want to run deltas but the BW system is not letting me do. If I click on Delta in the infopackage (in update rule) then it selection criteria it adds up all those INIT selection criteria that I have run and I can't change it (as in it becomes non-updatable); why is it adding up all those selection criteria in Delta infopackage?
    I want to fetch all deltas from the day I ran OLI9BW...How to run delta for those records updated after run of OLI9BW.
    Thanks!

    Hi,
    Follow the steps, these steps are for SD module, but for your datasource, change the Tcode to fill setup tables and replace the SD DataSource with your datasource in the following steps.
    1. First Install the DataSOurce in RSA5 and see it in RSA6 and activate in LBWE.
    Before doing the steps from 2 to 6 lock the ECC System, i.e. no transaction will happen
    2. Then delete the Queues in LBWQ like below
         MCEX11  --> For 2LIS_11_* 
         MCEX12  --> For 2LIS_12_* 
         MCEX13  --> For 2LIS_13_* 
      Be carefull while doing all these deleations in Production Servers
    3. Then delete if any entry is there in RSA7
         Eg:
         2LIS_11_*
         2LIS_12_*
         2LIS_13_*
    4. Then delete setp tables using LBWG Tocde and select Application Number. i.e. 11, 12 and 13.
    5. Then Load Setup Tables using OLI7BW, OLI8BW and OLI9BW.
       Give Name of run = XYZ, Termination Date = tomorrows date and execute it in background.
       i.e. Program-->Execute in Background.
       2LIS_11_*  Use OLI7BW Tcode to fill the Setup tables
       2LIS_12_*  Use OLI8BW Tcode to fill the Setup tables
       2LIS_13_*  Use OLI9BW Tcode to fill the Setup tables
    At the time of setup table filling no entry will exists in LBWQ in ECC for the following Queues.
         MCEX11  --> For 2LIS_11_* 
         MCEX12  --> For 2LIS_12_* 
         MCEX13  --> For 2LIS_13_* 
    6. Check the job status in SM37 and once finish it then goto RSA3 and then execute it and check.
    7. Then Replicate the DataSource in BW.
    8. Install InfoCube/DSO from Business Content or cretae InfoCube/DSO and then Map the ECC DataSOurce Fields and BW          InfoObejcts in Transfer Rules (in BW 3.5) or in Transfermations (in BI 7.0).
    9. Map the InfoObejcts in InfoSource and InfoObejects in InfoCube/DSO in in Update Rules (in BW 3.5) or in Transfermations
       (in BI 7.0).
    10.Create InfoPackage and Load Init/Full.
    11.Using DTP you can load to InfoCube/DSO (if it is BI 7.0) 
    Thanks
    Reddy

  • Missing Data in 0FI_GL_4 delta loads.

    Hello All,
    We  successfully loaded the 0FI_GL_4 related ODS upto 02/06. We turned on delta loads for the same from 03/06. The data validation team has discoved that there is missing data in 03 and 04. I plan on resetting the delta queue in R3 and reinitialize a full load until april. Here are my questions
    1) Are there any specific steps i would need to follow?
    2) Are their any other better alternatives then reinitializing with the full load.
    Thanks in advance.
    Kiran

    Initialization Concept :
    I will explain this with an example.
    You have 5 company codes (CCs) (1000, 2000, 3000, 4000, 5000) in your R/3 source system.
    But your client wants reporting in BW only for 3 Company codes (CCs) (1000, 2000, 3000).
    In that case, there is no point in bringing the data for other 2 CCs.
    So during Initialization, you give the inputs as,
    CC = 1000, 2000, 3000 and do a Initialization (With or Without Data transfer)
    So henceforth, when Delta is pulled, any changes corresponding to CCs 1000, 2000, 3000 only will be captured.
    Eventhough there are changes in 4000 & 5000, they will not be captured in the Delta.
    Hope I answered your Question.
    Regards,
    Balaji V

  • HT3819 My iMac had a corrupt seagate HD that had to be replaced my imovie files & itunes video library are missing when I picked up my Mac from Apple?

    I purchased my 27" iMac in October 2010 after attending classes we discovered my computer needed new graphics card, hard drive, and a total rebuild after owning it only 6 months. Apple rebuilt my new computer, several months later same issues began yet again, slowly Apple began replacing defective parts they installed, my computer still hasn't worked as it should and has been in and out of Apple all the time sometimes they keep it for weeks! running tests?? February 10, 2013 I took my imac back in because it has been taking upwards of 6 minutes to make 1 single edit in imovie after 6 days of editing my project I could No Longer save in itunes, external HD, or export my imovie videos (they are 4 min up to 20 min max) Apple informed me that my Hard Drive was corrupt a bad batch of Seagate HD had been installed and my computer was again affected by this and it needed to be replaced and they couldn't get it to respond at all my itunes library was missing, etc. We saved my videos on my external HD I brought in with me. The Genius bar said they would call me in 3-5 days for me to pick up my computer. 9 Days later not hearing back from them I went in to get an update February 19, 2013 No one can tell me what was done except my HD was replaced they can't answer my questions about my itunes library being reinstated or my videos, music is missing, podcasts, etc. I was even using icloud, empty? They tell me IF I find anything wrong or not working again to just bring it back.  My iMovie videos ALL the edits are missing ? I can't find ANY of my videos in my itunes my Library is empty as it is in imovie except for 2 videos? HELP! I can't imagine having to re-edit my entire video with sound effects, fronts, graphics, etc. I spent weeks on this :-( I'm at my wits end with my iMac.... I have searched in my previous itunes library EMPTY ! Waaaah! I want my mommy....

    The Apple Store is not responsible for data loss and generally does not do any backups of your data before performing any repairs, though in some cases, as seems to be the case in yours, they guide you to making your own backup. Here's what they say on the "getting service page" (when I've taken a system in for service a similar statement was presented to me when I agreed to the service):
    Many repairs require Apple to replace or reformat the hard disk, which will result in the loss of your data. Please make sure you back up your data on a regular basis to minimize your data loss. Learn more about backup options. Apple and Apple Authorized Service Providers are not responsible for any damage to or loss of any applications, data, or other information stored on your Mac desktop while performing service.
    Since you say that you backed up your videos before the drive was replaced, why can you not just restore them? And did you not back up anything else?
    If you didn't make any sort of backup of your other data prior to taking the iMac in for service, then sorry but your data is almost certainly gone. Regular reliable backups are a must, particularly when dealing with content you spend a lot of time creating. You may be able to re-download any content you purchased from the iTunes Store or Mac App Store, but anything else you'll have to recreate or re-obtain from the original source.
    Regards.
    Message was edited by: varjak paw

  • ITunes thinks songs are missing when they are NOT...

    I've written about this in the past and I thought I had fixed it manually. For some reason a large number of my songs (about 1300) in iTunes are not able to be found on the drive when I try to play them. Once I try to play them I get an error message saying "The song "song name" could not be used because the original file could not be found. Would you like to locate it" and then the "!" symbol shows up next to the song. The songs files ARE there though.
    In the past I thought I solved this problem because I "re-added" using all the songs in my library (about 4500) "File->Add To Library". If the song was one of these "missing" songs it was re-added to the library. The songs that were not "missing" were not re-added. (and again, the song files iTunes is re-adding are the exact song files it is saying aren't there in the first place) After the "re-add" I essentially had two of all the missing songs. One with the "!" and one without it. The newly added songs did not have any of the stats the original song had. So I used a script I was told about that goes through and syncs the song's statistics. Then after the song stats were synced I removed the "!" song from the library. I had to do this one song at a time. Of course, this took a VERY long time and I don't really want to go through it again... especially now that I know it may not be a permanent fix anyway!
    However here is something new I noticed now that I have Leopard: The files that are showing up as missing are also the ones that don't have a "thumbnail" icon of the album cover in the finder. Also, if I go into coverflow view in the finder those files don't have the album as the other files do. However, there should be no differences between the files. For example, one album where each song was ripped at the same time in the same way will have some songs that have the cover icon and some that don't.
    As I reported last time, this is not specific to one machine and has noting to do with the drive the songs are on. This also was happening on both 10.5.1. and 10.4.11 and lower.
    So, why is this happening and how can it be fixed. I'm not going to re-import the songs because then I loose all my stats, ratings, etc and have to re-do the long method of fixin the stats.. There needs to be some way to permanently fix this problem. Is it with the song files or the library? Is there some sort of validation script that can be run?
    Oh, on a side note... pre-leopard the "!" would show all the time. Now, if I close iTunes and re-open the "!" are gone until I try to play the song that should have the "!". This makes things even more challenging because I can't quit iTunes if I want to know which songs are "missing".
    Jeff

    I have this same issue. I use an external HD connected to an Airport Extreme Base station to store my music. On Tiger 10.4.11 iTunes created a music database just fine and found every mp3. I just installed Leopard last night and left iTunes to create its database overnight. It found every song, but there are plenty with the exclamation just as you described. If I want to play these songs I must hit "Yes" to locate the song manually. I can then play any other song with an exclamation point in that particular album, but if I go to try to play another song with an exclamation point from another album I must repeat the process again.
    It's definitely a problem with Leopard as I just got my mac back from the Apple store with a replaced hard drive. I created the iTunes database in Tiger on one day, then the next decided to purchase and install Leopard. So one day passed between each instance of building the database and it worked fine on a clean install of Tiger but not on a clean install of Leopard.

  • Records are missing in the File which XI has placed in Target FTP server

    Hi All,
    I have a scenario where in XI is transfering the files from ECC to Target System . No transformation required here . I am using AAE to run this scenario.
    Issue i am facing here is that i can see few records missing in the File  which XI had placed in the Target system FTP server . Same file if i check it in archive folder of ECC (which XI has archived after picking the file), complete set of records are present for the same file.
    Need your inputs please....
    Note : XI is using AAE to transfer the files and no mapping . Also i tried to check out the audit logs in the channel monitoring . Unforutanely i was not able to see the logs to check the bytes that was transferred while readng and writing the file . Sometimes i have faced audit logs issue in PI 7.1
    Regards
    Vinay P.

    Please use temporary name scheme
    http://help.sap.com/saphelp_nwpi711/helpdata/en/44/6830e67f2a6d12e10000000a1553f6/content.htm
    hope this helps
    regards
    Ninad

Maybe you are looking for

  • How do I correct a Windows Vista error for HP Officejet 6500 E709n wireless?

    I continue to get a Windows Vista error when trying to install the printer software ...now it does print, but only the bottom half of a page..???

  • Tried to connect to TV, display (ibook?) died

    I hope someone can help me with this one! I have been having some issues lately connecting my ibook to a tv ... kinda of had to fidget with the video plug to get it to work right. It would be almost all the way plugged in but not quite and then it wo

  • Zoomable HDTV settings in AI

    I'm shooting an HDTV program that will use illustrations created by an artist using Adobe Illustrator CS 5.  I'm using Adobe Premiere CS5 to edit, with HDTV settings of 1920 x 1080 pixels.  I'm trying to determine what Adobe Ilustrator settings to ha

  • Error 148:3

    I am getting error 148:3 when I try to open adobe acrobat 9 pro, and all of the other adobe products in my suite.  Does anyone have a solution to this?

  • Convert No Object Table to UDO

    Hi, I have a No Object Table which already has alot of data, i need to convert this into a UDO so i can manage it better. How can i go about doing this?