Determine set until time from particular backup set

Hi Gurus,
First of all thank you for everybody reading my question.
I am using database control file instead of recovery catalog.
database 10gr2
10.2.0.3
os is suse linux
Is there way (any magic query)
you can determine sec part correctly for set until time looking backup set:
7544 B F A DISK 28-AUG-11 1 1 YES PROD_FULL_BKUP_08.28.2011
ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux2 DEVICE TYPE DISK;
ALLOCATE AUXILIARY CHANNEL aux3 DEVICE TYPE DISK;
#SET UNTIL SEQUENCE 10008 thread 1;
SET UNTIL TIME "TO_DATE('28-Aug-2011 03:40:32', 'dd-mon-YYYY hh24:mi:ss')";
DUPLICATE TARGET DATABASE TO "11demo"
I try hit and try for determining sec part.
is there a proven way.
'28-Aug-2011 03:40:31' worked
'28-Aug-2011 03:40:38' didn't
'28-Aug-2011 03:40:35' didn't.
1)
I look os time stamp set for backup.
-rw-r----- 1 oracle oinstall 9281626112 2011-08-28 03:40 o1_mf_nnndf_PROD_FULL_BKUP_08_75mxdb7v_.bkp
2) I add start time(03:00:00) +elapsed time.
channel ORA_DISK_1: backup set complete, elapsed time: 00:40:35
thanks

I can get
" list backup of archivelog all"
BS Key Size Device Type Elapsed Time Completion Time
7576 1.51G DISK 00:05:04 02-SEP-11
BP Key: 7576 Status: AVAILABLE Compressed: YES Tag: ROD_ARC_09.02.2011
Piece Name: /u02/flash_recovery_area/ROD/backupset/2011_09_02/o1_mf_ annnn_ADVPROD_ARC_09.02.20_7616s3fm_.bkp
List of Archived Logs in backup set 7576
Thrd Seq Low SCN Low Time Next SCN Next Time
1 205824 3898563613 01-SEP-11 3898573074 01-SEP-11
you can get "SET UNTIL SEQUENCE thread "
correctly,
But How does one find out the exact time the backup was completed?
I simply used the timestamp from the Rman backup as an approximate indicator.
Oracle Error:
ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
ORA-01194: file 1 needs more recovery to be consistent
ORA-01110: data file 1: system01.dbf'
released channel: aux1
released channel: aux2
released channel: aux3
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of Duplicate Db command at 09/01/2011 12:53:48
RMAN-03015: error occurred in stored script Memory Script
RMAN-06053: unable to perform media recovery because of missing log
RMAN-06025: no backup of log thread 1 seq 13891 lowscn 4013222506 found to restore
Edited by: 880674 on Sep 2, 2011 7:07 AM

