Export data from forms to excel

HI
In my application im trying to export data from forms to excel.Everything works fine.First of all im using get_file_name for selecttion of file and passing it to ole2 package as follows
FILENAME := GET_FILE_NAME(File_Filter=> 'XLS Files (*.xls)|*.xls|',dialog_type=>SAVE_FILE);
     ARGS:=OLE2.CREATE_ARGLIST;
     oLE2.ADD_ARG(ARGS,Filename);
     OLE2.INVOKE(WORKSHEET,'SAVEAS',ARGS);
The problem is if i select an existing file the get_file_name itself raises one message ".....file already exists Replace an existing file?"
Similarly the excel also also raises the same message "".....file already exists Replace an existing file?".I want to suppress atleast one of them? Could anyone help for this problem?
appreciate ur help
THANKS

Looks like...
ole2.set_property( ex_app, 'DisplayAlerts', false );
where "ex_app" variable Excel Application -
     ex_app:=     ole2.create_obj('Excel.Application');
and more Question:
When i close excel app - in process viewer i see "excel.exe"
ole2.release_obj don't work :(

Similar Messages

  • Exporting Data from Forms to Excel

    Hi,
    How can I export the data from Forms to Excel like which Export function in the Oracle Applications.
    Thank you,
    Voon

    Hello,
    By using dde package you can export the data from Form to Excel. Here is the sample code which i have used. you can write this code in the when_button_pressed trigger.
    declare
    appl_name varchar2(255);
    channel_id pls_integer;
    application_id pls_integer;
    x number;
    y number;
    V_TIME VARCHAR2(30);
    begin
    if :global.application_id is not null then
    message('Application already open');
    else
    appl_name := 'c:\program files\microsoft office\office\excel.exe';
    :global.application_id := dde.app_begin(appl_name,dde.app_mode_normal);
    end if;
    if :global.channel_id is not null then
    message('Communication channel already established.');
    elsif :global.application_id is null then
    message('Application must be launched first.');
    else
    :global.channel_id := dde.initiate('excel','book1');
    end if;
    DDE.POKE(:global.channel_id,'R1C1','Col1 Heading',DDE.CF_TEXT,1000);
    DDE.POKE(:global.channel_id,'R1C2','Col2 Heading',DDE.CF_TEXT,1000);
    DDE.POKE(:global.channel_id,'R1C3','Col3 Heading',DDE.CF_TEXT,1000);
    FIRST_RECORD;
    X := No of Records;
    for y in 2..x
    loop
    launch_excel is a program unit--
    launch_excel(y,:global.channel_id,:block.item1,:block.item2,::block.item3);
    next_record;
    end loop;
    FIRST_RECORD;
    EXCEPTION
    WHEN DDE.DDE_APP_FAILURE THEN
    MESSAGE('Could not launch application for DDE operations.');
    RAISE FORM_TRIGGER_FAILURE;
    WHEN DDE.DDE_INIT_FAILED THEN
    MESSAGE('Could not initialize DDE communication channel.');
    RAISE FORM_TRIGGER_FAILURE;
    WHEN DDE.DMLERR_NO_CONV_ESTABLISHED THEN
    MESSAGE('Could not establish DDE communication channel.');
    RAISE FORM_TRIGGER_FAILURE;
    WHEN OTHERS THEN
    MESSAGE('Error: '| |TO_CHAR(SQLCODE)| |' '| |SQLERRM);
    RAISE FORM_TRIGGER_FAILURE;
    END;
    LAUNCH_EXCEL
    PROCEDURE LAUNCH_EXCEL(
    y in number,
    channel_id pls_integer,
    param1 varchar2,
    param2 VARCHAR2,
    param3 varchar2) IS
    v_rowno varchar2(20) := 'R'| |y;
    BEGIN
    dde.poke(channel_id,v_rowno| |'C1',col1,dde.cf_text,2000);
    dde.poke(channel_id,v_rowno| |'C2',col2,dde.cf_text,2000);
    dde.poke(channel_id,v_rowno| |'C3',col3,dde.cf_text,2000);
    EXCEPTION
    when others then
    message('Error --'| |sqlcode| |sqlerrm);
    message('Error --'| |sqlcode| |sqlerrm);
    raise form_trigger_failure;
    END;
    null

  • Exporting Data from Essbase to Excel

    Hi All,
    We are using classic planning application developed in Hyperion 11.1.2.2.
    Is there any way that we can export data from Essbase to Excel (Please note that i don't want to do it on server machine where essbase is installed, instead i want it on any client PC which is accessing Essbase)

    there are many ways you can do that, Through Excel Add-in,SmartView functions etc different.
    It depends on the requirement , if you mean to say who Essbase Data then someone else should be able to answer this.
    Thanks
    Amith

  • Export data from block to excel.

    Hi
    Does anybody know how I can export data from oracle forms to an excel worksheet. I need to provide a direct interface for a user where he fetches the data into the block and by just click a button the data from the block should go to an excel sheet.
    Thanks in advance
    -Samsam

    Something along the following lines should help you in you are Client/Server. If you're on the Web then make sure you have WebUtil set up and add "CLIENT_" to all the OLE2 calls.
    PROCEDURE P_EXCEL IS
         application ole2.Obj_Type;
         workbooks ole2.Obj_Type;
         workbook ole2.Obj_Type;
         worksheets ole2.Obj_Type;
         worksheet ole2.Obj_Type;
         args ole2.List_Type;
         cell ole2.Obj_Type;
         j INTEGER;
         k INTEGER;
         file_name_cl VARCHAR2(32767);
         item_prompt VARCHAR2(32767);
    user_cancel EXCEPTION;
    BEGIN
    -- open the java save file dialogue box
    file_name_cl := GET_FILE_NAME('H:\', 'file_name.xls', 'XLS Files (*.xls)|*.xls|', NULL, SAVE_FILE, TRUE);
    file_name_cl := SUBSTR(file_name_cl,1,LENGTH(file_name_cl));
    IF file_name_cl IS NULL THEN
    RAISE user_cancel;
    END IF;
    application := ole2.create_obj('Excel.Application');
    workbooks := ole2.Get_Obj_Property(application, 'Workbooks');
    workbook := ole2.Invoke_Obj(workbooks, 'Add');
    worksheets := ole2.Get_Obj_Property(workbook, 'Worksheets');
    worksheet := ole2.Invoke_Obj(worksheets, 'Add');
    go_block('EXPORT_BLOCK');
    first_record;
    j:=1; /* Represents row number */
    k:=1; /* Represemts column number */
    /* Add the column headings using item prompts */
         FOR k IN 1..10 /* Block has 10 visible columns */
    LOOP
    item_prompt := get_item_property(:SYSTEM.CURRENT_BLOCK||'.'||:SYSTEM.CURRENT_ITEM, prompt_text);
    args:=ole2.create_arglist;
    ole2.add_arg(args, j);
    ole2.add_arg(args, k);
    cell:=ole2.get_obj_property(worksheet, 'Cells', args);
    ole2.destroy_arglist(args);
    ole2.set_property(cell, 'Value', item_prompt);
    ole2.release_obj(cell);
    next_item;
    END LOOP;
    j:=j+1; /* Add to rowcount so that data won't overwrite column headings! */
    LOOP
    /* Add in all the data */
    FOR k IN 1..10 /* Block has 10 visible columns */
    LOOP
    IF NOT name_in(:system.cursor_item) IS NULL THEN
    args:=ole2.create_arglist;
    ole2.add_arg(args, j);
    ole2.add_arg(args, k);
    cell:=ole2.get_obj_property(worksheet, 'Cells', args);
    ole2.destroy_arglist(args);
    ole2.set_property(cell, 'Value', name_in(:system.cursor_item));
    ole2.release_obj(cell);
    END IF;
    next_item;
    END LOOP;
    j:=j+1;
    IF :system.last_record = 'TRUE' THEN
         exit;
    ELSE
         next_record;
    END IF;
    END LOOP;
         ole2.Release_Obj(worksheet);
         ole2.Release_Obj(worksheets);
         /* Save the Excel file created */
         args := ole2.Create_Arglist;
         ole2.Add_Arg(args, file_name_cl);
         ole2.Invoke(workbook, 'SaveAs', args);
         ole2.Destroy_Arglist(args);
         /* release workbook */
         ole2.Release_Obj(workbook);
         ole2.Release_Obj(workbooks);
         /* Release application */
         ole2.Invoke(application, 'Quit');
         ole2.Release_Obj(application);
    EXCEPTION
    WHEN user_cancel THEN
         RAISE;
    END;

  • Can not export data from form tracker

    Hi there,
         I have set up a lovely form for collecting data. It all comes into the Adobe Tracker and the Responses file fine.
         What i wish to do is export data from the responses file into another format. I should be able to do it from the Export button on the left but it is 'blanked out' and does nothing if I push it. I can't find any details on here or the internet relating to this. And yes, there is data in the file to export .
    Hoping you can help.
    Many thanks in advance.

    I have the same problem but... I created two forms for two separate purposes and have had responses to both.
    One of them allows me to export the data and the other does not.
    Does anyone out there have an answer for this seemingly random anomoly?
    Regards
    Sydman

  • Unable to Export data from Forms in 11.5.10.2

    Hi All,
    When I am trying to export data from a Form, the output is not appearing on my desktop to save or view for further processing. When I click on File-->Export link, a screen appears for a fraction of second and then disappears automatically.
    And it is generating the below error file in my desktop.
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x006e0065, pid=4988, tid=3864
    # JRE version: 6.0_29-b11
    # Java VM: Java HotSpot(TM) Client VM (20.4-b02 mixed mode, sharing windows-x86 )
    # Problematic frame:
    # C 0x006e0065
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x033a1c00): JavaThread "AWT-Windows" daemon [_thread_in_native, id=3864, stack(0x00960000,0x00a60000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0x006e0065
    Registers:
    EAX=0x070bf4d0, EBX=0x00000001, ECX=0x034a7a30, EDX=0x00000004
    ESP=0x00a5fae0, EBP=0x00a5fb0c, ESI=0x033a1d28, EDI=0x034a7a30
    EIP=0x006e0065, EFLAGS=0x00010293
    Top of Stack: (sp=0x00a5fae0)
    0x00a5fae0: 6d09ccc0 00a5fb74 6d09c780 00000000
    0x00a5faf0: 00000000 00000001 033a1d28 00a5fae4
    0x00a5fb00: 00a5fb90 6d0c0628 00000001 00a5fb38
    0x00a5fb10: 7e418734 001002d0 0000981a 034a7a30
    0x00a5fb20: 00000000 6d09c780 dcbaabcd 00000000
    0x00a5fb30: 00a5fb74 6d09c780 00a5fba0 7e418816
    0x00a5fb40: 6d09c780 001002d0 0000981a 034a7a30
    0x00a5fb50: 00000000 00a5fc34 00a5fc2c 005de248
    Instructions: (pc=0x006e0065)
    0x006e0045:
    [error occurred during error reporting (printing registers, top of stack, instructions near pc), id 0xc0000005]
    Register to memory mapping:
    EAX=0x070bf4d0 is an unknown value
    EBX=0x00000001 is an unknown value
    ECX=0x034a7a30 is an unknown value
    EDX=0x00000004 is an unknown value
    ESP=0x00a5fae0 is pointing into the stack for thread: 0x033a1c00
    EBP=0x00a5fb0c is pointing into the stack for thread: 0x033a1c00
    ESI=0x033a1d28 is an unknown value
    EDI=0x034a7a30 is an unknown value
    Stack: [0x00960000,0x00a60000], sp=0x00a5fae0, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x006e0065
    C [USER32.dll+0x8734] GetDC+0x6d
    C [USER32.dll+0x8816] GetDC+0x14f
    C [USER32.dll+0x89cd] GetWindowLongW+0x127
    C [USER32.dll+0x8a10] DispatchMessageW+0xf
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.awt.windows.WToolkit.eventLoop()V+0
    j sun.awt.windows.WToolkit.run()V+52
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x07294400 JavaThread "SysExecutionThead" daemon [_thread_blocked, id=328, stack(0x04830000,0x04880000)]
    0x0351e400 JavaThread "AWT-EventQueue-3" [_thread_blocked, id=4484, stack(0x046f0000,0x04740000)]
    0x06f3a400 JavaThread "Flush Queue" [_thread_blocked, id=5560, stack(0x0a530000,0x0a580000)]
    0x073b5400 JavaThread "Thread-20" [_thread_in_native, id=3872, stack(0x09f40000,0x09f90000)]
    0x06dc1400 JavaThread "CursorIdler" [_thread_blocked, id=2808, stack(0x09ef0000,0x09f40000)]
    0x07079c00 JavaThread "TaskScheduler timer" [_thread_blocked, id=2824, stack(0x09ea0000,0x09ef0000)]
    0x070bc400 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=5280, stack(0x045b0000,0x04600000)]
    0x07607400 JavaThread "Busy indicator" daemon [_thread_blocked, id=4924, stack(0x09e50000,0x09ea0000)]
    0x034f7c00 JavaThread "Forms-StreamMessageReader" [_thread_blocked, id=3856, stack(0x07960000,0x079b0000)]
    0x06d18400 JavaThread "thread applet-oracle.forms.engine.Main-3" [_thread_in_native, id=640, stack(0x07910000,0x07960000)]
    0x02ceb400 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=1568, stack(0x04880000,0x048d0000)]
    0x034e2c00 JavaThread "thread applet-oracle/apps/fnd/formsClient/FormsLauncher.class-2" [_thread_blocked, id=5788, stack(0x04790000,0x047e0000)]
    0x033dac00 JavaThread "Applet 4 LiveConnect Worker Thread" [_thread_blocked, id=4080, stack(0x047e0000,0x04830000)]
    0x034d8000 JavaThread "Thread-14" [_thread_in_native, id=5068, stack(0x04740000,0x04790000)]
    0x034da000 JavaThread "LPR" [_thread_blocked, id=2720, stack(0x046a0000,0x046f0000)]
    0x034dd400 JavaThread "Thread-12" [_thread_blocked, id=5720, stack(0x044e0000,0x04530000)]
    0x0345e400 JavaThread "AWT-EventQueue-1" [_thread_blocked, id=4848, stack(0x04650000,0x046a0000)]
    0x0345d400 JavaThread "TimerQueue" daemon [_thread_blocked, id=4800, stack(0x04600000,0x04650000)]
    0x03413800 JavaThread "thread applet-unitask.localPrint.clientAppletLauncher-1" [_thread_blocked, id=3184, stack(0x043f0000,0x04440000)]
    0x033ea000 JavaThread "JVM[id=0]-Heartbeat" daemon [_thread_blocked, id=5900, stack(0x04490000,0x044e0000)]
    0x033e6c00 JavaThread "AWT-EventQueue-2" [_thread_blocked, id=3036, stack(0x04440000,0x04490000)]
    0x033e4c00 JavaThread "Applet 3 LiveConnect Worker Thread" [_thread_blocked, id=5652, stack(0x03790000,0x037e0000)]
    0x033dd800 JavaThread "Browser Side Object Cleanup Thread" [_thread_blocked, id=1008, stack(0x043a0000,0x043f0000)]
    0x033d7000 JavaThread "Windows Tray Icon Thread" [_thread_in_native, id=4576, stack(0x03920000,0x03970000)]
    0x033d5000 JavaThread "CacheCleanUpThread" daemon [_thread_blocked, id=4136, stack(0x038d0000,0x03920000)]
    0x033ae400 JavaThread "CacheMemoryCleanUpThread" daemon [_thread_blocked, id=3632, stack(0x03880000,0x038d0000)]
    0x033a8400 JavaThread "SysExecutionTheadCreator" daemon [_thread_blocked, id=4468, stack(0x03330000,0x03380000)]
    0x033a5c00 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=4164, stack(0x037e0000,0x03830000)]
    =>0x033a1c00 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3864, stack(0x00960000,0x00a60000)]
    0x033a0400 JavaThread "AWT-Shutdown" [_thread_blocked, id=2668, stack(0x03640000,0x03690000)]
    0x0339f000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2840, stack(0x035f0000,0x03640000)]
    0x02d84800 JavaThread "Java Plug-In Pipe Worker Thread (Client-Side)" daemon [_thread_in_native, id=5160, stack(0x035a0000,0x035f0000)]
    0x02da6000 JavaThread "Timer-0" [_thread_blocked, id=3064, stack(0x032e0000,0x03330000)]
    0x02d4d400 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=4168, stack(0x031e0000,0x03230000)]
    0x02d39000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1560, stack(0x02fb0000,0x03000000)]
    0x02d34000 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=6076, stack(0x02f60000,0x02fb0000)]
    0x02d31800 JavaThread "Attach Listener" daemon [_thread_blocked, id=5804, stack(0x02f10000,0x02f60000)]
    0x02d30400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1996, stack(0x02ec0000,0x02f10000)]
    0x02d29800 JavaThread "Finalizer" daemon [_thread_blocked, id=3760, stack(0x02e70000,0x02ec0000)]
    0x02d28000 JavaThread "Reference Handler" daemon [_thread_blocked, id=2708, stack(0x02e20000,0x02e70000)]
    0x00888000 JavaThread "main" [_thread_blocked, id=4944, stack(0x00910000,0x00960000)]
    Other Threads:
    0x02cec000 VMThread [stack: 0x02dd0000,0x02e20000] [id=3156]
    0x02d44000 WatcherThread [stack: 0x03000000,0x03050000] [id=5780]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 10048K, used 3925K [0x22990000, 0x23470000, 0x27ee0000)
    eden space 8960K, 43% used [0x22990000, 0x22d654f8, 0x23250000)
    from space 1088K, 0% used [0x23250000, 0x23250000, 0x23360000)
    to space 1088K, 0% used [0x23360000, 0x23360000, 0x23470000)
    tenured generation total 21996K, used 13195K [0x27ee0000, 0x2945b000, 0x32990000)
    the space 21996K, 59% used [0x27ee0000, 0x28bc2d50, 0x28bc2e00, 0x2945b000)
    compacting perm gen total 12288K, used 9062K [0x32990000, 0x33590000, 0x36990000)
    the space 12288K, 73% used [0x32990000, 0x332699b0, 0x33269a00, 0x33590000)
    ro space 10240K, 51% used [0x36990000, 0x36ebd0b8, 0x36ebd200, 0x37390000)
    rw space 12288K, 54% used [0x37390000, 0x37a29570, 0x37a29600, 0x37f90000)
    Code Cache [0x00af0000, 0x00d50000, 0x02af0000)
    total_blobs=1512 nmethods=1280 adapters=167 free_code_cache=31064896 largest_free_block=320
    Dynamic libraries:
    0x00400000 - 0x00424000      C:\Program Files\Java\jre6\bin\java.exe
    0x7c900000 - 0x7c9b2000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f6000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f03000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x5cb70000 - 0x5cb96000      C:\WINDOWS\system32\ShimEng.dll
    0x71590000 - 0x71609000      C:\WINDOWS\AppPatch\AcLayers.DLL
    0x7e410000 - 0x7e4a1000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f59000      C:\WINDOWS\system32\GDI32.dll
    0x7c9c0000 - 0x7d1d7000      C:\WINDOWS\system32\SHELL32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x774e0000 - 0x7761e000      C:\WINDOWS\system32\ole32.dll
    0x769c0000 - 0x76a74000      C:\WINDOWS\system32\USERENV.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.6028_x-ww_61e65202\comctl32.dll
    0x7c340000 - 0x7c396000      C:\Program Files\Java\jre6\bin\msvcr71.dll
    0x6d7f0000 - 0x6da9f000      C:\Program Files\Java\jre6\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x6d7a0000 - 0x6d7ac000      C:\Program Files\Java\jre6\bin\verify.dll
    0x6d320000 - 0x6d33f000      C:\Program Files\Java\jre6\bin\java.dll
    0x6d000000 - 0x6d14c000      C:\Program Files\Java\jre6\bin\awt.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x4fdd0000 - 0x4ff76000      C:\WINDOWS\system32\d3d9.dll
    0x00ae0000 - 0x00ae6000      C:\WINDOWS\system32\d3d8thk.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x6d7e0000 - 0x6d7ef000      C:\Program Files\Java\jre6\bin\zip.dll
    0x6d420000 - 0x6d426000      C:\Program Files\Java\jre6\bin\jp2native.dll
    0x6d1d0000 - 0x6d1e3000      C:\Program Files\Java\jre6\bin\deploy.dll
    0x77a80000 - 0x77b15000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x77120000 - 0x771ab000      C:\WINDOWS\system32\OLEAUT32.dll
    0x3d930000 - 0x3da16000      C:\WINDOWS\system32\WININET.dll
    0x03050000 - 0x03059000      C:\WINDOWS\system32\Normaliz.dll
    0x78130000 - 0x78263000      C:\WINDOWS\system32\urlmon.dll
    0x3dfd0000 - 0x3e1bb000      C:\WINDOWS\system32\iertutil.dll
    0x6d6a0000 - 0x6d6e6000      C:\Program Files\Java\jre6\bin\regutils.dll
    0x6d600000 - 0x6d613000      C:\Program Files\Java\jre6\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d620000 - 0x6d629000      C:\Program Files\Java\jre6\bin\nio.dll
    0x74720000 - 0x7476c000      C:\WINDOWS\system32\MSCTF.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\apphelp.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x6d230000 - 0x6d27f000      C:\Program Files\Java\jre6\bin\fontmanager.dll
    0x6d780000 - 0x6d788000      C:\Program Files\Java\jre6\bin\sunmscapi.dll
    0x68000000 - 0x68036000      C:\WINDOWS\system32\rsaenh.dll
    0x5b860000 - 0x5b8b5000      C:\WINDOWS\system32\netapi32.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x76d40000 - 0x76d58000      C:\WINDOWS\system32\MPRAPI.dll
    0x77cc0000 - 0x77cf2000      C:\WINDOWS\system32\ACTIVEDS.dll
    0x76e10000 - 0x76e35000      C:\WINDOWS\system32\adsldpc.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x71bf0000 - 0x71c03000      C:\WINDOWS\system32\SAMLIB.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x6d1a0000 - 0x6d1c3000      C:\Program Files\Java\jre6\bin\dcpr.dll
    0x605d0000 - 0x605d9000      C:\WINDOWS\system32\mslbui.dll
    0x49460000 - 0x4986b000      C:\PROGRA~1\MICROS~2\Office14\GROOVEEX.DLL
    0x78520000 - 0x785c3000      C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.4148_x-ww_d495ac4e\MSVCR90.dll
    0x78480000 - 0x7850e000      C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.4148_x-ww_d495ac4e\MSVCP90.dll
    0x78e20000 - 0x78e4b000      C:\WINDOWS\WinSxS\x86_Microsoft.VC90.ATL_1fc8b3b9a1e18e3b_9.0.30729.4148_x-ww_353599c2\ATL90.DLL
    0x74980000 - 0x74aa3000      C:\WINDOWS\system32\msxml3.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    VM Arguments:
    jvm_args: -D__jvm_launched=6364512386 -Xbootclasspath/a:C:\PROGRA~1\Java\jre6\lib\deploy.jar;C:\PROGRA~1\Java\jre6\lib\javaws.jar;C:\PROGRA~1\Java\jre6\lib\plugin.jar -Dsun.awt.warmup=true
    java_command: sun.plugin2.main.client.PluginMain write_pipe_name=jpi2_pid2020_pipe7,read_pipe_name=jpi2_pid2020_pipe6
    Launcher Type: SUN_STANDARD
    Environment Variables:
    PATH=C:\Program Files\PC Connectivity Solution\;C:\Program Files\CA\SharedComponents\CAWIN\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\PROGRA~1\CA\SHARED~1\CAM\bin;C:\Program Files\CA\Unicenter DSM\bin;C:\Program Files\Windows Imaging\;C:\Program Files\Intel\DMIX
    USERNAME=aggarwalam
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 10, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 3
    CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 23 stepping 10, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1
    Memory: 4k page, physical 3665072k(2703832k free), swap 5592752k(4834108k free)
    vm_info: Java HotSpot(TM) Client VM (20.4-b02) for windows-x86 JRE (1.6.0_29-b11), built on Oct 3 2011 01:01:08 by "java_re" with MS VC++ 7.1 (VS2003)
    time: Mon Jul 02 09:18:26 2012
    elapsed time: 108 seconds
    Can anyone please help me on this.
    Thanks in advance.
    Regards,
    Charls K V

    When I am trying to export data from a Form, the output is not appearing on my desktop to save or view for further processing. When I click on File-->Export link, a screen appears for a fraction of second and then disappears automatically.Please add the application URL to the trusted sites list from the browser.
    Also, make sure all pop-up blockers are disabled.
    And it is generating the below error file in my desktop.Is this the same error you get in the Jinitiator/JRE console window? -- How to enable tracing and logging for Sun JRE (Native Plug-in) [ID 549423.1]
    Please make sure no errors are reported in the database file log.
    Also, please see these docs/links.
    Troubleshooting Export and Attachment issues in Oracle Applications 11i [ID 338651.1]
    How to Troubleshoot Forms Hanging Using Export Functionality [ID 423261.1]
    Attachments and Exports, a Troubleshooting Guide [ID 135444.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Export+AND+Troubleshooting&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Export+AND+Disappear&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Issue to export data from sql to excel

    I have MS SQL 2008 Developer version and visual studio 2008. I'm using SSIS Import and Export Wizard on the VS2008 to create a simple package to export data from a table using a sql query to excel file (.xlsx), but I got the following
    error messages:
    [Destination - Query [37]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E21.
    [Destination - Query [37]] Error: Cannot create an OLE DB accessor. Verify that the column metadata is valid.
    [SSIS.Pipeline] Error: component "Destination - Query" (37) failed the pre-execute phase and returned error code 0xC0202025.
    The SQL query is
    SELECT [BusinessEntityID]
          ,[PersonType]
          ,[NameStyle]
          ,[Title]
          ,[FirstName]
          ,[MiddleName]
          ,[LastName]
      FROM [AdventureWorks2008].[Person].[Person]
    Any help will be appreciated. Thanks.
    A Fan of SSIS, SSRS and SSAS

    Or another way is to save the package created by Export Import wizard, open it in BIDS and add a Derived column task before the Excel destination to do explicit casting of the columns to your required unicode datatypes.
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Export data from MSA to Excel?

    Can we export daat from MSA to Excel? When we search for the business partners, is there a way to download the results to excel?
    Thanks!

    Hi,
    Yes you can bring the data to Excel. One you a Business Partner Search,the results flow down to the list tile.
    1)Select one of the grid rows and Right Click on where the Arrow points.
    2) A small drop down comes up.choose the option "Generate Report".
    3) This opens up the"InstantReport" screen. Choose "MicrosoftExcel" in the Instant Report To Combo.
    4)Select the grid columns that you want and add them using the buttons present there.
    5)Then click on the button "Generate".
    6)The data flows down to an Excel sheet.
    Regards,
    Abishek

  • BI 4.0 sp 6 service name to export data from webi to excel

    Hi there,
    I'm using BI 4.0 SP6 and I was just curious to find out which servers/services are invoked while exporting data from WebI report to Excel?
    Thanks in advance.
    Regards,
    samique

    Check below section in the Admin guide for this information.
    Architecture\Process Workflows

  • How to export data from report to excel using report 10g

    Hi,
    usnig report 10g, can we export the data from report to excel.
    Regards
    Randhir

    Hi,
    have a look at metalink note 209770.1: Getting Reports Ouput to MS Excel - Techniques and References
    Regards
    Rainer

  • Error while exporting data from ABAP to Excel

    Hello All,
    iam trying to download data from ABAP scrn to Excel using I_OI_SPREADSHEET METHODS. I get an error in method 'SET_RANGES_DATA' - 'Memory protection fault occurred in document interface'.
    I have pasted my code below. Kindly help me to solve this issue.
    Create container ??
      CALL METHOD c_oi_container_control_creator=>get_container_control
        IMPORTING
          control = g_control
          error   = g_error.
    Initialize
      CALL METHOD g_control->init_control
        EXPORTING
          r3_application_name      = 'Basis'
          parent                   = g_container
         register_on_close_event  = c_reg_on_close_event
         register_on_custom_event = c_reg_on_custom_event
         no_flush                 = c_no_flush
        IMPORTING
          error                    = g_error.
    Set Doc type
      g_document_type = 'Excel.Sheet'.
    Create Proxy
      CALL METHOD g_control->get_document_proxy
        EXPORTING
          document_type  = g_document_type
        IMPORTING
          document_proxy = g_document
          error          = g_error.
      CALL METHOD g_document->create_document
        EXPORTING
          document_title = 'Excel'.                             "#EC NOTEXT
      CALL METHOD g_document->get_spreadsheet_interface
        IMPORTING
          sheet_interface = g_handle.
      CHECK g_document IS NOT INITIAL.
    read selected line data from gtab
      READ TABLE g_tab_data INDEX 1  INTO l_wa_pos_trans.
    Get Field Descriptions
      CALL FUNCTION 'DDIF_FIELDINFO_GET'
        EXPORTING
          tabname        = 'TRIGS_EXPORT_EXCEL'
          langu          = sy-langu
        TABLES
          dfies_tab      = lt_dfies
        EXCEPTIONS
          not_found      = 1
          internal_error = 2
          OTHERS         = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Header for User Data
      l_h_cnt  = 1.
      LOOP AT lt_dfies INTO lwa_dfies.
        IF lwa_dfies-fieldname EQ 'USER_ID'          OR
           lwa_dfies-fieldname EQ 'EXCEL_DATE'       OR
           lwa_dfies-fieldname EQ 'EXCEL_TIME'       OR
           lwa_dfies-fieldname EQ 'SECURITY_ACCOUNT' OR
           lwa_dfies-fieldname EQ 'SECURITY_ID'      OR
           lwa_dfies-fieldname EQ 'COMPANY_CODE'.
          PERFORM fill_cell USING l_h_cnt 1 1 lwa_dfies-scrtext_m.
          l_h_cnt  =  l_h_cnt  + 1.
        ENDIF.
      ENDLOOP.
    Fill Header Values
      PERFORM fill_cell USING 1 2 1 sy-uname.
      PERFORM fill_cell USING 2 2 1 sy-datum.
      PERFORM fill_cell USING 3 2 1 sy-uzeit.
      PERFORM fill_cell USING 4 2 1 l_wa_pos_trans-company_code .
      PERFORM fill_cell USING 5 2 1 l_wa_pos_trans-security_account.
      PERFORM fill_cell USING 6 2 1 l_wa_pos_trans-security_id.
    Texts
    l_h_cnt = l_h_cnt + 1.
      PERFORM fill_cell USING l_h_cnt 1 1 text-011.
      PERFORM fill_cell USING l_h_cnt 3 1 text-012.
    Range for header
      range_item-name = 'RANGE1'.
      range_item-rows = '7'.
      range_item-columns = '3'.
      range_item-code = g_handle->spreadsheet_insertall.
      APPEND range_item TO range_list.
      CALL METHOD g_handle->set_selection
        EXPORTING
          left    = 1
          top     = 1
          rows    = 7
          columns = 3
        IMPORTING
          retcode = retcode.
      CALL METHOD g_handle->insert_range
        EXPORTING
          columns = 3
          rows    = 7
          name    = 'RANGE1'
        IMPORTING
          retcode = retcode.
      CALL METHOD g_handle->set_ranges_data
        EXPORTING
          ranges   = range_list
          contents = gt_cell_data
        IMPORTING
          retcode  = retcode.
    Columns for PC
      CLEAR: gt_cell_data[].
      l_pc_cnt  = l_h_cnt + 1.
      LOOP AT lt_dfies INTO lwa_dfies.
        IF lwa_dfies-fieldname EQ 'SBWHR' OR
           lwa_dfies-fieldname CP '_PC'.
          PERFORM fill_cell USING l_pc_cnt 1 0 lwa_dfies-scrtext_m.
          l_pc_cnt =  l_pc_cnt + 1.
        ENDIF.
      ENDLOOP.
    Pos Curr - Values
      PERFORM fill_cell USING 9 2 0  trls_position_value-sbwhr.
      PERFORM fill_cell USING 10 2 0 trls_position_value-purch_pc.
      PERFORM fill_cell USING 11 2 0 trls_position_value-charge_pc.
      PERFORM fill_cell USING 12 2 0 trls_position_value-impmnt_pc.
      PERFORM fill_cell USING 13 2 0 trls_position_value-amort_pc.
      PERFORM fill_cell USING 14 2 0 trls_position_value-val_ti_pc.
      PERFORM fill_cell USING 15 2 0 trls_position_value-val_idx_pc.
      PERFORM fill_cell USING 16 2 0 trls_position_value-val_ch_ti_pc.
      PERFORM fill_cell USING 17 2 0 trls_position_value-val_ti_npl_pc.
      PERFORM fill_cell USING 18 2 0 trls_position_value-val_idx_npl_pc.
      PERFORM fill_cell USING 19 2 0 trls_position_value-val_ch_ti_npl_pc.
      PERFORM fill_cell USING 20 2 0 trls_position_value-book_val_pc.
    Columns for VC
      l_vc_cnt = l_h_cnt + 1.
      LOOP AT lt_dfies INTO lwa_dfies.
        IF lwa_dfies-fieldname EQ 'SBWHR' OR
             lwa_dfies-fieldname CP '_VC'.
          PERFORM fill_cell USING l_vc_cnt 3 0 lwa_dfies-scrtext_m.
          l_vc_cnt =  l_vc_cnt + 1.
        ENDIF.
      ENDLOOP.
    Val Curr
      PERFORM fill_cell USING 9 4 0  trls_position_value-svwhr.
      PERFORM fill_cell USING 10 4 0 trls_position_value-purch_vc.
      PERFORM fill_cell USING 11 4 0 trls_position_value-charge_vc.
      PERFORM fill_cell USING 12 4 0 trls_position_value-impmnt_vc.
      PERFORM fill_cell USING 13 4 0 trls_position_value-amort_vc.
      PERFORM fill_cell USING 14 4 0 trls_position_value-val_ti_vc.
      PERFORM fill_cell USING 15 4 0 trls_position_value-val_fx_vc.
      PERFORM fill_cell USING 16 4 0 trls_position_value-val_idx_vc.
      PERFORM fill_cell USING 17 4 0 trls_position_value-val_ch_ti_vc.
      PERFORM fill_cell USING 18 4 0 trls_position_value-val_ch_fx_vc.
      PERFORM fill_cell USING 19 4 0 trls_position_value-val_fx_npl_vc.
      PERFORM fill_cell USING 20 4 0 trls_position_value-val_ti_npl_vc.
      PERFORM fill_cell USING 21 4 0 trls_position_value-val_idx_npl_vc.
      PERFORM fill_cell USING 22 4 0 trls_position_value-val_ch_ti_npl_vc.
      PERFORM fill_cell USING 23 4 0 trls_position_value-val_ch_fx_npl_vc.
      PERFORM fill_cell USING 24 4 0 trls_position_value-book_val_vc.
    Range for PC and VC
      CLEAR: range_list[].
      range_item-name = 'RANGE2'.
      range_item-rows = '17'.
      range_item-columns = '4'.
      range_item-code = g_handle->spreadsheet_insertall.
      APPEND range_item TO range_list.
      CALL METHOD g_handle->set_selection
        EXPORTING
          left    = 1
          top     = 9
          rows    = 17
          columns = 4
        IMPORTING
          retcode = retcode.
      CALL METHOD g_handle->insert_range
        EXPORTING
          columns = 4
          rows    = 17
          name    = 'RANGE2'
        IMPORTING
          retcode = retcode.
      CALL METHOD g_handle->set_ranges_data
        EXPORTING
          ranges   = range_list
          contents = gt_cell_data
        IMPORTING
          retcode  = retcode.
    ***********************************Form routine****************
    FORM fill_cell USING i j bold val.
      DATA:
       wa_cell_data TYPE soi_generic_item.
      wa_cell_data-row = i.
      wa_cell_data-column = j.
      wa_cell_data-value = val.
      APPEND wa_cell_data TO gt_cell_data.
    ENDFORM.                    "FILL_CELL

    Solved

  • Exporting data from JSP to EXCEL

    Hi All,
    I am getting data in form of table in my jsp page. I need to know how to export the data in excel sheet with a click of button.
    Please help me.
    Thanks

    Thanks for your help
    I put the code in my jsp page. it shows a dialog box which ask the location for the excel sheet to save. However the excel it blank. It does not retrive any values from the database or jsp page
    Here is an overview of the page which i`m generating the report
    1) creating a connection object, and loading the Mysql driver
    2) getting the values from the database using select command
    3) Displaying the values in form of table
    4) in the bottom creating a button called "Export"
    5) this export will go to another page called "export.jsp"
    6) here i write the code
    <%@ page contentType="application/vnd.ms-excel" %>Plz help

  • How to export data from webdynpro to Excel and start a Excel macro

    Hello All
    I want to export data displayed in the Web dynpro ALV into Excel. I have tried the ALV export function but my problem with it is when it does export to excel the data loses formatting and I have long text in columns which display with wrapping in ALV but when exported to excel it loses formatting.
    So I want to define a custom button and when user presses on this button the excel export is called with a macro. Can you kindly share ideas how I can do this from a webdynpro.
    Thanks
    Karen

    Hi friends!
    I have followed the following:
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417300)ID1487994050DB10407586481486749551End?blog=/pub/wlg/5522
    ...in order to create standard ALV with Export to Excel.
    However what is exported into excel is awful. It does not contain my data in nice columns... Instead it shows a lot of meta-data.
    Please let me know what to do to kick the standard Export button in the correct direction.. that is...to have my nice table in same way in Excel, because that is my intention with "Export to excel"
    Best reg
    Henrik

  • Exporting data from table to Excel in a particular format using BSP.

    Hello all,
          I am creating a application in BSP  wherein i have to export data to excel sheet.
      I am able to do that but the output in excel sheet is not formatted. it is displaying the data in a single 
    column. For example, the internal table which i am exporting to excel contains fields "product
    name", "area name", country name", "values". all these should be displayed in different columns.How 
    can i achieve this functionality.A sample code will be of great help..
    Below is the code i hav written for exporting to excel :
         data: l_len type i,
               l_string type string,
               app_type type string,
               file_content type xstring,
               file_mime_type type string.
         create OBJECT cached_response TYPE cl_http_response EXPORTING add_c_msg = 1.
         cached_response->set_data( file_content ).
         cached_response->set_header_field(
                          name = if_http_header_fields=>content_type
                          value = file_mime_type ).
    LOOP AT itab_xls INTO wa_xls.
       CONCATENATE L_STRING wa_xls-product_name
       wa_xls-area_name
       wa_xls-landx
       CL_ABAP_CHAR_UTILITIES=>CR_LF INTO L_STRING SEPARATED BY SPACE.
    ENDLOOP.
      APP_TYPE = 'APPLICATION/MSEXCEL; charset=utf-16le'.
      data: l_xstring type xstring.
    call function 'SCMS_STRING_TO_XSTRING'
        exporting
          text = l_string
          MIMETYPE = 'APPLICATION/MSEXCEL; charset=utf-16le'
        IMPORTING
          BUFFER = l_xstring.
    Add the Byte Order Mark - UTF-16 Little Endian
      concatenate  cl_abap_char_utilities=>byte_order_mark_little
                   l_xstring
                   into l_xstring in byte mode.
       cached_response->set_data( l_xstring ).
       cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                         value = 'APPLICATION/MSEXCEL; charset=utf-16le' ).
    *Set the filename into the response header
       cached_response->set_header_field( name  = 'Content-Disposition'
                                  value = 'attachment; filename=gkb_excel.xls' ).
    *Set the Response Status
       cached_response->set_status( code = 200 reason = 'OK' ).
    *Set the Cache Timeout - 60 seconds - we only need this in the cache
    *long enough to build the page and allow the IFrame on the Client to request it.
       cached_response->server_cache_expire_rel( expires_rel = 60 ).
        CALL FUNCTION 'GUID_CREATE'
        IMPORTING
          ev_guid_32 = guid.
        CONCATENATE runtime->application_url '/' guid '.xls' INTO url.
        cl_http_server=>server_cache_upload( url      = url
                                           response = cached_response ).
    Can anyone help me with some solution.
    Thanks in advance.
    Gurmahima.

    the issue is here
    LOOP AT itab_xls INTO wa_xls.
    CONCATENATE L_STRING wa_xls-product_name
    wa_xls-area_name
    wa_xls-landx
    CL_ABAP_CHAR_UTILITIES=>CR_LF INTO L_STRING SEPARATED BY SPACE.
    ENDLOOP.
    instead do the following
    LOOP AT itab_xls INTO wa_xls.
    CONCATENATE L_STRING wa_xls-product_name ','
    wa_xls-area_name  ','
    wa_xls-landx  ','
    CL_ABAP_CHAR_UTILITIES=>CR_LF INTO L_STRING .
    ENDLOOP.
    and then change the file name extension from xls to csv. it should open properly in excel.
    Note that this is only excel csv file. if you want a proper excel excel file, then
    option one: build a html table with your data into a string and pass it to excel
    option 2: build excel xml using your data into a string and pass it to excel.
    Regards
    Raja

  • Procedure/batch file to export data from sql to excel(predefined path)

    Hi,
    I have countries, sites, states tables (total 3) in database (i have user id and password to connect to this database).
    every week i need to extract data from these tables into excel files and i need to save those in shared drive for team use.
    Currently i am connecting to database every time running sql query and manually exporting that latest data to excel and saving that as excel files in (G:\team\common\) folder with specific name.
    output format should be : excel (.xls)
    file names should - countries.xls,sites.xls,states.xls
    server name : ap21
    output location : G:\team\common\ ( G is shared drive).
    i heard that we could create batch file to do this task and also we could use oracle procedure to do this task. but not sure which one is the best option.
    could you please guide me what is the option and also help me with technical stuff to do this task.

    Hello,
    output format should be : excel (.xls)Do you really want to create .xls files? This is not easy to do because it is a proprietary (MS) binary format. You should consider other formats like .csv or .xlsx. Follow the link in the previous answer how to generate them.
    file names should ...The name of the files does not matter, you are free to name them as you like.
    server name : ap21
    output location : G:\team\common\ ( G is shared drive).You can write the file generated in the database only to directories that are accessible from the db as Oracle Directories. You could mount the shared drive to the db server, but it might be better to write the output to a server directory and then transfer them to the shared drive with OS-copy command or FTP.
    i heard that we could create batch file to do this task and also we could use oracle procedure to do this task. but not sure which one is the best option.I would use Oracle Scheduler to execute a PL/SQL procedure to generate the files and then a OS-batch file to transfer them. You can use the Scheduler to execute the batch file too, see {message:id=3895983}.
    Regards
    Marcus

Maybe you are looking for

  • Why do I have to enter the master password almost 20-times (no exagerration) when I open Thunderbird?

    I use a master password for Thunderbird. I also use Lightning. In the past, I would need to enter the master password twice (once for Thunderbird, once for Lightning). Within the last couple of months, I am now prompted to enter the password nearly 2

  • How can I show vertical text?

    Hi all, does any body knows how can I show a vertical text using g2.drawString() method? For example: g2.drawString("Help", x, y); I want the text appear like: p l e H of course with the correct rotation of each character. thanks in advance

  • How to scale an SWF when called into Flash

    Hi all, I am working with Flash CS5 on MAC OS10. I created a project at 1024x768 with  three buttons. Each button calles in a different SWF file. My problem is that someone created these files at 1024x768 which covers the master page when each SWF op

  • Replace footage will crash Premiere Pro CS6

    Hi, I have a serious problem with Premiere Pro CS6 when I want to replace footage in the project. I need to replace .R3D files to ProRes files that I encoded via MediaEncoder. When I replace the clip (.R3D to ProRes) in project browser, Premiere cras

  • Changing Calendar Format

    Hello, Everybody. I am beginner to HTMLDB. In my project I want to change the format of calendar like as follows, Date 1 2 3 4 5 6 7 Day Sun Mon Tue Wed Thu Fri Sat Column x y z a b c d Please help me. Thanks, Sumanth.