Named.log not rolling?

We've got our primary dns server running on a 10.5server machine, and I discovered this morning that the reason the disk space was disappearing is that the named.log has NEVER rolled -- the file starts with 2008!
I created a new (empty) named.log file, and renamed the old one, and then stopped and started dns.  The old one went to the trash, emptied, and now have 30GB of disk space back.
But that begs the question of why this wasn't happening automatically -- you can see in the Console app that other log files get "rolled" regularly.  What is the setting to get this added to the list of logfiles that roll?

Let's see if I can point you in the right direction. First read-
man newsyslog.conf
## I assuming that you have a standard mac setup then
cat /private/etc/newsyslog.d/files.conf
# logfilename     
[owner:group]
mode count size when  flags [/pid_file] [sig_num]
/var/log/kernel.log
640  5
   1000
J
/Library/Logs/named.log            
644  5
$D0   J
The log should be rotating at 12:00 AM.

Similar Messages

  • Inactive component cost not rolled up to top level item

    Hi
    Our scenario is as follows: we have a top level item with a BOM. And some components of the BOM  are having material status u2018inactiveu2019. Inactive means materials will not procured and sold, however we could have inventory which can be consumed in production of other materials. In other words inactive items are like old items. These inactive items already have costing value. And we donu2019t want to recost inactive items.
    Having described above scenario, the requirement here is when we run costing for top level item, system should take costing value of inactive items  and roll up into top level item costing which is NOT happening now. Client donu2019t want to recost inactive items. The reason for not recosting inactive items is the recosting could change cost of inactive items significantly.  We are using 4.7 version and standard costing.
    Would appreciate any ideas or suggestions in this regard.
    thanx
    Sunil

    Thanks Young for the reply. 
    We already set 'do not cost' indicator for inactive components. And these inactive components do have standard costs valid up 10 12/31/2999.  It seems bom explosion is excluding these materials. it is ok to exclude. However the existing standard cost of these inactive components did not roll up in to top level. when I checked the costing status log, it says material ABCDF123 in plant 3344 has material status 40: Inactive.
    I checked BOM as well and inactive component is flagged as 'relevant for costing'.
    We are using following valuation varaiant
        Strategy Sequence ->  1. Planned Price 1    2.Standard Cost
        Transfer Control - Complete Transfer
    thnx

  • Toplink 9.0.4.8 and JTS on OAS 10.1.2.0.0 and 10.1.2.0.2 not rolling back

    Re-Posting message with more information.
    Toplink 9.0.4.8 and JTS not rolling back transaction
    Hi
    Scenario:
    I have a session bean (EJB1) calling a session bean (EJB2).
    When an EJB1 is called, EJB1 persists data on to Table1 in database.
    And EJB1 makes multiple calls to EJB2 to create entries in three different tables. Trans-attribute is set as required on both EJBS.
    Problem:
    EJB1 gets a Runtime Exception while inserting the data into TABLE1 (ORA-12899: value too large for column), EJB1 transaction is rollback, but all other transactions related to EJB2 are getting committed. I assume that they should roll back too.
    Also, I did JAD on external transaction controller and listener and noticed that there is a transaction associated to each call. Meaning EJB1 had Transaction T1 and EJB2 had T2, T3, and T4 for the subsequent calls. When EJB1 is getting runtime exception in the method beforeCompletion(), the it calls rollbackGlobalTransaction() which is calling T1.setRollbackonly(). But not on on T2, T3, and T4 rollback
    Am I missing anything?
    Please help me
    Here are my configuration details:
    The datasource configuration:
    <data-source name="myTxDataSource"
    class="com.evermind.sql.OrionCMTDataSource"
    location="jdbc/myTxDataSourceCoreDS"
    xa-location="jdbc/xa/myTxDataSourceXADS"
    ejb-location="jdbc/myTxDataSourceDS"
    pooled-location="jdbc/myTxDataSourcePooledDS"
    connection-driver="oracle.jdbc.driver.OracleDriver"
    username="duser"
    password="d123"
    url="jdbc:oracle:thin:@localhost:1521:ORCL"
    inactivity-timeout="30"
    />
    Sessions.xml
    <login>
    <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
    <connection-url>jdbc:oracle:thin:@localhost:1521:orcl</connection-url>
    <datasource>jdbc/DimpleTxDataSourceCoreDS</datasource>
    <user-name>duser</user-name>
    <encryption-class-name>oracle.toplink.internal.security.JCEEncryptor</encryption-class-name>
    <encrypted-password>22F7AFE6F6B9672435537CE1189E123DD62D1A19DF561D1E</encrypted-password>
    <uses-native-sequencing>true</uses-native-sequencing>
    <uses-external-connection-pool>true</uses-external-connection-pool>
    <uses-external-transaction-controller>true</uses-external-transaction-controller>
    </login>
    <external-transaction-controller-class>oracle.toplink.jts.oracle9i.Oracle9iJTSExternalTransactionController</external-transaction-controller-class>
    Toplink Helper class that is used by both EJB's
    This one uses SessionBroker. here is how it is initialized:
    SessionManager manager = SessionManager.getManager();
    sessionBroker = (SessionBroker) manager.getSession(xmlLoader,
    sessionBrokerName, this.getClass().getClassLoader());
    Oracle9iJTSExternalTransactionController extController = new Oracle9iJTSExternalTransactionController();
    sessionBroker.setExternalTransactionController(extController);
    It has common following commong methods:
    public UnitOfWork getUnitOfWork() {
    UnitOfWork uow = sessionBroker.getActiveUnitOfWork();
    return uow;
    public Object create(Object o)
    UnitOfWork uow = getUnitOfWork();
    uow.registerNewObject(o);
    // added so that the assigned sequence number will be available before the commit happens
    uow.assignSequenceNumber(o);
    return o;
    }

    A couple of this appear different in your sessions.xml. To do what you want you need to configure TopLink to:
    1. Use an external XT controller - requires flag to be set and controller provided
    2. Use the OC4J data source - requires flag to be set and data source name provided
    I notice that your sessions.xml has both a data source name as well as a direct connection URL.
    Here is a sample that shows the proper settings for the external TX and data source usage:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <!DOCTYPE toplink-configuration PUBLIC "-//Oracle Corp.//DTD TopLink Sessions 9.0.4//EN" "sessions_9_0_4.dtd">
    <toplink-configuration>
       <session>
          <name>default</name>
          <project-xml>META-INF/tlMap1.xml</project-xml>
          <session-type>
             <server-session/>
          </session-type>
          <login>
             <datasource>jdbc/DimpleTxDataSourceCoreDS</datasource>
             <platform-class>oracle.toplink.platform.database.oracle.Oracle10Platform</platform-class>
             <uses-external-connection-pool>true</uses-external-connection-pool>
             <uses-external-transaction-controller>true</uses-external-transaction-controller>
          </login>
          <external-transaction-controller-class>oracle.toplink.jts.oracle9i.Oracle9iJTSExternalTransactionController</external-transaction-controller-class>
          <enable-logging>true</enable-logging>
          <logging-options>
             <print-thread>false</print-thread>
             <print-date>false</print-date>
          </logging-options>
       </session>
    </toplink-configuration>Doug

  • DNS Named will not start

    Here is my named log file error.
    17-Jan-2013 14:43:32.678 general: main: notice: starting BIND 9.3.2 -u named
    17-Jan-2013 14:43:32.694 general: dns/db: critical: Failed to load RRs of a zone with error 34826
    17-Jan-2013 14:43:32.694 general: dns/hints: warning: Loading Root data from directory Failed
    17-Jan-2013 14:43:32.695 general: server: info: loading configuration from '/etc/opt/novell/named/named.conf'
    17-Jan-2013 14:43:32.695 config: isccfg/parser: error: none:0: open: /etc/opt/novell/named/named.conf: file not found
    17-Jan-2013 14:43:32.698 general: server: critical: loading configuration: file not found
    17-Jan-2013 14:43:32.698 general: server: critical: exiting (due to fatal error)
    First was having problem CASA credentials but added them. Made sure the other things were running novell-xregd, they were. I found few older posts with the same error talking about the hosts file, checked it, I don't see anything wrong with it...as far as I can tell. Anyone have any suggestions that I could try. Thanks

    Originally Posted by admin_pcs
    Did all that, ran through all the steps successfully and it still doesn't create that named.conf file. Any other thoughts? Still have the same error message when I try to run it.
    You've also tried starting the novell-named service after reconfiguring? Essentially, the named.conf is generated and maintained bij the service... it's not a static config file in that sense.
    If the hosts file is as it should be (never hurts to triple check), I'd try removing the DNS pattern (again using the OES Install & Configure), finish that...
    Then, after the packages have been removed successfully, restart the OES Install & Configure reinstall the DNS pattern.
    I might have missed it in the thread, but which version of OES is this (version + service pack level), and have you checked to make sure the online update repositories are there and functional? (for OES2 post the output of ' rug sl ' , ' rug ca ' & check if ' rug ref ' refreshes the repos without errors - for OES11 post the output of ' zypper sl ' , ' zypper ca ' , and check if ' zypper ref ' refreshes the repos without errors).
    Also make sure the server is patched up correctly, to rule out you are not having issues here due to mismatching package versions.
    -Willem

  • Codec error, need footage/log notes from project.

    Aright so I have CS6 and have updated my Premiere to 6.0.3. I am getting the "sequence has missing codecs" error that is plaguing CS6 users (I've been on a lot of sites/forums going over all the fixes). I opened the Adobe Help program and updated everything possible. I've uninstalled and re-installed and done the system clean as suggested on the Adobe help page multiple times. I've tried making new projects and then tried re-opening mine (apparently this worked for some people). I even made a copy of the project and tried to alter the lines of code for sequence codecs from I-Frame MPEG to AVI. I've re-booted my system after every attempt. I still cannot open the project.
    I can however make a new project and import ALL of the footage. This seems strange to me but hey it works. Here is my problem. My producer (the project is a TV show pilot) left voluminous footage/log notes/color coded all of the footage for me in the original project (marking good and bad takes, separating interviews from b-roll, etc.) And I would very much like to be able to access all of those notes, she did this on her machine and I am now going to edit it on my station at home. Is there anyway I can get the footage in my new project to conform to all of those notes?
    I'm close to the end of my rope here and time is running out, I'm on a pretty tight deadline and am also working another full time editing job during the day. Any help on either fixing Premiere so that I can open the original project or moving the footage notes from one project to another would be VERY APPRECIATED. Thank you for your time and help.

    1st, What are you editing, and does your project match your video?
    Read Bill Hunt on a file type as WRAPPER http://forums.adobe.com/thread/440037
    What is a CODEC... a Primer http://forums.adobe.com/thread/546811
    What CODEC is INSIDE that file? http://forums.adobe.com/thread/440037
    Report back with the codec details of your file, use the programs below... a screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30
    For PC http://mediainfo.sourceforge.net/en or http://www.headbands.com/gspot/
    For Mac http://mediainspector.massanti.com/

  • Media Clips and log notes disappearing.

    Set my project up; created bins and all organised; start making a sequence and editing away. But after a while I go back to the bins and all the media clips that are not associated with media clips on the time have disappeared! So the only media remaining are to do with clips associated with clips on the time line.
    Keeps on happening.
    Thanks William

    Thanks SO much for the responses they have been extrememly helpful.
    What I'm trying to accomplish is...
    I have all my home videos transferred onto sequentially numbered one hour mini-dv tapes. These tapes are the media I will be drawing from for almost all video projects I will be creating.. so rather than import from tapes for each project, I want to import all my video as quicktime media files onto my external hardrives and use these same media files for all projects. I want to set up a logically named and structured system for these all inclusive media files and have them logged for content in such a way that I can find any clip I need by searching (either in FCP or in spotlight).. I want all media files to contain the time code that corresponds to the original tapes so that recapture from the tapes is possible if it should become necessary.
    My thoughts so far are that I would like each media file to be representative of one scene and labeled yeardatetape# (example 19970204_36B for second scene taking place on feb 4 1997 captured from tape 36), although I haven't ruled out having longer media files that cover more dates or possibly an entire one hour tape.
    What I've found so far is that I'm unable to capture an entire tape without it stopping (due to slight glitches in tape and camera issues). What has worked best so far by trial and error with my equipment is to log a clip for each scene on the tape.. making sure to leave about 4s of intro time at scene start if tape is glitchy and then batch capture all the logged clips. So far I'm entering information about the scenes content in the log notes but I dont know if thats the best place.
    I have several questions regarding media management that come up as I try to figure out my system for logging and capturing. Since this is a big undertaking (about 70 hours of video to capture and log) I'd like to come up with the most logical way to accomplish my goals and only do this one time!
    Thanks again for the help!

  • Project professional 2010: Physical % Complete field does not roll-up to the summary tasks

    Hi,
    I have a project plan which I need to set the physical % complete fields of it in order to use it for earned value over time report. I have assigned costed resources to come of the tasks, set all project task's earned value method to physical % complete,
    and finally set a baseline. However, the physical % complete still does not get calculated for the summary tasks! It is always zero! 
    I have created another project with only 3 tasks and 3 resources, did the same as above, and was able to get calculated values for the physical % complete.
    I followed the same procedure in both projects. In one I was able to get the physical % complete value of the summary tasks while it was always zero in the other! What may be the problem? 
    Regards,
    George 

    Hi Julie,
    This is what I am seeing as necessary to make Physical % complete roll up to the summary level task.
    BEFORE tasks are entered, set the "Default Task Earned Value method" to Physical % complete. File > Options, Advanced.  This will set both the summary and detail tasks to that method.
    Add tasks
    Add resources with costs.
    Assign resources to tasks.
    Baseline the file
    Take a look at the Tracking table and enter progress in the Physical % complete field for subtasks. The value should roll up.
    Sadly I don't know of anyway to force the change after the tasks have been added.  You can certainly add the Earned Value Method field to a task view to confirm all is set - but I have never been able to switch mid-flight and get it to work correctly.
    I did, however, just try an experiment.  I created a file that did not work correctly - Physical % complete was not rolling up.  I inserted it into a blank project that had the option set correctly without linking.  After a bit of tweaking
    (outdenting all tasks to be able to delete the "extra summary task", saving a baseline), it now appears to be working correctly.
    I hope this helps.

  • S_ALR_87013532 report -plan cost not rolling upto the WBS/Project level

    Dear All,
    Plan cost from production orders is not rolling up to the WBS/Project level in S_ALR_87013532 ( Plan/Actual Variance report).
    Where as plan cost from network is properly rolling up to the WBS/Project level in the above report. 
    Please suggest what could be the reason for this issue. Is any configuration needs to be done for this.
    Thanks & Regards,
    Vishal

    Dear sir,
    Thanks for the reply & sorry for late response from my side.
    OPSV settings are already maintained in our system.
    Some how i realized  later that cost are actaully getting rolled to the WBS level, but we have observed one more discrepancy.
    Example -
    Production order "X" value - 100 (  as seen through co03)
    Production order "X"value- 40 ( as seen through report s_alr_87013532).
    We found that  in report  s_alr_87013532 , although my total  producton order value of 100 is represented at the WBS /Project level, but at the production order level , it is showing value of 40. 
    On further analysis we found that for production order X
    Materail cost- 60
    Labour cost-40
    The material cost of 60  is not getting fetched against production order "X" in report " S_ALR_87013532".
    There are very few cases , where such discrepancy is seen.
    Kindly suggest.
    Regards,
    Vishal

  • Background Job - Log Not found (in main memory)

    Gents,
    I am triggering a background through an RFC using JOB_OPEN,JOB_SUBMIT & JOB_CLOSE
    the program associated with the Job is put in to execution immly I don't have any problem
    but some Jobs are in Cancelled Status  coz the program was terminated due to the Error Message
    Log not found ( in main memory ) Message Class - BL Message ID - 207 all the cancelled jobs are
    having the same message.
    It's pretty sure that this message is not issued by my background program.How to get rid of this
    is there any SAP Notes.
    Best Regards-Sreeni Anbarasan

    Check out if there has been any update error in VA02 using transaction SM13.
    Lokesh

  • OBIEE 11g : query log not found

    Hi,
    I am not able to see the query log in 11g answers manage session throwing error query log not found.
    I am using obiee 11g. 11g admin client is installed in local machine and I upload the rpd through enterprise manager. But I can not able to open the rpd in online mode that's why cannot change the query log level=2 (as in obiee 10g) for seeing the query log in Answers. Usually after making changes in 11g rpd, I upload that in server via enterprise manager console.
    Can anyone please tell me what should be correct option to see the query log and how I can open the rpd in online mode and how I can set the query log level in obiee 11g????
    Please help.
    Thanks
    Titas

    Hi,
    Its known bug and it can be done by below methods,
    Method1:
    If you enabled loglevel for each users wise it may be override with below place also can you confirm both places.
    enabled Tools-->Options-->Repository-->
    System log level by default will be 0 just try to increase to 2 or 3 and save it.
    Method1:
    by each report wise enabling loglevel
    try putting the below syntax in prefix section of advanced tab.
    SET VARIABLE LOGLEVEL=2,DISABLE_CACHE_HIT=1;
    It should generate the log with database sql as well.
    Method 3:
    Create Session variable(LOGLEVEL) with initblock
    in your init block --> datasource place put it like below query
    select 3 from IW_POSITION
    Note:just point any existing physical table from u r RPD.
    Then try to save it and test it.
    Refer screen
    http://bidevata.wordpress.com/2012/03/03/no-log-found-error-in-obiee-11g/
    Thanks
    Deva
    Edited by: Devarasu on Oct 11, 2012 11:44 PM

  • Statement in Transaction Does Not Roll Back

    I have a group of MySQL statements in a method of a Java application.
    I include an SQL error in the last statement to test the rollback of the transaction.
    All the statements roll back, EXCEPT for the one detailed below.
    The MySQL table:
         CREATE TABLE Counter (
              number INT( 4 ) NOT NULL DEFAULT 0,
              account_id VARCHAR( 12 ) NOT NULL PRIMARY KEY
         ) ENGINE = InnoDB;I have run the staement as a PreparedStatement and a Statement:
    PreparedStatement:
         String updateCounterStr =
              " UPDATE Counter " +
                   " SET number = number + 1 " +
                   " WHERE account_id = ? "
         updateCounter = con.prepareStatement ( updateCounterStr );
              updateCounter.setString( 1, accountID );
              int uc = updateCounter.executeUpdate();     Statement:               
         Statement updateCounterStatement = con.createStatement();
              int updatecounter = updateCounterStatement.executeUpdate(
                   "UPDATE Counter SET number = number + 1 " +
                   "WHERE account_id = \'" + accountID + "\'"
              con.setAutoCommit( true );     //     ------------------------------------ Transaction ENDS
              updateCounterStatement.close();
    //               updateCounter.close();
              ... several more
              con.close();
         } catch(SQLException ex) {
              System.err.println("SQLException: " + ex.getMessage());
              if (con != null) {
                   try {
                        System.err.print("Transaction is being ");
                        System.err.println("rolled back");
                        con.rollback();     //     < ------------------------------------ con.rollback() HERE
                   } catch(SQLException excep) {
                        System.err.print("SQLException: ");
                        System.err.println(excep.getMessage());
    }     //     ---------------------------------------- END the methodIn both cases Counter is incremented, but does NOT roll back.
    The other statements in the transaction do roll back,
    I am using:
    mysql Ver 14.12 Distrib 5.0.18, for apple-darwin8.2.0 (powerpc) using readline 5.0
    on Mac OS X 10.4.x
    I would greatly appreciate a solution to this problem.
    Many thanks in advance

    I think autocommit is true by default. Also, it looks like your'e setting it to true, and then executing more SQL.
    Explicitly set it to false, and DON'T set it back to trueif there's any chance you're going to want to rollback after that.

  • Toplink 9.0.4.8 and JTS on OAS 10.1.2.0.0 and 10.1.2.0.2 not rolling back t

    Toplink 9.0.4.8 and JTS not rolling back transaction
    Hi
    Scenario:
    I have a session bean (EJB1) calling a session bean (EJB2).
    When an EJB1 is called, EJB1 persists data on to Table1 in database.
    And EJB1 makes multiple calls to EJB2 to create entries in three different tables. Trans-attribute is set as required on both EJBS.
    Problem:
    EJB1 gets a Runtime Exception while inserting the data into TABLE1 (ORA-12899: value too large for column), EJB1 transaction is rollback, but all other transactions related to EJB2 are getting committed. I assume that they should roll back too.
    Also, I did JAD on external transaction controller and listener and noticed that there is a transaction associated to each call. Meaning EJB1 had Transaction T1 and EJB2 had T2, T3, and T4 for the subsequent calls. When EJB1 is getting runtime exception in the method beforeCompletion(), the it calls rollbackGlobalTransaction() which is calling T1.setRollbackonly(). But not on on T2, T3, and T4 rollback
    Am I missing anything?
    Please help me
    Here are my configuration details:
    The datasource configuration:
    <data-source name="myTxDataSource"
    class="com.evermind.sql.OrionCMTDataSource"
    location="jdbc/myTxDataSourceCoreDS"
    xa-location="jdbc/xa/myTxDataSourceXADS"
    ejb-location="jdbc/myTxDataSourceDS"
    pooled-location="jdbc/myTxDataSourcePooledDS"
    connection-driver="oracle.jdbc.driver.OracleDriver"
    username="duser"
    password="d123"
    url="jdbc:oracle:thin:@localhost:1521:ORCL"
    inactivity-timeout="30"
    />
    Sessions.xml
    <login>
    <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
    <connection-url>jdbc:oracle:thin:@localhost:1521:orcl</connection-url>
    <datasource>jdbc/DimpleTxDataSourceCoreDS</datasource>
    <user-name>duser</user-name>
    <encryption-class-name>oracle.toplink.internal.security.JCEEncryptor</encryption-class-name>
    <encrypted-password>22F7AFE6F6B9672435537CE1189E123DD62D1A19DF561D1E</encrypted-password>
    <uses-native-sequencing>true</uses-native-sequencing>
    <uses-external-connection-pool>true</uses-external-connection-pool>
    <uses-external-transaction-controller>true</uses-external-transaction-controller>
    </login>
    <external-transaction-controller-class>oracle.toplink.jts.oracle9i.Oracle9iJTSExternalTransactionController</external-transaction-controller-class>
    Toplink Helper class that is used by both EJB's
    This one uses SessionBroker. here is how it is initialized:
    SessionManager manager = SessionManager.getManager();
    sessionBroker = (SessionBroker) manager.getSession(xmlLoader,
    sessionBrokerName, this.getClass().getClassLoader());
    Oracle9iJTSExternalTransactionController extController = new Oracle9iJTSExternalTransactionController();
    sessionBroker.setExternalTransactionController(extController);
    It has common following commong methods:
    public UnitOfWork getUnitOfWork() {
    UnitOfWork uow = sessionBroker.getActiveUnitOfWork();
    return uow;
    public Object create(Object o)
    UnitOfWork uow = getUnitOfWork();
    uow.registerNewObject(o);
    // added so that the assigned sequence number will be available before the commit happens
    uow.assignSequenceNumber(o);
    return o;
    }

    Doug, Andrei and others
    I found the problem. I have a Delegate that provides access to all EJBS. This delegate is used by both the webtier and middle tier.It is written in a generic fashion so that the web server and middle tier does not have to be co-located in one container. getInitialContext() which is implemented as follows:
    private static Context getInitialContext() throws NamingException
    // Get InitialContext for Embedded OC4J.
    // The embedded server must be running for lookups to succeed.
    // actual code reads from the external parameters
    String contextFactory = "com.evermind.server.rmi.RMIInitialContextFactory";
    String principal = "admin";
    String passwd = "admin123";
    String providerURL = "ormi://localhost:3201/shc";
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, contextFactory);
    env.put(Context.SECURITY_PRINCIPAL, principal);
    env.put(Context.SECURITY_CREDENTIALS, passwd);
    env.put(Context.PROVIDER_URL, providerURL);
    env.put("dedicated.rmicontext","true");
    return new InitialContext(env);
    When the EJB1 tries to look up for EJB2, container thinks that the call is from outside the container and it is starting a new transaction.
    When I changed the EJB1 to look up EJB2 to get the context as shown below,every thing seems to rolling back.
    private static Context getInitialContext() throws NamingException
    return new InitialContext();
    Thanks again for pointing me in the right direction.
    I will post the same message in other threads.
    Raju

  • Error in integration Log not found (in main memory)

    Hello Experts,
    We are facing an error at the moment  when we send a contract from CLM to the ERP, we run the transaction BBP_ES_ANALYZE and the error that we got is Log not found (in main memory).
    We already reviewed all master data integration, any other suggestions?
    Also, this integration was working fine at the beginning, but Basis team applied an update to our ERP system and after this it generates this error.
    thanks in advance
    Kind Regards

    Hi,
    Can you check the settings as per blog Debugging MA publish to ERP?
    Unless the activate log is set, BBP_ES_ANALYSE will not be able to provide much information.
    Ashwin

  • Named Anchors not working in Safari

    Has anyone found a work around for named anchors not working in Safari?
    For example:
    <http://www.macbenimble.com/links.html#browsers>
    Would be greatly appreciated if anyone has any info re this?
    hollie

    That particular page fails the w3c validator: "This page is not Valid XHTML 1.0 Transitional!" Safari is one of the least forgiving of browsers for code that is not correctly written to standards. You might want to put your pages through the validator and look at the list of generated errors.
    Named anchors do work in Safari, for example is this web site faq.

  • Named.log entry - problem?

    Hi!
    I have running a DNS-Server on my MacOSX Server 10.5.7.
    Every day I find an entry in my named.log like this:
    +11-Jun-2009 04:01:18.352 checkhints: view com.apple.ServerAdmin.DNS.public: L.ROOT-SERVERS.NET/A (199.7.83.42) missing from hints+
    +11-Jun-2009 04:01:18.352 checkhints: view com.apple.ServerAdmin.DNS.public: L.ROOT-SERVERS.NET/A (198.32.64.12) extra record in hints+
    The DNS-Server seems running fine, means I didn't notice any problems.
    Can I ignore this error-msg.?
    Or what can I do to solve the problem?
    Thank you for your assistance,
    Peter.

    The named.ca file needs to be updated in you /var/named/ folder.
    To read more - go here and get the file at the end of the article.
    http://arstechnica.com/old/content/2008/02/icann-flips-switch-on-ipv6-dns-root-s ervers.ars
    Mine is now resolved. Thanks

Maybe you are looking for

  • Youtube share link will not open in safari

    Anyone ever had this problem?

  • Compressor White Screen

    My friend uses fraps to record his video but he want me to edit it. In order to do this we needed to change the .avi from fraps to .mov so i could edit with imovie. to begin with we started with a free program but the quality was so bad that it was a

  • Water damage from 6 months ago

    I have a macbook pro that was water damaged over 6 months ago and it now boots but trackpad click doesnt work, number keys, "z" key and computer shuts off after 20 minutes. any suggestions on what to do? will apple be able to repair this?

  • How to connect Exchange 2007 mailboxes to existing users

    Hi all We use IDM/Waveset 8.1.1 and the Active Directory adapter for Exchange 2007 mailbox provisioning. We use a role for the AD account and a role for the Exchange mailbox. When we add the Exchange role for a user, the mailbox is created (the IDM g

  • IMovie 08 - Speed up/ slow down clips

    anybody know how to speed up / slow down clips in iMovie 08? thanks