Export tables, sequences, types

I was wondering how i could do an export of just tables,indexes, sequences, and types.
10g

Hi,
You can use INLCUDE option while export usinf datapump.
http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_export.htm
regards
Jafar

Similar Messages

  • Export tables, sequence, and package question

    Hi all,
    I've export table like: exp username/password file=export.dmp log=export.log tables=A statistics=none.
    The export statement above just export only the table "A" structure not the table "A" data. So, how can I move all the data from table "A" to table "B".
    How do I export the sequence, and package and its data also?
    Thank you very much
    Kevin

    Can you create a DBlink in order to do the insert into B select * from A.
    Also, you can use the SQL*Plus Copy command.
    Here are some links for COPY command:
    <br>Copying Data
    <br>copy command
    <br>copy command vs sql*loader
    <br><br>
    Here is a link for moving code:
    <br>exporting packages,function etc. from one user to another.

  • EA3 export table with SDO types

    Hi!
    I've tried export table from user (not mdsys) with mdsys.sdo_geometry column (build 1.5.0.53.04, tools export wizard, all checks except storage).
    got in log:
    SEVERE 40 0 oracle.dbtools.db.DBUtil
    ORA-31603: объект "SDO_ELEM_INFO_ARRAY" с типом TYPE не найден в схеме "MDSYS" ORA-06512: на "SYS.DBMS_SYS_ERROR", line 105 ORA-06512: на "SYS.DBMS_METADATA", line 2805 ORA-06512: на "SYS.DBMS_METADATA", line 4333 ORA-06512: на line 1
    SEVERE 41 641 oracle.dbtools.db.DBUtil ORA-31603: объект "SDO_GEOMETRY" с типом TYPE не найден в схеме "MDSYS" ORA-06512: на "SYS.DBMS_SYS_ERROR", line 105 ORA-06512: на "SYS.DBMS_METADATA", line 2805 ORA-06512: на "SYS.DBMS_METADATA", line 4333 ORA-06512: на line 1
    SEVERE 42 94 oracle.dbtools.db.DBUtil ORA-31603: объект "SDO_ORDINATE_ARRAY" с типом TYPE не найден в схеме "MDSYS" ORA-06512: на "SYS.DBMS_SYS_ERROR", line 105 ORA-06512: на "SYS.DBMS_METADATA", line 2805 ORA-06512: на "SYS.DBMS_METADATA", line 4333 ORA-06512: на line 1
    SEVERE 43 3093 oracle.dbtools.raptor.ddl.DDLGenerator getDDL - null
    In SQL script i've got some strange result (see bold):
    -- File created - среда-Апрель-09-2008
    DROP TABLE "TEST" cascade constraints;
    DROP SEQUENCE "MDRS_C0A4$";
    -- DDL for Sequence MDRS_C0A4$
    CREATE SEQUENCE "MDRS_C0A4$" MINVALUE 1 MAXVALUE 999999999999999999999999999 INCREMENT BY 1 START WITH 101 CACHE 100 ORDER NOCYCLE ;
    -- DDL for Type SDO_ELEM_INFO_ARRAY
    -- Unable to Render DDL with DBMS_METADATA using internal generator.
    CREATE TYPE SDO_ELEM_INFO_ARRAY
    AS VARRAY (1048576) of NUMBER
    GRANT EXECUTE ON "SDO_ELEM_INFO_ARRAY" TO PUBLIC WITH GRANT OPTION;
    GRANT EXECUTE ON "SDO_ELEM_INFO_ARRAY" TO PUBLIC WITH GRANT OPTION;
    -- DDL for Type SDO_GEOMETRY
    -- Unable to Render DDL with DBMS_METADATA using internal generator.
    CREATE TYPE MDSYS.SDO_GEOMETRY;
    CREATE TYPE SDO_GEOMETRY AS OBJECT
    ( SDO_GTYPE NUMBER,
    SDO_SRID NUMBER,
    SDO_POINT SDO_POINT_TYPE,
    SDO_ELEM_INFO SDO_ELEM_INFO_ARRAY,
    SDO_ORDINATES SDO_ORDINATE_ARRAY,
    MEMBER FUNCTION GET_GTYPE RETURN NUMBER DETERMINISTIC,
    MEMBER FUNCTION GET_DIMS RETURN NUMBER DETERMINISTIC,
    MEMBER FUNCTION GET_LRS_DIM RETURN NUMBER DETERMINISTIC,
    MEMBER FUNCTION GET_WKB RETURN BLOB DETERMINISTIC,
    MEMBER FUNCTION GET_WKT RETURN CLOB DETERMINISTIC,
    MEMBER FUNCTION ST_CoordDim RETURN SMALLINT DETERMINISTIC,
    MEMBER FUNCTION ST_IsValid RETURN INTEGER DETERMINISTIC,
    CONSTRUCTOR FUNCTION SDO_GEOMETRY(wkt IN CLOB, asrid IN INTEGER DEFAULT NULL)
    RETURN SELF AS RESULT,
    CONSTRUCTOR FUNCTION SDO_GEOMETRY(wkt IN VARCHAR2, asrid IN INTEGER DEFAULT NULL)
    RETURN SELF AS RESULT,
    CONSTRUCTOR FUNCTION SDO_GEOMETRY(wkb IN BLOB, asrid IN INTEGER DEFAULT NULL)
    RETURN SELF AS RESULT
    GRANT EXECUTE ON "SDO_GEOMETRY" TO PUBLIC WITH GRANT OPTION;
    GRANT EXECUTE ON "SDO_GEOMETRY" TO PUBLIC WITH GRANT OPTION;
    -- DDL for Type SDO_ORDINATE_ARRAY
    -- Unable to Render DDL with DBMS_METADATA using internal generator.
    CREATE TYPE SDO_ORDINATE_ARRAY
    AS VARRAY(1048576) OF NUMBER
    GRANT EXECUTE ON "SDO_ORDINATE_ARRAY" TO PUBLIC WITH GRANT OPTION;
    GRANT EXECUTE ON "SDO_ORDINATE_ARRAY" TO PUBLIC WITH GRANT OPTION;
    -- DDL for Table TEST
    CREATE TABLE "TEST"
    (     "NUM" NUMBER,
         "GEOLOC" "SDO_GEOMETRY"
    -- Constraints for Table TEST
    ALTER TABLE "TEST" MODIFY ("NUM" NOT NULL ENABLE);
    ALTER TABLE "TEST" ADD PRIMARY KEY ("NUM") ENABLE;
    -- DDL for Index TEST_SX
    CREATE INDEX "TEST_SX" ON "TEST" ("GEOLOC")
    INDEXTYPE IS "MDSYS"."SPATIAL_INDEX" PARAMETERS ('SDO_INDX_DIMS=2 LAYER_GTYPE="COLLECTION"');
    -- DDL for Index SYS_C004552
    CREATE UNIQUE INDEX "SYS_C004552" ON "TEST" ("NUM")
    Why it create all grant twice?
    Why it try to recreate type SDO_GEOMETRY twice - once in MDSYS schema second in users schema?
    Why it recreate types SDO_ELEM_INFO_ARRAY and SDO_ORDINATE_ARRAY only once in user schema?

    Why it create all grant twice?
    Why it try to recreate type SDO_GEOMETRY twice - once in MDSYS schema second in users schema?
    Why it recreate types SDO_ELEM_INFO_ARRAY and SDO_ORDINATE_ARRAY only once in user schema?
    All of these seem to be an issue with the older internal ddl generator. While I will log a bug on this we do not actually own the code so I am not able to fix it. The easiest way to make this work correctly would be to fix your DBMS_METADATA to work for those other user objects...
    Try granting your export user SELECT_CATALOG_ROLE.
    Although I'm not sure why you are including the dependencies for that table as you know it's going to just get you the MDSYS objects, try unchecking the "Automatically Include Dependent Objects" option on the first page of wizzard.

  • How can we export table data to a CSV file??

    Hi,
    I have the following requirement. Initially business agreed upon, exporting the table data to Excel file. But now, they would like to export the table data to a CSV file, which is not being supported by af:exportCollectionActionListener component.
    Because, when i opened the exported CSV file, i can see the exported data sorrounded with HTML tags. Hence the issue.
    Does someone has any solution for this ... Like, how can we export the table data to csv format. And it should work similar to exporting the data to excel sheet.
    For youre reference here is the code which i have used to export the table data..
    ><f:facet name="menus">
    ><af:menu text="Menu" id="m1">
    ><af:commandMenuItem text="Print" id="cmi1">
    ><af:exportCollectionActionListener exportedId="t1"
    >title="CommunicationDistributionList"
    >filename="CommunicationDistributionList"
    >type="excelHTML"/> ---- I tried with removing value for this attribute. With no value, it did not worked at all.
    ></af:commandMenuItem>
    ></af:menu>
    ></f:facet>
    Thanks & Regards,
    Kiran Konjeti

    Hi Alex,
    I have already visited that POST and it works only in 10g. Not in 11g.
    I got the solution for this. The solution is :
    Use the following code in jsff
    ==================
    <af:commandButton text="Export Data" id="ctb1">><af:fileDownloadActionListener contentType="text/csv; charset=utf-8"
    >filename="test.csv"
    >method="#{pageFlowScope.pageFlowScopeDemoAppMB.test}"/>
    ></af:commandButton>
    OR
    <af:commandButton text="Export Data" id="ctb1">><af:fileDownloadActionListener contentType="application/vnd.ms-excel; charset=utf-8"
    >filename="test.csv"
    >method="#{pageFlowScope.pageFlowScopeDemoAppMB.test}"/>
    ></af:commandButton>
    And place this code in ManagedBean
    ======================
    > public void test(FacesContext facesContext, OutputStream outputStream) throws IOException {
    > DCBindingContainer dcBindings = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    >DCIteratorBinding itrBinding = (DCIteratorBinding)dcBindings.get("fetchDataIterator");
    >tableRows = itrBinding.getAllRowsInRange();
    preparaing column headers
    >PrintWriter out = new PrintWriter(outputStream);
    >out.print(" ID");
    >out.print(",");
    >out.print("Name");
    >out.print(",");
    >out.print("Designation");
    >out.print(",");
    >out.print("Salary");
    >out.println();
    preparing column data
    > for(Row row : tableRows){
    >DCDataRow dataRow = (DCDataRow)row;
    > DataLoaderDTO dto = (DataLoaderDTO)dataRow.getDataProvider();
    >out.print(dto.getId());
    >out.print(",");
    >out.print(dto.getName());
    >out.print(",");
    >out.print(dto.getDesgntn());
    >out.print(",");
    >out.print(dto.getSalary());
    >out.println();
    >}
    >out.flush();
    >out.close();
    > }
    And do the following settings(*OPTIONAL*) for your browser - Only in case, if the file is being blocked by IE
    ==================================================================
    http://ais-ss.usc.edu/helpdoc/main/browser/bris004b.html
    This resolves implementation of exporting table data to CSV file in 11g.
    Thanks & Regards,
    Kiran Konjeti

  • Dynamic Export table of a function Module

    Hi Friends,
    I have a requirement where fields of  Export table of my function Module is dynamic. It is like the Fields to be expoerted by the Function Module would be stored in a seperate Z table
    The Z table would contain the records as follows .
    Table Name              FieldName
    =========     
    MARA                      MATNR
    MARC                      WERKS
    and So on..
    . How can I define my Export table in Function module dynamically so that the structure of my Export Function Module would be same as that of the Fieldnames in Z table..
    Thanks

    Just declare the associate type as "ANY TABLE" in the exporting parameter.
    FUNCTION ZTEST.
    *"*"Local Interface:
    *"  EXPORTING
    *"     REFERENCE(IT_TAB) TYPE  ANY TABLE

  • Codec Not Found error when trying to render/export layered sequence

    I have a sequence that I never had problems with in the past but as of yesterday when I open the project and try to render or export. I get the infamous dialogue box saying, "Codec not found. You may be using a compression type without the corresponding hardware card."
    I've narrowed it down to only being a problem wherever I have two particular types of media clips layered one on top of the other. In this case it is occurring wherever I have an Apple ProRes 422 (HQ) clip layered with an Animation codec clip containing a graphical bug that was created in After Effects and exported as a Quicktime Movie with RGB+Alpha. Because of the Alpha channel in the bug clip, it is automatically given the Animation codec upon export from After Effects to retain and preserve the transparency needed. I've also narrowed it down to only occurring when all this is combined on a sequence with its compressor set to standard ProRes 422 or ProRes HQ. If I set it to any other codec, such as any DV/DVC Pro or MPEG IMX codec then I can render and export again.
    Also interesting is that I can nest the sequence into another sequence and render and export just fine as well, even with it set to either ProRes codec (which will probably prove to be a suitable workaround for the time being), however, any additional insight into this issue that anyone can provide, pertaining to what may have changed or caused my original sequence to suddenly not want to render anymore would be greatly appreciated.
    And if anyone else reading this comes across this this same type of problem themselves, then I suggest what I just got to work: Duplicate your sequence, then delete the clips from the new sequence and nest the original sequence into it.
    Here is some additional background info if desired:
    I'm using FCP 6.0.6. The sequence I have going here is set to Apple ProRes 422 and consists entirely of Quicktime Movie files. Video Track 1 has the main video clips using the ProRes HQ codec (Again, even with the sequence set to ProRes HQ, it doesn't make any difference here). Track 2 has a graphic bug that was created in After Effects and layered over the Track 1 clips at various places. I was able to work with these clips and render as well as export the sequence with no problems last week. However, I was requested to revise the bug in After Effects, and then replace the old bug with new bug and export the sequence again. So yesterday, I simply opened up the After Effects project file for the bug, made the revisions and exported it with a new name using the same settings as the previous bug. The render problem I'm now facing surfaced right when I opened the FCP project file yesterday, before even importing and replacing the old bug with the new bug. I went ahead and imported the new bug and placed it in place of where the old bug occurred. But the render and problem remained. On this particular problem sequence, I can render the new bug if I actually disable or remove the ProRes clip beneath it, but I cannot in turn render the ProRes clip after disabling/removing the Animation clip above it.
    Now, I can copy either type of clip into their own sequence allowing the clips' respective native settings (ProRes HQ & Animation) to take effect and then they will playback and export just fine. I can even copy the bug clip (Animation codec) and paste it into the other clip's ProRes HQ sequence and it will render and export just fine from there as long as it is placed next to the other clip and not layered over it. On these newer sequences, it is only when the bug (Animation) clip is layered over the ProRes HQ clip with the sequence set to ProRes or ProRes HQ do I tend to still get the "Codec not found" error.
    I've also tried the following steps to try and troubleshoot to no avail:
    1. Copied entire sequence into a new sequence. Problem still occurs.
    2. Closed FCP, trashed preferences, and restarted FCP. Problem still not resolved.
    3. Opened project on another computer, had same problem.

    Thanks for sharing these ideas about dealing with this error message.
    For what it's worth, I finally managed to solve a similar issue by going into sequence settings, choosing the Video Processing tab, and changing Render 10-bit YUV to Render 8-bit YUV.
    Maybe this helps someone?

  • Exporting Table from Indesign to tagged text.

    Hi, all!<br />I need to export table from InDesign to tagged text by the script.<br />I found ExportAllStories.jsx in samples.<br />It's good example but I have some questions<br />1. In my document more then one table and I need to export only some of them. So, how can I export only one of them? May be Tables have some "labels" or something other differential sign?<br />2. How can I ser encoding type of distanation file (by the default InDesing set <ASCII-WIN>, but I'm need to set <Unicode>).

    Edit>InCopy>Export All Strories.
    Open the INDD in InCopy.
    This assumes everyone involved has access to the files.

  • Is it possible to export tables from diffrent schema using expdp?

    Hi,
    We can export tables from different schema using exp. Ex: exp user/pass file=sample.dmp log=sample.log tables=scott.dept,system.sales ...But
    Is it possible in expdp?
    Thanks in advance ..
    Thanks,

    Hi,
    you have to use "schemas=user1,user2 include=table:"in('table1,table2')" use parfileexpdp scott/tiger@db10g schemas=SCOTT include=TABLE:"IN ('EMP', 'DEPT')" directory=TEST_DIR dumpfile=SCOTT.dmp logfile=expdpSCOTT.log{quote}
    I am not able to perform it using parfile also.Using parfile it shows "UDE-00010: multiple job modes requested, schema and tables."
    When trying the below, i get error
    {code}
    bash-3.00$ expdp directory=EXP_DUMP dumpfile=test.dmp logfile=test.log SCHEMAS=(\'MM\',\'MMM\') include=TABLE:\"IN\(\'EA_EET_TMP\',\'WS_DT\'\)\"
    Export: Release 10.2.0.4.0 - 64bit Production on Friday, 15 October, 2010 18:34:32
    Copyright (c) 2003, 2007, Oracle. All rights reserved.
    Username: / as sysdba
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Starting "SYS"."SYS_EXPORT_SCHEMA_01": /******** AS SYSDBA directory=EXP_DUMP dumpfile=test.dmp logfile=test.log SCHEMAS=('MM','MMM') include=TABLE:"IN('EA_EET_TMP','WS_DT')"
    Estimate in progress using BLOCKS method...
    Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 0 KB
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    . . exported "MM"."EA_EET_TMP" 0 KB 0 rows
    ORA-39165: Schema MMM was not found.
    Master table "SYS"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
    Dump file set for SYS.SYS_EXPORT_SCHEMA_01 is:
    /export/home/nucleus/dump/test.dmp
    Job "SYS"."SYS_EXPORT_SCHEMA_01" completed with 1 error(s) at 18:35:19
    {code}
    When checking expdp help=y shows :-
    {code}TABLES Identifies a list of tables to export - one schema only.{code}
    As per few testing,tables from different schemas are not possible to export using expdp in a single command.
    Anand

  • TIPS(22) : EXPORTING TABLES BASED ON TABLESPACE NAME

    제품 : ORACLE SERVER
    작성날짜 : 1996-11-12
    TIPS(22) : Exporting tables based on Tablespace name
    ====================================================
    This script allows the user to enter the tablespace name and creates a list
    of tables in exp format. Additional choices allow the export of over-extended
    tables or tables over a certain size.
    rem list.sql
    rem Give list of tables depending on parameters
    set termout on linesize 75 pagesize 0 verify off feedback off
    clear buffer
    clear columns
    prompt
    prompt This script will create list.out, which can be used
    prompt to give export tables parameter file
    prompt
    accept Segment_Name Prompt 'Enter Seg Name : '
    accept owner Prompt 'Enter Seg Owner : '
    accept tsname prompt 'Enter TableSpace Name : '
    accept min_extents Prompt 'Enter Minimum num of exts : '
    accept min_size Prompt 'Enter Minimum seg size(M) : '
    prompt
    accept expchoice Prompt 'Is this list for exports ? : '
    col srt noprint
    SPOOL list.out
    -- start bit
    select 0 srt, decode(upper('&expchoice'),'Y','tables=(','')
    from dual
    union
    -- data bit without end segment
    select 1 srt, segment_name||decode(upper('&expchoice'),'Y',',','')
    from dba_segments
    where segment_type = 'TABLE'
    and segment_name like upper('&&Segment_Name%')
    and owner like upper('&&owner%')
    and tablespace_name like upper('&&tsname%')
    and extents >= (&&min_extents + 0)
    and bytes >= (&&min_size + 0) * (1024*1024)
    minus
    -- remove last one (with ',' after the name)
    select 1 srt, max(segment_name)||decode(upper('&expchoice'),'Y',',','')
    from dba_segments
    where segment_type = 'TABLE'
    and segment_name like upper('&&Segment_Name%')
    and owner like upper('&&owner%')
    and tablespace_name like upper('&&tsname%')
    and extents >= (&&min_extents + 0)
    and bytes >= (&&min_size + 0) * (1024*1024)
    union
    -- data bit with end segment
    select 3 srt, max(segment_name)||decode(upper('&expchoice'),'Y',')','')
    from dba_segments
    where segment_type = 'TABLE'
    and segment_name like upper('&&Segment_Name%')
    and owner like upper('&&owner%')
    and tablespace_name like upper('&&tsname%')
    and extents >= (&&min_extents + 0)
    and bytes >= (&&min_size + 0) * (1024*1024)
    order by 1,2
    spool off
    set heading on
    ****************************************************************

    Hi,
    You will have to use dynamic sql to create your second cursor.
    DECLARE
         v_sql_query VARCHAR2(400);
         TYPE cur_typ IS REF CURSOR;
         c1 cur_typ;
         mYRec MyTable%rowtype;
    BEGIN
         v_sql_query := 'select * from MyTable';
         OPEN c1 FOR v_sql_query;
              LOOP
              FETCH c1 INTO mYRec;
                   EXIT WHEN c1%NOTFOUND;
                   EXIT WHEN c1%NOTFOUND IS NULL;
    /*processing here*/
              END LOOP;
         CLOSE c1;
    END;
    Regards

  • Error in FM tables parameters type.

    Hi,
    I am creating a BAPI FM with the tables parameters with a parameter as
    i_ydrseg    type    MMCR_DRSEG.
    This is similar to the type as defined in the FM MRM_INVOICE_READ as
    T_DRSEG       TYPE     MMCR_TDRSEG.
    I have declared the MMCR as types pools in the function group TOP include of the new BAPI. But still i get the error as "  Type MMCR_DRSEG is unknown " .
    How do i create a table parameter of the type as above ?
    Pls help with your ideas.
    Thanks,
    Stock

    Hi again,
    1. just to make sure whether MMCR_DRSEG
       is working fine or not,
       and also the type pools is working fine in top include or not.
    2. do not use the parameter in import/export/tables parameter.
    3. Instead, for testing purpose,
    4. declare this in the source code of the FM,
       and check whehter it is giving error not.
    regards,
    amit m.

  • Best options for exporting a sequence and making a DVD

    Hello,
    I have a sequence that is 79 minutes long with the following properties:
    Vid Rate - 29.97 fps
    Frame Size - 1440 x 1080
    Compressor - Apple Int. Codec
    Pixel Aspect - HD (1440x1080)
    This project began with the intention of being a short video, which is my background, and I can usually deal with exporting issues for short videos. However, it is no longer a small project. This was unexpected, and I frequently find myself in over my head. I am at the point where I need to give small theaters copies to view for consideration for a real screening, and would like to ask the folks here some questions:
    How would you export this sequence for viewing on a DVD? Export through QuickTime Movie (not conversion)? Wouldn't that make a file too large to create a DVD with iDVD? DVD is only SD, yes? How is that (watching on a DVD) taken care of, if at a later time I would want a DVD of this sequence to be in the best quality possible?
    This is a lot of questions, and I hope not too vague. Thank you for your time, and thanks in advance for any help.

    Hi
    My notes on this
    FCE/P to iDVD
    Several things
    • How to go from FCE/P to iDVD
    • Free space on Start-up hard disk
    • Encoding
    • Brand and type of DVDs used
    • Burn speed set
    • iDVD BUG
    • Chapters
    How to go from FCE/P to iDVD I do
    • Disable Screen and Energy saver
    • IMPORTANT --> FIRST in FinalCut - Mix Down Audio under Sequence Menu / Render Only / Mix-down
    • Export out as a QuickTime .mov file
    • Select with Mark - Chapter Mark
    • Not as Self-Contained (not important but saves time and space)
    • NO QUICKTIME CONVERSION (IMPORTANT)
    This QT.mov file I import into iDVD from within iDVD.
    Free space on Start-up hard disk
    I set a minimum of 25GB (for Mac OS and iDVDs temp files)
    Encoding
    • I use Pro Quality encoding
    Brand and type of DVDs used
    • I use Verbatim
    • I use DVD-R (plays on more even older DVD-players)
    Burn speed set
    • I set down this to x4 (or x1)
    iDVD BUG
    • One can not go back to movie-project for any alterations and then go back to
    the iDVD project. It will notice and ask You to either Up-date or Cancel. Neither
    of them will work.
    Medicine - Start a brand new iDVD project.
    Use of Chapters
    • I only use a to z and 0 to 9 in naming them. NO other symbol/letter !
    • NO Chapter-mark at very beginning - iDVD NEEDS TO set this by it self
    • No Chapter marks in or within two seconds from a transition
    (Way around this last one - Export movie as QT full quality and NO Chapter marks
    Import this into a new Movie-project and now You are free to set C-Ms where You want
    them except at very beginning - still)
    Material used to build movie
    • video - I use streamingDV (or convert all other to this e.g. .mp4, .avi, .wmv etc)
    • audio - I use .aiff 16-bit 48kHz or from Audio-CD (44.1kHz) - no .mp3 or direct from iTunes
    • photos - I use .jpg - no .bmp etc
    If problems:
    Trash iDVD pref. file and run Repair Permissions - and have a re-try.
    from post ??
    May not be relevant, but I had the same problem with iDVD, where burned DVDs showed a green screen. It was cured by quitting Quicksilver and Quickeys as well as disabling sleep and screen-saving
    Yours Bengt W

  • How could Ecatt support a FM which has export parameter data type as any

    Hi,
    I have created a FM which has export parameter data type as 'Type ref to data'.
    The actual paremeter value for this export parameter is a dynamically generated internal table, which does not have a abap dictionary data type.
    Could I use the 'FUN' ecatt command to test this FM?  How could I get this reference export parameter?
    Thanks a lot in advance!

    Hi,
    Wouldn't it be enough if you define parameter in test data container as reference to table type with structure of type c(1000)  (or more/less characters depending on how much data you need to pass)?
    I'm not 100% sure if filling this table with data will work (this is reference after all) but if this is an issue than create 2 parameters: 1 of table type and second of reference type. Then inside your script before FUN use ABAP...ENDABAP to assign your table parameter to reference parameter and use second one as input for FUN command.
    I think that either first or second solution should work.
    Best regards
    Marcin Cholewczuk

  • Export tables/structure from FM

    Hi SAPMASTER,
    Please, I need your help!!!!
    Forgive my stupid doubt.
    I need to export a table from FM.
    Below is my FM:
    FUNCTION ZZEXPORTA.
    ""Local Interface:
    *"  EXPORTING
    *"     VALUE(OUT1) TYPE  ZZSTRU_ZZQTDMAT
    DATA: itab TYPE TABLE OF ZZSTRU_ZZQTDMAT,
               wa LIKE LINE OF itab.
    wa-material   = '123'.
    wa-descricao  = 'nothing'.
    wa-unidade    = 'ea'.
    wa-quantidade = 123.
    MOVE-CORRESPONDING wa to out1.
    CLEAR wa.
    wa-material   = '234'.
    wa-descricao  = 'all'.
    wa-unidade    = 'xyz'.
    wa-quantidade = 456.
    MOVE-CORRESPONDING wa to out1.
    CLEAR wa.
    ENDFUNCTION.
    The result is just the "last" data that I put in wa (this is right).
    Please, how can I add 2 "registers" to structure ?
    I tried APPEND but I got an error message:
    "out1 is not a internal table".
    I appreciate your help.
    Regards,
    Edson Luiz

    Hi Krishnendu Laha,
    Thank you for your help but I have already put in TABLES tab.
    SAP did not permit. I got the error message:
    "TABLE is OBSOLETE".
    So, I put in Export tab.
    Please, is there any way to put in the TABLES tab?
    Regards,
    Edson Luiz

  • Dynamic export table parameter

    Hi all
    Currently im having this issue whereby i need a dynamic export table parameter in the function module. this is because there is a dynamic selection from the database and then i do not know what is the reference type for the exporting table. how to define a dynamic reference type. btw im developing on 4.6C

    If you are using an RFC FM it would be different 'cause you always have to type all the parameters.
    In case it's not an RFC, of course you can do it.
    FUNCTION ZJMOTERO.
    *"*"Interfase local
    *"  IMPORTING
    *"     REFERENCE(I_RUTA) TYPE  ZJMOTERO3
    *"  TABLES
    *"      TABLE
    field-symbols: <fs> type table.
    data: a type ref to data.
    data: tabla type table of pa0001.
    select * into table tabla from pa0001 where pernr eq 1.
    assign tabla to <fS>.
    table[] = <fs>[].
    ENDFUNCTION.

  • Export table problem

    hi all,
    When I try to export the EMP_DOC table in oracle 9i database which contains blob datatype I get the following error.
    . . exporting table EMP_DOC
    EXP-00003: no storage definition found for segment(15, 266773)
    What should I do to export the table which contains the BLOB data type.
    Thanks,
    Silambu

    There is a search bar on every page of metalink (as there is a search bar on every page of this forum), consisting of two elements: a combo-box and a text box.
    The former will show 'Knowledge base', the latter is accepting free text.
    To the right there is a link labeled 'Advanced'. This will allow you to search for bug numbers and doc ids.
    Metalink frequently organises webseminars for new users.
    These are announced in the headlines.
    Sybrand Bakker
    Senior Oracle DBA

Maybe you are looking for