Lots of trouble using multiple photoshop files in FCP 6ont

Hi, Eric here. I haven't been on this forum for a while (maybe that's a good thing!).
I'm working on a project that is incorporating photoshop (layered) files. There are 6 pictures on top of each other (each a different person, with the background cut away in Photoshop).
When I work with one of these files FCP runs a little slow. 2 or 3 files and it runs real slow. 4 or 5 files and it starts crashing every couple minutes. Now, it's at the point where the project literally won't even open. It opens for a brief moment, then before I can do anything it crashes. Other projects still open as normal.
As far as I know, my computer is not at fault (ie, 1.5 GB SDRAM, Dual 2 GHz PowerPC G5). The computer is almost 5 years old but is running fine otherwise.
Is this normal or are there some settings I can change, something to upgrade?
Thank you very much. Happy editing.
Eric

Thanks Randy. I did read the thread. I am zooming them but only very slightly. Like 12-15%. All resolutions are 300dpi I know that.
I'm anxious to try deleting the CMYK file from the timeline/project... IF IT WILL OPEN!!! This is the worst it has been. I've had this happen but usually at least after a restart the timeline will open. This time nothing. Honestly, I don't know if the project will ever open again, but I'll keep trying.
Otherwise, assuming PS files are 300 dpi, RGB, and not too large, is it common for FCP to get this bogged down when working with them? Just doesn't seem right.
Thanks again.
Eric

