ORA-01281 during capture setup

Based on the example from the oracle streams document I'm trying to get a capture process to start (Oracle 9208). However, it fails on an invalid SCN:
SQL> BEGIN
2 DBMS_STREAMS_ADM.ADD_TABLE_RULES(
3 table_name => 'STAGE.STREAMTEST',
4 streams_type => 'capture',
5 streams_name => 'capture_simp',
6 queue_name => 'strmadmin.streams_queue',
7 include_dml => true,
8 include_ddl => true,
9 source_database => '&src_global_name.' );
10 END;
11 /
BEGIN
ERROR at line 1:
ORA-01281: SCN range specified is invalid
ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 75
ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 21
ORA-06512: at line 2
I've tried to 'manually' alter it (see below), but the status in dba_capture remains 'ABORTED'.
begin
dbms_capture_adm.alter_capture(capture_name=>'capture_simp',
start_scn=>6089389411510);
end;
1 SELECT capture_name, queue_owner||'.'||queue_name QUEUE, rule_set_owner||'.
'||rule_set_name RSN, status , start_scn, captured_scn, applied_scn
2* FROM DBA_CAPTURE
SQL> /
SQL> conn &src_streams_usr./&src_streams_pwd.@&src_db.
Connected.
SQL> /
Capture Queue
Name Name Rule Set
STATUS START_SCN CAPTURED_SCN APPLIED_SCN
CAPTURE_SIMP STRMADMIN.STREAMS_QUEUE STRMADMIN.RULESET$_71
ABORTED *6089389411510* 0 0
What am I doing wrong?

Hello
Have you performed any upgrades recently? If you have done an upgrade then make sure you follow all the pre and post instructions (like running catpatch.sql)
This looks to be an inconsistency with the logminer catalog when calculating the first_scn or start_scn. Could be that the logminer metadata related to streams is not proper.
The possible workaround is to clean up streams using the following note on metlaink.
<Note: 276648.1> "Remove Streams Procedure for 9.2.0.X"
Then recreate Streams.
Thanks,
Rijesh