Similar Messages

  • Restoring from particular backup set

    Restore from a particular backup set with same tag names
    I have multiple backups of the database with the same tag name.
    I would like to restore oldest of these backups.
    For Ex:
    0n 6/15 1st full backup
    On 6/17 2nd full backup
    On 6/18 3rd full backup
    I would like to restore the backup made on 6/15. When I try to restore the db like follows
    run
    restore database;
    It just goes to the latest one which was made on 6/18. I had to make 6/17 and 6/18 backup sets status unavailable so that it picks 6/15
    Is there any otherway, I can pickup 6/15 db while doing restore

    You can use until clause:
    run{
    set until time "to_date('2008-06-15 17:00:00','YYYY-MM-DD HH24:MI:SS')";
    restore database;
    I am assuming here that the backup was taken before 5pm on 06/15.
    Reddy.

  • Set until time clause to restore controlfile

    Hello
    How can I use "set until" clause to restore the controlfile ?
    The database is already in archivelog mode.
    RMAN>
    run {
    set until time "TO_DATE('2011-02-24 09:30:00','yyyy-mm-dd hh24:mi:ss')";
    restore controlfile from autobackup;
    RMAN>
    RMAN> 2> 3> 4>
    executing command: set until time
    using target database control file instead of recovery catalog
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of set command at 02/24/2011 09:52:54
    ORA-01507: database not mountedThis is the rman backup log:
    Starting Control File and SPFILE Autobackup at 24-FEB-11
    piece handle=/oracle/ora1020/dbs/c-1270860316-20110224-01 comment=NONE
    Finished Control File and SPFILE Autobackup at 24-FEB-11I can also confirm that it was backed up.
    ls -l /oracle/ora1020/dbs/c-1270860316-20110224-01
    -rw-r-----  1 oracle dba 7143424 Feb 24 09:25 /oracle/ora1020/dbs/c-1270860316-20110224-01

    For Datafiles and ArchiveLogs :
    SET UNTIL works because RMAN can query the Controlfile (that is already present) {OR the Catalog, if available} to determine the Database Incaranation and identify all the BackupSets, BackupPieces and SCNs for datafiles.
    For Controlfiles :
    SET UNTIL needs to be able to query a source or determine a default location. If a Catalog is available, it can query the catalog. In the absence of the catalog, it can only determine the expected location to restore from on the basis of the AUTOBACKUP location and FORMAT.
    When you have AutoBackup to Disk, using an FRA and have the AUTOBACKUP FORMAT set correctly you will notice that the controlfile backups go to a directory that has the date as part of the directory name. RMAN can "query" the backups it finds in each of the folders in the autobackup location and determine the correct piece to restore from. This is predicated on the FORMAT being the expected format. That is why the example also shows how you set the FORMAT before you do the restore -- to "tell" RMAN what format to expect. (Remember that it has no repository -- controlfile or catalog -- to query so it doesn't know the backup piece names, unless they follow the expected location and format !)
    All of this works well on disk. On tape, it has to actually send it's requests to the Medial Management Layer -- it is the Media Management Layer that maintains the catalog of tapes and files on tapes. (Remember that RMAN still doesn't have a repository that it can query !).
    Going back to my earlier comment that SET UNTIL is used for Datafiles and Archivelogs : Because it is much easier for RMAN to query a known repository for all the information it needs.
    Hemant K Chitale

  • Using set until time for duplicate is extremely slow

    Whenever I do a duplicate using the set until time it takes forever to get started. The executing command: SET until clause takes about 20 minutes, and then when allocating channels it takes about 10 minutes per channel. Both db's are 10.2.0.3, and in archivelog mode. When I do just a plain duplicate database it runs through just fine, no pauses or anything. Can someone please poing me in the right direction or shed some light on this issue for me?
    Thanks!

    Hi,
    Here is what happens when I kick off the duplicate command with the run block:
    RMAN> run {
    2> set until time "to_date('Mar 14 2009 06:00:00','Mon DD YYYY HH24:MI:SS')";
    3> duplicate target database to DEST;
    4> }
    executing command: SET until clause
    using target database control file instead of recovery catalog
    Starting Duplicate Db at 17-MAR-09
    allocated channel: ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: sid=3985 devtype=DISK
    allocated channel: ORA_AUX_DISK_2
    channel ORA_AUX_DISK_2: sid=3984 devtype=DISK
    allocated channel: ORA_AUX_DISK_3
    channel ORA_AUX_DISK_3: sid=3983 devtype=DISK
    allocated channel: ORA_AUX_DISK_4
    channel ORA_AUX_DISK_4: sid=3982 devtype=DISK
    allocated channel: ORA_AUX_DISK_5
    channel ORA_AUX_DISK_5: sid=3981 devtype=DISK
    It takes anywhere from 15 to 20 minutes to allocate each channel, then it proceeds with the restoring of datafiles from the last backup. After that is done then it switches all the files, then it does this to start the recovery of the archive logs:
    contents of Memory Script:
    set until time "to_date('Mar 14 2009 06:00:00','Mon DD YYYY HH24:MI:SS')";
    recover
    clone database
    delete archivelog
    executing Memory Script
    executing command: SET until clause
    Starting recover at 17-MAR-09
    allocated channel: ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: sid=3981 devtype=DISK
    allocated channel: ORA_AUX_DISK_2
    channel ORA_AUX_DISK_2: sid=3982 devtype=DISK
    allocated channel: ORA_AUX_DISK_3
    channel ORA_AUX_DISK_3: sid=3983 devtype=DISK
    allocated channel: ORA_AUX_DISK_4
    channel ORA_AUX_DISK_4: sid=3984 devtype=DISK
    allocated channel: ORA_AUX_DISK_5
    channel ORA_AUX_DISK_5: sid=3977 devtype=DISK
    again it takes about 15 to 20 minutes to allocate each channel.

  • Set until time WITH RMAN

    Hi
    I have tested the codes too but it doesn't seem to be able to recover the database (including the tablespace which I have dropped). Why?
    # RMAN backup
    run
    allocate channel ch1 type disk;
    sql 'alter system archive log current';
    backup format '/backup/orcl/%d_t%t_s%s_p%p'
    filesperset=4
    database;
    release channel ch1;
    RMAN > list backup;
    File LV Type Ckp SCN Ckp Time Name
    1 Full 4072944 06-JUL-05 /oracle/oradata/system01.dbf
    8 Full 4072944 06-JUL-05 /oracle/oradata/tools01.dbf
    12 Full 4072944 06-JUL-05 /oracle/oradata/test01.dbf
    # Drop tablespace
    drop tablespace test including contents;
    # RMAN Recovery
    shutdown immediate;
    startup mount;
    # time is set to after rman backup and before tablespace dropped
    RMAN>
    run {
    set until time "to_date('06-07-2005 16:50:00','dd-mm-yyyy hh24:mi:ss')";
    restore database;
    recover database;
    RMAN > list backup;
    File LV Type Ckp SCN Ckp Time Name
    1 Full 4072944 06-JUL-05 /oracle/oradata/system01.dbf
    8 Full 4072944 06-JUL-05 /oracle/oradata/tools01.dbf
    12 Full 4072944 06-JUL-05
    Why is the RMAN list empty for the deleted tablespace? That's the reason why there is nothing to reover from?

    check at sql prompt
    select substr(name,1,50),status
      2    from v$datafileYours test01.dbf file should have status recover and filename should be missing.
    Khurram

  • RESTORE detected an error on page (0:0) in database as read from the backup set

    Hello Experts-
    I am facing a very bizarre situations here, I was trying to restore a database from server 1 to server 2, first I take backup manually and then copy the backup to the server 2 location and restore it easily, I do this all the time but now I am getting this
    error:"RESTORE detected an error on page (0:0) in database <database>as read from the backup set</database>". So I tried to verify the backup with restore verify only and I get the message the data is invalid. Here is the bizarre part,
    I tried to restore the same database from the backup taken by my backup job automatically and it worked and I restore verify the data and it is valid. So, anytime I took a manual backup and try to restore it I get an error, but I can restore the backup from
    my backup job, please advise and share your experience , thank you.

    it is a dynamic query that runs and take backup of all the dbs except the one we don't want, and the version is sql server 2012 sp1 on server. Part of the backup query
    SET
    @fileName = @path 
    +'\'+
    @name+'_'
    + @fileDate
    +
    '.BAK';
    BACKUP
    DATABASE @name
    TO
    DISK
    = @fileName
    WITH
    COMPRESSION,
    INIT   
    end

  • Set until time TO_DATE

    Hi,
    what is wrong with my syntaxe :
    RMAN> run {
    2> set until time TO_DATE("07/07/07 09:38:00","DD/MM/YY HH:MI:SS");
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01005: syntax error: found "identifier": expecting one of: "double-quoted-string, equal, single-quoted-string"
    RMAN-01008: the bad identifier was: TO_DATE
    RMAN-01007: at line 2 column 16 file: standard input
    Can you help me please ?

    Duplicate post:
    RMAN ERROR when duplicating

  • Set until time  vs. flashback off ???

    I have Windows XP and have installed 10g 10.2.0.1.0
    If I use set until time "to_date('2010-07-29 11:00:00','yyyy-mm-dd hh24:mi:ss')";
    for recovering database; please see below. Do I need to turn off flashback such as "*alter database flashback off"*
    Thanks in advance.
    run {
    shutdown immediate;
    startup mount;
    set until time "to_date('2010-07-29 11:00:00','yyyy-mm-dd hh24:mi:ss')";
    restore database;
    recover database;
    alter database open resetlogs;
    }

    782150 wrote:
    I have Windows XP and have installed 10g 10.2.0.1.0
    If I use set until time "to_date('2010-07-29 11:00:00','yyyy-mm-dd hh24:mi:ss')";
    for recovering database; please see below. Do I need to turn off flashback such as "*alter database flashback off"*No

  • I need help with setting up time machine for backup

    I would like help with setting up time machine for backup.

    You will need an external hard drive (formatted for a Mac).
    Then you plug it in and go to system preferences>time machine and select the external HD and turn it on.
    The backups are automatic.
    Barry

  • How to estimate recovery time from rman backup

    how to estimate recovery time from rman backup?
    The database is of size 800GB.
    the approximate time to backup is 8- 10 hours.

    "Recovery time" is : RESTORE DATABASE time + RECOVER DATABASE time.
    RESTORE can be done
    a. in parallel with multiple channels if your backup was created as multiple backupsets
    b. using incremental backups
    c. whether the backups are on
    i. disk
    ii. tape
    Alternatively, if you have a Recovery Area with an Incrementally Update backup of the database, you can SWITCH DATABASE almost immediately
    RECOVER depends on
    a. how many archivelogs (in terms of size, not necessarily number) need to be applied
    -- this depends on
    i. transaction volume
    ii. the "freshness" of the backups (how recent the backups are)
    b. whether required archivelogs are available on disk (which can be the case if the database backup itself is a very recent backup and archivelogs since then haven't been deleted {whether they have been backed up or not}) OR whether they need to be restored from
    i. disk backup
    ii. tape backup

  • Database restore  from a particular backup set using rman

    Hi all,
    My OS: UNIX
    DB : 10.2.0.1
    As i checked the database it will indicate datafile 5 is header corruption.
    yesterday i take complete online backup of the database using RMAN but now when i run restore database command it will show as
    ORA-19870: error reading backup piece /cms/BACKUP/ora_BSCS_set149_piece1_20111206_4lmth1qj_1_1
    ORA-19573: cannot obtain exclusive enqueue for datafile 6
    Database is open and datafile is physically present there
    So can anyone tell what to do next
    Edited by: Vikas Kohli on Dec 9, 2011 9:58 AM

    here are the result for the same:
    Starting restore at 09-DEC-11
    using channel ORA_DISK_1
    List of Backup Sets
    ===================
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    147 Incr 0 1.10G DISK 00:14:10 06-DEC-11
    BP Key: 147 Status: AVAILABLE Compressed: YES Tag: TAG20111206T085858
    Piece Name: /cms/BACKUP/ora_BSCS_set149_piece1_20111206_4lmth1qj_1_1
    List of Datafiles in backup set 147
    File LV Type Ckp SCN Ckp Time Name
    1 0 Incr 9068988016235 06-DEC-11 /u01/app/oracle/oradata/BSCS/system01.dbf
    2 0 Incr 9068988016235 06-DEC-11 /u01/app/oracle/oradata/BSCS/undotbs01.dbf
    3 0 Incr 9068988016235 06-DEC-11 /u01/app/oracle/oradata/BSCS/sysaux01.dbf
    4 0 Incr 9068988016235 06-DEC-11 /u01/app/oracle/oradata/BSCS/users01.dbf
    5 0 Incr 9068988016235 06-DEC-11 /u01/app/oracle/oradata/BSCS/DATA.dbf
    6 0 Incr 9068988016235 06-DEC-11 /u01/app/oracle/oradata/BSCS/users02.dbf
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    149 Incr 1 11.49M DISK 00:00:07 07-DEC-11
    BP Key: 149 Status: AVAILABLE Compressed: YES Tag: TAG20111207T082737
    Piece Name: /cms/BACKUP/ora_BSCS_set151_piece1_20111207_4nmtjkbr_1_1
    List of Datafiles in backup set 149
    File LV Type Ckp SCN Ckp Time Name
    1 1 Incr 9068988069143 07-DEC-11 /u01/app/oracle/oradata/BSCS/system01.dbf
    2 1 Incr 9068988069143 07-DEC-11 /u01/app/oracle/oradata/BSCS/undotbs01.dbf
    3 1 Incr 9068988069143 07-DEC-11 /u01/app/oracle/oradata/BSCS/sysaux01.dbf
    4 1 Incr 9068988069143 07-DEC-11 /u01/app/oracle/oradata/BSCS/users01.dbf
    5 1 Incr 9068988069143 07-DEC-11 /u01/app/oracle/oradata/BSCS/DATA.dbf
    6 1 Incr 9068988069143 07-DEC-11 /u01/app/oracle/oradata/BSCS/users02.dbf
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    151 Incr 1 115.07M DISK 00:01:24 08-DEC-11
    BP Key: 151 Status: AVAILABLE Compressed: YES Tag: TAG20111208T075327
    Piece Name: /cms/BACKUP/ora_BSCS_set153_piece1_20111208_4pmtm6nn_1_1
    List of Datafiles in backup set 151
    File LV Type Ckp SCN Ckp Time Name
    1 1 Incr 9068988123314 08-DEC-11 /u01/app/oracle/oradata/BSCS/system01.dbf
    2 1 Incr 9068988123314 08-DEC-11 /u01/app/oracle/oradata/BSCS/undotbs01.dbf
    3 1 Incr 9068988123314 08-DEC-11 /u01/app/oracle/oradata/BSCS/sysaux01.dbf
    4 1 Incr 9068988123314 08-DEC-11 /u01/app/oracle/oradata/BSCS/users01.dbf
    5 1 Incr 9068988123314 08-DEC-11 /u01/app/oracle/oradata/BSCS/DATA.dbf
    6 1 Incr 9068988123314 08-DEC-11 /u01/app/oracle/oradata/BSCS/users02.dbf
    no backup of log thread 1 seq 411 lowscn 9068988025356 found to restore
    no backup of log thread 1 seq 412 lowscn 9068988167985 found to restore
    no backup of log thread 1 seq 413 lowscn 9068988203392 found to restore
    List of Archived Log Copies
    Key Thrd Seq S Low Time Name
    263 1 3 A 05-DEC-11 /u01/app/oracle/admin/BSCS/arch/BSCS/1_3_769127125.dbf
    273 1 13 A 07-DEC-11 /u01/app/oracle/admin/BSCS/arch/BSCS/1_13_769127125.dbf
    Media recovery start SCN is 9068988123314
    Recovery must be done beyond SCN 9068988123314 to clear data files fuzziness
    Finished restore at 09-DEC-11

  • How to set system time from Terminal while booted from 10.6.3 server install disk?

    I'm installing from a 10.6.3 server install disc onto a Mac Mini.  However, the battery on this Mac Mini is pretty much dead, forcing the system time back to 1/1/2001.  Through some research, this has created a problem in that I cannot move beyond the Welcome screen during setup of OS X server.  It looks like the binary has issues with the system time being older. 
    But I'm stuck in that I don't know how to adjust the system time from the Terminal Utility on the boot CD.  Can anyone help? 

    Hey, i just run in to something similar, tonight while trying to fix a computer.
    The user set the time and date on his computer to 1998 and computer locked everything including time and date in system preferences, and his user account basicly making him from administrator to guest. he could not almost any program properly that required administrator privilages.
    to fix this we used this comand in terminal " sudo date 201703162014 "    todays time and date
    20:17 03/16 2014
    we tryed everything and this fixed in 2 seconds
    ps: when you type sudo in terminal it whil give you a warning the improper use of this command is bad.... click continue.otherwhise you will not be able to execute the command.
    thanks again for this post and have a great day

  • Setting up Time Capsule for backup only on existing wireless network

    I have a wireless network already set up with a NetGear wireless router. Cable plugs into router, router connected via ethernet cable to my Power Mac G5 desktop, plus 2 PC laptops in the house also connect wirelessly to the home network via this router.
    I want to set up Time Capsule as an external hard drive to back up all three computers -- I don't necessarily need to use it as a wireless router although i'm not opposed to that if it's easier to do it that way.
    When i try to set it up using AirPort utility, i get the amber flashing light. Airport utility is able to discover the device, and then always asks if it's OK to switch networks. I've tried both "switch" and "don't switch"; either way when i try to set it up, AirPort utility stalls out on "Reading Time Capsule Configuration"; eventually giving me the error msg: "Base Station Error: AirPort Utility was unable to find your Apple wireless device."
    All i want to do is mount it as an external hard drive so i can use Time Machine for backup, and be able to use it to also back up the PC laptops wirelessly. I need help in the following three areas:
    1. How should I be physically connecting my devices if i want to do this? Which cables go in which ports? There is only one ethernet port on the back of my G5. The G5 can connect to the router either wirelessly OR via ethernet cable. I've tried G5-->Time Capsule-->Router, G5-->Router-->Time Capsule, Router-->G5 PLUS Router-->Time Capsule, and I've tried every variation on the regular ethernet and WAN ports. What's the right way to do this.
    2. If i'm not setting up the TC as a Wireless Router, is AirPort utility even the right tool for setting it up? it seems to be confused by the two wireless networks and won't let me get past that point. Am I supposed to click "Switch" when it asks me to switch networks? Is there a way to just mount it as an external drive and bypass the AirPort utility setup entirely?
    3. Once i get it set up so it's visible as an external drive and usable for Time Machine backup, how do i then make it available to the other PCs on the network so they can back up to it also?
    Thanks for your help.

    sarah,
    You already have an existing wireless network.
    You do not need to plug the Time Capsule into anything except power.
    Set the Time Capsule to "Join an existing wireless network"...
    That is all you need to do.
    Then all the computers should see the Time Capsule.
    If you can't see "Join an existing wireless network" in the choices, hold down on the option key and then click on the choices.
    Give that a try.

  • Can't set up Time Machine to backup to WD external drive

    Hi, I have a WD external drive that I want to use to back up my Mac book Pro 10.8 files.
    I connected the WD to the computer's USB and it appears in the "Devices" list in the Finder Window.
    I opened "System Preferences / Time Machine" switched it to "On", clicked the option "Other Time Capsule" and the "Set up..." button
    A new screen opened and I couldn't find the option to choose the WD drive as the Time Machine backup location.
    This screen only says:
    "no new Airport base stations discovered"
    "no remote Airport base stations discovered"
    "no configured Airport base stations have been found. AirPort utility will continue searching"
    Am I doing something wrong? Why can't I find the option to save the backup to the WD drive?
    Thanks

    Not only should it be OSX Extended (journaled), it should also
    be repartitioned to a GUID partition format.  Click Partition tab
    is Disk Utility (make sure you have the WD drive selected),
    reset to create one or however many partitions you want,
    click the Options button.  Select GUID partition map, then
    repartition.

  • How do I set up Time Machine to backup to an external hard drive on my wireless router?

    I have just set up an external hard drive to my wireless router and am now wanting to set up Time Machine to back up to the hard drive.  I can see the hard drive in Finder and can even send files to it manually.  I just don't see in setting up Time Machine any option to backup to that hard drive.  Is it even possible?

    Well, I figured out a way around it that works for me but may not be suitable for everyone.  Instead of connecting the external hard drive to the router I tried connecting it directly to my computer.  I then right-clicked the hard drive's folder on my desktop, clicked "Get Info" and checked the box that says "Shared Folder".  I then went to the bottom of that window and under "Sharing & Permissions" and next to "Everyone" checked that they could all "Read and Write".
    The hard drive is now shared over my network, so when I got on one of my other Mac's that I was wanting to set up Time Machine with, the Time Machine Application had no problem finding the hard drive and backing up to it.
    I have all computer's setup for file sharing too, so that may need to be checked as well.
    This was a simple enough fix but the reason I said that it may not be suitable for everyone is that the other computer's backing up to this hard drive via Time Machine is now reliant on my computer being turned on.  I'm okay with that though.

Maybe you are looking for

  • Virtual Cube with Services - Debugging

    I want to debug the function module assigned to a Virtual Cube with services. Using transaction RSRT, I can access the FM using debugger when the query is initially called, by selecting Debug options/Default Breakpoints/VirtualCube. I want to debug s

  • How to get Saved Selection list in javascript?

    Hello! Recently I met a little problem about save selection. I want to get saved selection list so that I can used in javascript. Now I have no ideals. Hope you tell me some useful information about how to get Saved Selection list in javascript!

  • IDOC status to sender system

    I configured IDoc within 2 clients in same server, when I send IDoc to receiver it is giving  03 (success) but in receiving system IDoc gives error 51 as some data is not maintained, i am using "Z" function module for inbound IDoc question - how to s

  • Transport ALE Configuration from Development to Production System

    Hello All, We have created ALE-IDOC scenario in the development system and its working fine. Now we want to transport it to the Production / Quality system. How can we transport the settings like logical systems, port definition, partner profiles, di

  • Can I use a "3" dongle on My Mac?

    Hi all. I have just bought a 2nd-hand G4 iMac 20" screen, 750 (ish) Mb of memory and a processor speed of 1.25 MHz. I intend to buy an airport extreme card for it soon. In the meantime, how do I get my "3" dongle to work on the Mac? When I plug it in