Tp return code 8 when doing importing script files ie KX ..

Hi,
Our import was running fine and when importing KX Files it ended with return code = 8.
And now we want to check whetner the client independent data ie :<SID>KT has been imported succesfully or not..
Now we are unable to logon to the imported client using sap* password..It is saying that is locked..
we are unable to logon using any ID..
Could you please provide your valuable suggestions in this regds..
Appreciate for quicker response..
Regds,
Satyanarayana N.

Hi,
The good way i know is to go to the table usr02 directly in the DB and delete the entry for sap* (for the client you created) then when you'll restart the instance the user will be created again with the defult SAP password. This is always works.
This is the procedure to do it from SQLplus
sqlplus "/as sysdba"
DELETE from SAPR3.USR02 where mandt='000'
and bname = 'SAP*';
After this if you are trying to log in with SAP* ans password "pass" you should check in the cleint (source client the following profile parameter and set the value as 0
login/no_automatic_user_sapstar = 0. Then only you can login to any new client as SAP* with pwd PASS)
If it is not the case try with sap standard password.
Kind Regards,
Vamsi.

Similar Messages

  • Return code 8 when we import transport request in production server

    Hi,
    I imported one transport request in Production server.  I got the error "Ended with return code 8".  I checked the log.  It shows " R3TRMSAGZDVLP_MSGCL was repaired in this system" and "LIMUMESSZDVLP_MSGCL051 was not imported in this step"
    How to i rectify?
    Regards
    Somu

    Hi,
    The particular object has been changed by some one in your production server.Here you can check whether there is any particular transport request in which the object R3TRMSAGZDVLP_MSGCL is included.if so release that request and perform the import again.If you are sure that you want to import is ignoring the repair then use unconditional mode for the same at the time of import.now the import will be successful without issues.
    Regards
    Ashok

  • Return code 4 when converting field GN_PAR_SSY in record

    Hi friends,
    This is very much urgent.
    I am getting error
    "Record 1 :Return code 4 when converting field GN_PAR_SSY in record " while extracting customer text through 0customer_text.
    In the transfer rule there is nothing assigned to the infobjects 0GN_PAR_SSY.
    My source system is EEC 6.0.
    I am not getting this error on development and quality servers.
    Regards,
    Sane M. V.

    Hi mahendra , just have a look on the routine , for this infobject.
    PROGRAM CONVERSION_ROUTINE.
    Type pools used by conversion program
    TYPE-POOLS: RS, RSARC, RSARR, SBIWA, RSSM.
    Declaration of transfer structure (selected fields only)
    TYPES: BEGIN OF TRANSFER_STRUCTURE ,
      InfoObject 0PLANT: CHAR - 000004
      WERKS(000004) TYPE C,
      InfoObject 0POSTAL_CD: CHAR - 000010
      PSTLZ(000010) TYPE C,
      InfoObject 0PURCH_ORG: CHAR - 000004
      EKORG(000004) TYPE C,
      InfoObject 0SALESORG: CHAR - 000004
      VKORG(000004) TYPE C,
      InfoObject 0FACTCAL_ID: CHAR - 000002
      FABKL(000002) TYPE C,
      InfoObject 0COUNTRY: CHAR - 000003
      LAND1(000003) TYPE C,
      InfoObject 0REGION: CHAR - 000003
      REGIO(000003) TYPE C,
      InfoObject 0COUNTY_CDE: CHAR - 000003
      COUNC(000003) TYPE C,
      InfoObject 0DISTR_CHAN: CHAR - 000002
      VTWEG(000002) TYPE C,
      InfoObject 0RT_CUSTPL: CHAR - 000010
      KUNNR(000010) TYPE C,
      InfoObject 0PLANTCAT: CHAR - 000001
      VLFKZ(000001) TYPE C,
      InfoObject 0SALES_DIST: CHAR - 000006
      BZIRK(000006) TYPE C,
      dummy field to avoid syntax error
        $dummy(1) type c,
    END OF TRANSFER_STRUCTURE .
    Global code used by conversion rules
    $$ begin of global - insert your declaration only below this line  -
    DATA:   l_s_errorlog TYPE rssm_s_errorlog_int,
            l_text TYPE string.
    $$ end of global - insert your declaration only before this line   -
          FORM COMPUTE_GN_R3_SSY
    Compute value of InfoObject 0GN_R3_SSY
    in communication structure /BIC/CS0PLANT_ATTR
    Technical properties:
        field name      = GN_R3_SSY
        data element    = /BI0/OIGN_R3_SSY
        data type       = CHAR
        length          = 000002
        decimals        = 000000
        ABAP type       = C
        ABAP length     = 000004
        reference field =
    Parameters:
    -->  RECORD_NO       Record number
    -->  TRAN_STRUCTURE  Transfer structure
    <--  RESULT          Return value of InfoObject
    <->  G_T_ERRORLOG    Error log
    <--  RETURNCODE      Return code (to skip one record)
    <--  ABORT           Abort code (to skip whole data package)
    FORM COMPUTE_GN_R3_SSY
      USING    RECORD_NO LIKE SY-TABIX
               TRAN_STRUCTURE TYPE TRANSFER_STRUCTURE
               G_S_MINFO TYPE RSSM_S_MINFO
      CHANGING RESULT TYPE /BI0/OIGN_R3_SSY
               G_T_ERRORLOG TYPE rssm_t_errorlog_int
               RETURNCODE LIKE SY-SUBRC
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel datapackage
    $$ begin of routine - insert your code only below this line        -
    DATA: l_s_errorlog TYPE rssm_s_errorlog_int.
      CALL FUNCTION 'RSDG_ID_GET_FROM_LOGSYS'
        EXPORTING
          i_source_system = G_S_MINFO-LOGSYS
        IMPORTING
          e_soursysid     = RESULT
        EXCEPTIONS
          id_not_found    = 1.
      IF sy-subrc <> 0.
        RETURNCODE = 4.
        MESSAGE e087(r7) WITH G_S_MINFO-LOGSYS INTO l_text.
        MOVE-CORRESPONDING syst TO l_s_errorlog.
        l_s_errorlog-record = RECORD_NO.
        APPEND l_s_errorlog TO g_t_errorlog.
      ABORT = 1.
      ENDIF.
    $$ end of routine - insert your code only before this line         -
    ENDFORM.
          FORM INVERT_GN_R3_SSY
          Inversion of selection criteria for InfoObject 0GN_R3_SSY
          This subroutine needs to be implemented only for SAP RemoteCubes
          (for better performance) and for the Report/Report Interface
          (drill through).
    -->  I_RT_CHAVL_CS       Ranges table for current InfoObject
    -->  I_THX_SELECTION_CS  Selection criteria for all other InfoObjects
    <--  C_T_SELECTION       Selection criteria for fields of
                              transfer structure
    <--  E_EXACT             Flag: Inversion was exact
    FORM INVERT_GN_R3_SSY
      USING    I_RT_CHAVL_CS      TYPE RSARC_RT_CHAVL
               I_THX_SELECTION_CS TYPE RSARC_THX_SELCS
      CHANGING C_T_SELECTION      TYPE SBIWA_T_SELECT
               E_EXACT            TYPE RS_BOOL.
    $$ begin of inverse routine - insert your code only below this line-
      DATA:
        L_S_SELECTION LIKE LINE OF C_T_SELECTION.
    An empty selection means all values
      CLEAR C_T_SELECTION.
    Selection of all values may be not exact
      E_EXACT = RS_C_FALSE.
    $$ end of inverse routine - insert your code only before this line -
    ENDFORM.
    Hope it helps , assign pts if helpful

  • Return code 3 when converting field /BIC/IHRBGCF in record 31

    Hi All,
    i got an error in psa
    Return code 3 when converting field /BIC/IHRBGCF in record 31
    Could you please help me on this error
    Thanks in advance
    Nitya

    Hi ,
    error in PSA
    FORM COMPUTE_/BIC/IHRBGCF
      USING    RECORD_NO LIKE SY-TABIX
               TRAN_STRUCTURE TYPE TRANSFER_STRUCTURE
               G_S_MINFO TYPE RSSM_S_MINFO
      CHANGING RESULT TYPE /BIC/OIIHRBGCF
               G_T_ERRORLOG TYPE rssm_t_errorlog_int
               RETURNCODE LIKE SY-SUBRC
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel datapackage
    $$ begin of routine - insert your code only below this line        -
    DATA: l_s_errorlog TYPE rssm_s_errorlog_int.
      V_PROD_LN = TRAN_STRUCTURE-PROD_LN .
    Have to add the strange logic below, because ALPHA conversion
    on 0PROFIT_CTR in the data source does not seem to work...
      IF V_PROD_LN CO ' 0123456789' .
    i.e. if input is numberic or empty,
    then add 00000000 to "make" it into ALPA
    Otherwise (if alpha) keep as-is, i.e. no ELSE
        CONCATENATE '00000000' V_PROD_LN+0(2) INTO V_PROD_LN.
      ENDIF.
    End of "ALPHA" logic
    Do the lookup in IHRPLSEG first...
      SELECT SINGLE /BIC/IFISEGCD
      INTO V_IFISEGCD
      FROM /BIC/PIHRPLSEG
      WHERE PROFIT_CTR = V_PROD_LN
         AND CO_AREA = TRAN_STRUCTURE-KOKRS .
    If no match found in IHRPLSEG,
    then take incoming PROD_LN as-is.
      IF SY-SUBRC <> 0.
        V_IFISEGCD = TRAN_STRUCTURE-PROD_LN .
      ENDIF.
      IF V_IFISEGCD CO ' '.
    i.e. if incoming PROD_LN was blank
    or if SEGCD returned from IHRPLSEG is blank...
        RETURNCODE = 1.
      ELSE.
    Getting date ...
        SELECT SINGLE LOW
        INTO TVARVC-LOW
        FROM TVARVC
        WHERE NAME = 'ZIHRBW_DATE' AND TYPE = 'P'.
        TO DETERMINE CAL PERIOD...
        V_CALPER = TVARVC-LOW(6).
        For numeric incoming values we have to add 00
        to find the match, because in BW 0COMPANY is CHAR(6)...
        CONCATENATE '00' TRAN_STRUCTURE-BUKRS INTO COMPANY_STR.
        get M/L indicator from 0COMPANY..
        SELECT SINGLE /BIC/IMYSEPAR
        INTO /BI0/PCOMPANY-/BIC/IMYSEPAR
        FROM /BI0/PCOMPANY
        WHERE COMPANY = COMPANY_STR
          AND OBJVERS = 'A'
          AND /BIC/IFIVFR =< V_CALPER
          AND /BIC/IFIVTO => V_CALPER.
        IF SY-SUBRC <> 0.
        i.e. if no match found in 0COMPANY,
        then try to find a match without added zeros...
          SELECT SINGLE /BIC/IMYSEPAR
          INTO /BI0/PCOMPANY-/BIC/IMYSEPAR
          FROM /BI0/PCOMPANY
          WHERE COMPANY = TRAN_STRUCTURE-BUKRS
            AND OBJVERS = 'A'
            AND /BIC/IFIVFR =< V_CALPER
            AND /BIC/IFIVTO => V_CALPER.
        ENDIF.
    do the lookup in InfoObject IHRPLBG...
    Need to strip zeros first...
        SHIFT V_IFISEGCD LEFT DELETING LEADING '0'.
        SELECT SINGLE /BIC/IHRBGCF
        INTO /BIC/PIHRPLBG-/BIC/IHRBGCF
        FROM /BIC/PIHRPLBG
        WHERE /BIC/IFISEGCD = V_IFISEGCD
          AND /BIC/IMYSEPAR = /BI0/PCOMPANY-/BIC/IMYSEPAR
          AND OBJVERS = 'A'.
        IF NOT /BIC/PIHRPLBG-/BIC/IHRBGCF IS INITIAL.
    i.e. if match found in IHRPLBG...
          RESULT = /BIC/PIHRPLBG-/BIC/IHRBGCF.
          RETURNCODE = 0.
        ELSE.
          IF /BI0/PCOMPANY-/BIC/IMYSEPAR IS INITIAL .
    i.e. no match found in 0COMPANY
            RETURNCODE = 3.
          ELSE.
    i.e. no match found in IHRPLBG
            RETURNCODE = 2.
          ENDIF.
        ENDIF.
      ENDIF.
    CLEAR: ZTHRBW_SEG_MAP-IFISEGCD, /BIC/PIHRPLBG-/BIC/IHRBGCF.
      CLEAR:  /BIC/PIHRPLBG-/BIC/IHRBGCF, /BI0/PCOMPANY-/BIC/IMYSEPAR.
      CLEAR: V_IFISEGCD, V_PROD_LN, COMPANY_STR, V_CALPER.
    returncode <> 0 means skip this record
    RETURNCODE = 0.
    abort <> 0 means skip whole data package !!!
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    ENDFORM.
          FORM INVERT_/BIC/IHRBGCF
          Inversion of selection criteria for InfoObject IHRBGCF
          This subroutine needs to be implemented only for SAP RemoteCubes
          (for better performance) and for the Report/Report Interface
          (drill through).
    -->  I_RT_CHAVL_CS       Ranges table for current InfoObject
    -->  I_THX_SELECTION_CS  Selection criteria for all other InfoObjects
    <--  C_T_SELECTION       Selection criteria for fields of
                              transfer structure
    <--  E_EXACT             Flag: Inversion was exact
    FORM INVERT_/BIC/IHRBGCF
      USING    I_RT_CHAVL_CS      TYPE RSARC_RT_CHAVL
               I_THX_SELECTION_CS TYPE RSARC_THX_SELCS
      CHANGING C_T_SELECTION      TYPE SBIWA_T_SELECT
               E_EXACT            TYPE RS_BOOL.
    $$ begin of inverse routine - insert your code only below this line-
      DATA:
        L_S_SELECTION LIKE LINE OF C_T_SELECTION.
    An empty selection means all values
      CLEAR C_T_SELECTION.
      L_S_SELECTION-FIELDNM = 'BUKRS'.
      L_S_SELECTION-FIELDNM = 'KOKRS'.
      L_S_SELECTION-FIELDNM = 'PROD_LN'.
    Selection of all values may be not exact
      E_EXACT = RS_C_FALSE.
    $$ end of inverse routine - insert your code only before this line -
    ENDFORM.
    Please advise
    Thanks in Advance
    Nitya

  • Error when doing importing with impdp

    Hi,
    I tried to do export then import the schema from and to same schema. However, when doing export with expdp everything was okay.
    Problem begins when I tried to do importing by using impdp. I also tried to drop the current schema and created the new one but it still doesn't work.
    If I didn't drop the current schema, it logs looks like this
    Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE
    ORA-31684: Object type SEQUENCE:"HSS"."LCM-MIGRATION_ID-SEQ" already exists
    ORA-31684: Object type SEQUENCE:"HSS"."WKS_IDENTITY_SEQ" already exists
    ORA-31684: Object type SEQUENCE:"HSS"."ESS_FAILOVER_RESOURCE_SEQ" already exists
    ORA-31684: Object type SEQUENCE:"HSS"."ESS_FAILOVER_LEASE_OWNER_SEQ" already exists
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    ORA-39151: Table "HSS"."HSS_COMPONENT" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."HSS_COMPONENT_LINKS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."HSS_COMPONENT_PROPERTY_VALUES" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."HSS_COMPONENT_TIERS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."ESS_CLUSTER_SERVER_MAPPING" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."HSS_COMPONENT_TYPES" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."CSS_IDENTITY" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."CSS_GROUP_MEMBERS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."CSS_USERS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    Job "HSS"."SYS_IMPORT_FULL_01" completed with 95 error(s) at 08:47:21
    And then this is the log when doing importing, I only highlighted the necessary part which I think related with my problem
    Starting "HYPSS"."SYS_IMPORT_FULL_01": HYPSS/******** TRANSFORM=oid:n:type directory=test_dir logfile=imptest.log dumpfile=HYPSS.dmp
    Processing object type SCHEMA_EXPORT/USER
    ORA-31684: Object type USER:"HYPSS" already exists
    . . imported "HYPSS"."CSS_ROLE_LOCALES" 1.630 MB 6358 rows
    . . imported "HYPSS"."HSS_COMPONENT_FILES" 601.5 KB 33 rows
    . . imported "HYPSS"."HSS_COMPONENT_PROPERTY_VALUES" 130.7 KB 1657 rows
    . . imported "HYPSS"."CES_APPS" 10.54 KB 1 rows
    etc....
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    ORA-39083: Object type INDEX_STATISTICS failed to create with error:
    ORA-01403: no data found
    ORA-01403: no data found
    Failing sql is:
    DECLARE I_N VARCHAR2(60); I_O VARCHAR2(60); c DBMS_METADATA.T_VAR_COLL; df varchar2(21) := 'YYYY-MM-DD:HH24:MI:SS'; BEGIN DELETE FROM "SYS"."IMPDP_STATS"; c(1) := 'TRIGGER_NAME'; c(2) := 'TRIGGER_GROUP'; DBMS_METADATA.GET_STAT_INDNAME('HYPSS','QRTZ_TRIGGERS',c,2,i_o,i_n); INSERT INTO "SYS"."IMPDP_STATS" (type,version,flags,c1,c2,c3,c5,n1,n2,n3,n4,n5,n6,n7,n8,n
    Processing object type SCHEMA_EXPORT/TABLE/COMMENT
    The source schema is on USERS tablespace (default). The destination schema I tried to put on the same tablespace but it doesn't work. However when I changed the destination tablespace, it also doesn't work.
    Anybody got the idea why this occurs? Thanks.

    got error like this
    ORA-39152: Table "HSS"."CSS_GROUP_MEMBERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_USERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_ROLES" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_DELEGATED_MEMBERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_ROLE_MEMBERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_ROLE_LOCALES" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_GROUPS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-29913: error in executing ODCIEXTTABLEFETCH callout
    ORA-00001: unique constraint (HSS.COMPONENT_LINKS_PK_IND) violated
    ORA-31693: Table data object "HSS"."HSS_COMPONENT_TYPES" failed to load/unload and is being skipped due to error:
    ORA-00001: unique constraint (HSS.COMPONENT_TYPES_PK_IND) violated
    ORA-39111: Dependent object type COMMENT skipped, base object type VIEW:"HSS"."VW_APPLICATIONS" already exists
    ORA-39111: Dependent object type COMMENT skipped, base object type VIEW:"HSS"."VW_APPLICATIONS" already exists
    ORA-39111: Dependent object type COMMENT skipped, base object type VIEW:"HSS"."VW_APPLICATIONS" already exists

  • Return code 4 when converting field LOG_SYS in record

    Hi,
    When we try to load data into cube(0pur_c01) its giving this error
    Return code 4 when converting field LOG_SYS in record
    this LOG_SYS field id used in the following datasources: 2lis_02_itm.
    how it solve this problem?
    Thank u.

    Dear Devi
    If you using data source as flat file, nothing related with some other data sources.
    and also LOG_SYS is not needed in the transformation.
    Remove that link (LOG_SYS), Which is in the transformation.
    After that you will not get that error message.
    Update me, if you had any problems
    Regards
    Saravanan.ar

  • Return code 4- when converting field CUSTOMER in record

    Hi,
    We are loading transaction data. Data load till PSA is succcessful but when we are loading from PSA to CUBE its is failing.
    The error message is "Return code 4- when converting field CUSTOMER in record"
    I have checked Transfer Rule, Update Rule it is simple object to object assignment. Data in PSA is also correct.
    What could be the reason?
    Regards
    SSS

    Hi Venkat,
    Is already has ALPHA conversion routine. We are getting this error for few more infoobjects in different transaction data loads.
    Regards
    SSS

  • When I import my files only the audio plays back not the video. If I export the sequence its there?

    When I import my files only the audio plays back not the video. If I export the sequence its there?
    I am new to Premiere having just downloaded the 30 day trial yesterday, I jumped straight in and imported all of my files from my video camera however in Premiere only the audio plays back with the displays just showing a black space.
    Out of curiosity I dragged three or four shots into the sequence editor and then exported them and played this through VLC and the video was there?
    As I said I am completely new to Premiere having only spent around 3 or 4 hours with it in the past, I read a few forum threads around similar issues but couldn't find any solutions and as I am trying to edit together a short film for a college project due in soon I need to try and find a way to fix this A.S.A.P
    Any help would be appreciated and if theres any more info I can provide please let me know.
    Thanks
    Drew

    Being new, I'm sure you don't know about the NEW ITEM process, so click/read about that at this link
    CS5-thru-CC PPro/Encore tutorial list http://forums.adobe.com/thread/1448923
    Also, More information needed for someone to help... please click below and provide the requested information
    -PPro Information FAQ http://forums.adobe.com/message/4200840
    What is your exact brand/model graphics adapter (ATI or nVidia or ???)
    What is your exact graphics adapter driver version?
    Have you gone to the vendor web site to check for a newer driver?
    For Windows, do NOT rely on Windows Update to have current driver information
    -you need to go direct to the vendor web site and check updates for yourself
    ATI Driver Autodetect http://support.amd.com/en-us/download/auto-detect-tool
    nVidia Driver Downloads http://www.nvidia.com/Download/index.aspx?lang=en-us
    Exactly what are you editing?
    Codec & Format information, with 2 links inside for you to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download

  • When I import .mts files into Premiere 7 the audio is intermittent?

    Good afternoon. I am new to this forum and your help would be appreciated. I have recently purchased a Sony Hard Drive Camcorder X105E and I have done my first filming. When I import the files into Premiere Elements 7 and preview them the audio is intermittent on playback. What am I doing wrong cause I cant figure it out?
    Thanks in advance for your answers
    Regards
    Edenr1

    OK, on the I/O, you have one, nicely sized, physical HDD. You don't have it partitioned, do you?
    With one physical HDD, so many things are happening at the same exact time:
    1.) your OS is reading/writing to it
    2.) your program is reading/writing to it
    3.) your media is being read from it
    4.) your OS's Virtual Memory is probably being used, so it's reading/writing to it
    The problem is that all of these (plus possibly some other programs/Processes) are fighting to get their data handled at the same time. Each is telling the HDD that it needs the heads in one place on a platter. Same for the next program, and the next. Unfortunately, regardless of the speed of the HDD and the speed of the controller, the heads can only be in one place at one time.
    Especially for the Audio (that is more I/O intensive, than the Video usually is - it taxes the CPU much more), you will benefit from more physical HDD's.
    I just posed an ARTICLE in the Tips & Tricks sub-forum. It links to two articles by Harm Millard. His article on HDD setup is a gem. Now, it takes things to a professional NLE level, and few are quite ready for that, still the info is good. Much can be extrapolated from his suggestions. Though he lists the ultimate Video editing setup, many concepts can be applied on a smaller scale. You might want to read over the linked articles. They will give you some things to think about.
    Also, I just saw an ad for a 1TB WD ATA-300 HDD for US$ 79.00 at Fry's Electronics. While you may need an ATA-100, this shows how far prices have fallen. I've got an ATA-100 1TB, to augment my 4x1TB SATA II's, and it's not that old. I paid US$ 400 for it! Should have waited, but then I've used it for the last year, so all is not lost.
    Good luck,
    Hunt

  • AME CC 2014 (latest) when I import a file, the last pre-set I used is automatically applied to the file

    And I can't seem to find a way to stop this behavior.
    If I control click on the preset below the file in the Queue Pane and select remove, it deletes the preset and the file from the Queue.
    Any help appreciated.
    thanks
    MtD

    I seem to recall the previously, when I imported a file into AME, no preset was applied until I selected one. Is that incorrect?
    Or is the correct workflow to select the preset, then import the file?
    As it is now, I have one extra step if I happen to not want the preset that was applied on import, I need to delete it - after adding the preset I do want. Seems an odd way to work to me.
    MtD

  • When I import PSD file then Catalyst stopped working why?

    HI,
    When I import PSD file then Catalyst stopped working .why? it's a BUG?
    Please find the attached image

    I'm an a mac, and I haven't had the problem, so I'm not the best for advice. That said, I am sure FC on the pc can import .psd file. I would check the psd for anything "abnormal". If it is a complicated file, simplify as much as possible, flatten effects especially.
    **Upload the psd, I could try to import it and upload a fxp

  • When I import .jpg files they sparodically turn to black.  Any suggestions?

    I am using Premier Pro CS3.  When I import .jpg files, they suddenly turn to black.  Any suggestions?

    Dan Isaacs wrote:
    I also think that JPEGs themselves can be sometimes problematic in CS3. You may also want to try converting them to PSD or BMP.
    As I remember from discussions on the old forum...
    Depending on how the JPG was created (which software and/or which camera) there is sometimes "extra" information inside the file header that confuses Premiere since it is not part of the basic file specification
    Solution was to open in Photoshop (or, rarely, a non-Adobe program) and save to a new name or, as Dan says, to a different format

  • Ended with return code: === 8 === while doing transports from Dev to Test

    Hi Experts,
    We are doing transports from BD1 to BQ1 and getting this error message.
    Could anyone please let me know why and what would be the solution for the following error message:
    Execution of programs after import (XPRA)
    Transport request   : BD1K900065
    System              : BQ1
    tp path             : tp
    Version and release: 370.00.09 700
    Execution of programs after import (XPRA)
    End date and time : 20070803133308
    Ended with return code:  ===> 8 <===
    Thanks in advance.
    Best Regards,
    Chandu.

    Raymonds,
    There is huge list of errors coming up. Some of them are as below:
    Navigation attribute 0SALESORG is missing in characteristic 0PLANT
    Navigation attribute 0SALES_DIST is missing in characteristic 0PLANT
    Characteristic 0RT_LOCATIO: Referenced characteristic 0PLANT not (actively) available
    Attribute 0INT_CUST from characteristic 0SALESORG not (actively) available
    Attribute 0CRM_MKTELM from characteristic 0UCCONTRACT not (actively) available
    Attribute 0CRM_MKTELM from characteristic 0UCCONTRACT not (actively) available
    Hierarchy characteristic 0BPARTNER of characteristic 0UCCONTRACT is not active
    Characteristic 0UCOUTLCONT: Referenced characteristic 0UCCONTRACT not (actively) available
    Characteristic 0UCOUTLCONT: Referenced characteristic 0UCCONTRACT not (actively) available
    Thanks in advance.
    Best Regards,
    Chandu.

  • Load Error with return code 7000 when call sqlldr in interface.

    Hi All,
    I have created a interface to load data from 'File' to 'Oracle' in ODI 11g.
    Below are the running order of this interface.
    1 - Loading - SrcSet0 - Drop work view
    2 - Loading - SrcSet0 - Drop Temp Table
    3 - Loading - SrcSet0 - Create Temp table
    4 - Loading - SrcSet0 - Create Work View
    5 - Loading - SrcSet0 - Generate CTL file
    6 - Loading - SrcSet0 - Call sqlldr
    We are getting the following error while running the step 6.
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (most recent call last):
      File "<string>", line 22, in <module>
    Load Error: See C:\home\oracle\joc\odi/AIM.log for details
      at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
      at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:322)
      at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:170)
    And it return code 7000 indicated in 'Execution Statistics'.
    If anyone has encountered a similar issue and able to solve it, please share your thoughts with me.
    Thanks in advance for your help.
    Dicksam

    This forum is dedicated to supporting the use of Maven with FMW and the new Oracle Maven Repository.  Given that ODI does not currently provide Maven support, you are unlikely to get a response in this forum.  You might want to try posting in a different forum dedicated to Data Integration, such as the Master Data Management forum.

  • In iMovie is there any way when you import your files to just make the file an alias like final cut does and not actually import and copy the whole file again into my mac. It's taking a lot of my space up. Thanks

    I just want to see if there is any way that I can import the files into iMovie as an alias like Final Cut Pro and Express does. I hate having to copy the file again because it takes up alot of space on my Mac. Thanks.

    No, but you can import your Event to an external drive from the import screen.
    It is also possible to create a symbolic link to another location. The link stays in your iMovie Events or iMovie Project folder, but the actual file resides somewhere else. I don't do it this way, so I can't share any details.

Maybe you are looking for

  • Couldn't upload

    Hi, Pls fin the error in this program. I am unable to upload. Regards, Karthik Program ID       : ZRFC_RUSHORDER Transaction Code : Z* Description      : RFC For Sales Process using        Transaction Method calling                    3 Transactions

  • Modeler error messages - more info needed!

    Dear Friends, I got an error executing a planning sequence of function type  'generate combinations'. The system messages on the top section of the modeler  are : 1. first message : "Planning function Gen Combinations ( ended with errors" 2. subseque

  • BT Infinity allocating me a USA 31. IP address

    I noticed today that my IP address was 31.  which is allocated to the USA Is that common to get such an IP address allocated?  I noticed because we have some GEOIP recognition in our software at work and it was showing my prices in $ rather than £ I

  • I'm getting an error 100 when i try to download final cut pro x

    I'm having an issue in downloading Final Cut Pro from the Mac App store.  I've seen all the "log out, then log in then stand on your head" steps to make it work but it doesn't.  I can download apps, just not Final Cut.  I've uninstalled my trial vers

  • New gauge installed ... restart server and ... always old gauge

    Hello, I want to modify the specfic gauge as described in the following link: http://www.adobe.com/devnet/flex/articles/customized_gauge.html In this tutorial, author speak to restart server to take into account new files. I restart J2EE server ... a