Error for rman for RAC db

Copyright (c) 1982, 2007, Oracle. All rights reserved.
connected to target database: TEST (DBID=485988764) connected to recovery catalog database
RMAN> run {
2> resync catalog;
3> allocate channel oem_backup_disk1 type disk
4> format '/misc/OraBackup/TEST/%d_ARCH_%T_%t_%s';
5> allocate channel oem_backup_disk2 type disk
6> format '/misc/OraBackup/TEST/%d_ARCH_%T_%t_%s';
7> backup as COMPRESSED BACKUPSET tag=Nov100921
8> archivelog all not backed up 2 times;
9> release channel oem_backup_disk1;
10> release channel oem_backup_disk2;
11> }
12>
starting full resync of recovery catalog full resync complete
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of allocate command at 11/10/2009 09:22:07
RMAN-06004: ORACLE error from recovery catalog database:
ORACLE error from recovery catalog database:
This is the error for RAC database. This error is because if i include recovery catalog in the script. if there is no recovery catalog then it is working fine.

run {
allocate channel oem_backup_disk1 type disk format '/misc/OraBackup/TEST/%d_ARCH_%T_%t_%s';
backup as COMPRESSED BACKUPSET tag=Nov100921 archivelog all not backed up 2 times;
release channel oem_backup_disk1;
it worked successfully.
if i run like this keeping it in script
run {
resync catalog;
allocate channel oem_backup_disk1 type disk
format '/misc/OraBackup/${3}/%d_ARCH_%T_%t_%s';
allocate channel oem_backup_disk2 type disk
format '/misc/OraBackup/${3}/%d_ARCH_%T_%t_%s';
backup as COMPRESSED BACKUPSET tag=$TAG
archivelog all not backed up 2 times;
release channel oem_backup_disk1;
release channel oem_backup_disk2;
then i will get the error
Copyright (c) 1982, 2007, Oracle. All rights reserved.
connected to target database: TEST (DBID=485988764) connected to recovery catalog database
RMAN> run {
2> resync catalog;
3> allocate channel oem_backup_disk1 type disk
4> format '/misc/OraBackup/TEST/%d_ARCH_%T_%t_%s';
5> allocate channel oem_backup_disk2 type disk
6> format '/misc/OraBackup/TEST/%d_ARCH_%T_%t_%s';
7> backup as COMPRESSED BACKUPSET tag=Nov100921
8> archivelog all not backed up 2 times;
9> release channel oem_backup_disk1;
10> release channel oem_backup_disk2;
11> }
12>
starting full resync of recovery catalog full resync complete
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of allocate command at 11/10/2009 09:22:07
RMAN-06004: ORACLE error from recovery catalog database:
ORACLE error from recovery catalog database:

Similar Messages

  • Am i missing the most basic setting for RMAN in RAC?

    DB version: 10.2.0.4
    We've set up a 2 node RAC environment. Everything is working fine (failover,...etc).Each node can 'view' other node's archive log destination from OS level.
    ie. When you type
    df -hboth nodes can see each other's location of archive logs.
    When i was trying to take a test LEVEL 0 backup, i got the following error.
    Starting backup at 12-JUL-10
    current log archived
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup plus archivelog command at 07/12/2010 19:32:27
    RMAN-06059: expected archived log not found, lost of archived log compromises recoverability
    ORA-19625: error identifying file /u04/arch214/arch_603157736_2_47455.arc
    ORA-27037: unable to obtain file statusI tried doing
    crosscheck archivelog all;
    delete expired archivelog all;as shown below.
    RMAN> crosscheck archivelog all;
    configuration for DISK channel 2 is ignored
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=1588 instance=cedar2 devtype=DISK
    validation failed for archived log
    archive log filename=/u04/arch214/arch_603157736_1_69607.arc recid=56811 stamp=724184789
    validation failed for archived log
    archive log filename=/u04/arch214/arch_603157736_1_69608.arc recid=56814 stamp=724188191
    validation failed for archived log
    archive log filename=/u04/arch214/arch_603157736_1_69609.arc recid=56815 stamp=724188719
    validation succeeded for archived log
    archive log filename=/data/arch215/arch_603157736_2_47455.arc recid=56816 stamp=724188726
    Crosschecked 4 objects
    RMAN> delete expired archivelog all;
    starting full resync of recovery catalog
    full resync complete
    released channel: ORA_DISK_1
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=1588 instance=cedar2 devtype=DISK
    List of Archived Log Copies
    Key Thrd Seq S Low Time Name
    135777 1 69607 X 12-JUL-10 /u04/arch214/arch_603157736_1_69607.arc
    135786 1 69608 X 12-JUL-10 /u04/arch214/arch_603157736_1_69608.arc
    135808 1 69609 X 12-JUL-10 /u04/arch214/arch_603157736_1_69609.arc
    Do you really want to delete the above objects (enter YES or NO)? y
    deleted archive log
    archive log filename=/u04/arch214/arch_603157736_1_69607.arc recid=56811 stamp=724184789
    deleted archive log
    archive log filename=/u04/arch214/arch_603157736_1_69608.arc recid=56814 stamp=724188191
    deleted archive log
    archive log filename=/u04/arch214/arch_603157736_1_69609.arc recid=56815 stamp=724188719
    Deleted 3 EXPIRED objects
    RMAN> resync catalog;
    starting full resync of recovery catalog
    full resync completeBut i still keep getting
    RMAN-06059: expected archived log not found, lost of archived log compromises recoverabilityWhenever i try to take a level 0 backup.
    Am i missing some basic CONFIGURATION setting (persistent setting) here?

    The archivelog is actually at
    /data/arch215/arch_603157736_2_47455.arc However, RMAN is looking for it at
    /u04/arch214/arch_603157736_2_47455.arcThe path is different. Can you check the filename in v$ARCHIVED_LOG ?
    Apparenly, the log_archive_dest_1 parameter is different in the two instances.
    Have you configured multiple Channels appropriately to connect to the two instances ?
    Hemant K Chitale
    Edited by: Hemant K Chitale on Jul 13, 2010 3:40 PM

  • RMAN-10011: synchronization error while polling for rpc 8, action=startdefa

    Could anybody explain what is this error message caused by?
    TIA
    The entire spool below:
    051107064744: NetBackup RMAN Backup Started
    ORACLE_SID=db02
    backup_type=cold
    number_of_channels=2
    Started by: Oracle
    051107064745: Checking database status
    051107064745: Database status: OPEN
    051107064745: Getting database password
    051107064746: Checking database password
    051107064746: Database password: Valid
    051107064746: Checking Database mode
    051107064746: Database mode: NOARCHIVELOG
    051107064746: Shutdown no archive
    051107064838: RMAN BACKUP STARTED
    Recovery Manager: Release 10.1.0.4.0 - 64bit Production
    Copyright (c) 1995, 2004, Oracle. All rights reserved.
    connected to target database: db02 (DBID=3504436532)
    RMAN> connect catalog *
    2> run
    3> {
    4> sql 'alter session set sort_area_size=12582912';
    5> sql 'alter session set sort_area_retained_size=1048576';
    6> allocate channel t1 type 'SBT_TAPE' parms="ENV=(NB_ORA_POLICY=ORA_solcdi02, NB_ORA_SERV=sun4)"
    7> format 'df_%d_%p_%u_%t';
    8> set limit channel t1 maxopenfiles=1;
    9> allocate channel t2 type 'SBT_TAPE' parms="ENV=(NB_ORA_POLICY=ORA_solcdi02, NB_ORA_SERV=sun4)"
    10> format 'df_%d_%p_%u_%t';
    11> set limit channel t2 maxopenfiles=1;
    12> backup database filesperset=64
    13> include current controlfile;
    14> sql 'alter database open';
    15> release channel t1;
    16> release channel t2;
    17> }
    18>
    connected to recovery catalog database
    starting full resync of recovery catalog
    full resync complete
    sql statement: alter session set sort_area_size=12582912
    sql statement: alter session set sort_area_retained_size=1048576
    allocated channel: t1
    channel t1: sid=160 devtype=SBT_TAPE
    channel t1: VERITAS NetBackup for Oracle - Release 5.1 (2004122521)
    allocated channel: t2
    channel t2: sid=159 devtype=SBT_TAPE
    channel t2: VERITAS NetBackup for Oracle - Release 5.1 (2004122521)
    Starting backup at 11-MAY-07
    channel t1: starting full datafile backupset
    channel t1: specifying datafile(s) in backupset
    input datafile fno=00005 name=/oradata/10gid/u01/grid102/grid102/mgmt.dbf
    input datafile fno=00006 name=/oradata/10gid/u01/grid102/grid102/mgmt_ecm_depot1.dbf
    input datafile fno=00007 name=/oradata/10gid/u01/grid102/grid102/system02.dbf
    input datafile fno=00004 name=/oradata/10grid/u01/grid102/grid102/users01.dbf
    channel t1: starting piece 1 at 11-MAY-07
    channel t2: starting full datafile backupset
    channel t2: specifying datafile(s) in backupset
    input datafile fno=00008 name=/oradata/10ggrid/u01/grid102/grid102/mngmecm02.dbf
    input datafile fno=00001 name=/oradata/10ggrid/u01/grid102/grid102/system01.dbf
    input datafile fno=00002 name=/oradata/10ggrid/u01/grid102/grid102/undotbs01.dbf
    input datafile fno=00003 name=/oradata/10ggrid/u01/grid102/grid102/sysaux01.dbf
    channel t2: starting piece 1 at 11-MAY-07
    channel t2: finished piece 1 at 11-MAY-07
    piece handle=df_GRID102_1_19ihecmm_622277334 comment=API Version 2.0,MMS Version 5.0.0.0
    channel t2: backup set complete, elapsed time: 00:06:05
    channel t2: starting full datafile backupset
    channel t2: specifying datafile(s) in backupset
    including current controlfile in backupset
    channel t2: starting piece 1 at 11-MAY-07
    channel t2: finished piece 1 at 11-MAY-07
    piece handle=df_GRID102_1_1aihed24_622277700 comment=API Version 2.0,MMS Version 5.0.0.0
    channel t2: backup set complete, elapsed time: 00:00:35
    channel t1: finished piece 1 at 11-MAY-07
    piece handle=df_GRID102_1_18ihecmm_622277334 comment=API Version 2.0,MMS Version 5.0.0.0
    channel t1: backup set complete, elapsed time: 00:06:48
    Finished backup at 11-MAY-07
    Starting Control File and SPFILE Autobackup at 11-MAY-07
    piece handle=c-3404436532-20070511-00 comment=API Version 2.0,MMS Version 5.0.0.0
    Finished Control File and SPFILE Autobackup at 11-MAY-07
    sql statement: alter database open
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-10010: error while checking for RPC completion
    RMAN-10011: synchronization error while polling for rpc 8, action=startdefault
    Recovery Manager complete.
    051107065708: RMAN BACKUP FAILED, RMAN exit status=1
    051107065708: Cleaning log file (removing passwords)
    051107065709: Error Log Check
    051107065837: Rman Stat Generator
    051107065956: Backup Html Generator
    051107065956: NetBackup RMAN Backup Finished
    ######################################################

    Check on metalink:
    RMAN-10011: synchronization error while polling for rpc 3, action=startdefault
    Note:429572.1
    Werner

  • RMAN for active passive 10g R2 RAC

    Hi,
    I am having 10g R2 Active-Passive RAC setup.
    in this environment,If I am taking the backup using RMAN,
    how can I handle the failover?
    In active-active instance, if channel allocated to one node is failed, backup will be completed from channel allocated to other node.
    how can i handle the failover in active-passive RMAN backup??/

    What was the reason you went for active/passive RAC setup ?
    --> this is requirement.
    I thought cluster could achieve the same thing.
    1) How can we achive active/passive setup by using cluster?
    2) In RAC active/passive configuration and Cluster setup, which one is good option?
    3) Any URLs on this topic
    Thanks in Advance....
    Regards:
    Abdul Rajak

  • RMAN for 10g RAC in windows2003

    Hello experts,
    could any one help to configure RMAN for 10g RAC in windows2003?
    thanks,

    Hi;
    Please check:
    RMAN: RAC Backup and Recovery using RMAN [ID 243760.1]
    RMAN configuration in ORACLE RAC database
    RMAN configuration in ORACLE RAC database
    RMAN and RAC
    RMAN and RAC
    Also check this search:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=RMAN+RAC&objID=f384&dateRange=all&userID=&numResults=15
    I belive those are will answer your question
    Regard
    Helios

  • What are the caveats of using ASM as storage for RMAN backupsets?

    Hello all,
    We are currently evaluating RAC as our standard database platform. Until now we have been using 10g single instance with ASM for datafiles and local filesystems for RMAN backupsets and archivelogs. We chose to use local fileystems for backup components so that we can utilize a Tivoli filesystem backup in order to secure the backup pieces to tape.
    With RAC, we are looking into a shared location for backupsets and archivelogs. OCFS2 is out of the picture due to it not functioning on top of linux LVM. It appears that our only "shared" option is to use ASM for backupsets and archivelogs.
    My concern is that while the data diskgroups and rman diskgroups will be separate, they are both running on ASM and therefore if ASM fails or is corrupted, we have nothing. My current plan is to utilize the Tivoli RMAN MML (TDPO) to backup the backupsets to tape after the ASM backupset has completed.
    What experiences have been had with using ASM for RMAN backups?
    Any advice on additional protection we can employ to ensure that the database remains recoverable?
    Thanks in advance,
    David

    I've personally haven't implemented RMAN with ASM, but you may want to review Faster Backup, Faster Recovery which discusses RMAN utilizing ASM.
    And although you may not get any of the negative aspects from these presentations, you may want to check out High Availability Customer Case Studies, Presentations, Profiles, Analyst Reports, and Press Releases.
    Hope this helps!

  • Configuring RMAN for dataguard.

    Hi all,
    Here we have a dataguard environment with db1(db_unique_name) as primary and db2(db_unique_name) as physical standby database. For both primary and secondary the ORACLE_SID is 'oracledb'.We configured dataguard in 10g environments and we are not using grid control. And now we want to configure rman for incremental backups. We are using a third catalog database to which we registered from primary db successfully. During primary rman configuration it is showing conflicts. Even the changes made in primary RMAN configuration are applied on to the standby too which i think shouldn't happen in this scenario. How to resolve this issue? Is this happening because of the same ORACLE_SID for both primary and secondary? I'm attaching the link of the doc that we followed also the errors and configuration in rman. Can anyone help?
    http://docs.oracle.com/cd/B28359_01/server.111/b28294/rman.htm#BAJFBBBB
    RMAN> CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON STANDBY;
    new RMAN configuration parameters:
    CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON STANDBY;
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN-08591: WARNING: invalid archivelog deletion policy
    RMAN> CONFIGURE DB_UNIQUE_NAME db1 CONNECT IDENTIFIER 'db1';
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "db_unique_name": expecting one of: "archivelog, auxiliary, auxname, backup, channel, controlfile, clonename, compatible, datafile, device, default, exclude, encryption, maxsetsize, retention, snapshot"
    RMAN-01007: at line 1 column 11 file: standard input
    RMAN> show all;
    starting full resync of recovery catalog
    full resync complete
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 2 DAYS;
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON STANDBY;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u01/app/oracle/product/10.2.0/db_1/dbs/snapcf_NIOS.f'; # default
    Thanks.

    RMAN> show db_unique_name;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "db_unique_name": expecting one of: "all, archivelog, auxiliary, auxname, backup, channel, controlfile, datafile, device, default, exclude, encryption, maxsetsize, retention, snapshot"
    RMAN-01007: at line 1 column 7 file: standard input
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found ";": expecting one of: "allocate, alter, backup, beginline, blockrecover, catalog, change, connect, copy, convert, create, crosscheck, configure, duplicate, debug, delete, drop, exit, endinline, flashback, host, {, library, list, mount, open, print, quit, recover, register, release, replace, report, renormalize, reset, restore, resync, rman, run, rpctest, set, setlimit, sql, switch, spool, startup, shutdown, send, show, test, transport, upgrade, unregister, validate"
    RMAN-01007: at line 1 column 21 file: standard input
    But on this i'm getting response
    SQL> select db_unique_name from v$database;
    DB_UNIQUE_NAME
    db1
    same and db2 as db_unique_name for standby....
    Edited by: 954758 on Sep 3, 2012 3:41 AM

  • How to configure Rman for Grid 11g

    hi all
    i am using Oracle Grid 11g R2.
    Oracle Database 11g R2.
    Oracle Linux 5.5
    i want to configure Rman for my Rac i searched and found some notes
    such as
    http://oraclehack.blogspot.com/2010/07/oracle-11gr2-rman-netbackup-and-media.html
    http://oracle-tns.com/duplicate-an-oracle-11gr2-with-rman/
    can anyone guide me how to configure Rman?
    Question Moved To Rman Forum!
    nisha
    Edited by: nisha on Jun 5, 2011 9:44 PM

    hi
    what is SBT here?
    CONFIGURE DEVICE TYPE sbt PARALLELISM 3;
    Channel Connections to Cluster Instances with RMAN
    Channel connections to the instances are determined
    using the connect string defined by channel configurations.
    For example, in the following configuration, three channels are allocated using dbauser/pwd@service_name. If you configure the SQL Net service name with load balancing turned on, then the channels are allocated at a node as decided by the load balancing algorithm.
    CONFIGURE DEVICE TYPE sbt PARALLELISM 3;
    CONFIGURE DEFAULT DEVICE TYPE TO sbt;
    CONFIGURE CHANNEL DEVICE TYPE SBT CONNECT 'dbauser/pwd@service_name'Edited by: nisha on Jun 6, 2011 12:27 AM

  • HP Data Protector interface for RMAN

    Hello,
    I would appreciate if someone can share the experience of using HP Data Protector (... earlier it was called OmniBack) with RMAN for backup and recovery
    I want to know the benefits of using the data protector interface. The cost implications are really high and I am of the opinion to use RMAN to backup on a disk and using normal filesystem backup of HP Data protector to take the backups on tape
    This kind of arrangement would essentially require the dba to go to RMAN to find out which all files are required to be restored, then use data protector to find out the tape that needs recall. Restore required files using DP and use RMAN for recovery
    Would the interface really make some difference? And would it be a good decision to spend so much on the Dataprotector interface for RMAN?
    Regards
    Sudhanshu Bhandari
    Oracle 9i OCP DBA
    PerotSystems TSI (UK) Ltd.

    Hi,
    I got here a setup that's like: HP DataProtector, PROD-DB, STANDBY-DB
    Roughly, the PROD-DB is 350Gb.
    I backup this via a standard HPDP filesystem backup (+-1hour to run) applied to the standby (Data Guard) database (shutdown at backup time).
    I'm glad I got HPDP when I have to restore PROD-DB on TEST-DB.. 2 clicks and it's done.
    Note that I don't use RMAN for that, it is somewhat not needed in this setup. What if some day i decide to use RMAN? I think that I'll use something kind of like what you propose. It allows you to:
    . manage what/when to backup. For example, cron a TS1 backup at day 1, cron a TS2 backup at day 2, ... every day: filesystem backup/purge via HPDP.
    . easily restore your DB provided your DBA knows some stuff about HPUX admin... (what if this is a HDD failure? how to fix EVAs? is this in a HP Cluster? ...?)
    Anyway, to get back to your main question:
    Would the interface really make some difference? Yes, of course. Nowadays lots of people don't like command line *sigh* and would be more attracted if it looks simpler (though it offers less possibilities). With an interface you'll certainly feel safe than via shell scripting.
    And would it be a good decision to spend so much on the Dataprotector interface for RMAN?As for me, no. In the setup I explained at the beginning, I got many advantages over a RMAN backup, backed up via HPDP. First, it's simpler to manager: I just have to check my morning mail to see if the backup went OK. Then, I'm sure if I loose the main DB, I can switch to standby quickly (can't afford much downtime). This means that if all of this fails (uh oooh) I'll have to restore the tapes, and this will be the last thing I'd want to do because it'll take ages (+-3h for the whole thing).
    In each of these steps I use a single tool.. reducing chair-computer interface error chances. Look how many different layers you'll get in your setup (4+).
    This was my 2cents,
    HTH
    Yoann.
    Of course, via RMAN, you don't backup empty space (compress), the recovery granularity is way better (blockrecover), etc. But the main question is: do you really need RMAN? If the answer is yes, then go on with the DP RMAN interface to easy your admin's life. If no, then just drop the idea.

  • Error " Data missing for the entry check while creating a new waste code

    Hi all, While setting a new Waste code I get the error " Data missing for the entry check, correction:". while filling the NAM- WASTECOCAT - LER item.
    This sould look for the catalog's name included in the phrase set but for some reason it doesn't find it giving me this error.
    I am changing original Characteristics, phrase set, classes, and value assignment type. Just to have my own estructure with Znames for all of them.
    I have also change the enviroment parameter "WAM_PHRSET_WACATLG" with the name of my phrase set.
    I have checked everything several times watching for typos or looking for a missing step.
    I have even tried including my new Z's characteristics in the classe and living the original SAP_EHS_1024_001_WASTE_CATALOG. (changing the enviroment parameter WAM_PHRSET_WACATLG to SAP_EHS_1024_001_WASTE_CATALOG) and it works.
    I will like to change this characteristic by Z_EHS_WA_WASTE_CATALOG
    Phrase set to Z_EHS_WA_WASTE_CATALOG.
    enviroment parameter WAM_PHRSET_WACATLG= Z_EHS_WA_WASTE_CATALOG
    After matching up the master data It should work fine but I might be missing something to get it running ok.
    ¿Any idea?
    Regards,
    Alvaro

    Hello Juan Carlos, the value and class that I want to duplicate and doesn't work is for Waste Code, I have also duplicated the one you have displayed (waste pproperties) without any problem.
    1.I have duplicated and changed class SAP_EHS_1024_001. to Z_EHS_WA
    2. Create a copy of the 5 characteristics included in this class.
    SAP_EHS_1024_001_WASTE_CATALOG
    SAP_EHS_1024_001_WASTE_CODE
    SAP_EHS_1024_001_WA_SUBCATEG
    SAP_EHS_1024_001_WA_CATEGORY
    SAP_EHS_1024_001_REMARK
    change the name by
    Z_EHS_WA_WASTE_CATALOG
    Z_EHS_WA_WASTE_CODE
    Z_EHS_WA_SUBCATEG
    Z_EHS_WA_CATEGORY
    Z_EHS_WA_REMARK.
    I checked the funcion C14K_WASTECATLG_CHECK is in the value of the Z_EHS_WA_WASTE_CODE characteristic
    I checked the funcion C14K_WASTECODE_CHECK is in the value of the Z_EHS_WA_WASTE_CATALOG characteristic
    3. Create phrase sets for each new category. with same name.
    4. Match up the master data.
    5. Change the enviroment parameter.to Z_EHS_WA_WASTE_CATALOG
    I think I have followed all the steps, but for some reason it doesn't find the catalog
    The phrase for the catalog is EWC in english and LER in spanish.
    Regards
    Alvaro.

  • My iphone 3GS no longer syncs with iTunes. The phone is recognised, backs up but then I get an error message: "Waiting for changes to be applied". BUT unlike other people, it doesn't stay stuck on it, instead the process closes down immediately

    Hi all,
    Apologies: I've just joined the community and didn't quite figure how to write a msg! Hope it works...
    Anyway,
    I read many posts on this annoying error message (Waiting for changes to be applied) in the last 2/3 days, but they all refer to the sync staying stuck on it.
    Mine doesn't.
    I read the message, then it quickly shuts down the sync and the iTunes progress bar only shows the apple...
    As suggested by many, I removed voice msgs, turned off/on, tried to sync in individual stages (calendar only...) but nothing works.
    I am up to date on iTunes (11.1.1.11) and have IOS 6.1.3 on my phone, to sync on a Win8 pc (all worked fine until recently).
    I have had this phone for several years and it has never done this.
    It worked absolutely fine, until I loaded the latest version of iTunes it seems...
    Any suggestions?
    Many thanks

    ALSO, on the iPod under Settings>General>iTunes Sync, you may need to back out of the "iTunes Wi-fi Sync," and reopen it to get it to update.
    (I use iTunes 11.1.5.5)

  • When i try to add DownloadHelper it comes up with unexpected installation error review the error console log for more details - 203, how to it check the log and how do i fix this problem?

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    When i tried to install DownloadHelper this happened Firefox could not install the file at
    https://addons.mozilla.org/en-US/firefox/downloads/latest/3006/addon-3006-latest.xpi?src=addondetail
    because: Unexpected installation error
    Review the Error Console log for more details.
    -203
    , how do i check the log and how do i resolve this problem? thank you
    == This happened
    ==
    Just once or twice
    == today
    ==
    == Troubleshooting information
    ==
    Application Basics
    Name
    Firefox
    Version
    3.6.3
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Ask Toolbar for Firefox
    2.1.0.5
    true
    AVG Safe Search
    9.0.0.783
    true
    {3f963a5b-e555-4543-90e2-c3908898db71}
    Java Console
    6.0.17
    true
    Microsoft .NET Framework Assistant
    1.1
    true
    {20a82645-c095-46ed-80e3-08825760534b}
    BitDefender Antiphishing Toolbar
    2.0
    true
    [email protected]
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.flashBar
    0
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage_override.mstone
    rv:1.9.2.3
    extensions.lastAppVersion
    3.6.3
    general.useragent.extra.microsoftdotnet
    (.NET CLR 3.5.30729)
    network.cookie.prefsMigrated
    true
    places.last_vacuum
    1276351876
    print.print_printer
    HP Photosmart D5300 series
    print.printer_HP_Photosmart_D5300_series.print_bgcolor
    false
    print.printer_HP_Photosmart_D5300_series.print_bgimages
    false
    print.printer_HP_Photosmart_D5300_series.print_command
    print.printer_HP_Photosmart_D5300_series.print_downloadfonts
    false
    print.printer_HP_Photosmart_D5300_series.print_edge_bottom
    0
    print.printer_HP_Photosmart_D5300_series.print_edge_left
    0
    print.printer_HP_Photosmart_D5300_series.print_edge_right
    0
    print.printer_HP_Photosmart_D5300_series.print_edge_top
    0
    print.printer_HP_Photosmart_D5300_series.print_evenpages
    true
    print.printer_HP_Photosmart_D5300_series.print_footercenter
    print.printer_HP_Photosmart_D5300_series.print_footerleft
    &PT
    print.printer_HP_Photosmart_D5300_series.print_footerright
    &D
    print.printer_HP_Photosmart_D5300_series.print_headercenter
    print.printer_HP_Photosmart_D5300_series.print_headerleft
    &T
    print.printer_HP_Photosmart_D5300_series.print_headerright
    &U
    print.printer_HP_Photosmart_D5300_series.print_in_color
    true
    print.printer_HP_Photosmart_D5300_series.print_margin_bottom
    0.5
    print.printer_HP_Photosmart_D5300_series.print_margin_left
    0.5
    print.printer_HP_Photosmart_D5300_series.print_margin_right
    0.5
    print.printer_HP_Photosmart_D5300_series.print_margin_top
    0.5
    print.printer_HP_Photosmart_D5300_series.print_oddpages
    true
    print.printer_HP_Photosmart_D5300_series.print_orientation
    0
    print.printer_HP_Photosmart_D5300_series.print_pagedelay
    500
    print.printer_HP_Photosmart_D5300_series.print_paper_data
    9
    print.printer_HP_Photosmart_D5300_series.print_paper_height
    11.00
    print.printer_HP_Photosmart_D5300_series.print_paper_size_type
    0
    print.printer_HP_Photosmart_D5300_series.print_paper_size_unit
    1
    print.printer_HP_Photosmart_D5300_series.print_paper_width
    8.50
    print.printer_HP_Photosmart_D5300_series.print_reversed
    false
    print.printer_HP_Photosmart_D5300_series.print_scaling
    1.00
    print.printer_HP_Photosmart_D5300_series.print_shrink_to_fit
    true
    print.printer_HP_Photosmart_D5300_series.print_to_file
    false
    print.printer_HP_Photosmart_D5300_series.print_unwriteable_margin_bottom
    0
    print.printer_HP_Photosmart_D5300_series.print_unwriteable_margin_left
    0
    print.printer_HP_Photosmart_D5300_series.print_unwriteable_margin_right
    0
    print.printer_HP_Photosmart_D5300_series.print_unwriteable_margin_top
    0
    privacy.sanitize.migrateFx3Prefs
    true
    security.warn_viewing_mixed
    false
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows Vista
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (.NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-npdivxplayerplugin
    *Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *6.0.12.732
    *RealPlayer(tm) LiveConnect-Enabled Plug-In
    *RealJukebox Netscape Plugin
    *Shockwave Flash 10.0 r45
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *iTunes Detector Plug-in
    *DivX Web Player version 2.0.0.254
    *GEPlugin
    *4.0.50524.0
    *Office Live Update v1.4
    *NPWLPG
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *RealPlayer(tm) HTML5VideoShim Plug-In
    *Google Update
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers

    Mark Leary:
    As TXGuy posted above:
    See:
    https://support.mozilla.com/en-US/kb/Unexpected+installation+error+-203+when+installing+add-ons
    http://kb.mozillazine.org/Unable_to_install_themes_or_extensions_-_Firefox#Unexpected_installation_error_-203
    Also see:
    http://support.mozilla.com/en-US/kb/Profiles#How_to_find_your_profile
    http://kb.mozillazine.org/Show_hidden_files_and_folders

  • Short of dismantling and recreating a page how do i find out whats causing [Error: Invalid URL for Web Content Overlay]

    Hi,
    i received an indesign file to include in a folio that had links to the creators desktop where they had the assets for the web content overlay. When i try to update the folio i get the error message:
    "Content generation error.
    [Error: Invalid URL for Web Content Overlay]"
    Which is fair enough.
    The problem is, i have gone through and changed all URLs that I can see, but there is one somewhere, that I just can't find.
    Is there a way to get a list of all web content overlays in a particular file? otherwise i will need to recreate the whole page again, and it has some pretty complex interactions which i rather wouldn't do.
    I also cannot ask the original doc creator to just change the links as i'm sure he'll have the same issues as me, at not being able to track down the erroneous link.
    The problem I have with DPS is that its not very transparent. you'll have to click on everything, and into every group to see what actions are on it, which can be extremely time consuming and frustrating when complex interactions are included.
    thanks in advance for any assistance

    I’ve found watching the process helpful to narrow down the page.
    Working off a duplicate of the file, delete one layer at a time until you figure out what layer the problem is on.
    From there it’s a bit easier to narrow down.

  • Can I use data guard to create a RAC standby database for a non RAC primary

    Hi,
    we need to RAC our production database but the normal methods will mean a long outage. It is possible to create a standby as a single node RAC database and when ready do a graceful failover to the standby database and open it for business. The next step would be to create another RAC node from this on the original server.
    servers are already cluster aware, using ASM etc
    Oracle 10.2

    Yes, you will be able to setup RAC stnadby for a non-RAC Primary. For primary it just needs a available destination for redo shipping it doesn't matter whether it's RAC enabled or not. And ofcourse you are using 10.2 anyway only one node will be running MRP and that is too in standby mount mode.
    However since you have are using You may follow below sequence.
    1. Setup a new standby as RAC enabled.
    2. Perform a switchover.
    3. Shutdown the Old primary (which is standby now).
    4. Install CRS and RDBMS on the old primary and it's new node.
    5. Modify the cluster_database=TRUE and cluster_database_instances=<required number of instances>.
        With above modification mount the standby database in standby mode and start MRP.
    6. Introduce the database and instances to the OCR using SRVCTL add command.
    7. Once you your database is synchronized with Primary do a switchover.
    9. Now you can repeat step 3 to 6 on the other site too.   <- if you need your secondary site to be RAC enabled too
    10. Finally both the sites should be RAC enabled.
    Hope this is helpful!!!
    Thanks,
    Asif Haliyal

  • Error in OPEN_FORM for document 46000000001

    Hi experts,
    I have created a custom PO smartform and Custom print program. I have configured the same in the NACE tcode also. When i try to print out the PO from ME23N tcode, i am getting this error "Error in OPEN_FORM for document 46000000001". But I'm able to down the form into my system. I have also checked with the basis regarding the printer setting. Everything is fine.
    But it is not printing.
    Please help.
    Thanks

    Hi
    Scripts calls are nothing but open_form, write_form, close_form...all these should be commented as there are not required in the print program for a smartform.
    All you need is SSF_FUNCTION_MODULE_NAME, and to that pass on the Smartform generated Fm...for example code...search in SCN with search term ssf_function_module_name.....
    Vishwa.

Maybe you are looking for

  • Backup select videos to DVD

    I want to backup to DVD 3 seasons of a TV show I purchased from iTunes and remove them from my laptop. Under the iTunes "Back Up To Disc" there are two choices; "Entire iTunes Library" or "iTunes Store Purchases." I don't want everything backed up. J

  • Problem in Zone Based FW Config

    Could anyone see why the below config is making http downloads/streaming hang. Cant watch any streaming as it hangs in various parts but also downloading MS service packs, it will sometimes not start at all or get a few percent then cut off. Download

  • Quality of PDF for print as appose to EPS etc?

    Hiya, With regards to the best format to get artwork to print etc, creating a PDF certainly seems to be top dog. I was just wondering though if I should expect a reduction in image quality? I only say this because I've created a PDF from my AI file [

  • In the Adobe CC download manager there is Fireworks CS6

    In the Adobe CC download manager there is Fireworks CS6 - among many other programs that can be downloaded.  It seems that I can download it.  May I even though I never bought CS6 programs?

  • Multiple Viewlinks

    Hi, I have Company ==> Accounts ==> PO Views all of them are related by a viewlink based on entity associations which are composing associations. There is a viewlink between company and PO but this is not based on a composing entity association. Now