Similar Messages

  • Unable to monitor audio during capture

    I'm using FCP6 to capture footage shot with a JVC GY-HD100U at HDV 720p24. I'm using a JVC BR-HD50 deck to capture from, connected to my MacPro 3 GHz quad via firewire.
    In the Audio/Video Setting dialog box, the Sequence Preset is "HDV 720P24". My Capture Preset is "HDV", Device Control Preset "HDV FireWire". Video Playback shows "[Missing] Apple Firewire NTSC (720 x 480)" and offers only the options of None and Digital Cinema Desktop Preview–Main as alternate choices. Both HDV options are greyed out. The Audio Playback option is set to Default.
    With this setup, controlling the deck remotely from the capture window, I get video but no audio. The only audio I get is when the deck is connected to my video monitor and I use it to monitor the output of the deck. The audio is there when I play back the clips after capture but I cannot monitor the sound with the computer's speakers. If I go to the A/V Devices tab, under Video, it shows the same "[Missing] Apple Firewire NTSC (720 x 480) with the same choices described above, and the Options button next to it doesn't do anything.
    Can anyone think of anything I've missed in the initial setup?
    Keith
    Message was edited by: Keith R Thompson

    Keith,
    For whatever reason (perhaps the intense processor needs) HDV does not allow you to monitor your audio during capture. The computer just will not do it. What I have done, if I really want to hear what's happening durning capture, is plug my speakers into the headphone jack of my XL H1. Due to the processing that's going on, the audio "lags" behind the video by a couple of seconds.
    I'm pretty sure this is not a setup problem, but just a limitation due to the nature of your format.
    Hope that helps!
    ~Luke

  • Dropped Frames During Capture

    FCE HD is dropping frames during capture when I'm taking video from my Canon Video camera and the three DVD players I've been using. Any suggestions or ideas?
    Here's my info:
    - Didn't work for either of these setups:
    - Canon to my iBook G4 via firewire
    - DVD player to DVD converter via RCA cables to ibook via firewire
    - My external Harddrive (LaCie 230 GB) is hooked up to my laptop via USB Drive.
    - Easy setup configured to DV-NTSC or DV-NTSC-DV Converter dpending on capture device
    Thanks in advance for the help

    Hi Lisa,
    Well, for starters you probably have less free space on your internal HD than you did a year ago - rule of thumb is keep at least 15%-20% free space on your drives, especially your system drive; more free space is better. Couple that with the fact that USB really can't keep up with the demands of video and it's easy to get dropped frames.
    There's also the question of what else you've put on your machine since last year, whether or not you updated OSX or QT since then, if you have anything else running when you capture ... there could be lots of factors.
    Have you ever run a maintenance utility on your Mac - eg. MacOSXCocktail, MacJanitor, Onyx, etc ?

  • File manager crash during capture

    Using the latest version, I am getting consistent crash during capture of the file manager. Using an IBM T61P that has a 7200rpm drive. If I do frequent saves during capture I don't loose the work before the next crash. I hope I don't have to use an external drive to make this problem go away.
    Any ideas out there?

    Dennis already said it, but a single disk is not enough. Minimum requirements are a DEDICATED 7200 RPM (e)SATA disk for capturing. Add to that the fact that your system is dead slow (at least 50 times slower than a fast system) and that one should not do anything else during capturing, and that the system may not be tuned at all for editing and disaster is waiting to strike.
    Have a look here: Adobe Forums: Guide for installing and tuning a Vista... which also applies to Win7, for a band-aid. It will not solve the issue of an extremely slow CPU, possibly integrated Intel graphics, which should be avoided at all times, shared memory, which is another no-go and the lacking disk setup.

  • Lag & Capture Setup HDV

    I'm using FCP 5 and capturing through the camera deck of a Sony FX-1. In FCP the setup is at HVD1080i60. During capture every time I stopped the camera it creates another clip in the browser how do I setup the import so that it will capture all the footage into one long clip instead of several different clips?
    I know that in FCP-6 you are able to do this:
    In the Log & Capture window (Command + 8), under Clip Settings, be sure to uncheck 'Create new clip on Start/Stop'
    How is this same feature accomplished using FCP 5?

    Hi
    After the dictionary build, prepare the table(s) or schema(s) for instantiation and set the supplemental logging:
    example
    BEGIN
    DBMS_CAPTURE_ADM.PREPARE_SCHEMA_INSTANTIATION(
    schema_name =>'HR',
    supplemental_logging => 'keys');
    END;
    In the supplemental logging you can put whatever you need but at least you need the keys. Now, if you are filtering tables, just set the supplemental logging for the tables you are interested in.
    After step 4 :
    In the target database, you have to set the instantiation scn for the table(s) or schema(2) using the same scn as the start_scn you specified in your capture:
    For example if you want to do it for a whole schema use the following procedure:
    DBMS_APPLY_ADM.SET_SCHEMA_INSTANTIATION_SCN(
    source_schema_name IN VARCHAR2,
    source_database_name IN VARCHAR2,
    instantiation_scn IN NUMBER, -- Here you put your start_scn
    apply_database_link IN VARCHAR2 DEFAULT NULL,
    recursive IN BOOLEAN DEFAULT FALSE);
    Let me know if you need further assistance,
    Aldo

  • ORA-26667 during checkpoint retention check

    HI Guys
    I have an environment which is being replicated in 2 ways (DML,DDL ) RDBMS 10.2.0.4 , each RDBMS is running in RAC (3 nodes one RDBMS) and another running (2 nodes RAC) everything was running without problems for the last 3 months however last weekend I got
    Sat Feb 14 23:18:41 2009
    STREAMS Warning: ORA-26667 during checkpoint retention check <= this message is the first kind of message that we got
    Sun Feb 15 05:18:43 2009
    STREAMS Capture C 1: first scn changed.
    scn: 0x0009.79468518
    However I took a look that day and I dint find any issue I looked for that problem in metalink but I didn't find any problem , this message came out when the checkpoint retention time moved
    the checkpoint retention time in streams is a number of days that the capture process retains checkpoints before purging them automatically . A capture process periodically computes the age of a checkpoint by subtracting the next_time of the archived redo log that corresponds to the checkpoint from dba_capture.first_time of the archived redo log file containing the required checkpoint scn
    if the resulting value is grater than the checkpoint retention time then the capture process automatically purges the checkpoint by advancing the dba_capture.first_scn value all the archived retained by the dba_caprure process can be seen using dba_registered_archived_log view
    the default retention time is 60 days
    i didnt find any error in the RDBMS therefore I didnt do anything but on Monday morning I got a lot of replication errors caused by
    ORA-01403 , after fixing all those errors I changes of the database that I got that error were not replicated across the other database , it could explain why many tables got out of sync , seems the reason was the propagation process was hanging , I stopped and restarted no changes were received in the other database , as a workaround I recreate it and the problem was fixed . Have you had a problem like this before ?
    Rgds

    browsing on Metalink seems the way to trace the root cause of this kind of problem is running the Oracle Streams Healtcheck right away after we got this kind of problem , seems the error that I got was just a coincidence because there is nothing related

  • Selecting audio channels during capturing

    I am in the process of capturing a interview style documentary that was shot with a Panasonic AG-DVX100B. The interviews that were shot on location used a handheld wireless microphone connected to line 1. Normally, I would set the capture setup to only capture line 1 of the audio so that the built-in camera mic on line 2 would not be captured and create an echo. I would then capture the entire day's shoot into one clip. The shoot is about 45 minutes in total.
    During this particular day's shoot we shot some footage in the car using only the built-in camera mic. The camera was still set to use the wireless receiver on line 1, so only line 2 has audio (from the camera mic). So as you can figure, when I captured my normal way with only line 1, there was no audio for the car scenes.
    The audio from the car scene was recorded fine on line 2 so now I need to come up with a different process for capturing this show... and maybe reconsider the way way I capture all together. I have not started editing so it's okay to recapture at this point.
    My question is:
    1. Should I capture each of the three locations seperatly with different audio settings and do a batch capture? ie; Location 1 (line 1 for handheld mic) Car (line 2 for camera mic) and Location 2 (line 1 for handheld mic).
    2. Do I capture both line 1 and 2 into one 45 minute clip and select the audio channel that I want from within FCP?
    3. If answer 2 is the recommendation, how do I do that without having to deselect an audio channel in each edit in the timeline.
    Thanks in advance for the assistance!

    go for option 2,
    you can de-select the errant audio track from the source side when you create your sequence so you don't have to do it to all edits. thats one of the joys of editing!
    you may find you have some good sound on the other mike though don't just throw it away
    best regards
    andy

  • Dropped Frames and "freezing" during capture

    I'm having a problem capturing video....it mostly captures although I get "freezes" where the sound continues but the video frames are dropped. If I leave the Quit capture upon dropped frames I can't capture too much as the freezing happens about every 15 to 30 seconds. Any help?
    I'm having the same problems on both computers and also when I try to set the hard drive as the scratch as opposed to my external HD.
    MacBook Pro (INtel)
    iMac (800mhz)
    FCE 2.0
    Thanks in advance
    Zack

    Tom,
    Same issue here. I've been capturing well with the same setup months ago and have not had this issue until now.
    The video "freezing" happens during writing to the hard disk during capture. Using Activity Monitor, you can see 2 second "bursts" of data written to disk every 30 seconds. The video in the capture window freezes during these bursts.
    Activity Monitor also shows zero bytes of data being written to disk in between the bursts, but that doesn't seem right, because I know the video is being captured. (You can play it back in FCE)
    The freezing can be seen during capture and when playing the captured clip in the viewer. Audio playback is fine.
    I tried 3 different Scratch Disk settings with the same results:
    External USB 2.0
    External FW 800
    Internal disk on PowerMac
    Dual 2.0 GHz G5 (Cheese-Grater) PowerMac
    10.4.9
    FCE HD 3.0
    QT Pro 7.1.5
    3.5 GB Ram (100% set for FCE in settings)
    FCE Easy Setup for DV Converter
    Canopus ADVC110 converter
    Analog VCR input into Canopus (Default settings on Canopus)
    Firewire connection from Canopus to Mac
    I couldn't find anything in your FCE Editing Workshop book that could help with this either. Everything worked fine a few months ago.
    Dual 2Ghz G5, 12" G4 iBook, Sunflower iMac   Mac OS X (10.4.9)  

  • Fcp6 + XL-H1 + basic firewire = crash during capture ?

    I'm trying to capture 1080i50 footage and fcp has crashed a few times during capture.
    Anybody else having this problems?
    Any workarounds?
    Trashing prefs? Anything else?
    Or are 10.5 + fcp6 + XL-H1 just incompatible to each other?

    Sounds like a similar problem as mine .. it captures just fine with basic NTSC. but crashes with any HDV setup .. I'm using Sony FX1 .. I went so far as to reformat my macpro' .. tried to install Tiger, but it wouldn't allow it. Apparently it is not compatible with the new Intel processor's. Tried capture without any updates .. still crashed.

  • ORA-26744: STREAMS capture process "STRING" does not support "STRING"

    Hi All,
    I have configured oracle streams using Note "How To Setup One-Way SCHEMA Level Streams Replication [ID 301431.1]" at schema level
    All the changes are getting reflected perfectly and was running smooth, but today suddenly I faced the below error and capture is aborted
    ORA-26744: STREAMS capture process "STREAM_CAPTURE" does not support "AMSATMS_PAWS"."B_SEARCH_PREFERENCE" because of the following reason:
    ORA-26783: Column data type not supported
    Couple of suggestions on forum are to add a negative ruleset, please suggest me how do i add a negative rule set and if this is added to negative ruleset then how the changes to this table will reflect in target database...?
    Please help me...
    Thanks

    I do not have any idea why it treats your XMLTYPE stored as CLOB like a XMLTYPE binary. From the doc, we read :
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28321/ap_restrictions.htm#BABGIFEA
    Unsupported Data Types for Capture Processes
    A capture process does not capture the results of DML changes to columns of the following data types:
        *       SecureFile CLOB, NCLOB, and BLOB
        *      BFILE
        *      ROWID
        *      User-defined types (including object types, REFs, varrays, and nested tables)
        *      XMLType stored object relationally or as binary XML                   <----------------------------
        *      The following Oracle-supplied types: Any types, URI types, spatial types, and media types
    A capture process raises an error if it tries to create a row LCR for a DML change to a column of
    an unsupported data type. When a capture process raises an error, it writes the LCR that caused
    the error into its trace file, raises an ORA-26744 error, and becomes disabled. For your support
    NOTE:556742.1 - Extended Datatype Support (EDS) for Streams
    to exclude the table:
    NOTE:239623.1 - How To Exclude A Table From Schema Capture And Replication When Using Schema Level Streams Replication
    Sound like a specific patch. You did not stated which version of Oracle you are running.

  • Red interference during capture with FCP 5.1.4

    I have FCP version 5.1.4 . I am using OSX 10.6 snow leopard (Macbook Pro). Have captured and edited without any problems. All of a sudden I am getting an interference during capture. This interference comes in the form of a bright red color which suddenly fills half my screen from corner to corner forming a right angled triangle and hiding half of my picture triangularly. it flashes and then remains. Anyone know what the **** this is and how I can rectify it?
    I would be EXTREMELY for any help anyone can give me. Thanks in advance.

    This is happening to me today as well. Has it got something to do with 10.6.7 I have just updated and now I seem to be having the same problem
    Pleasa Help

  • ORA-39126 during an export of a partition via dbms_datapump

    Hi ,
    i did export using datapump in command line everything went fine but while exporting via dbms_datapump i got this:
    ORA-39126 during an export of a partition via dbms_datapump
    ORA-00920
    'SELECT FROM DUAL WHERE :1' P20060401
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPW$WORKER", line 6228
    the procedure is:
    PROCEDURE pr_depura_bitacora
    IS
    l_job_handle NUMBER;
    l_job_state VARCHAR2(30);
    l_partition VARCHAR2(30);
    v_sql VARCHAR2(2000);
    BEGIN
    -- Create a user-named Data Pump job to do a "table:partition-level" export
    -- Local
    select 'P'|| to_char((select min(STP_LOG_DATE) from SAI_AUDITBITACORA),'YYYYMM')||'01'
    into l_partition
    from user_tab_partitions
    where table_name = 'SAI_AUDITBITACORA'
    and rownum = 1;
    l_partition := rtrim (l_partition,' ');
    l_job_handle:= DBMS_DATAPUMP.OPEN
    operation=>'EXPORT',
    job_mode =>'TABLE',
    job_name =>'EXPORT_ORACLENSSA'
    -- Schema filter
    DBMS_DATAPUMP.METADATA_FILTER
    handle => l_job_handle,
    name => 'SCHEMA_EXPR',
    value => 'IN (''ORACLENSSA'')'
    DBMS_OUTPUT.PUT_LINE('Added filter for schema list');
    -- Table filter
    DBMS_DATAPUMP.METADATA_FILTER
    handle => l_job_handle,
    name => 'NAME_EXPR',
    value => '=''SAI_AUDITBITACORA'''
    DBMS_OUTPUT.PUT_LINE('Added filter for table expression');
    -- Partition filter
    DBMS_DATAPUMP.DATA_FILTER
    handle => l_job_handle,
    name => 'PARTITION_EXPR',
    value => l_partition,
    table_name => 'SAI_AUDITBITACORA'
    DBMS_OUTPUT.PUT_LINE('Partition filter for schema list');
    DBMS_DATAPUMP.ADD_FILE
    handle => l_job_handle,
    filename => 'EXP'||l_partition||'.DMP',
    directory => 'EXP_DATA_PUMP',
    filetype => 1
    DBMS_DATAPUMP.ADD_FILE
    handle => l_job_handle,
    filename => 'EXP'||l_partition||'.LOG',
    directory => 'EXP_DATA_PUMP',
    filetype => 3
    DBMS_DATAPUMP.START_JOB
    handle => l_job_handle,
    skip_current => 0
    DBMS_DATAPUMP.WAIT_FOR_JOB
    handle => l_job_handle,
    job_state => l_job_state
    DBMS_OUTPUT.PUT_LINE('Job completed - job state = '||l_job_state);
    DBMS_DATAPUMP.DETACH(handle=>l_job_handle);
    END;
    I've already drop and recreate the directory, granted read, write to public and to user, grant create session, create table, create procedure, exp_full_database to user, restart the database and the listener with the var LD_LIBRARY pointing first to $ORACLE_HOME/lib, and add more space to temporary tablespace.

    The basic problem is:
    Error: ORA 920
    Text: invalid relational operator
    Cause: A search condition was entered with an invalid or missing relational
    operator.
    Action: Include a valid relational operator such as =, !=, ^=, <>, >, <, >=, <=
    , ALL, ANY, [NOT] BETWEEN, EXISTS, [NOT] IN, IS [NOT] NULL, or [NOT]
    LIKE in the condition.
    Obviously this refers to the invalid statement 'SELECT FROM DUAL ...'. I also recommend, you should contact Oracle Support, because it happens inside an Oracle provided package.
    Werner

  • Encountered ora-29701 during Sun Cluster for Oracle RAC 9.2.0.7 startup (UR

    Hi all,
    Need some help from all out there
    In our Sun Cluster 3.1 Data Service for Oracle RAC 9.2.0.7 (Solaris 9) configuration, my team had encountered
    ora-29701 *Unable to connect to Cluster Manager*
    during the startup of the Oracle RAC database instances on the Oracle RAC Server resources.
    We tried the attached workaround by Oracle. This workaround works well for the 1^st time but it doesn’t work anymore when the server is rebooted.
    Kindly help me to check whether anyone encounter the same problem as the above and able to resolve. Thanks.
    Bug No. 4262155
    Filed 25-MAR-2005 Updated 11-APR-2005
    Product Oracle Server - Enterprise Edition Product Version 9.2.0.6.0
    Platform Linux x86
    Platform Version 2.4.21-9.0.1
    Database Version 9.2.0.6.0
    Affects Platforms Port-Specific
    Severity Severe Loss of Service
    Status Not a Bug. To Filer
    Base Bug N/A
    Fixed in Product Version No Data
    Problem statement:
    ORA-29701 DURING DATABASE CREATION AFTER APPLYING 9.2.0.6 PATCHSET
    *** 03/25/05 07:32 am ***
    TAR:
    PROBLEM:
    Customer applied 9.2.0.6 patchset over 9.2.0.4 patchset.
    While creating the database, customer receives following error:
         ORA-29701: unable to connect to Cluster Manager
    However, if customer goes from 9.2.0.4 -> 9.2.0.5 -> 9.2.0.6, the problem does not occur.
    DIAGNOSTIC ANALYSIS:
    It seems that the problem is with libskgxn9.so shared library.
    For 9.2.0.4 -> 9.2.0.5 -> 9.2.0.6, the install log shows the following:
    installActions2005-03-22_03-44-42PM.log:,
    [libskgxn9.so->%ORACLE_HOME%/lib/libskgxn9.so 7933 plats=1=>[46]langs=1=> en,fr,ar,bn,pt_BR,bg,fr_CA,ca,hr,cs,da,nl,ar_EG,en_GB,et,fi,de,el,iw,hu,is,in, it,ja,ko,es,lv,lt,ms,es_MX,no,pl,pt,ro,ru,zh_CN,sk,sl,es_ES,sv,th,zh_TW, tr,uk,vi]]
    installActions2005-03-22_04-13-03PM.log:, [libcmdll.so ->%ORACLE_HOME%/lib/libskgxn9.so 64274 plats=1=>[46] langs=-554696704=>[en]]
    For 9.2.0.4 -> 9.2.0.6, install log shows:
    installActions2005-03-22_04-13-03PM.log:, [libcmdll.so ->%ORACLE_HOME%/lib/libskgxn9.so 64274 plats=1=>[46] langs=-554696704=>[en]] does not exist.
    This means that while patching from 9.2.0.4 -> 9.2.0.5, Installer copies the libcmdll.so library into libskgxn9.so, while patching from 9.2.0.4 -> 9.2.0.6 does not.
    ORACM is located in /app/oracle/ORACM which is different than ORACLE_HOME in customer's environment.
    WORKAROUND:
    Customer is using the following workaround:
    cd $ORACLE_HOME/rdbms/lib make -f ins_rdbms.mk rac_on ioracle ipc_udp
    RELATED BUGS:
    Bug 4169291

    Check if following MOS note helps.
    Series of ORA-7445 Errors After Applying 9.2.0.7.0 Patchset to 9.2.0.6.0 Database (Doc ID 373375.1)

  • My hard drive failed and during the setup of Illustrator CS4 on my new hard drive/pc, I was told I had reached the maximum number of licenses

    My hard drive failed and during the setup of Illustrator CS4 on my new hard drive/pc, I was told that the maximum # of licenses for my serial number had been reached and so I am unable to install Illustrator on my working computer.  This happened a couple of years ago and I called Adobe and they were able to 'reset' things but I don't see any way to talk to someone now to resolve this problem.  BTW, I have the failed hard drive slaved in my new computer and am able to access files and such things, but have no way of uninstalling the Illustrator on my old drive.  How do I fix this issue?

    Contact Adobe Support thru chat and ask them to reset your activations.
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • RFC connection results in "Timeout during connection setup"

    Hello Guys,
    The RFC ABAP connection to the Solution Manager encounters connection error: "/ CPIC-CALL: 'ThSAPCMINIT' : cmRc=27 thRc=242#Timeout during connection setup."
    The Solution Manager has following details:
    SAP Solution Manager (700 15)
    ORACLE 10.2.0.2.0
    HP-UX
    The R/3 QAS Customer 1 system has following details:
    SAP R/3 Enterprise (620 54)
    ORACLE 9.2.0.8.0
    HP-UX
    The R/3 QAS Customer 2 system has following details:
    SAP R/3 Enterprise (620 59)
    ORACLE 9.2.0.8.0
    HP-UX
    The RFC ABAP connection from <SID Solution Manager> -> <SID R/3 QAS Customer 1> is working correctly.
    The RFC ABAP connection from <SID R/3 QAS Customer 2> -> <SID Solution Manager> is working correctly.
    The RFC ABAP connection from <SID R/3 QAS Customer 1> -> <SID Solution Manager> encounters connection error:
    ERROR                timeout during allocate                       
    LOCATION             SAP-Gateway on host hemisrq.services.retail.tc.services.retail.tc / sapgw01
    DETAIL               no connect of TP sapdp02 from host conssmp.servom host <host name Solution Manager> after 22
    COMPONENT            SAP-Gateway                                   
    COUNTER              1152                                          
    MODULE               gwr3cpic.c                                    
    LINE                 1820                                          
    RETURN CODE          242                                           
    SUBRC                    0                                         
    RELEASE              640                                           
    TIME                 Thu Jun  5 10:55:15 2008                      
    VERSION              2                                             
    Here's the dev_rfc0 log file
    Trace file opened at 20080605 101956 METDST SAP-REL 640,0,235 RFC-VER 3 985555
    ======> CPIC-CALL: 'ThSAPCMINIT' : cmRc=27 thRc=242                               
    Timeout during connection setup. Please check partner availability                
    ABAP Programm: RSRFCPIN (Transaction: SM59)                                       
    Called function module: RFC_PING                                                  
    User: SAPBEHEER (Client: 000)                                                     
    Destination: <SID Solution Manager>CLNT010 (handle: 2, , {4846C6DC-14A2-0F1F-E100-0000AC1B29D8})     
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 2277                                   
    CPIC-CALL: 'ThSAPCMINIT' : cmRc=27 thRc=242                                       
    Timeout during connection setup. Please check partner availability                
    HOST =<host name Solution Manager>                                                  
    SERV =sapdp02                                                                     
    Checked the error code 242 "GW_TIMEOUT" and found:
    Connection setup to the remote gateway has been closed because timeout has been exceeded.
    The time limit can be set in parameter gw/timeout.
    Changed parameter gw/timeout to value 10000, but still encounter same error message.
    From OS level <SID R/3 QAS Customer 1> i can ping the <host name Solution Manager>.
    fvb1:/home/stampg$>ping <host name Solution Manager>
    PING <host name Solution Manager>: 64 byte packets
    64 bytes from 172.27.68.239: icmp_seq=0. time=1. ms
    64 bytes from 172.27.68.239: icmp_seq=1. time=1. ms
    64 bytes from 172.27.68.239: icmp_seq=2. time=1. ms
    64 bytes from 172.27.68.239: icmp_seq=3. time=1. ms
    64 bytes from 172.27.68.239: icmp_seq=4. time=1. ms
    64 bytes from 172.27.68.239: icmp_seq=5. time=1. ms
    conssmp.services.retail.tc PING Statistics----
    6 packets transmitted, 6 packets received, 0% packet loss
    round-trip (ms)  min/avg/max = 1/1/1
    Any suggestions where to look ?
    Regards,
    Gidion

    Hello Gidion,
    can you please verify the hostnames/FQDN's? Because:
    LOCATION SAP-Gateway on host hemisrq.services.retail.tc.services.retail.tc / sapgw01
    host hemisrq.services.retail.tc.services.retail.tc
    It seems to me that somewhere the domain is double used.
    Additionally:
    Sometime there is sapgw 01, sometime sapdp 02. Can you please check the correct service numbers / system numbers?
    Regards
    Holger

