HELP! strange error for apache bridge

PLATFORM: HPUX 11i, Apache 1.3.27
plugin: weblogic 7.0 sp2
there's error like the following everyday during 00am-01am:
READ_TIMEOUT [OS error=0, line 199 of ../nsapi/Reader.cpp]: no read after 300
seconds
there's only a little access during that time
But recently such error message happened during day time and users suffer a lot.
Can you help to check which condition can trigger such error?
Thanks&Rgds

TYPES : BEGIN OF ty_file,
line(1055) TYPE c,
end of ty_file.
data : gs_file type ty_file.
data gt_cust_tmp type table of ty_file.
data : g_file4 TYPE string VALUE '\usr\sap\CISCO\SP\CISCO_SP_CHG.TXT'.
OPEN DATASET g_file4 IN TEXT MODE FOR INPUT
ENCODING DEFAULT
WITH SMART LINEFEED.
IF sy-subrc NE 0.
MESSAGE e012.
LEAVE LIST-PROCESSING.
ENDIF.
CLEAR : gs_file.
DO.
READ dataset g_file4 INTO gs_file.
IF sy-subrc NE 0.
EXIT.
ENDIF.
APPEND gs_file to gt_cust_tmp.
clear gs_file.
ENDDO.
CLOSE DATASET g_file4.
check this coding. in the read statement dataset is missing.
with regards,
Vamsi