Similar Messages

  • I used a Photoshop file as my background for a brochure in InDesign CS6 and when I print it thru eit

    I used a Photoshop file as my background for a brochure in InDesign CS6 and when I print it thru either InDesign or via exporting it as a pdf it always has a white border.  How can I eliminate this?  I was on the phone with a tech for an hour and fifteen minutes.  The answer I was given is that InDesign places white borders automatically.  Need help, the white borders do not coincide with a mostly black background.

    I am not certain you understood the technical support person from wherever you shought help.
    ID will simply output what you tell it to. If you have designed a brochure that has a bleed and your PS file extends into the bleed, and you output a PDF with the correct settings, and send it to a service bureau (not certain about instyprint) that can print that size with bleeds, then trim it to size...phew. Seems like a run-on sentance there.
    As for printing to the edge of a piece of paper on a local printer that supports it, you need to set up the printer to do so. At least that's how it has worked with the borderless printers I have used.
    If you need an inexpensive brochure printed, try Quantum Digital. As long as you design it to their specs, it is a quick turn, the printing is fine for most inexpensive jobs, and they are pretty inexpensive. Offset quality they are not.
    But your file better be constructed properly.
    Take care, Mike

  • Is it possible to use multiple css files in epub?

    For fixed layout I would like to use multiple css files.
    Is it allowed  by apple requirements?

    Yes. ePub suports multiple CSS files and therefore so does Apple iBooks.

  • Find and replace text in multiple Photoshop files?

    Hi there,
    Let us say I have six Photoshop files: 1.psd, 2.psd, ..., 6.psd. All of these files contain the word “LoremIpsum” in random text layers, within each document. Is there a way I can search for “LoremIpsum” in all documents and replace it with “Dolor Sit Amet”, all in one go? This is just an example, I need to replace various words, not just one.
    I have tried "batch find and replace" software (including powerful tools like Power Grep) but they do not work with psd files… Is there a javascript of external plugin for this kind of task?
    Thanks!

    You’re welcome, advice given here is free.
    If you want to donate something nonetheless you could do so over at
    http://ps-scripts.com/bb/
    Many of the same people used to contribute there as here and I for one have benefitted considerably from their generous advice on Scripting issues.
    A Script can read (or create) txt files, but I do not have a lot of experience with this.
    This might work (amend the line »var theTexts = readPref ("….txt", false);« according to your txt-file’s path):
    // replace text elements in type layers;
    // 2013, use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
              for (var n = 0; n < app.documents.length; n++) {
                        app.activeDocument = app.documents[n];
                        app.activeDocument.suspendHistory("replace text", "main()")
    // the opertation;
    function main () {
              var myDocument = app.activeDocument;
              var theTexts = readPref ("….txt", false);
              var theArray1 = theTexts.slice(0, Math.round(theTexts.length/2));
              var theArray2 = theTexts.slice(Math.round(theTexts.length/2), theTexts.length);
              alert (theArray1.join("\n")+"\n\n\n"+theArray2.join("\n"))
              for (var b = 0; b < theArray1.length; b++) {
                        replaceText (theArray1[b], theArray2[b])
    ////// reoplace text //////
    function replaceText (replaceThis, replaceWith) {
    // =======================================================
    var idreplace = stringIDToTypeID( "replace" );
        var desc22 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref3 = new ActionReference();
            var idPrpr = charIDToTypeID( "Prpr" );
            var idreplace = stringIDToTypeID( "replace" );
            ref3.putProperty( idPrpr, idreplace );
            var idTxLr = charIDToTypeID( "TxLr" );
            var idOrdn = charIDToTypeID( "Ordn" );
            var idAl = charIDToTypeID( "Al  " );
            ref3.putEnumerated( idTxLr, idOrdn, idAl );
        desc22.putReference( idnull, ref3 );
        var idUsng = charIDToTypeID( "Usng" );
            var desc23 = new ActionDescriptor();
            var idfind = stringIDToTypeID( "find" );
            desc23.putString( idfind, replaceThis );
            var idreplace = stringIDToTypeID( "replace" );
            desc23.putString( idreplace, replaceWith );
            var idcheckAll = stringIDToTypeID( "checkAll" );
            desc23.putBoolean( idcheckAll, true );
            var idFwd = charIDToTypeID( "Fwd " );
            desc23.putBoolean( idFwd, true );
            var idcaseSensitive = stringIDToTypeID( "caseSensitive" );
            desc23.putBoolean( idcaseSensitive, false );
            var idwholeWord = stringIDToTypeID( "wholeWord" );
            desc23.putBoolean( idwholeWord, false );
            var idignoreAccents = stringIDToTypeID( "ignoreAccents" );
            desc23.putBoolean( idignoreAccents, true );
        var idfindReplace = stringIDToTypeID( "findReplace" );
        desc22.putObject( idUsng, idfindReplace, desc23 );
    executeAction( idreplace, desc22, DialogModes.NO );
    ////// read prefs file //////
    function readPref (thePath, binary) {
      if (File(thePath).exists == true) {
        var file = File(thePath);
        file.open("r");
        if (binary == true) {file.encoding= 'BINARY'};
        var theText = file.read();
        file.close();
        return String(theText).split(",")
    In this case the comma is used to split the text into Strings in Arrays, if your search/replace texts include commas you could use something else, I guess.

  • How to use multiple video files??

    hi all,
    i am using flex 4 ...
    now i have designed video player..
    i used single flv file for execution..
    how to use more flv files in tis program???
    i have included program also..
    can any one reply for this...
    thanks in advance...
    regards,
    saran r
    video.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" creationComplete="init()" height="700" >
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.core.UIComponent;
                import flash.events.NetStatusEvent;
                import flash.media.Video;
                import flash.net.NetConnection;
                import flash.net.NetStream;
                private var nc:NetConnection;
                private var stream:NetStream;
                public var videoDuration:Number;
                public var nsClient:Object = new Object();
                private var videoComp:Video = new Video();
                private var meta:Object = new Object();
                private var timer:Timer = new Timer(100);
                private var uiComp:UIComponent = new UIComponent();
                private function init():void
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    nc.connect("rtmp://localhost/saran");                 
                    this.addElement(uiComp);
                    uiComp.addChild(videoComp);
                    timer.addEventListener(TimerEvent.TIMER,timerHandler);
                    timer.start();
                private function netStatusHandler(event:NetStatusEvent):void
                    trace("Code ===>>>    "+event.info.code);
                    if(event.info.code == "NetConnection.Connect.Success")
                        connectStream(nc);
                private function connectStream(nc:NetConnection):void {
                    stream = new NetStream(nc);
                    videoComp.attachNetStream(stream);
                    stream.play("Terminator")
                    // stream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    stream.client = nsClient//new CustomClient();
                    nsClient.onMetaData = metadataHandler;
                    trace("stream ===>>>    "+stream.currentFPS);
                    //responder = new Responder(onResult);
                    // nc.call("getStreamLength", responder, "bikes" );
                private function metadataHandler(metadataObj:Object):void
                    meta = metadataObj;
                    videoComp.width = metadataObj.width;
                    videoComp.height = metadataObj.height;
                    //positionBar.move(videoComp.x, ((videoComp.y + videoComp.height)+20));
                    //positionBar.width = videoComp.width;
                    trace("Duration ====>>>>   "+meta.duration);
                private function timerHandler(event:TimerEvent):void
                    //trace("Timer called.........."+stream.time);
                    //positionBar.setProgress(stream.time, meta.duration);
            ]]>
        </fx:Script>
    </s:Application>

    I have the same question but I am using two pc's

  • Anyone tried using a QText file with FCP?

    I was just wondering if there is some way to utilize a QText file for captioning with FCP, either directly of by importing it into QTPro, then exporting it in a form that FCP understands? The idea is to use these as timed text overlays.

    QText is a bit more, at least to my limited understanding. Let's say you have a QText file with 10 lines of text you want to display. In the header you can specify color, size, etc. Before each line of text you enter a time code which represents the start time for displaying that line. For example:
    [00:00:00]
    This is my first line and displays for 4 seconds
    [00:00:04]
    This line is displayed 4 seconds after the first, and displays for 6 seconds
    [00:00:10]
    and this line is 6 seconds after the one above (i.e. 10 seconds in).
    and so on. One way to look at it, each line of text becomes a slide which displays until the next line is called.
    When fed to QTime, you get a very nice vector graphics display of each line at the specified time. It would be great if I could export that as a video file which I then could use in an overlay track in FCP. QTPro offers several export options including such as MP4, m4v, etc. Dragging these files into FCP either generates a Codec error when rendered or isn't recognized at all. I guess I could use a video screen capture program and capture the QTP display, but that seems like a crude and slow process. I had hoped, since FCP and QTP are both Apple products they would have found some way to integrate them. No mention of QText in the FCP help file, so it would appear no such luck.

  • Using Multiple iMovie files in iDVD

    After how quickly I learned to use iMovie, I'm quite upset with how difficult it is to do what I want in iDVD. Here's the issue:
    My parents went on a trip last year and took a lot of video (over 9 hours). Over the past few months, I've pared this down to just under 2 1/2 hours. My sister, who is a journalist, at one point suggested extracting all the audio to make it easier to edit. I'm not sure how much easier this made it, but I did it nonetheless. This made the file just over 50GB, and it was so large that the audio was choppy when I tried to play it as one big file. So I had to cut the movie into 12 files of 10-15 minutes each and finish the editing.
    The point is that now I want to make a DVD out of this, but iDVD won't let me re-combine my 12 files into one big movie with separate chapters. It wants me to have 12 separate movies, each with 3-4 scenes (and even getting it to show all 12 "Play movie" and "Select Scenes" buttons on the menu page is difficult).
    Basically what I want is to show iDVD that after it plays scene 4 from file 1, it should go to scene 1 of file 2, not back to the main menu. This should of course continue until all 12 files are done. I also want the "Scene Selection" menu to include all 40-50 scenes instead of having 12 different "Scene Selection" menus, but so far as I can tell, there's no way to add something so simple as a "next" button! If I could do this, then the main menu would have only two buttons (play movie and select scenes) instead of 24.
    Is there any way to make iDVD understand that these 12 files are really one movie without having to combine them all together again in iMovie? Even doing that would require me to purchase an external hard drive, since the separate files are now 60GB and I only have 47GB free space... and I don't want to paste one file into another and then immediately delete it (which I know would allow me to combine all files without need of extra space) since this leaves me with no back up if something goes wrong during the pasting of these large 4-5GB files.
    Or does someone know of a different, free, iMovie-compatible (so I don't have to remake all my chapter titles) program that lets me do what I want for myself?

    I agree with everything that F Shippey said.
    For future reference, I believe that your problem started when you extracted all of the audio from your video files. When you did that, you created several audio files. The number, not the size, of audio files likely is what caused that choppy playback that in turn moved you to cut up your movie into 12 files. That made a mess, because when you exported to iDVD you were stuck with 12 movies that you cannot not combine in iDVD. Of course, you had no way of knowing that extracting the audio into several clips would cause the choppiness. (The choppiness will be only on playback, not in your final product.) You would have had to have been reading the iMovie forum for a couple of months, where audio stutter and skipping have been frequently discussed. The next time around I would suggest that you leave the audio embedded in the video and not extract it. Embedded audio does not seem to cause stutter on playback. Also, in your iMovie preferences, set your playback quality to Standard (smoother) playback, and that might help.
    If your sister or friend has an apple computer with some extra disk space, you could back up your movie to that computer using a firewire connection. But external drives are so inexpensive now, you might consider buying an Apple formatted external drive for yourself. (A windows formatted one will not work.) You can always use more storage space even after you are done with this project.
    Sorry for all your trouble here. We've all gone through that frustration at one time or other as we learn our way through these movie programs. The good news is that you've done nothing that isn't correctible. Some folks lose their entire project, which increases the suicide rate considerably.

  • Using Multiple Properties Files in Struts Framework

    Hi Everybody!
    I just to know how to use a multiple message-resources files in a Struts Framework.
    I've 2 properties file :
    1. ApplicationResources_A.properties
    2. ApplicationResources_B.propertiesI put the files under WEB-INF/classes dir.
    My configuration in struts-config file something like below:
    <!--  Begin Testing -->
         <message-resources key="A" parameter="ApplicationResources_A" />
         <message-resources key="B" parameter="ApplicationResources_B" />
    <!--  End Testing -->
    </struts-config>
    if my JSP code is like below , this error is thrown:
    org.apache.jasper.JasperException: Cannot find message resources under key A
      <tr>
        <td width="17%">Language A</td>
        <td width="83%"><bean:message bundle="A" key="user.lang.desc"/></td>
      </tr>
      <tr>
        <td width="17%">Language B</td>
        <td width="83%"><bean:message bundle="B"  key="user.lang.desc"/></td>
      </tr>
    but  if I change the  JSP code like below it  work fine:
      <tr>
        <td width="17%">Language A</td>
        <td width="83%"><bean:message key="user.lang.desc"/></td>
      </tr>
      <tr>
        <td width="17%">Language B</td>
        <td width="83%"><bean:message  key="user.lang.desc"/></td>
      </tr>
    In this code , I dont know  which resources file is used.
    So how do I solve this problem. Thanks you.

    I have defined the following:
    struts-config.xml
    <message-resources key="ldap" parameter="com/project/struts/ldap"/>
    Action.java
    In execute method:
    MessageResources messageResources= MessageResources.getMessageResources("com/project/struts/ldap");
    System.out.println("INITIAL_CONTEXT_FACTORY"+messageResources.getMessage("INITIAL_CONTEXT_FACTORY"));
    and it is working, however I have to change "com/project/struts/ldap" value in Action.java file whenever there is any change in name or location of ldap.properties.
    Can I access this properties in such way that I don't have to change parameter path manually in Action.java (modifying in struts-config.xml is okay)? like access through key="ldap" or something.
    Thanks and regards,

  • Using multiple XSL files parsing a XML file

    Hi,
    Can a single XML be procesed by a XSL file in which are included many XSL stylesheet?
    I mean, my Java servlet writes the results of the SQL
    queries in a single XML document. Something like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    <body>
    <!-- Part 1 -->
    <record>
    <nombre>Monica</nombre>
    <apellido1>Amann</apellido1>
    <apellido2>Ostos</apellido2>
    </record>
    <!-- Part 2 -->
    <record>
    <domicilio>Rodriguez Arias</domicilio>
    <numero>41</numero>
    <piso>5</piso>
    </record>
    <!-- Part 3 -->
    <record>
    <nombre>Ana</nombre>
    <apellido1>Garcia</apellido1>
    <apellido2>Ostos</apellido2>
    <domicilio>Rodriguez Arias</domicilio>
    <numero>41</numero>
    <piso>5</piso>
    <mano>Decha</mano>
    </record>
    </body>
    I want to be able to apply a particular stylesheet into diferent part of the XML file.
    I mean, i have a XSL (father), in which are included various XSL. My problem is that
    i can apply the bloque1.xsl to process part1 in the xml, and bloque2.xsl to process
    part2 in the xml and the same with the thrid.
    This is my XSL (father), but i don't know whats the way to do it. And i don�t konw if
    it's possible to do it.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    version="1.0">
    <xsl:include href="/aplic/fop/ejemplos/bloque1.xsl" />
    <xsl:include href="/aplic/fop/ejemplos/bloque2.xsl" />
    <xsl:include href="/aplic/fop/ejemplos/bloque3.xsl" />
    <xsl:template match="body">
         <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
              <fo:layout-master-set>
              <fo:simple-page-master master-name="simple"
                   page-height="21cm"
                   page-width="21cm"
                   margin-top="1cm"
                   margin-bottom="1cm"
                   margin-left="1.5cm"
                   margin-right="1.5cm">
                   <fo:region-body margin-top="1.5cm"
                   margin-bottom="1.5cm"/>
              </fo:simple-page-master>
              </fo:layout-master-set>
              <fo:page-sequence master-reference="simple">
              <fo:flow flow-name="xsl-region-body">
              <fo:block text-align="right">
                        <fo:external-graphic src="c:\aplic\fop\ejemplos\barcode.jpeg" width="8.1cm" height="3.7cm"/>
              </fo:block>
                   <xsl:apply-templates/>
              </fo:flow>
              </fo:page-sequence>
         </fo:root>
    </xsl:template>
    <!-- Here i should code the rest of the XSL to join the diferents parts of the XML with its corresponded XSL -->
    </xsl:stylesheet>
    Finally i have to produce a single resultant report into pdf outformat. For this, i am using XSL-FO.
    Thanks a lot, and i'm sorry for my english language.

    The examples of Xalan (check xml.apache.org) do just that.
    Micks

  • Help using a photoshop file

    I am editing a video that is basically a bunch of JPEG images together. In photoshop, I created all images like this:
    Preset Film & Video
    Size HDV 1080p/29.97
    Width 1440 pixels
    Height 1080 pixels
    Resolution 72 pixels/inch
    Inside these images I put some photos (and used resolution of 300dpi to ensure quality, although I thought that 72 would be enough).
    When editing, everything is fine, and the exported file .mov is also OK. But when I create a DVD from iDVD the quality of the image drops. First, I could not burn a 16:9 DVD (I put that option on iDVD, but on my TV it doesn't show with the two black bars on top and bottom of the screen as I imagine it should have), and that makes me loose the borders of the image. Besides, the photos inside the JPEG image are as if they were in low resolution.
    I don't know if 16:9 problem has something to do with the image resolution problem, or if there is something I'm doing wrong.
    I'd appreciate some help with that.
    Thanks.

    That's why people do incremental saves and use backups... You could try to open the file in an image viewer like IrfanView and see which parts are salvagable, but that's as good as it gets most likely...
    Mylenium

  • Trouble using exists() from File Class

    I'm trying to have the user input a filename, and then I'm storing the filename in a file object called childFile.
    I'm having trouble with the conditional and boolean statements. The screen should print "I'm real" if the file exists, but it doesn't. It prints I don't exist every time, no matter what the user inputs.
    I really appreciate any help.
    import java.io.*;
    import java.util.Scanner;
    public class FileObject {
         public static void main(String[] args)
         throws java.io.IOException
              //boolean childFile.exists() = true;
              Scanner keyboard = new Scanner( System.in );
              System.out.print("Please enter the name of an existing file: ");
              String input = keyboard.nextLine().trim();
              File childFile = new File (input);
              File parentFile = new File( childFile.getCanonicalFile().getParent() );
              boolean exists = childFile.exists();
              if (exists)
                   System.out.println("I'm real.");
              else
                   System.out.println("I don't exist");
              System.out.println(childFile);
              System.out.println(parentFile);
              //displayFiles(list.listFiles(), indent + " ");
         //void displayFiles(File[]list, String indent) {

    Use File.getAbsolutePath() to make sure your file is actually pointing where you think it's pointing

  • Using multiple XML files for drill-down

    I have an XML file which populates a graph showing months of the year.  I have 12 other XML files which have data for each day of the month running from 1 - 31.
    What I would like to do is use the 12 XML files to drill down for each of the months on my graph, but am struggling to get it to work.
    The XML that populates the graph is in the following format :
    <?xml version="1.0" encoding="utf-8"?>
    <items>
         <item month="Jan" value="536102" />
         <item month="Feb" value="484570" />
         <item month="Mar" value="155840" />
    and the other XML files are in the following format:
    <?xml version="1.0" encoding="utf-8"?>
    <items>
         <item Timestamp="24/04/2010" Value="4178" />
         <item Timestamp="25/04/2010" Value="8075" />
         <item Timestamp="26/04/2010" Value="14611" />
    Would it be simpler to combine all the XML into one file?
    Sorry that this is a bit vague, but if you could help me that would be appreciated. Let me know if you require any more information.
    Thanks.

    You can only import a single XML file. You may have an xml file that has multiple occurances of data but it must be a single xml file.
    So you woudl have to find a way to combine all of those xml files into one then do the import.
    Paul

  • Trouble using multiple xboxes through 1 router

    My roommates and I have a WRT54G router set up with 3 xbox 360's (all wired).  The problem is that we keep getting an error message due to strict NAT.  However, when only 1 box is connected to live our NAT is open. When a second xbox is turned on the NAT changes between moderate and strict. 
    I've read a lot of posts on the subject of strict NAT but none of them really deal with multiple xboxes.  We've never had a problem with our connection when multiple computers are accessing the internet, only the 360's. 
    Is there a way I can fix this? or are we just running too many boxes and there isn't much we can do? if that's the case can someone recommend a better router to use with 3, 360's? I would certainly appreciate any help we can get.
    Thanks

    My brothers and I have this same issue.  We have 3 xbox 360's and only one can get NAT fully open for one and strict/moderate for the others. Which is correct because port forwarding can only be done for ONE IP address. 
    You can not port forward the same ports to three different IP's.  That defeats the whole purpose.
    Talking to xbox support is useless at best.  So my next call will be to Linksys.  I have scoured the net and only get threads stating the obvious on the issue.
    So, if anyone has more than ONE xbox working behind a router and has OPEN nat on xbox live for ALL of them, please share.

  • How to use multiple configuration files in a web Application

    Hi,
    I am using JDev 11 TP3,JBoss4.2.1,Trindad 1.2.4.
    In my project I have to use a set of (Login) pages over several other projects.
    So I stored those pages (& backing beans) at an external location.
    Now while editing the deployment profile of the web application I included the login pages from external location using "Contributors".
    This way I was able to bring all the resources in the war. But the Faces-config.xml which contains the managed-bean registration of the login pages does not get included.
    1. Either I could change the name of the external faces-config and register it in the current project by includeing it. OR
    2. I could mention the managed-bean info in the current project's faces-config.
    I want to use option 1.
    How may I do it??

    Hi,
    if you package the managed beans in JAR files and add the faces-config.xml in the META-INF directory of it then it automatically registers at runtime
    Frank

  • Having trouble using ExportPDf message file failed to be converted using Adobe ExportPDF online

    need help
    file failed to be converted using Adobe ExportPDF online

    Hi PeterChick,
    Does it occur with all files or a specific file?
    Are you trying to convert from within Reader or from Browser?
    If from Reader then make sure you are signed in within Reader, also try updating Reader to the latest v11.0.09 and check.
    If from Browser then have you checked with a different browser if possible?
    Regards,
    Florence

Maybe you are looking for

  • ABAP dump while executing transaction *PC00_M99_CIPE*

    Hi, Getting ABAP dump while executing transaction PC00_M99_CIPE  ,hence cannot do payroll posting .     Information on where terminated     Termination occurred in the ABAP program "CL_HRFPM_CD_CLOSING_HANDLER===CP" -      in "GET_FM_POS_CHECK_DATA".

  • Oracle 11g liance details

    Hi All We need to install oracle 11 g on developer machines. As this is puarly developement phase which edition need to install ? Oracle 11g personal edition or oracle 11g express edition Installtion need to perform on windows 7 with 64 bit machine (

  • TVARVC table - Infopackage - DTP

    Hi Colleagues, I would like to know how I could use the TVARVC table to make dynamic selection on the infopackage / DTP during data upload ? Thanks,

  • Can not send mail, but do receive mail at a different location

    I am on my way to college now and while staying at a hotel I can connect to the internet using the hotel high speed wired connection at the room. When I try sending mail using my MacBookPro mail application, I can not send any mail, but can however r

  • Does Curve 8520 have GPS

    I have a pink Curve 8250 the software has been updated and the faceook apt has been updated. However it wont let me log into facebook places it comes up with a message saying no GPS support. Iv been told many different stories about why this has happ