Hanging on a newly recorded project "Save as"

We've just started using Captivate2 (v2.0.0) however we've
already bumped into a repeating serious flaw.
After recording a short web based software simulation (135
slides), we attempted to save the project using the usual "Save As"
option and clicked ok.
The file gets created (~7MB) in the target directory,
Captivate shows it's saving and the save bar gets to the end but
then just hangs using 99% CPU. Using the Task manager process
window with I/O read,write and other shown, we can see that no data
is read, written or "other". After a while windows changes the
title bar to "Not Responding". This doesn't change even after
leaving it for 2 hours.
The only option is to end the application.
On attempting to load the saved project, Captivate states
that the project is corrupt and then closes - no storyboard is
displayed.
The machine is a IBM T42 laptop, 1GB RAM, 10GB free HD space
running Windows XP and IE 6.0. The rest of windows XP patches are
uptodate. Laptop screen as primary at 1024x768x16bit and the
secondary external monitor is at 1280x1024x32bit.
This is repeatable and first occured during a 26MB file
(360slide) recording.
Any one else have this experience?

Lynne, a few notes for clarification.
1) You treat my use of the term "thrashing" as though it were
something I just made up. It is a common term descriptive of rapid
and repeated accessing of the hard drive in its efforts to perform
any disk-intensive task, specifically page swapping. The "rev up"
term that you have chosen to use is called "thrashing" among all PC
technicians. To quote Webopedia, one of the most respected online
"technical dictionaries":
quote:
Disk Thrashing:
In systems that use virtual memory, the resulting condition
of a hard drive being used excessively for virtual memory because
the physical memory (i.e., RAM) is full. (The process of moving
data into and out of virtual memory also is called swapping pages.)
Disk thrashing considerably slows down the performance of a system
because data has to be transferred back and forth from the hard
drive to the physical memory.
A sure sign that your computer is thrashing is when an
application stops responding but the disk drive light keeps
blinking on and off. Thrashing is generally caused by too many
processes competing for scarce memory resources. To temporarily
stop thrashing, you need to terminate one or more applications. To
stop it permanently, you need to install more main memory.
2) My reference to Production Studio's install size was
simply to make the point that 10GB "free" space is really very
little - less than is required to install a large program, and
certainly not enough
contiguous free space to facilitate page swapping as would
be automatically invoked as a function of the OS if physical RAM
were not sufficient for the computer's requirements.
3) Of
course you are being argumentative, but not only do I
not mind ... I encourage differing points of view if they
are supported by logic and reason. That's how we all learn.
4) I am aware of Adobe's system requirements. I am also aware
that there is a difference between resources required to run the
application under optimum conditions (often the marketing
departments' idea of a minimum), and those required to run the
application comfortably in a day-after-day development environment.
The answer to your question "
Why would Adobe only recommend less that half of what (I)
do?" is - well, no offense, but their goal is to sell software,
while mine is to use it and advise on it. Adobe isn't lying to you
(exactly) - but neither am I.
I will be greatly surprised if Adobe's "official" answer to
Nick's problem is substantially different than my own ... but like
all of you, I look forward to seeing their comments.

Similar Messages

  • How to assign project specific task with the newly created projects ?

    Hi All,
    I need help. I need to assign project specific tasks (which i will be taking from staging table) other than the default task which are assigned during project creation. How do I proceed with this within same package. I am attaching the code of my package below...
    CREATE OR REPLACE PACKAGE body xxpa_proj_conv_pkg as
    PROCEDURE xxpa_create_project_proc(O_ERRBUF OUT VARCHAR2,O_RETCODE OUT VARCHAR2)
    is
    variables need to derive global parameters
    v_responsibility_id NUMBER; --- PA Supervisor responsibility id
    v_user_id NUMBER;
    deriving global parameters-
    -- Variables needed for API standard parameters
    v_api_version_number NUMBER := 1.0;
    v_commit VARCHAR2(1) := 'F';
    v_return_status VARCHAR2(1);
    v_init_msg_list VARCHAR2(1) := 'F';
    v_msg_count NUMBER;
    v_msg_index_out NUMBER;
    v_msg_data VARCHAR2(2000);
    v_data VARCHAR2(2000);
    v_workflow_started VARCHAR2(1) := 'Y';
    v_pm_product_code VARCHAR2(10);
    ---variables for catching errors---
    v_error_flag number:=0;
    -- Predefined Composite data types
    v_project_in PA_PROJECT_PUB.PROJECT_IN_REC_TYPE;
    v_project_out PA_PROJECT_PUB.PROJECT_OUT_REC_TYPE;
    v_key_members PA_PROJECT_PUB.PROJECT_ROLE_TBL_TYPE;
    v_class_categories PA_PROJECT_PUB.CLASS_CATEGORY_TBL_TYPE;
    v_tasks_in_rec PA_PROJECT_PUB.TASK_IN_REC_TYPE;
    v_tasks_in PA_PROJECT_PUB.TASK_IN_TBL_TYPE;
    v_tasks_out_rec PA_PROJECT_PUB.TASK_OUT_REC_TYPE;
    v_tasks_out PA_PROJECT_PUB.TASK_OUT_TBL_TYPE;
    v_CREATED_FROM_PROJECT_ID varchar2(20);
    v_CARRYING_OUT_ORGANIZATION_ID varchar2(20);
    v_person_id NUMBER;
    v_project_role_type VARCHAR2(20);
    API_ERROR EXCEPTION;
    v_a NUMBER;
    cursor for project in data
    CURSOR cur_project_in_data IS SELECT * FROM XXPA_PROJECT_IN_STG;
    cursor for task data
    CURSOR cur_task_in_data IS SELECT * FROM XXPA_TASK_IN_STG;
    ------------------------Cursors used for validations----------------------------------
    cursor for product code used for validation
    cursor cprc is select distinct PROJECT_RELATIONSHIP_CODE from PA_PROJECT_CUSTOMERS;
    cursor for distribution rule-
    cursor cdr is select DISTRIBUTION_RULE from PA_DISTRIBUTION_RULES;
    cursor for project status code
    cursor cpsc is SELECT PROJECT_STATUS_CODE, PROJECT_STATUS_NAME FROM PA_PROJECT_STATUSES WHERE STATUS_TYPE = 'PROJECT';
    cursor for template/created from project id
    cursor ccpid is select project_id from pa_projects where template_flag='Y';
    BEGIN
    select user_id, responsibility_id into v_user_id, v_responsibility_id
    from PA_USER_RESP_V
    where user_name like 'amit_kumar%'
    and responsibility_name like'PA SupervisorS';
    -- --Fnd_global.apps_initialize(user_id,resp_id, resp_appl_id);
    -- Fnd_global.apps_initialize(v_user_id,v_responsibility_id,275);
    -- -------calling global parameters---
    pa_interface_utils_pub.set_global_info
    p_api_version_number =>v_api_version_number,
    p_responsibility_id =>v_responsibility_id,
    p_user_id =>v_user_id,
    p_msg_count =>v_msg_count,
    p_msg_data =>v_msg_data,
    p_return_status =>v_return_status
    dbms_output.put_line ('Set Global status ->' || v_return_status);
    ----Cursor for PRODUCT RELATED DATA-----------
    FOR REC IN cur_project_in_data LOOP
    -----PASSING VALUES TO THE COMPOSITE DATA TYPE(PROJECT_IN_REC_TYPE)-------
    ----retrieving product code-----
    select lookup_code into v_pm_product_code
    from pa_lookups
    where lookup_type = 'PM_PRODUCT_CODE'
    and meaning = 'Oracle Project Manufacturing';
    -----retrieving and validating created from project id----
    BEGIN
    select project_id
    into v_CREATED_FROM_PROJECT_ID
    from pa_projects_all
    where name=rec.created_from_project_name;
    EXCEPTION
    when others then
    O_Retcode := '1';
    O_Errbuf :='Incorrent CREATED_FROM_PROJECT_NAME';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where created_from_project_name = rec.CREATED_FROM_PROJECT_NAME;
    END;
    -----retrieving & validating carrying out organization id-----
    BEGIN
    select distinct(CARRYING_OUT_ORGANIZATION_ID)
    into v_CARRYING_OUT_ORGANIZATION_ID
    from pa_projects_prm_v
    where CARRYING_OUT_ORGANIZATION_NAME=rec.carrying_out_organization_name;
    EXCEPTION
    when others then
    O_Retcode := '1';
    O_Errbuf :='Incorrent Carrying Out Organization name';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where carrying_out_organization_name = rec.carrying_out_organization_name;
    END ;
    v_project_in.pm_project_reference := rec.segment1;
    v_project_in.project_name := rec.PROJECT_NAME;
    v_project_in.created_from_project_id := v_CREATED_FROM_PROJECT_ID;
    v_project_in.carrying_out_organization_id := v_CARRYING_OUT_ORGANIZATION_ID;
    v_project_in.project_status_code := rec.PROJECT_STATUS_CODE;
    v_project_in.description := rec.PROJECT_DESCRIPTION;
    v_project_in.start_date := rec.PROJECT_START_DATE;
    v_project_in.completion_date := rec.PROJECT_COMPLETION_DATE;
    v_project_in.distribution_rule := rec.DISTRIBUTION_RULE;
    v_project_in.project_relationship_code := rec.PROJECT_RELATIONSHIP_CODE;
    -------------------------Validation of incoming project data--------------------------------
    v_error_flag := 1;
    project relationship code validation
    BEGIN
    for prc in cprc
    loop
    if (rec.PROJECT_RELATIONSHIP_CODE=prc.PROJECT_RELATIONSHIP_CODE) or (rec.PROJECT_RELATIONSHIP_CODE is null)--can be overridden from template
    then
    v_error_flag :=0;
    else null;
    end if;
    end loop;
    END;
    project distribution rule validation
    BEGIN
    for dr in cdr
    loop
    if (rec.DISTRIBUTION_RULE=dr.DISTRIBUTION_RULE) or (rec.DISTRIBUTION_RULE is null) null since the value can be taken from template too
    then
    v_error_flag :=0;
    else null;
    end if;
    end loop;
    END;
    project status code validation
    BEGIN
    for sc in cpsc
    loop
    if (rec.PROJECT_STATUS_CODE=sc.PROJECT_STATUS_CODE) or (rec.PROJECT_STATUS_CODE is null) null since the value can be taken from template too
    then
    v_error_flag :=0;
    else null;
    end if;
    end loop;
    END;
    dbms_output.put_line ('Error at PROJECT_STATUS_CODE>' ||v_error_flag);
    validation logic for project start date
    BEGIN
    if TRUNC(rec.PROJECT_START_DATE) >= TRUNC(rec.PROJECT_COMPLETION_DATE)
    THEN
    v_error_flag := 1;
    O_Retcode := '1';
    O_Errbuf :='Project start date cannnot be greater than completion date';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    END IF;
    END;
    validation logic for project completion date
    BEGIN
    if (TRUNC(rec.PROJECT_COMPLETION_DATE)<=TRUNC(rec.PROJECT_START_DATE))
    then
    if ( rec.PROJECT_STATUS_CODE='CLOSED' and rec.PROJECT_COMPLETION_DATE>sysdate)
    THEN
    v_error_flag := 1;
    O_Retcode := '1';
    O_Errbuf :='completion date cannot be greater than sysdate for closed projects';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    END IF;
    v_error_flag := 1;
    O_Retcode := '1';
    O_Errbuf :='Project closed date cannot be less than start date';
    end if;
    END;
    --------Update staging table for the error records--------
    BEGIN
    if v_error_flag =1
    then
    O_Retcode := '1';
    O_Errbuf :='Incorrect project relationship code';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where PROJECT_RELATIONSHIP_CODE = rec.PROJECT_RELATIONSHIP_CODE;
    end if;
    END;
    -----------------------End of validation of incoming project data----------------------------------
    ---------------Project Task DATA-----------------
    v_a:=0;
    FOR tsk IN cur_task_in_data LOOP
    v_tasks_in_rec.pm_task_reference :=tsk.task_reference ;
    v_tasks_in_rec.task_name :=tsk.task_name;
    v_tasks_in_rec.pm_parent_task_reference :=tsk.parent_task_reference ;
    v_tasks_in_rec.task_start_date :=tsk.task_start_date ;
    v_tasks_in_rec.task_completion_date :=tsk.task_completion_date ;
    v_tasks_in(v_a) := v_tasks_in_rec;
    v_a:=v_a+1;
    end loop;
    ---------------end of task details------------------
    --INIT_CREATE_PROJECT
    pa_project_pub.init_project;
    ---------------------CREATE_PROJECT--------------------------
    pa_project_pub.create_project(
    p_api_version_number=> v_api_version_number,
    p_commit => v_commit,
    p_init_msg_list => v_init_msg_list,
    p_msg_count => v_msg_count,
    p_msg_data => v_msg_data,
    p_return_status => v_return_status,
    p_workflow_started => v_workflow_started,
    p_pm_product_code => v_pm_product_code,
    p_project_in => v_project_in,
    p_project_out => v_project_out,
    p_key_members => v_key_members,
    p_class_categories => v_class_categories,
    p_tasks_in => v_tasks_in,
    p_tasks_out => v_tasks_out);
    if v_return_status = 'S'
    then
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET INTERFACE_STATUS ='Success' where segment1 = v_project_out.pa_project_number; ---P->pending & S-> Success
    dbms_output.put_line('New Project Id: ' || v_project_out.pa_project_id);
    dbms_output.put_line('New Project Number: ' || v_project_out.pa_project_number);
    else
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET INTERFACE_STATUS ='Pending' where segment1 = v_project_out.pa_project_number;
    raise API_ERROR;
    end if;
    END LOOP;
    Commit;
    ------Handling Exception--------
    EXCEPTION
    WHEN api_error THEN
    dbms_output.put_line('An error occured during project creation');
    IF (v_msg_count > 0 ) THEN
    FOR i IN 1..v_msg_count LOOP
    apps.PA_INTERFACE_UTILS_PUB.get_messages(
    p_msg_count => v_msg_count,
    p_encoded => 'F',
    p_msg_index => i,
    p_msg_data => v_msg_data,
    p_data => v_data,
    p_msg_index_out => v_msg_index_out);
    dbms_output.put_line('Error message v_data ->'||v_data);
    dbms_output.put_line('Error message v_msg_data ->'||v_msg_data);
    dbms_output.put_line('Error message v_msg_index_out ->'||v_msg_index_out);
    dbms_output.put_line('Error message p_msg_index ->'||i);
    APPS.fnd_file.put_line(APPS.FND_FILE.LOG,v_data);
    END LOOP;
    END IF;
    WHEN OTHERS THEN
    dbms_output.put_line('An error occured during conversion, SQLCODE ->'|| SQLERRM);
    IF (v_msg_count >=1 ) THEN
    FOR i IN 1..v_msg_count LOOP
    PA_INTERFACE_UTILS_PUB.get_messages(
    p_msg_count => v_msg_count,
    p_msg_index => i,
    p_encoded => 'F',
    p_msg_data => v_msg_data,
    p_data => v_data,
    p_msg_index_out => v_msg_index_out);
    dbms_output.put_line('Error message ->'||v_data);
    APPS.fnd_file.put_line(APPS.FND_FILE.LOG,v_data);
    END LOOP;
    END IF;
    end; --end procedure
    END xxpa_proj_conv_pkg;
    * Please tell me how to assign project specific task with the newly created projects??? *
    Also please tell me how to assign multiple * Project_Relationship_Code * (ex: END CLIENT, GENERAL CONTRACTOR, PRIMARY) for a particular project during project creation?

    Are you not storing the project number in the staging table designed for storing the task data? You can use create_project API to create the project and tasks at the same time with one single call. You may want to try that option

  • Forms Hang on saving a record.

    Dear All Experts,
    We have OAS 10g 10.1.2.0.2 and Orcle DB 9i on seprated win server 2003.
    A couple of users suddenly face a Forms Hang problem while they try to save the record. it's not occuring on all time but when it occurs they have to re-login.
    On the login again it works filne.
    Would you please guide us to resolve this problem.
    Thanks & Regards
    Eidy

    Thats a little complicated.
    In general there are two possibilities to do:
    1. Replace the ""standard" DML-operations of forms by your own operations. This is done by using the ON-INSERT, ON-UPDATE and ON-DELETE-triggers in forms, so its a client-side operation.
    2. Base the block on a view instead of a table, let forms do its standard DML-operations and do your own operations on INSTEAD-OF-triggers on the view, this is the server-side operation.
    Personally, i prefer the second option, for it keeps the business-logic in the database and the client-side "thin".
    Implementing the first method:
    Forms marks as record for the next DML when you change any relevant item. A relevant item in this sense is one of the basetable-items, or a non-databaseitem, which in turn changes a databaseitem. You can also set the property "Lock Record" on a non-database-item to "Yes" (thats what you have to do). If a record is marked that way, forms automatically tries to lock the record. So you would also have to create an ON-LOCK-trigger on the block and do your own lock in it. And last, put your DML-operations inside the ON-UPDATE, ON-INSERT and ON-DELETE-triggers

  • Logic hanging 10 seconds every time I save

    Logic is hanging 10 seconds every time I save. There is a 5 second pause from when I hit cmd S to when the beach ball appears, after which point it is another 5 seconds before the save is complete. It's strange because I recently added a Glyph 1TB HD, which I thought would make my project blazing fast. I am using the FW400 through port on my Presonus Firestudio Tube. Could that be the problem? I tried the FW800 port on the Mac and that cause my audio interface to crash when Logic started up. Any thoughts?

    Thanks for your reply. I switched the external drive connection to the FW400 port on the back of the Mac, instead of daisy chaining it through my audio interface. It seems to be working OK for now. We'll see. I also had my buffer at 32. Oops. That, of course, should make a huge difference, as I am just editing at this point. Over the past week I've had many times when I think I've figured it out, only to have the problem come back again. I'll keep your suggestion in mind, as I, too, have not had issues like this with my internal drives.

  • Some text caption prefs not reflected in recorded project

    In Captivate 5:
    Among others, I have set the following preferences prior to recording:
    Font size: 12pt
    Vertical alignment: Top
    Display for: Rest of slide
    The text captions in the resulting recording show the following:
    Font size: 19pt
    Vertical alignment: Middle
    Display for: Specific time
    Any ideas as to why some of the text caption prefs are not being applied to the recording (while some are)?
    Many thanks.

    Absolutely. Here are screen captures to clarify:
    Settings in Prefs and Object Style Manager prior to recording:
    Properties of text caption in resulting recorded project (notice some settings match while the three identified [Size, Vertical alignment, and Display for] do not):

  • Project Professional 2010 and pwa hangs when opening a linked project from PWA on Project Server 2010

    When I open a linked project in Project Professional 2010 from PWA, Project Professional 2010 hangs with the "Links Between Projects ..." dialog box open.  Unable to move or close the dialog box.  Unable to move or close Project Professional
    2010.  The PWA tab on internet explorere is frozen and unable to access although other tabs in IE are accessible.  End up having to reboot to close down project or force the process to end.  I suspect a hidden dialog box is the culprit maybe
    the scheduling conflict dialog box but am unable to access or switch and cannot confirm that there is another dialog box.
    Has anybody else experienced this problem?
    Thanks,
    Julie

    I have seen it hang when trying to open a project schedule even with no external links.
    Project 2013 Pro, Link to schedule is on a PWA on a Project 2007 server.
    If Project 2013 is open before clicking on the link, there is a long delay and the project schedule opens up in the web tab where the link was selected. If Project 2013 is not open, it just hangs and has to be shut down via the task manager.
    No idea why. I can create a link to the shared volume and that works OK. But if I actually try to open MS Project by clicking on the link to a .mpp file it never opens in MS Project.
    Mike

  • How can you create a voice recording and save it as an mp3?

    I want to create a voice recording and save it as an mp3.  How can I do that on the MAC?  Right now I can only think of recording the voice in iMovie, but it does not have a choice to save as an mp3.

    Rather that iMovie, you may want to check our Audacity.
    It's a free, open-source audio editor and recorder.
    You can easily save a recording as an MP3.
    http://audacity.sourceforge.net/
    Matt

  • How to insert a sound recording and save it to iTunes?

    How to insert a sound recording and save it to iTunes?
    I have 5 voice recording on my iPhone, but the fifth was not detected on iTunes.So i can't sync

     
    Hi,
    According to my analysis, for Digital Signatures: Adobe has changed the behavior around digital signatures and SharePoint-hosted PDF files. Now, when digitally signing a SharePoint-hosted PDF file, it will be saved directly to SharePoint if that PDF file
    is already checked out. If not, the user will be prompted to check it out. When digitally signing a SharePoint-hosted PDF file in Acrobat X, Version 10.0, the user would be prompted to save that file locally and would then need to upload it separately to SharePoint
    as a new version.
    I suggest that you use Acrobat X, then check the result. For more information about Acrobat X, please refer to
    http://blogs.adobe.com/pdfitmatters/2011/06/whats-new-in-acrobat-x-version-10-1.html
    In addition, you can also consider the following third-party tool:
    http://www.arx.com/digital-signature/sharepoint
    Thanks,
    Rock Wang

  • Premiere Elements 7 project save error and compatibility error on Win 7

    I have installed Premiere Elements 7 on a Win 7 32 bit os HP8000 desktop.  When I try to save a project to H: drive on a Novell server, I get a "project save error".  You can save fine to the desktop, but not to the H: drive.  If you try to open a Premiere Elements 7 file (on the Win 7 machine) that was created on a WinXP machine with the same Premiere Elements 7 program, you get "Projects created with adobe premiere pro and adobe premiere elements are not compatible. Please use the appropriate application to open this project."
    Help please.  Thanks.

    Solved.  The problem was to do with the Novell Client.  I installed the latest version (Client 2 sp1 ir4 for Win 7) and that solved the problem.
    fyi and thanks
    Patty

  • File path recorded with "Save As" Action is fixed?

    I am trying to create an action that will save the open file to a JPG (Quality 9, Matte: None), always in the same folder that it came from, as it does when this is performed manually. (The preference to Save As to the Original Folder is enabled).
    What I am finding is that when the action is recorded, the path to the folder at the time is fixed in the action, effectively rendering it useless for further saves of files opened in different folders.
    Is it possible not to save a path when recording the Save As action or make it variable so that adopts the folder that would have been chosen had the command been invoked manually?
    TIA, Joel.
    Photoshop Mac CS5
    Mac OS X 10.6.4
    MacBook Pro 17" 2.4GHz/4GB/320GB

    So it looks like PS cannot automate a manual process in this case though it would be very desirable for it to do so and has all the information necessary for the task.
    I may not quite follow as I browsed the thread rather superficially, but Scripting may be useful in this case.
    You could try this JavaScript (save as a jsx-File in ExtendScript Toolkit into the application’s Scripts-folder).
    But be warned: This would overwrite existing jpgs of the same name without prompting.
    // saves jpg into same folder;
    // be advised: this  overwrites existing jpgs of the same name without prompting.
    // 2010, use it at your own risk;
    #target photoshop;
    if (app.documents.length > 0) {
    var thedoc = app.activeDocument;
    // getting the name and location;
    var docName = thedoc.name;
    if (docName.indexOf(".") != -1) {var basename = docName.match(/(.*)\.[^\.]+$/)[1]}
    else {var basename = docName};
    // getting the location, if unsaved save to desktop;
    try {var docPath = thedoc.path}
    catch (e) {var docPath = "~/Desktop"};
    // jpg options;
    var jpegOptions = new JPEGSaveOptions();
    jpegOptions.quality = 9;
    jpegOptions.embedColorProfile = true;
    jpegOptions.matte = MatteType.NONE;
    //save jpg as a copy:
    thedoc.saveAs((new File(docPath+'/'+basename+'.jpg')),jpegOptions,true);
    //that’s it; thanks to xbytor;

  • How to create PDF from data grid selected row records and save in local PC

    ok now i am need another help ;
    i am having one datagrid and one button outside the grid ,
    i   am having one datagrid in that i am having 5 records if i click a   record from the datagrid then click that button means that particular   record will save as PDF in my local PC.
    How to do that,
    Any suggession or examples.
    Thanks in advance
    B.venkatesan.

    <cfdocument>
    Usage is described in the cfml reference manual.  If you don't have one, the internet does.

  • Encountering a "Project Save Error"

    Hello -
    I'm running Adobe's Creative Suite on a MBP with OSX 10.8.2. Since installing CS6, I've encountered the following problem with Adobe Premiere Pro: whenever I attempt to save the project, I get a "project save error" telling me I need to choose "save as" and save the project to another location. I can save another version of the project to any location, including the location where the original file is saved. This is a hassle, since it leads to several versions of a project sitting in one location. Does anyone have a way around this? So far, I've tried fixing disk permissions, uninstalling/reinstalling Premiere Pro, and saving to MacHD instead of my external hard drive, all with no success. I am attaching a screen shot of the error message in hopes that it helps. Thanks for your help,
    Steve

    Over in the Windows world, running the program as Administrator (NOT the same as using an Admin account) sometimes fixes permission errors... http://forums.adobe.com/thread/969395
    I have NO idea how this is done in the Mac world... or if it is needed... but a couple of saved links may help
    Mac and Root User http://forums.adobe.com/thread/879931 -and http://forums.adobe.com/thread/940869?tstart=0

  • Display message when record is save in table

    Hello,
    How can i display message as "Record Save" when record successfully save into table.
    I have created a form and take one save button, when values fill up in the textboxes and SAVE button pressed record is successfully inserted in the table then
    but how can i display popup window that "Record is save".
    Thanks in advance.

    Hi,
    your page process can have a "success message" which will be displayed after this process has finished and the page is freshly displayed (if your branch doesn't filter the process success message).
    This would be the easiest way to display "Record is save", if you want to do this in a Popup (which is oldskool...) then you can add some javascript code to your process success message.
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at

  • Record level save button

    Hello everyone.
    I'm using jDev 11.1.2.1.0
    I have a table in which I have to add another one column at the end with one button.
    So, If there are 15 records shown, there will be 15 buttons at the end of each record.
    Button's functionality should be to save only the changes that correspond to the button's record. A record level save button.
    How is this possible to be achieved? Do you have any advice?
    Thanks a lot
    ~apostolos

    apostolosk wrote:
    Hello everyone.
    I'm using jDev 11.1.2.1.0
    I have a table in which I have to add another one column at the end with one button.
    So, If there are 15 records shown, there will be 15 buttons at the end of each record.
    Button's functionality should be to save only the changes that correspond to the button's record. A record level save button.
    How is this possible to be achieved? Do you have any advice?
    Thanks a lot
    ~apostolosI would say instead of allowing editing in table give a button called EDIT which takes you to bounded task flow with Single record in a FORM and give Commit button there which will take back to table view of records.
    providing SAVE button with every record will be confusing to users as they could forgot to click Save button with every record result lost transaction.
    Zeeshan

  • Premiere Pro Project Save Error

    configuration: windows 7 64bit; Adobe Master Collection CS4; Windows Domain 2003; Mandatory roaming profile for student account. Students save work on a network share specific to their username (having full control of said folder).
    issue: when opening an existing adobe premiere pro project, they can make changes, render, export etc. but when they click file->save it give an error:
    Project Save Error
    Could not open the project file with write access. The file may be locked or you may not have permission to write to this location. Select 'Save As' from the File menu to save the project to a new location.
    If we do select the save as option, we can save the file to the same directory from which the original project was opened (with a different filename of course). I believe this might be an issue with a temporary / cache location premiere pro is using but  I have been unsuccessful in finding any information on the temp locations and how it saves the working files.

    In general, PPro is not really designed for a multi-user setup... or for networking
    PPro really runs best when the "owner" is the Administrator... which I don't think you can do for students
    Maybe someone else will come along with other information (I am just a standalone user) but I've seen a LOT of similar messages, and don't remember any solution other than running as Administrator, with files on a local (not network) computer

Maybe you are looking for

  • Music stops playing but Music app still shows as playing

    My wife's 4S keeps having problems while playing music. The sound will stop, but the Music app shows it is still playing. I don't really know what to even try to do to fix this. I may try restoring it. Might be a hardware issue. Any others have this

  • FI error while posting one document

    While posting the document(501 - gr w/o PO), i'm getting the error: "Account determination requires an CO object" I've maintained the material master with costing view and also assigned profit center. I Belive in  Obyc t-code, -- in GBB -- in general

  • Resize Time Machine sparsebundle size in Disk Utility

    I have two MacBooks backing up to a 500GB Time Capsule. Each has a sparsebundle on the Time Capsule that seem to have maximum sizes of the entire disk. Can I resize each sparsebundle in Disk Utility to something smaller, say 100GB, by simply dragging

  • Die Seriennummer wurde gesperrt...

    Warum wurde die Seriennummer wurde gesperrt? Laut Rücksprache mit dem Lieferant sollte die Nummer frei sein.

  • Zen Micro Problem...Any ide

    Well, I've had my zen micro just under a year...and i use it a lot.. but recently its been playing up a bit... I think the battery life is a bit shorter, but the main problem is that a lot of the time it only plays out of one headphone or doesn't pla