Similar Messages

  • Getting 503 error for Apache + Coldfusion on Linux

    Hi Guys,
    I am new to coldfusion and facing issue with the websites.
    Frequently I am encountering 503 errors for my websites sites.
    Apache error_log shows below errors at the time of 503 errors:
    [Thu Aug 15 14:56:11 2013] [notice] jrApache[12343: 16314]  JRun will not accept request.  Check JRun web server configuration and JRun mappings on JRun server.
    [Thu Aug 15 14:57:26 2013] [notice] jrApache[10249: 30633]  JRun will not accept request.  Check JRun web server configuration and JRun mappings on JRun server.
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[11269: 14799]  command error: 104 Connection reset by peer <- [28]
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[11269: 14799]  returning error page for 104 Connection reset by peer
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[21458: 51935]  command error: 104 Connection reset by peer <- [28]
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[21458: 51935]  returning error page for 104 Connection reset by peer
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[9210: 52959]  command error: 104 Connection reset by peer <- [28]
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[9210: 52959]  returning error page for 104 Connection reset by peer
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[8091: 51679]  command error: 104 Connection reset by peer <- [28]
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[8091: 51679]  returning error page for 104 Connection reset by peer
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[21260: 15823]  command error: 104 Connection reset by peer <- [28]
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[9209: 52703]  command error: 104 Connection reset by peer <- [28]
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[9209: 52703]  returning error page for 104 Connection reset by peer
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[28106: 15567]  command error: 104 Connection reset by peer <- [28]
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[28106: 15567]  returning error page for 104 Connection reset by peer
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[21260: 15823]  returning error page for 104 Connection reset by peer
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[3831: 14031]  command error: 104 Connection reset by peer <- [28]
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[3831: 14031]  returning error page for 104 Connection reset by peer
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[21264: 14543]  command error: 104 Connection reset by peer <- [28]
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[21264: 14543]  returning error page for 104 Connection reset by peer
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[30125: 53215]  command error: 104 Connection reset by peer <- [28]
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[30125: 53215]  returning error page for 104 Connection reset by peer
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[9216: 60810]  127.0.0.1:51800 connect failed[28]: 111 111 Connection refused
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[9216: 60810]  returning error page for 111 Connection refused
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[12363: 11782]  127.0.0.1:51800 connect failed[28]: 111 111 Connection refused
    [Thu Aug 15 14:57:27 2013] [notice] jrApache[12363: 11782]  returning error page for 111 Connection refused
    Below is my Jrun settings in httpd.conf file:
    # JRun Settings
    LoadModule jrun_module /opt/coldfusion9/runtime/lib/wsconfig/1/mod_jrun22.so
    <IfModule mod_jrun22.c>
        JRunConfig Verbose false
        JRunConfig Apialloc false
        JRunConfig Ignoresuffixmap false
        JRunConfig Serverstore /opt/coldfusion9/runtime/lib/wsconfig/1/jrunserver.store
        JRunConfig Bootstrap 127.0.0.1:51800
        JRunConfig ConnectTimeout 1500
        AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf
    </IfModule>
    Below are the loaded jrun modules:
    # httpd -M | grep jrun
    core_module (static)
    mpm_prefork_module (static)
    http_module (static)
    so_module (static)
    auth_basic_module (shared)
    auth_digest_module (shared)
    authn_file_module (shared)
    authn_alias_module (shared)
    authn_anon_module (shared)
    authn_dbm_module (shared)
    authn_default_module (shared)
    authz_host_module (shared)
    authz_user_module (shared)
    authz_owner_module (shared)
    authz_groupfile_module (shared)
    authz_dbm_module (shared)
    authz_default_module (shared)
    ldap_module (shared)
    authnz_ldap_module (shared)
    include_module (shared)
    log_config_module (shared)
    logio_module (shared)
    env_module (shared)
    ext_filter_module (shared)
    mime_magic_module (shared)
    expires_module (shared)
    deflate_module (shared)
    headers_module (shared)
    usertrack_module (shared)
    setenvif_module (shared)
    mime_module (shared)
    dav_module (shared)
    status_module (shared)
    autoindex_module (shared)
    info_module (shared)
    dav_fs_module (shared)
    vhost_alias_module (shared)
    negotiation_module (shared)
    dir_module (shared)
    actions_module (shared)
    speling_module (shared)
    userdir_module (shared)
    alias_module (shared)
    rewrite_module (shared)
    proxy_module (shared)
    proxy_balancer_module (shared)
    proxy_ftp_module (shared)
    proxy_http_module (shared)
    proxy_connect_module (shared)
    cache_module (shared)
    suexec_module (shared)
    disk_cache_module (shared)
    file_cache_module (shared)
    mem_cache_module (shared)
    cgi_module (shared)
    version_module (shared)
    ssl_module (shared)
    proxy_ajp_module (shared)
    jrun_module (shared)
    Syntax OK
    Please suggest me to fix this issue.
    Thanks & Regards
    Kalyan Pasupuleti

    Hi Priyank,
    Thanks for your quick reply.
    Coldfusion Version is 9
    Apache Version is : Apache/2.2.3
    OS: CentOS release 5.7 (Final) - 32Bit
    Thanks & Regards
    Kalyan Pasupuleti

  • Please help: strange error message when trying to burn cds

    I have been trying to burn an itunes playlist onto cds and I have never had trouble doing this before, but just this afternoon I have started getting an error message and the disc will automatically eject itself immediately following the initializing stage.
    The error message I receive is this: "The attempt to burn a disc failed. The device failed to calibrate the laser power for this media."
    What does this mean? What can I do to fix the problem? Thank you in advance!!
    (Additional information in case this is helpful: The discs are Maxwell CD-R audio cds with 700mb/80min capacity, and my itunes is version 7.3.1. The playlist is long -- spanning multiple cd lengths -- but I have never encountered a problem with that before, so I don't think that is causing the error.)

    Same here.Although i've had this problem since febuary of this year.
    Just upgraded to 7.4 and it still does'nt work.Its not an uncommon problem,there has been hundreds of threads about this and thousands of users with the same problem,apple don't seem to want to recognise or solve the problem.Disgraceful behaviour on their part.
    I've simply had enough now so i've contacted these...
    http://www.bbc.co.uk/consumer/tvand_radio/watchdog/contactindex.shtml
    ...people.Hopefully they can make apple sit up and take notice of this problem,although i have my doubts.I suggest you do the same if you to have had enough of apple's simply dreadful customer service and faulty software.
    Sorry i could'nt be of any help to you but i can assure you that are not alone in this.

  • Please help - strange error message when trying to download i tunes

    Hi
    When i try and download i-tunes i get a message about URBCHN1 not being a win32 command, or something similar. I have tried all thr suggestion on the web, deleted i tunes and quicktime, deleted temp folders and even changed the settings in myconfig, but what ever i do i still get the same message!
    HELP PLEASE

    When i try and download i-tunes i get a message about URBCHN1 not being a win32 command, or something similar.
    ... that's an unusual one.
    could you possibly send us a screenshot of the error message box? for instructions, see the following user tip:
    hudgie: Taking screenshots to help with problems

  • Strange error for PowerShell connector example

    Hi all
    I am trying to run an example of PowerShell connector for FIM2010R2 but I get this error at Activity screen, please help.
    Here is the link to the example. I could not comment on that article so I post it here.
    http://social.technet.microsoft.com/wiki/contents/articles/23648.windows-powershell-connector-for-fim-2010-r2-flat-file-sample-connector.aspx
    Synchronization Service Manager
    Unable to retrieve schema. Error: An anchor attribute defined by the extension must not be of type Reference or Boolean. A multivalued attribute defined by the extension must not be of type Boolean.

    Hello
    Same issue :
    http://social.technet.microsoft.com/Forums/en-US/7c558dff-b3c9-4268-9d65-64a52821162c/fim2010r2-microsoft-powershell-ma-unable-to-retrieve-schema?forum=ilm2
    No solution was found yet...

  • Strange error for  me..

    Hi
    All,
    I got following error in developement, test and production database please throw the thoughts..
    oracle@f80dev:/u01/app/oracle/admin/CMSTEST/bdump>more *.trc
    Dump file /u01/app/oracle/admin/CMSTEST/bdump/cmstest_cjq0_725154.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    ORACLE_HOME = /u01/app/oracle/product/10.2.0
    System name: AIX
    Node name: f80dev
    Release: 2
    Version: 5
    Machine: 000D0C9D4C00
    Instance name: CMSTEST
    Redo thread mounted by this instance: 1
    Oracle process number: 10
    Unix process pid: 725154, image: oracle@f80dev (CJQ0)
    *** 2008-07-12 06:09:17.643
    *** SERVICE NAME:(SYS$BACKGROUND) 2008-07-12 06:09:17.552
    *** SESSION ID:(217.1) 2008-07-12 06:09:17.552
    Waited for process J000 to initialize for 60 seconds
    *** 2008-07-12 06:09:17.643
    Dumping diagnostic information for J000:
    OS pid = 1802338
    loadavg : 1.04 1.28 1.08
    swap info: free_mem = 0.50M rsv = 13.88M
    alloc = 783.24M avail = 3552.00M swap_free = 2768.76M
    F S UID PID PPID C PRI NI ADDR SZ WCHAN STIME TTY TIME CMD
    240001 A oracle 1802338 1 0 60 20 2005e775 90644 06:08:17 - 0:00 ora_j000_CMSTEST
    1802338: ora_j000_CMSTEST
    0x09000000000b56dc poll(??, ??, ??) + 0x90
    0x09000000000c266c res_nsend(0x9001000a00187b0, 0xfffffffffffb310, 0x2800000028, 0xfffffffffffc260, 0x40000000400) + 0xe28
    0x09000000000fc7fc res_nquery(??, ??, ??, ??, ??, ??) + 0x138
    0x09000000000fc128 res_nquerydomain(??, ??, ??, ??, ??, ??, ??) + 0x194
    0x09000000000fc480 res_nsearch(??, ??, ??, ??, ??, ??) + 0x2d0
    0x09000000000cd774 res_search(??, ??, ??, ??, ??) + 0xa8
    0x09000000000e041c ho_byname2(??, ??, ??) + 0x12c
    0x09000000000fa3f8 ho_byname(??, ??) + 0x2ac
    0x09000000000c08f0 gethostbyname(??) + 0x1b0
    0x00000001047c443c sldmGetHostInfo(??, ??, ??, ??, ??) + 0x3c
    0x00000001047c4b74 sldmInit(??, ??) + 0x54
    0x00000001047c20f8 ldmInit(??, ??, ??, ??, ??, ??, ??, ??) + 0x1f8
    0x0000000101c3abec keltnfy(??, ??) + 0x18c
    0x00000001000f9f54 kscnfy(??, ??) + 0x1f4
    0x000000010012ee94 ksucrp(??) + 0x574
    0x00000001021d6434 kkjrdp() + 0x254
    0x00000001041ca450 opirip(??, ??, ??) + 0x4f0
    0x0000000102ab5588 opidrv(??, ??, ??) + 0x448
    0x000000010409f7b0 sou2o(??, ??, ??, ??) + 0x90
    0x0000000100000870 opimai_real(??, ??) + 0x150
    0x00000001000006d8 main(??, ??) + 0x98
    0x0000000100000360 __start() + 0x90
    Thanks,
    Vishal

    Hi Vishal,
    Your trace file shows messages such as "gethostbyname" failures, which indicates to me a DNS failure or a misconfiguration at the network level. Can you perform a nslookup of both client and server hostnames from the database server? Also trying running the hostname command.
    Cheers,
    Stuart.

  • Help ,, Strange error

    Hello ...
    I have ISA server 2006 + Bandwidth Splitter
    I make rules in Bandwidth Splitter for limit speed to client and evry thing ok but if client download from youtube it's download takes all speed of the line "only any downloading video https url"......
    There is no defect in the configuration,
    I did not make rule , only one role for the enter of internet from internal to external to all users.
    As well as in bandwidth splitter
    The same problem :
    If you downloaded from YouTube or video file from Facebook, preceded protocol https takes all speed,,,,
    Example:
    "https://r1---sn-25auxa-b15e.googlevideo.com"
    "https://fbcdn-video-a.akamaihd.net"
    help plz...I'm tried for this problem> alot .....

    Hi,
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thanks for your understanding and support.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Please help: Strange error occurs when loading courseware

    Hi all,
    We have developed numerous training packages using Captivate 5. For the most part they seem to work nicely, however, three of our users (out of hundreds) have reported the following error (please view attached screenshot).
    One user is using Firefox (dont know browser or flash version),
    Second User is using Internet Explorer 8.0.7601  with a flash version of 10.2.1.53
    Third user tried both IE and Firefox and has a flash version of 10.2.15.1
    I myself am using IE 8 with a flash version of 10.2.153 and am not able to replicate the error.
    I have done a search on the forums trying to see if anyone else has come accross the same error and found the following thread: http://forums.adobe.com/message/3269584   However we are not using the aggregator for our projects, and although we do use a preloader, the vast majority of our users are not experiencing problems. For those users who are having difficulties two of them seem to be able to open some modules but not others (yet the same pre loader is used throughout all our courseware).
    One interesting observation that I have had is that for one user the error only occurs on modules that are using a table of contents (in overlay mode) and they are able to open all other modules. Yet, for one of the other users the error is occuring on all modules, even those without a table of contents.
    I can't figure out what may be causing the problem because each user is experiencing the error under slightly different circumstances (In terms of flash versions, browsers and whether or not the module has a table of contents or preloaders).
    Has anyone else experienced the above error. If so did you figure out what was causing the problem?
    thanks!

    Hi,
    Would it be possible to share that swf file, so that i will try from my end and see whether i can reproduce the issue?
    You can e-mail to my address [email protected]
    Thanks,
    Vikranth.

  • Strange error for the masses.

    Hi,
    I am trying top compile this simple func but no success. Does anyone know why?
    create or replace function niknik
    return number is
    cursor c1 is
    select * from past.traninvl l
    where l.from_date < to_date('MAR-2001','MON-YYYY');
    begin
    null;
    end;
    I get this error;
    LINE/COL ERROR
    4/1 PL/SQL: SQL Statement ignored
    5/24 PLS-00222: no function with name 'TO_DATE' exists in this scope
    BUT THIS DOES COMPILE:
    create or replace function niknik
    return number is
    cursor c1 is
    select * from past.traninvl l
    where l.from_date < '01-JAN-2001';--to_date('MAR-2001','MON-YYYY');
    begin
    null;
    end;
    Does anyone know what is worng with this please ?
    Thanks
    N.

    I'm trying to unravel this, but I just don't get it. Are you creating this function in SqlPlus?

  • Can't install weblogic server sp5(apache bridge) on linux

    Hi.
    I can't install weblogic server service pack 5(weblogic for apache
    bridge,mod_wl.so) on redhat linux 6.2,my apache server version is 1.3, and
    it work without sp5,when I use new mod_wl.so overwrite old one, apache
    server can't start.
    Please help,
    Thanks
    Jason Shi([email protected])

    What exact problems are you having? I'm using WLS 5.1 SP5 + apache
    1.3.12 + mod_ssl just fine.
    John Salvo
    Jason wrote:
    >
    Hi.
    I can't install weblogic server service pack 5(weblogic for apache
    bridge,mod_wl.so) on redhat linux 6.2,my apache server version is 1.3, and
    it work without sp5,when I use new mod_wl.so overwrite old one, apache
    server can't start.
    Please help,
    Thanks
    Jason Shi([email protected])

  • Strange error transferring songs to my Zen X

    I have a 40GB Nomad Zen Xtra, with firmware .20.08.
    Anyway, I can transfer my music just fine most of the time, but occasionally I get a strange error for some of the music, sometimes it can even be for a whole album. The error says,"Error: Unable to download file. This file format is invalid." But the format clearly says .mp3, so it's really confusing. Does anyone know why this is happening because now I'm having some of my favorite stuff held off of my player.

    It might be a problem with the tags. Copy the file, use a tagging program to remove the tags from the copied file, then try transferring again.
    Failing that make sure to get the latest drivers, firmware, MediaSource and MediaSource plugin from Nomadworld.com downloads.

  • Error Running Forms: Failure of server APACHE bridge

    Hi Everyone,
    I have this problem on windows 7 64-bit... installation went fine without any errors.
    Forms was working fine, i was able to run test form, and a form that i created, and both were running properly..
    suddenly, while testing a new form module, it didn't work, and its showing :
    Failure of server APACHE bridge:
    No backend server available for connection: timed out after 10 seconds or idempotent set to OFF. I stopped and started the wls_forms and it didn't solve the problem..
    i couldn't get to a solution anywhere, is it a problem with weblogic configuration? but how was it working well at the begining... if weblogic services are not starting, then what's the fix for that?
    Help would be appreciated...
    Thanks..

    No, but as said you installed components (the HTTP Server) you wouldn't need for development. Did you start WLS_FORMS?
    In any case the latest version of forms would be 11.1.2 where the installation process for a development machine is much easier.
    You'd need
    - wls1035_generic.jar and a 64bit java runtime
    - the 64bit version of forms 11.1.2: http://download.oracle.com/otn/nt/middleware/11g/111200/ofm_frmrpts_win_11.1.2.0.0_64_disk1_1of1.zip
    of course you can install the 32bit version of forms too on your 64bit machine.
    then during installation just check "development mode", and you get a development installation like you got with iDS 10.1.2 with one weblogic instance instead of 3 and all the components you won't need (like webcache or the http server) won't be installed.
    cheers

  • Weblogic Apache Bridge Error - Urgent

    Hi,
    We have installed 11g weblogic and forms and reports successfully but while calling a form sometimes in concurrent sessions getting 'Failure of Server Apache Bridge Error'.
    Following are the system details:
    System: Windows 2008 64 bit
    Forms/reports [64 Bit] Version 11.1.2.0.0
    Weblogic server :10.3.5
    Apache Version:
    Oracle_FRHome1\ohs\bin>httpd -version
    Server version: Oracle-HTTP-Server/2.2.15 (Win32)
    Server built: Apr 2 2011 17:14:20
    Server label: APACHE_11.1.1.5.0_WINDOWS.X64_110325.2000
    As suggested in most of the forums, we have disabled IPv6 and replaced hostname with IP Address of the system in mod_wl_ohs.conf, forms.conf and reports_ohs.conf like this:
    mod_wl_ohs:
    DynamicServerList Off
    WebLogicHost 10.11.18.119
    <Location /console>
    SetHandler weblogic-handler
    WebLogicHost 10.11.18.119
    WebLogicPort 7001
    </Location>
    WebLogicPort 7001
    <Location /em>
    SetHandler weblogic-handler
    WebLogicHost 10.11.18.119
    WebLogicPort 7001
    </Location>
    <Location /forms>
    SetHandler weblogic-handler
    WebLogicHost 10.11.18.119
    WebLogicPort 9001
    </Location>
    <Location /reports>
    SetHandler weblogic-handler
    WebLogicHost 10.11.18.119
    WebLogicPort 9002
    </Location>
    And from weblogic console also we have changed the listen address to this static IP and restarted the ohs,form, report server.
    But still facing the same issue.
    Any suggestion?
    OHS Log:-
    [2012-03-05T20:17:19.4742+05:30] [OHS] [ERROR:32] [OHS-9999] [mod_weblogic.c] [host_id: MUPF102] [host_addr: 169.254.95.120] [pid: 5068] [tid: 2064] [user: SYSTEM] [VirtualHost: main] ap_proxy: trying GET /forms/frmservlet at backend host '10.11.18.119/0; got exception 'NO_RESOURCES: [os error=0,  line 1915 of ../nsapi/URL.cpp]: apr_socket_connect call failed hostname:10.161.168.119:0 error [730049]'
    Any prompt help would be highly appreciated.
    Thanks in Advance.

    Thanks for the prompt reply.
    We can access the report with 2 or 3 concurrent connections properly but the moment there are more concurrent connections it gives 'Failure of Server Apache Bridge Error' in client browser for new connections and whoever is already logged in their application gets hang.
    So restarting also wont help as there can be more than 100 concurrent connections.
    We have changed few parameters like :
    StartServers 2
    MaxClients 2500
    MinSpareThreads 25
    MaxSpareThreads 2500
    ThreadsPerChild 25
    MaxRequestsPerChild 0
    KeepAliveTimeout 15
    Timeout 720
    Any other suggestions?

  • Strange Errors from Import Server on Schema-based maps for repeating nodes

    I have already posted one thread about this, but perhaps some more in-depth information is required:
    We have uploaded our schema into the console, and have mapped the following multi-node file to it:
    CUSTOMER <repeating node>
      MDM_CUST (new Customer number returned)
      CUSTOMER(mapped back from XI for RECORD MATCHING)
      CREATE_DATE (text field)
      CONTACT<repeating node>
        CONTACT_NO (RECORD MATCHING : NON-QUALIFIER)
        CONTACT_SAP_NO (QUALIFIER)
         [NOTE: There are other qualifers for CONTACT, but only this one
    qualifier is being returned and is the only field that would and should be updated.
    The other fields should be left alone. However, it appears to overwrite EVERYthing
    with NULL other than these two fields. The CONTACT_NO is the sole qualifer on
    the table. It is a calculated field that equals the Auto-ID that is also produced on
    the table - but obviously not mapped.]
      PARTNER<repeating node>
        CUSTOMER_NO (RECORD MATCHING : NON-QUALIFER)
        PARTNER_FUNC (NON-QUALIFIER - Code given to lookup from PARTNER_FUNCTION table which has Code and Desc)
        PARTNER_NO     (NON-QUALIFIER)
        DEFAULT_PARTNER_FLAG (QUALIFIER)
    <CLOSE CUSTOMER NODE>
    In the Customer main table, all records are matched on CUSTOMER. The CONTACT_NO non-qualifer is matched to the CONTACT qualified lookup table directly since it is the only available non-qualifier. For the PARTNER table, the three qualifiers are mapped and then a compound field is created to map to the PARTNER table entry.
    We have the Configurations set at:
    Default Multi-Valued Update: Replace
    Default Qualified Update: Replace
    Default Matching Qualifiers: None
    Our record matching is: Create / Update(ALL MAPPED FIELDS) / Update(ALL MAPPED FIELDS)
    When the map is reused, the repeating nodes are all recognized, be it one node or many. However, when the map is reused, it does not automatically map the values for many of the Partner fields (nor the compound field) though the fields are correctly mapped.
    Also, when we attempt to use Import Server to automate the mapping, we use the mdis.ini set to
    Automap Unmapped Value=True
    Unmapped Value Handling=Add
    Always Use Unmapped Value Handling=False
    We get a very strange error saying that :
    [code]Encountered a pre-SP4 map. The map needs to be upgraded to SP4.
    Solution: Please, Launch the Import Manager GUI using the same source file and simply save the map.[code]
    Could it be that our MDM 5.5 SP4 is not compatible with schemas generated with XI v.7 SP9?
    All of our MDM is 5.5 SP4. It makes no sense that we would get THIS kind of error. Also, I am questioning our combination of these and other configurations since it doesn't always seem to do what it should

    Hi Donald,
    this sounds good so far. Just a short hint: you've set "Default Qualified Update: Replace". This explains why Import server "appears to overwrite EVERYthing
    with NULL other than these two fields.". The reason is the replace. A replace means that the old values are completely deleted and only the new incoming ones are stored. I'd suggest to use any of the Update possibilities.
    Note: the definitions you set in in the record matching step are mainly for the new records in the main table! Records in qualified look ups are handled differently! If you open your map in Import Manager, switch to tab "Map Fields/Values". Select a field that is your non qualifier. Right-Click on it and choose "Set qualified update" from the context menu. Now you can define which qualifiers can be used for the qualified look up matching. And you can define as well what should happen with new and/or existing records.
    Regarding the value mapping: do you use keymapping? Or do you use simple values only? Do you save the map everytime you add a new value mapping?
    Regarding the issue "Encountered a pre-SP4 map. The map needs to be upgraded to SP4. Solution: Please, Launch the Import Manager GUI using the same source file and simply save the map". This sounds very likely like a bug in MDIS and should be reported to SAP!
    Hope that helps
    Michael

  • Failure of server APACHE bridge::No backend server available for connection

    All,
    I have an env: Browser -> OHS -> WLS(Apex Listener) -> Oracle DB.
    If any SQL run for more than 5 mins, i get the below error.
    Failure of server APACHE bridge:
    No backend server available for connection: timed out after 10 seconds or idempotent set to OFF or method not idempotent.The only error i get is from the OHS's log
    [2013-04-03T06:45:57.2946-05:00] [OHS] [ERROR:32] [] [core.c] [host_id: aa050] [host_addr: 121.146.60.102] [tid: 1260554560] [user: oracle] [ecid: 004qNDJn1du7m3KaETn3ES0004Ll00001T] [rid: 0] [VirtualHost: my.team.com:443]  ap_proxy: trying POST /pls/apex/wwv_flow.show at backend host 127.0.0.1/7003; got exception 'Backend Server not responding'; state: reading status line or response headers from WLS (wrote? Y read? N); not failing over because method not idempotent, referer: https://my.team.com/pls/apex/f?p=4500:1003:16571271664493::NO:::Is there a timeout variable other than the below in WLS?
    Session Timeout (in seconds): 3600 .
    TIA,
    JJ

    Regardless of the version, this is not exactly a "Forms" failure. This is an issue between OHS and WLS. Basically it means that OHS (via mod_wl_ohs) was unable to communicate with WLS_FORMS (or whichever managed server you are trying to access). Most often this means the managed server is not running or not responding. If you believe it is running and is responsive (test by hitting it directly) then the problem is probably related to your installation. Generally, if you have not properly configured your networking before you installed WLS and FMw, then this can occur. For example, on Windows machine which do not have static IP addresses, the Installation Guide instructs you to install the Windows loopback adapter and configure it. If you did not do this, OHS likely will not be able to contact WLS_FORMS.
    You can test what I have described above by attempting to access WLS_FORMS directly. For example:
    http://yourHost:9001/forms/frmservlet
    If that works, the issue is probably related to a net config issue.
    If you have access to MyOracle Support, refer to these notes:
    <blockquote><li>Failure Of Server APACHE Bridge After Running Report From Forms 11gR2 on Windows 64-bit platform (Doc ID 1457845.1)
    <li>Oracle Fusion Middleware 11g - Troubleshooting the Error "Failure of server APACHE bridge" (Doc ID 1304095.1)</blockquote>
    The product Documentation Library can be found here:
    http://docs.oracle.com/cd/E24269_01/index.htm

Maybe you are looking for

  • Logged in as me but showing me someone else's acco...

    Hi, Just wondering if anyone can help, would it be a support call I need to make to Skype I don't know.. But over the weekend at some point, my Skpye has appeared to have been taken over or merged with another users account. I am signed in as myself,

  • Opening Balances changes when running business rules

    Good morning, We are experiencing problems with the opening balance calculation (Flow: F100) when running the consolidation business rules in BPC 10.1. For example, in 2013.12, Entity 1111 and Account C_ENL_DIV, the ending balance (Flow: F900) is 180

  • KM Respository Manager Error

    I have upgrade by BW3.1 to Bw3.5 and Installed EP 6.0, Collaboration, TREX and other think shown in SAPINST. Is it possible that I have to install the KM separatly or it is a part of Collaboration option in SAPINST. when I click on any link on my KM

  • How can i process an action to another page in clientListener ?

    i have a table in page a.jspx,i want to navigate to b.jspx when a user double click the table in a.jspx, so i want to know how to process an action in clientListener?

  • Fetch Insert / Update Query From Table Trigger

    Hi everyone !, I have a situation, is there any way where I can get insert/update query by before-insert / after insert trigger when a user inserts/updates any row in the table. Plz....help me....champs..... Regards, Naushad