Critical: LDAP: query DNS result DNS Hard Error looking up e

I am not having any luck when trying to connect to all 3 of our LDAP Servers...I get this error in the logs:
Critical: LDAP: query DNS result DNS Hard Error looking up MyServer.Mydomain.com (A): NXDomain
It is open through our Firewalls. I don't even see the Test Query reach our Firewalls...any suggestions what I am doing wrong?
We were using Surfcontrol and it worked fine... :?:

In Surfcontrol I put the IP without the DN and the query returns all the users.
In IronPort when I put the IP without the DN and do an Accept query using my email address in the Recipient Address I get the above error.

Similar Messages

  • IronPort DNS Hard Error Lookup (Emails Bouncing)

    Hi,
    One of our clients running Cisco IronPort ESA is having a challenge sending mails to some local domains (e.g. recipient.co.ke - sample non-existent domain) and keeps getting the error below:
    #< #5.0.0 smtp; 5.1.2 - Bad destination host 'DNS Hard Error looking up recipient.co.ke (MX): NXDomain' (delivery attempts: 0)> #SMTP#
    Mails to other domains such as gmail.com & yahoo.com are working just fine.
    Doing a dnsflush on the ESA temporarily solves the problem but it keeps recurring. Note that the client is able to receive mails from the same domains they can't send to.
    The ESA appliance is able to do nslookups to the same domains.
    Has anybody else experienced this challenge and how did you solve it?
    Regards,
    Emmon.

    Check whether you're using a local DNS server or already on root dns server.
    VIA GUI
    GUI > Network > DNS
    Click on the radio button to use internet root DNS servers.
    VIA CLI:
    C370.lab> dnsconfig
    Currently using the local DNS cache servers:
    1. Priority: 0 1.1.1.8
    Choose the operation you want to perform:
    - NEW - Add a new server.
    - EDIT - Edit a server.
    - DELETE - Remove a server.
    - SETUP - Configure general settings.
    []> delete
    Do you want to delete a local DNS cache server or an alternate domain server?
    1. Delete a local DNS cache server.
    2. Delete an alternate domain server.
    []> 1
    Currently using the local DNS cache servers:
    1. Priority: 0 1.1.1.8
    Enter the number of the server you wish to remove.
    []> 1
    Note: You have removed the last local nameserver entry. DNS will now use the
    Internet root servers.
    Currently using the Internet root DNS servers.
    No alternate authoritative servers configured.
    Choose the operation you want to perform:
    - NEW - Add a new server.
    - SETUP - Configure general settings.
    Then commit the changes if you decide to move to Root DNS.
    To check the domain's DNS records (or in your case MX records)
    Use the command line.
    CLI > nslookup xxx.co.jp mx
    It will show you results if any DNS records can be found.
    C370.lab> nslookup cisco.com mx
    MX=alln-mx-01.cisco.com PREF=10 TTL=1d
    MX=rcdn-mx-01.cisco.com PREF=20 TTL=1d
    MX=aer-mx-01.cisco.com PREF=30 TTL=1d

  • Using TCOde rscrm_bapi and a query result in a error

    Hi All,
    When using tcode RSCRM_BAPI the query execution results in a error Query Meta data is Incomplete
    Please suggest me the solution for this ASAP.
    Regards,
    Varma

    Hi Varma,
    is the query working fine?? Otherwise use transaction RSRT2 and "generate a new report"! This should fix problems with query.
    Regards,
    Adem

  • LDAP Direct Mode And DNS

    Hello.
    I was looking for this in the docs and I can�t found something.
    If I have a server with IMS 5.2 with LDAP Direct Mode and this is called host.domain.com and I have another machine with another mail system, called for example host2.domain.com, but I have in my DNS server a MX register for host2 with priority 5(high) and a MX register for host with priority 10(low), If I send a message using host.domain.com like my SMTP server to [email protected], IMS first ask to DNS server for MX and prorities and send it to host.domain.com or It looks in their system for the user and send it locally?
    I wanna have some users from @domain.com in one machine (another mail system) and another users from @domain.com in the other machine (iMS 5.2).
    There is no a user with accounts in two machines (for example user1 is in host and user2 is in host2, user1 never will be in host2).
    Thanks.

    When a message arrives at the MTA, an ldap query is made to see if:
    1. The domain is local.
    2. The user is local.
    If both are true, the message is delivered locally.
    If the domain is local, and the user is found in LDAP, but the user's "mailhost" is external, then the mail is forwarded to the system at "mailhost" for delivery.

  • Finding LDAP server names by DNS lookup.

    Hi,
    I'm very new with JNDI and DNS
    We are hardcoding the ldap server name in our configuration to connect to the Active directory, but the requirement is to know the ldap server name dynmaically by querying the DNS server.
    The input given to us are below.
    Dns domain : indbank.is.
    SRV RRecord : ldap.tcp.
    Query dns : ldap.tcp.indbank.is.
    The domain controller should be found by a DNS lookup for the domain, then a DNS for Domain controllers that advertise the service, then try to see if the domain controllers areanswering, and if so choose the one with the fastest answer time (to avoid choosing a domain controller over WAN).
    Kindly help me.I am beginner and some code sample and tip will be welcome. :)
    Thanks in advance.
    Hiubert

    Thanks a lot to All.
    My code is as follows...
    import javax.naming.*;
    import javax.naming.directory.*;
    import java.util.*;
    public class dns1
         public static void main(String[] args)     {
              try {
                   Hashtable env = new Hashtable();
                   env.put("java.naming.factory.initial","com.sun.jndi.dns.DnsContextFactory");
                   env.put("java.naming.provider.url", "dns://indbank.is");
                   DirContext ctx = new InitialDirContext(env);
                   System.out.println("Intial context created...");
                   Attributes attrs = ctx.getAttributes("_ldap._tcp.indbank.is",new String[] {"SRV"});
                   System.out.println("Attributes are been retrieved...");
                   for (NamingEnumeration ae = attrs.getAll();ae.hasMoreElements();)
                        Attribute attr = (Attribute)ae.next();
                        String attrId = attr.getID();
                        System.out.println("Attribute ID retrieved is" + attrId);
                        for (Enumeration vals = attr.getAll();vals.hasMoreElements(); System.out.println(attrId + ": " + vals.nextElement()));
                   ctx.close();
              catch(Exception e)
                   System.err.println("Problem querying DNS: " + e);
                   e.printStackTrace();
    The code runs fine and I get the output as follows
    0 100 389 ib500ad1.indbank.in
    0 100 389 ib500ad2.indbank.in
    I have following questions
    1) Do these servers which are returned are the domain controllers or the ldap servers.?(or both domaincontrollers and ldap server are same)
    2) how to extract the server name alone from this string.
    3) If these two server names are domain controllers then how can I query for a DNS for Domain controllers that advertise the service, then try to see if the domain controllers are answering, and if so choose the one with the fastest answer time (to avoid choosing a domain controller over WAN).
    Thanks in advance.
    -Hiubert

  • How to see the cached DNS result

    Dear All,
    Can anyone tell me how to see my DNS caching server cached info ? Where the info had been queried by some DNS clients.
    Thanks a lot !
    CK

    Depending on your bind version, but with recent version you can use rndc dumpdb
    to let bind dump its cache. If you want to log the queries and clients you can turn on logging but please be aware of the overhead and disk usages. Please consult Sun document 816-4556 and Bind9ARM document.

  • Error - DRG-51030: wildcard query expansion resulted in too many terms

    Hi All,
    My searches against a 100 million company names table on org names often result in the following error:
    DRG-51030: wildcard query expansion resulted in too many terms
    A sample query would be:
    select v.* --xref.external_ref_party_id,v.*
    from xxx_org_search_x_v vwhere 1 =1
    and state_province = 'PA'
    and country = 'US'
    and city = 'BRYN MAWR'
    and catsearch(org_name,'BRYN MAWR AUTO*','CITY=''BRYN MAWR''' ) > 0
    I understand that is caused by the presence of the word Auto to which we append a * . (If i remove the auto the search works fine).
    My question is - is there a way to limit the query expansion to only , say 100, results that get returned from the index?

    Thanks for the reply. This is how the preferences are set:
    exec ctx_ddl.create_preference('STEM_FUZZY_PREF', 'BASIC_WORDLIST');
    exec ctx_ddl.set_attribute('STEM_FUZZY_PREF','FUZZY_MATCH','AUTO');
    exec ctx_ddl.set_attribute('STEM_FUZZY_PREF','FUZZY_SCORE','60');
    exec ctx_ddl.set_attribute('STEM_FUZZY_PREF','FUZZY_NUMRESULTS','100');
    exec ctx_ddl.set_attribute('STEM_FUZZY_PREF','STEMMER','AUTO');
    exec ctx_ddl.set_attribute('STEM_FUZZY_PREF', 'wildcard_maxterms',15000) ;
    exec ctx_ddl.create_preference('LEXTER_PREF', 'BASIC_LEXER');
    exec ctx_ddl.set_attribute('LEXTER_PREF','index_stems', 'ENGLISH');
    exec ctx_ddl.set_attribute('LEXTER_PREF','skipjoins',',''."+-/&');
    exec ctx_ddl.create_preference('xxx_EXT_REF_SEARCH_CTX_PREF', 'BASIC_STORAGE');
    exec ctx_ddl.set_attribute('xxx_EXT_REF_SEARCH_CTX_PREF', 'I_TABLE_CLAUSE','tablespace ICV_TS_CTX_IDX');
    exec ctx_ddl.set_attribute('xxx_EXT_REF_SEARCH_CTX_PREF', 'K_TABLE_CLAUSE','tablespace ICV_TS_CTX_IDX');
    exec ctx_ddl.set_attribute('xxx_EXT_REF_SEARCH_CTX_PREF', 'N_TABLE_CLAUSE','tablespace ICV_TS_CTX_IDX');
    exec ctx_ddl.set_attribute('xxx_EXT_REF_SEARCH_CTX_PREF', 'I_INDEX_CLAUSE','tablespace ICV_TS_CTX_IDX Compress 2');
    exec ctx_ddl.set_attribute('xxx_EXT_REF_SEARCH_CTX_PREF', 'P_TABLE_CLAUSE','tablespace ICV_TS_CTX_IDX ');
    exec ctx_ddl.set_attribute('xxx_EXT_REF_SEARCH_CTX_PREF', 'I_ROWID_INDEX_CLAUSE','tablespace ICV_TS_CTX_IDX ');
    exec ctx_ddl.set_attribute('xxx_EXT_REF_SEARCH_CTX_PREF', 'R_TABLE_CLAUSE','tablespace ICV_TS_CTX_IDX LOB(DATA) STORE AS (CACHE) ');
    exec ctx_ddl.create_index_set('xxx_m_iset');
    exec ctx_ddl.add_index('xxx_m_iset','city, country');
    exec ctx_ddl.add_index('xxx_m_iset','postal_code, country');
    Users will always use city or postal code when searching for a name. When I run this query -
    SELECT dr$token
    FROM DR$XXX_EXT_REF_SEARCH_CTX_I1$I
    where dr$token like 'AUTO%'
    ORDER BY dr$token desc
    i get more than 1M rows.
    is there a way to include and search for the city name along with the org name?
    Thanks again..

  • [svn:bz-4.0.0_fixes] 20451: backporting bug fix BLZ-570/ BLZ-620 Double linked list with lot of objects result in BlazeDS Error deserializing error  : StackOverflowError  We put hard limit to the max object nest level to prevent StackOverFlowError .

    Revision: 20451
    Revision: 20451
    Author:   [email protected]
    Date:     2011-02-24 08:33:31 -0800 (Thu, 24 Feb 2011)
    Log Message:
    backporting bug fix BLZ-570/BLZ-620 Double linked list with lot of objects result in BlazeDS Error deserializing error : StackOverflowError  We put hard limit to the max object nest level to prevent StackOverFlowError. the default max object nest level is 1024 and it can be configured in the endpoint/serialziation section in service-config.xml. This needs documentation.  Checkintests pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-570
        http://bugs.adobe.com/jira/browse/BLZ-620
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/common/src/flex/messaging/errors.properties
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.j ava
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/SerializationContext.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf0Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/Amf3Input.java
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/io/amf/AmfIO.java

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

  • [svn:bz-3.x] 20443: back porting bug fix BLZ-570/ BLZ-620 Double linked list with lot of objects result in BlazeDS Error deserializing error  : StackOverflowError  We put hard limit to the max object nest level to prevent StackOverFlowError .

    Revision: 20443
    Revision: 20443
    Author:   [email protected]
    Date:     2011-02-23 21:19:22 -0800 (Wed, 23 Feb 2011)
    Log Message:
    back porting bug fix BLZ-570/BLZ-620 Double linked list with lot of objects result in BlazeDS Error deserializing error : StackOverflowError  We put hard limit to the max object nest level to prevent StackOverFlowError. the default max object nest level is 1024 and it can be configured in the endpoint/serialziation section in service-config.xml. This needs documentation.  Checkintests pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-570
        http://bugs.adobe.com/jira/browse/BLZ-620
    Modified Paths:
        blazeds/branches/3.x/modules/common/src/java/flex/messaging/errors.properties
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/endpoints/AbstractEndpoint.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/SerializationContext.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/amf/Amf0Input.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/amf/Amf3Input.java
        blazeds/branches/3.x/modules/core/src/java/flex/messaging/io/amf/AmfIO.java

  • Create Materialized View based on Results from LDAP Query

    Hi -- I'm trying to create a materialized view based on results from an LDAP query. Unfortunately, it looks like a materialized view can't be created based on a stored procedure, which is where the LDAP results are obtained (using nested loops).
    Does anyone have any idea how to do this without first kicking off a stored procedure that populates a temp table which would be used to create the materialized view? I'm trying to minimize the steps that the DBA's will need to go through when refreshing this new view.
    Thanks,
    ~Christine

    Can you give us more details about the stored procedure you're calling. It will help to know what parameters are involved and what data types they are.
    Off the top of my head though it looks like, at the very least, you would need a stored function that calls the stored procedure. I don't think there is any way to call stored procedures from CREATE ... commands. If you're going to create a stored function anyway ... well, you might as well just create a procedure that inserts values into a regular table instead of fussing with functions and materialized views. You'll probably want to schedule your new procedure to run periodically since it sounds like you'll need the values refreshed from time to time.

  • Cache an LDAP query result in a Map Object

    Is there a way to perform a single LDAP query and store it in some type of an indexed list Object in memory. Specifically I need to populate both LDAP manager and managerFullName for an LDAP user object based on an employeenumber query.
    I don't want to query LDAP for every user object. I would like to submit one search such as (objectclass=inetorgperson) and store the result in an indexed list in memolry using employeenumber as the key. This way I only need to query the indexed list object for each user entry.
    Is this possible?

    No this is not possible.
    The only way to do this is to use a java class you write yourself. But and a major but: if you do not stay in the same place in IDM (form or workflow) you will lose the content because the object will be garbage collected when you change.
    The other thing is: how much will you gain? The ldap server can probably return the result far quicker then you can iterate through the list to find the entry.
    WilfredS

  • Testing an ISA Server Rule, the recursive query to other DNS Servers test fails

    Hello,
    I am trying to configure the following infrastructure with ISA Server 2006 and two W2003 servers (called "Server1" and "Server2") . "Server1" is a domain controller, and in
    "Server2" is the ISA Server installed, which also has
    attached two network Ethernet cards, one called "Internal Ethernet Card", and the other one called
    "External Ethernet Card".
    The infrastructure would be:  "Internal Ethernet Card"---- ISA Server ----"External Ethernet Card"---"Router"----"Internet"
    "Internal Ethernet Card" manages the internal package traffic of the infrastructure, the network segment which belongs is isolated from what we could called the Outbound traffic, which is linked to a router. "Internal Ethernet Card" it`s
    a virtual network.
    "Internal Ethernet Card" feature configuration is the following:
    - IP address: 192.168.3.3
    - Subnet Mask: 255.255.255.0
    - DHCP Enabled: No
    - DNS Server: 192.168.3.1 (Must point to the DC "Server1" which has the DNS Service installed)
    - Default Gateway:  None  (because doesnt point to outside)
    - Primary WINS Server: 192.168.3.1  
    The "External Ethernet Card" provides, the outbound connection, and this card is connected to the physical router.
    It`s feature configuration is the following:
    - IP address: 192.168.1.50
    - Subnet Mask: 255.255.255.0
    - DHCP Enabled: No
    - Default Gateway: 192.168.1.1
    - DNS Servers: 192.168.3.1 (Must point to the DC "Server1" which has the DNS Service installed)
    After configuring the network cards, I create the following rule in the ISA Server to allow the traffic towards outside from the server and the clients which have joined to the domain:
    Action: Allow.  Protocol: DNS.  From:"Server2".  To : External.  Condition: All Users
    After applying the changes to update the configuration, I enter in the Dns Server of "Server1" and in the "Monitoring" tab, I run a "recursive query to other DNS Servers" but fails.
    Only works the "simple query against this DNS Server".
    I don`t know why fails, but I`m stucked on this issue, because in the "Server1" DNS Server, in the "domain forward IP address list", I have added two DNS addresses which work OK.
    I would appreciate some help to solve this issue.
    Thanks
    Regards 

    Hello Ms. Long, 
    Yes, you are right. In the Server1 is configured the DNS server, to use forwarders whose are set in the field "Selected domain`s forwarder IP address list", two DNS address numbers obtained from "Open DNS", which work well.
    There is no DNS Server linked to the External NIC.
    The Server1 belongs to a private network configured as "VMnet3", which it is set as follows:
    IP address: 192.168.3.1
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.3.3
    DNS Server: 192.168.3.1
    I have tried to test your suggested idea:
    > set d2
    > google.com
    Server:  srv-dcfs-01.dominio.local
    Address:  192.168.3.1
    SendRequest(), len 42
        HEADER:
            opcode = QUERY, id = 2, rcode = NOERROR
            header flags:  query, want recursion
            questions = 1,  answers = 0,  authority records = 0,  additional = 0
        QUESTIONS:
            google.com.dominio.local, type = A, class = IN
    Got answer (113 bytes):
        HEADER:
            opcode = QUERY, id = 2, rcode = NXDOMAIN
            header flags:  response, auth. answer, want recursion, recursion avail.
            questions = 1,  answers = 0,  authority records = 1,  additional = 0
        QUESTIONS:
            google.com.dominio.local, type = A, class = IN
        AUTHORITY RECORDS:
        ->  dominio.local
            type = SOA, class = IN, dlen = 46
            ttl = 3600 (1 hour)
            primary name server = srv-dcfs-01.dominio.local
            responsible mail addr = hostmaster
            serial  = 41
            refresh = 900 (15 mins)
            retry   = 600 (10 mins)
            expire  = 86400 (1 day)
            default TTL = 3600 (1 hour)
    SendRequest(), len 28
        HEADER:
            opcode = QUERY, id = 3, rcode = NOERROR
            header flags:  query, want recursion
            questions = 1,  answers = 0,  authority records = 0,  additional = 0
        QUESTIONS:
            google.com, type = A, class = IN
    DNS request timed out.
        timeout was 2 seconds.
    timeout (2 secs)
    SendRequest failed
    *** Request to srv-dcfs-01.dominio.local timed-out
    As you can see highlighted in bold, the problem remains in the "recursive query to other DNS Servers" check.
    Maybe is better to put the issue on the "Windows Server General Forum" , because the issue has not nothing in common with the ISA Server, dont you?
    Thanks
    Best regards

  • ES2 LDAP Query, LDAPService, Foundation.

    I have a problem with the LDAP Query activity in LiveCycle ES2. I have written a process in LiveCycle ES2 SP1 workbench which runs as expected but when I export it in an LCA to my clients LiveCycle server it behaves differently. The process appears to run the same but the LDAP queries do not return any data. When I run this process there are no errors in the server log or in the process recording just a failure to return any data.
    I have triple checked the LDAP configuration in the Adminui, Workbench LDAP component and LDAP query activity and found all to be configured correctly. The strange thing is I can fix it by dragging on a new activity and setting and it to an LDAP Query. I then configure it exactly the same as the original component and then it functions as expected, successfully returning data.
    Has anyone else seen this problem before and can anyone suggest a solution? I have a much larger application with many processes containing many LDAP Query components so replacing each of them after each import of the LCA is not possible. I have tried creating different LCA’s and importing them onto different LiveCycle servers but always with the same result.

    Is the problem seen only with this group or other groups also do not show group members

  • Main Query modification result Report builder crash [Solved]

    Hi,
    I want to modify main Query of report builder because (it shows two columns which are not generated by query and when I run report it raises error that columns not found) but when I modify the query it result in report builder crash, plz give me any solution, I had experience same issue a month ago and I created new query with all formula columns but this time I have too much CF and CP columns is there any way to drop it from one group to another.
    Thanks and Regards, Khawar.
    Details:
    OS windows XP/2000
    Report Builder 10.1.2.0.2
    ORACLE Server Release 10.1.0.4.2
    Oracle Procedure Builder 10.1.2.0.2
    Oracle ORACLE PL/SQL V10.1.0.4.2 - Production
    Oracle CORE     10.1.0.4.0     Production
    Oracle Tools Integration Services 10.1.2.0.2
    Oracle Tools Common Area 10.1.2.0.2
    Oracle Toolkit 2 for Windows 32-bit platforms 10.1.2.0.2
    Resource Object Store 10.1.2.0.2
    Oracle Help 10.1.2.0.2
    Oracle Sqlmgr 10.1.2.0.2
    Oracle Query Builder 10.1.2.0.2 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle ZRC 10.1.2.0.2
    Oracle XML Developers Kit 10.1.0.4.2 - Production
    Oracle Virtual Graphics System 10.1.2.0.2
    Oracle Image 10.1.2.0.2
    Oracle Multimedia Widget 10.1.2.0.2
    Oracle Tools GUI Utilities 10.1.2.0.2
    Message was edited by:
    S. Khawar

    Hi,
    I saved the report in JSP format and did the required change and it works great.
    Regards, Khawar.

  • Is it possible to change warning "& is marked for deletion" to a hard error

    As part of our periodic update of our bank directory in transaction BAUP, Bank Keys which are no longer valid are marked for deletion. We are not at the point where we are archiving records yet, so the actual deletion has not occurred in our system.
    When an HR user updates a person's bank information (transaction PA20 or PA30, InfoType 09), if they enter one of these bank keys, they are given a warning that the bank key is marked for deletion. However, this is not a hard stop, only a warning message. As a result, they are able to save the record with an invalid bank key. The details indicate that this is message class F4, message 230. However, it appears from the IMG that it may be message 210. I have tried working with each of them.
    I have attempted to change the message to a hard error in message control, but have not been able to do so.  I receive an error telling me that "Message 230 (or 210) is not allowed". I have tried several application areas, including FV, Electronic Banking Messages.
    Is there any way in configuration to change this to a hard error? If so, please supply details, including application area.
    Also, are there risks of disruption of standard business processes if we do change this to a hard error? I know that this same message is issued for other master data elements which are marked for deletion such as GL accounts or Customer records,
    Thank you.
    I have searched forums with terms "marked for deletion" and "warning" but have not found an answer. I have also searched various outside expert forums on this topic. Everything I have seen seems to assume that this message will be a warning only.
    Aoife B.
    Edited by: Aoife Bratton on Oct 16, 2008 4:16 PM
    Edited by: Aoife Bratton on Oct 16, 2008 4:16 PM

    If particular message is not allowed in OBA5, then it is not configurable message. Neverthless if you like to change this message, you need to configure this in OBMSG first

Maybe you are looking for

  • Reader 9.3 cannot see my printer....

    Installed Adobe Reader 9.3 on an HP Touchsmart desktop running Vista linked to an HP Photosmart multifunction printer. This set-up works fine for all other programs and apps. Trying to print a .pdf and it comes up with an error message saying that I

  • Images stored in database

    Can XML Publisher create a report that contains an image that is retrieved from the database in an intermedia type column, or must the image reside on the hard drive?

  • Print Preview Chines Word layout Run

    Hi All,   I did a smartform with displaying the chinese word, when i display the form in print preview all the wording is run and overlay. But when I print out from printer overall is ok without any layout problem . Any ideas why the layout is run wh

  • Importing mpgs takes longer than it should

    Importing mpgs takes longer than it should. I import 2 hr mpgs on a 6core 32gig ram machine & it takes too long. cs5.52

  • Any way to temporarily ignore smart guides while using the pen tool?

    I'm having a hate and love relationship with Smart Guides. When I want them they're bad; when I don't they're good. While trying to do some things with the pen tool, I am frequently faced with the smart guides snapping my tool around without my wanti