Maybe you are looking for

  • R3trans not exporting all tables

    Hi I am creating a control file to export SXNODES table export file = '/tmp/SXNODES_dmp' delete * from 'SXNODES' select * from 'SXNODES' When I export, using R3trans, I get 0 entries exported. I used to be able to export this table until we upgraded

  • Error: Your request can't be completed right now. Please try again later.

    I have MS Exchange 2007 - 2013 CU3 coexistence at two sites connected by VPN link.  OWA and Outlook work fine for mailboxes on 2007 server. OWA does not work for mailboxes on 2013 server, however Outlook connects fine to any mailbox on 2013 server. H

  • How to Table data directly stored as file in FTP location

    Hi All, In my process i need to convert table into csv file,i know how to convert as file,but the file will stored into FTP location directly,can any one help regarding this... Thanks in Advance... Edited by: 947267 on Oct 26, 2012 2:46 AM

  • Dato folder on DVD

    Hallo Can someone perhaps help me out here. I want to make a DVD with menues etc. and burn it as a regular DVD. At the same time I would like to give the customers of my client the possibility to watch the content in HD as flash rendered via Encore t

  • Apple, Help Mail Please!

    Hi Apple techs. I'm having password login problems with the Mail app ver 2.0.5. This just started this morning and looking through the discussions addressing the same problems and so many other users complaining about the same issue, it looks like so