Samba errors & how to resolve them on Solaris 10?

Hi All,
I found the following errors in a number of /var/samba/logs Samba 3.0.37 on our Solaris servers even though they are working fine:
log.smbd
[2011/03/11 14:25:56, 0] auth/auth_util.c:(844)
create_builtin_administrators: Failed to create Administrators
[2011/03/11 14:28:44, 0] lib/util_sock.c:(1224)
getpeername failed. Error was Transport endpoint is not connected
[2011/03/11 14:28:44, 0] lib/util_sock.c:(261)
Failed to set socket option SO_KEEPALIVE (Error Invalid argument)
[2011/03/11 14:28:44, 0] lib/util_sock.c:(261)
Failed to set socket option TCP_NODELAY (Error Invalid argument)
[2011/03/11 14:28:44, 0] lib/util_sock.c:(1224)
getpeername failed. Error was Transport endpoint is not connected
[2011/03/11 14:28:44, 1] lib/util_sock.c:(1183)
Gethostbyaddr failed for 0.0.0.0
[2011/03/11 14:28:44, 0] lib/util_sock.c:(1224)
log.wb-testSERVER
[2011/05/10 10:31:21, 0] nsswitch/winbindd_passdb.c:(126)
Possible deadlock: Trying to lookup SID S-1-1-0 with passdb backend
log.einbindd-idmap
[2011/05/10 10:03:21, 0] nsswitch/idmap.c:(820)
ERROR: Initialization failed for alloc backend, deferred!
[2011/05/10 10:03:21, 1] nsswitch/idmap_tdb.c:(397)
idmap uid range missing or invalid
idmap will be unable to map foreign SIDs
[2011/05/10 12:07:45, 0] nsswitch/idmap.c:(820)
ERROR: Initialization failed for alloc backend, deferred!
Any ideas on what is causing these and suggestion on resolving them?
Also like to find out where to get the latest version of Samba that is packaged for Solaris 10 environment.
Thanks a million,
Crystal

Hi 799713,
The ideal solution would be to apply patches 119757-19 & 146363-01 to update Samba to 3.5.5 as advised by bobthesungeek76036. Unfortunately, this is not an option for us since one require a software contract with Oracle to get patches these days. As a result, below are some of the steps that I have attempted but still needing further advice to complete:
( i ) Neither do Windows XP / 2008 clients can connect after excluding port 445 with 139. Keeping port 445 would end up with “transport endpoint” errors but I will try to live with it for now.
( ii ) Downloaded Samba 3.4.2 (samba-3.4.2-sol10-sparc-local.gz) from Sunfreeware but having trouble installing it with “pkgadd –d /tmp/samba-3.4.2-sol10-sparc-local with the following output:
# showrev
Hostname: venus
Hostid: 85wt6521
Release: 5.10
Kernel architecture: sun4v
Application architecture: sparc
Hardware provider: Sun_Microsystems
Domain:
Kernel version: SunOS 5.10 Generic_141444-09
# ls -lt samba-3.4.2-sol10-sparc-local
-rwxr-xr-x   1 root  bin  269462528 Mar  3 17:09 samba-3.4.2-sol10-sparc-local
# pkgadd -d /tmp/samba-3.4.2-sol10-sparc-local
ld.so.1: pkgadd: fatal: libdlpi.so.1: open failed: No such file or directory
Killed
# /tmp/samba-3.4.2-sol10-sparc-local
/tmp/samba-3.4.2-sol10-sparc-local[2]: SMCsamba:  not found
/tmp/samba-3.4.2-sol10-sparc-local[4]: 07070100024738000081a40000000a0000000a000000
014aceecfa000000af000000200000000000000000000000000000001100000000SMCsamba/pkgin
foPKG=SMCsamba:  not found
/tmp/samba-3.4.2-sol10-sparc-local[9]: Samba:  not found
/tmp/samba-3.4.2-sol10-sparc-local[11]: Christensen:  not found
/tmp/samba-3.4.2-sol10-sparc-local[14]: 07070100024737000081a40000000a0000000a00000
0014aceecfa0003a34d000000200000000000000000000000000000001000000000SMCsamba/pkgm
ap::  not found
/tmp/samba-3.4.2-sol10-sparc-local[15]: 1:  not found
/tmp/samba-3.4.2-sol10-sparc-local[16]: 1:  not found
/tmp/samba-3.4.2-sol10-sparc-local[17]: 1:  not found
……..( iii ) Is it still necessary to install all these dependencies as stated on Sunfreeware even though samba-3.4.2-sol10-sparc-local.gz is already 257MB:
popt,
libiconv,
libintl,
readline,
ncurses,
kerberos,
openssl-1.0.0d,
openldap,
sasl2,
zlib,
and either the libgcc-3.4.6 or the gcc-3.4.6 packages.
( iv ) How to turn off existing version 3.0.37 before replacing it with 3.4.2 once it is successfully installed? ? The current version install samba files in /usr/sfw, /etc/sfw and /var/samba. Where will the new installation files go to?
( v ) Couldn’t find anything on samba from Blastwave. Do you have an URL that I could try?
It would be simpler to do a single bundled install as opposed to adding dependency libraries individually where possible.
Many thanks again,
Crystal

Similar Messages

  • Cisco iron port feature activation code error how to resolve that?

    cisco iron port feature activation code error  how to resolve that?

    I have fixed this problem successfully.
    The problem was with the referral attribute of the cfldap tag.
    After adding this (referral="yes") attribute to my code I am able to login into my website.
    <cfldap action="QUERY" server="#application.LDAPServer#" port="#application.LDAPPort#" start="#application.LDAPBase#" name="search" attributes="alias, dn, uid, technicalCareerLevel, locationorgunit, givenName, sn" filter="#filter#" scope="SUBTREE" maxRows="2" referral="yes">
    Any way thanks for your assistance!!!!!

  • Collection error - How to resolve?

    The following code gives an error. Can anyone help me how to resolve this..
    Create package v_retpack as
    type t_tab is table of emp%rowtype index by binary_integer;
    end;
    create procedure v_retcol(v_ret OUT v_retpack.t_tab) as
    i number:=1;
    begin
    loop
    select * into v_ret(i) from emp;
    exit when SQL%notfound;
    i := i+1;
    end loop;
    end;
    declare
    t v_retpack.t_tab;
    begin
    v_retcol(t);
    end;
    ERROR at line 1:
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "SCOTT.V_RETCOL", line 5
    ORA-06512: at line 4
    Message was edited by:
    vasantfreak

    This is wrong
    select * into v_ret(i) from emp;Change this to
    select * bulk collect into v_ret from emp;

  • Don't understand error messages and how to resolve them

    I am having error messages that are confusing. I thought any fonts I used that were not web safe or in Typekit would turn to images, and there would be no problem. What are these errors about? When I view the site in Safari everything looks the way it should.
    Thanks for your help.
    Here is the site:
    http://marystephens.businesscatalyst.com/index.html

    Hi
    As you guess i 'am a newbie!
    I don't understand Inner Classes, particulary
    members(methods & fields) that an Inner method is
    able to manipulate.
    So I know that the methods of an Inner class
    (respectively Outer Class) instance can access
    members (private or public) of an instance of the
    Outer Class (respectively Inner Class).
    I tried to answer to a quizz :
    http://java.sun.com/developer/onlineTraining/new2java/
    supplements/quizzes/January03.html
    In the following class definition, which variables
    are inaccessible within the method of the inner
    class?
    class Test1 {
    public static int a = 1;
    private static int b = 2;
    public int c = 3;
    private int d = 4;
    public static class Inner {
    int e = 5;
    public void aMethod(int f) {
    int g = 6;
    // What can't be accessed here?
    }A.      b, c, d
    B.      c, d
    C.      b, c, d, f
    D.      None of them
    In my opinion members (public or private) of the
    Outer Class can be accessed by methods of the Inner
    Class; e.g: a, b, c,d thus for me the answer is
    D.
    Obviously i'm wrong, but why?Inner class method can access all the private members of the class. But the inner class is static. So the non-static members cannot be accessed directly (i.e. c and d).
    ***Annie***

  • HP 3852A;ERROR 18: SYSTEM ERROR- how to resolve this error?

    from a vi, I enter a command to communicate with the unit hp3852A : "CONF MEAS TEMPK, 502"
    And the unit HP3852A show me an error: #18 internal processor is in an illegal state.
    Yesterday, I did not have this problem, and I never move the instrumentation for the lab I work.
    How can I resolve this error? Because that's the only command which doesn't work-> CONF MEAS ...(whenever the type of the measurement, DCV,OHM,TEMPK)
    here is a piece of code attached (look at the frame 0)
    thank you for response.
    Attachments:
    Écrire_Lecture_ds_vecteur_S1.vi ‏85 KB

    The first thing you should do is wire up the error in/error out connections of the gpib functions and check for any errors. At the same time, this will enable you to eliminate the sequence structure and all of those local variables. Since it is the instrument that is displaying the error, it would appear that you've incorrectly programmed it. It might be an illegal command or the write buffer is full. You might want to add a few error queries to the instrument to see when it happens or test your commands in the interactive enviroment of MAX. There is also a driver available for the instrument. Check your LabVIEW Instrument Driver CD or download it here.

  • Publication item error - how to drop them manually?

    I had to alter some tables on the repository and now when I open the publication item it gives an ORA-00904 error saying that some of the identifiers of the table are not valid, which is kind of expected.
    The problem is that now, using the mobile workbench, I can't drop these publication items! Is there another way to do this?!

    Your classpath should be something like this
    CLASSPATH=".:$ORACLE_HOME/mobile/classes/consolidator.jar:$ORACLE_HOME/mobile/server/bin/devmgr.jar:$ORACLE_HOME/mobile/server/bin/webtogo.jar:$ORACLE_HOME/jdbc/lib/classes12.zip:$CLASSPATH"
    Try this:
    import java.sql.Connection;
    import java.sql.Driver;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    import oracle.lite.sync.ConsolidatorException;
    import oracle.lite.sync.ConsolidatorManager;
    public class DropPublicationItem {
        private static Connection con = null;
        public static void main(String arg[]) throws ConsolidatorException,
                                                     SQLException {
            ConsolidatorManager cm = new ConsolidatorManager();
            String MOBILE_SCHEMA   = "mobileadmin";
            String MOBILE_PASSWORD = "passwordstring";
            String JDBC_URL        = "jdbc:oracle:thin:@localhost:1521:XE";
            String PUB_ITEM_NAME = arg[0];
            try {
                DriverManager.registerDriver((Driver)(Class.forName("oracle.jdbc.OracleDriver").newInstance()));
                try {
                    con = DriverManager.getConnection(JDBC_URL, MOBILE_SCHEMA, MOBILE_PASSWORD);
                } catch (SQLException sqle) {
                    sqle.printStackTrace();
            } catch (Exception e) {
                e.printStackTrace();
                return;
            cm.openConnection(con);
            try {
                cm.dropPublicationItem(PUB_ITEM_NAME);
            } catch (ConsolidatorException ce){
                System.out.println("Drop publication item failed: " + ce.getMessage());
    }

  • JNLPException: security error how to resolve

    "JNLPException[category: security error : Exception: null : LaunchDesc: null " it happened when run app.jnlp on the java web start.
    the app.jnlp is following:
    {code}<?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0+"
    codebase="http://192.168.0.7:8080/b2/c8/splash/">
    <information>
    <title>A User-Friendly App</title>
    <vendor>Mauro Inc.</vendor>
    <homepage href="home.html"/>
    <description>Install Your programs via the Web, quickly and effectively!</description>
    <description kind="short">An example of a simple Java-launched Installator</description>
    <security>
    <all-permissions/>
    </security>
    <offline-allowed/>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension
    name="Splash Window"
    href="splash.jnlp">
    </extension>
    <jar href="app.jar"/>
    <jar href="first.jar"/>
    <jar href="second.jar"/>
    <jar href="third.jar"/>
    </resources>
    <application-desc/>
    </jnlp>
    {code}
    the splash.jnlp is following:
    {code}
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp
         spec="1.0+"
         codebase="http://192.168.0.7:8080/b2/c8/splash//">
         <information>
              <title>Install Your Program Via the Web,quickly and effectively!</title>
              <vendor>Mauro Inc.</vendor>
              <homepage href="home.html"/>
              <description>Install Your Program Via the Web,quickly and effectively!</description>
              <description kind="short">A simple Java-launched Installator</description>
              <offline-allowed/>
         </information>
         <resource>
              <j2se version="1.5+"/>
              <jar href="splash.jar"/>
         </resource>
         <installer-desc main-class="com.fei.Splash"/>
    </jnlp>
    {code}
    The error message is that reference many host computer in one resource.But use other jar file,it do not have error.In this error,I use a singleton pattem in the jar file.
    thanks for your attention.
    Edited by: feiyangdefei on Jan 28, 2008 6:04 AM
    Edited by: feiyangdefei on Jan 28, 2008 6:06 AM
    Edited by: feiyangdefei on Jan 28, 2008 6:08 AM

    by the way,the App.java is following:
    import java.awt.BorderLayout;
    import java.awt.event.WindowAdapter;
    import javax.swing.JLabel;
    import javax.swing.JFrame;
    import javax.swing.ImageIcon;
    import java.awt.event.WindowEvent;
    public class App extends JFrame{
         public App(){
              ImageIcon img =
                   new ImageIcon(getClass().getClassLoader().getResource("images/back.jpg"));
              JLabel jlabel = new JLabel(img);
              jlabel.setLayout(new BorderLayout());
              jlabel.add(new JLabel("An Application..."));
              getContentPane().add(jlabel);
              addWindowListener(new WindowAdapter(){
                   public void windowClosing(WindowEvent e){
                        System.exit(0);
              pack();
              setVisible(true);
         public static void main(String[] args){
              App app = new App();
    }and the Splash.java is following:
    import java.awt.*;
    import javax.swing.*;
    import javax.jnlp.*;
    import java.net.URL;
    public class Splash extends JWindow implements Runnable{
      private ClassLoader loader;
      private static ExtensionInstallerService extensionInstaller;
      private JLabel ImageLabel;
      private JLabel MessageLabel  = new JLabel();
      private JLabel animLabel;
      private JLabel resourceLabel  = new JLabel();
      private static Splash splash;
      //data
      private String[] jarSequence= {"first.jar", "second.jar", "third.jar"};
      private String[] msgSequence= {
        "Now Even More Powerful!",
        "Incredibly Fast And Reliable!",
        "Ready To Go?"};
      private String codebase = "http://192.168.0.7:8080/jwstest/";
       * Private Constructor - Implements the Singleton Design Pattern
      private Splash() {
        super();
        loader = getClass().getClassLoader();
        //prepare UI
        //ImageLabel = new JLabel(new ImageIcon(loader.getResource("images/background.jpg")));
        ImageLabel = new JLabel(new ImageIcon("images/background.jpg"));
        //animLabel = new JLabel(new ImageIcon(loader.getResource("images/working.gif")));
        animLabel = new JLabel(new ImageIcon("images/background.jpg"));
        resourceLabel.setBorder(BorderFactory.createEmptyBorder(6,6,6,6));
        ImageLabel.setLayout(new BorderLayout());
        ImageLabel.setBorder(BorderFactory.createRaisedBevelBorder());
        ImageLabel.add(resourceLabel, BorderLayout.NORTH);
        ImageLabel.add(MessageLabel, BorderLayout.SOUTH);
        ImageLabel.add(animLabel, BorderLayout.CENTER);
        getContentPane().setLayout(new BorderLayout());
        getContentPane().add(ImageLabel, BorderLayout.CENTER);
        pack();
        //Centers the window
        Dimension size = getSize();
        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        if (size.height > screenSize.height) {
          size.height = screenSize.height;
        if (size.width > screenSize.width) {
          size.width = screenSize.width;
        setLocation((screenSize.width - size.width) / 2, (screenSize.height - size.height) / 2);
       * Implements the Singleton Design Pattern
      public static Splash getInstance(){
        if (splash == null)
          splash = new Splash();
        return splash;
       * Sets a message visible at the bottom
       * @param text Text to show
      public static void setMessage(String text) {
        if (splash != null)
          splash.MessageLabel.setText("    " + text);
       * Sets a message visible at the top showing the
       * currently downloading resource file
       * @param rsr Text to show
      public static void setLoadingResource(String rsr) {
        if (splash != null) {
          splash.resourceLabel.setText("Downloading: "+rsr);
       * Shows up the splash window or destroys it
       * @param show
      public static void showUp(boolean show) {
        if (splash == null)
          return;
        splash.setVisible(show);
        if (show == false) {
          splash.setCursor(Cursor.getDefaultCursor());
          splash = null;
        } else {
          splash.setCursor(new Cursor(Cursor.WAIT_CURSOR));
          try {
            // Lookup the Service
            extensionInstaller =
              (ExtensionInstallerService)ServiceManager.lookup("javax.jnlp.ExtensionInstallerService");
            // Hide JNLP Client's download window
            extensionInstaller.hideStatusWindow();
          } catch(UnavailableServiceException use) {
            System.out.println("Service not supported: "+use);
       * Takes charge of all the JAR delivery
      public void run() {
        DownloadService ds;
        int jarNumber = jarSequence.length;
        try {
          ds = (DownloadService)ServiceManager.lookup("javax.jnlp.DownloadService");
        } catch (UnavailableServiceException use) {
          ds = null;
          System.out.println("Service is not supported: "+use);
        }//once have a ds you can do a lot of things
        //begin downloading jars
        for (int i=0;i<jarNumber;i++){
          if (ds != null) {
            processJar(ds,i);
          //take a breath
          try {
            Thread.currentThread().sleep(3000);//IT'S ONLY COSMETICS!
    //        Thread.currentThread().yield();
          } catch (Exception e) {
            System.out.println("Synchronization Exception: "+e);
        }//-for
        showUp(false);//all the needed JARs have processed
        extensionInstaller.installSucceeded(true);//we're optimistic
       * A fancy method that finds out if a JAR is cached and removes it.
       * substitute it with your code.
      private void processJar(DownloadService ds, int i){
        try {
          // determine if a particular resource is cached
          URL url =
            new URL(codebase + jarSequence);
    boolean cached = ds.isResourceCached(url, null);
    // remove the resource from the cache, just for fun
    if (cached) {
    ds.removeResource(url, null);
    // reload the resource into the cache, yes!
    setMessage(msgSequence[i]);
    setLoadingResource(jarSequence[i]);
    DownloadServiceListener dsl = ds.getDefaultProgressWindow();
    ds.loadResource(url, null, dsl);
    } catch (Exception e) {
    System.out.println("Loading Resource: " + e);
    public static void main(String[] args) {
    Splash splash1 = Splash.getInstance();
    splash1.showUp(true);
    splash1.run();
    thank you again.
    Edited by: feiyangdefei on Jan 28, 2008 6:14 AM
    Edited by: feiyangdefei on Jan 28, 2008 6:15 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • IPhone problems, how to resolve them

    Hi,
    I had troubles with GPS, sometimes WiFi, sometimes iPhone becoming hot and hard to load the battery.
    _Here is what I did_, I hope that it can fix your issues but *for me it didn't work at 100%* :
    - Restore from backup
    - If you still have troubles : Restore as a new iPhone
    - If you still have gps troubles, try to switch to Edge then use gps and if it works again re-switch to 3G
    But these things are quite common on this forum, and it didn't work for me very well.
    So I started to post my questions here but answer were the same (restore).
    I finally called apple since my iPhone was bought 7 months ago and still under warranty, and I got an appointement today.
    So I came in the store, the guy was asking a few questions and tried to see if my connector were OK, if I didn't have any trouble with the charger (green dot, but in my case it doesn't matter even when charging with my computer it doesn't work), well he did his job he tried to find if I was using it badly.
    And finally about 15 minutes later after checking things and seeing that the only problem MAY have been a RAM bad memory handle, he said he will change it for me, but said it was an "exception" since the problem wasn't so obvious (the day I came it worked fine... 3 days ago the problems were still here, and I didn't do a thing, it's weird but well sometimes problems aren't always showing up the moment they should be).
    So, he gave me a refurbished one, that looks exactly as a brand new device (and smells the new plastic too, so it's basically a new device :D).
    Conclusion : I'm happy because they did give me another one (I thought they would get mine and repair it then send it back to me), I'm reloading it with my applications and HOPE that it will be good. I should make an update of this thread in a few days to say if all is going the way it should be now.
    *So, thank you Apple Care.*
    If your device is still under warranty and still malfunctions, _call them_, get an appointment, and _they will help you_.
    By the way, I asked if I could get the GS one even if I needed to pay an extra fee, they refused Well I had to ask, we never know The guy said "don't worry you're not the only one to ask me this, but no I cannot do that, you can only do that by asking this to your current provider if it provides the upgrade option (in my case rogers/fido)".
    See you soon!
    Regards,
    M.F.
    Message was edited by: darkness97430
    Message was edited by: darkness97430

    No biggerbyte, it was the iPhone 3G on the OS 3.0 and not the 2.
    I have updated my thread, the iPhone 3G is, after a few days of use, again loosing its senses (keeping "communicating" even with all disabled (3g off, push off, localization off, wifi off) = battery loss).
    I called my provider Fido and they said they couldn't do anything because it's not using call-time neither data, so they said to get it back to apple to see what they got.
    The test I've done is simple : I approach my device near a "bad" speaker that will do noise when the iPhone is communicating.
    It does it everytime, even with the iPhone in sleep (when we push the button at the top).
    Of course it doesn't do noise when the iPhone is really shutdown.
    So now I'm having again this problem of iPhone getting hot (because always communicating), I cannot use my iPhone.
    I will surely try it without any software installed to see if it's doing that, but I'm really getting tired of these bugs. And that's sad because I was really happy to have a new iPhone that seemed to work perfectly...

  • How to resolve the z table activation error?

    I have a Z table.
    Added a couple of fields and activated it. it was fine.
    then changed one of the fields as a key field and activated it.
    it took a long time even though there is no data and terminated.
    I removed the key indicator and tried activating it. it showed errors.
    Then I deleted it using SE14 and recreated with the same name. Now I am getting the following error:
             See log E4911620080227134551:ACT                                                                               
    TABL ZPRICECONDN was not activated                                                     
          Check table ZPRICECONDN (E49116/02/27/08/13:45)                                        
          Enhancement category for table missing                                                    
    /     Table ZZPRICECONDN: Key length > 120 (Restricted functionality)                         
          A table called ZPRICECONDN exists in the database                                      
    /     No active nametab exists for ZPRICECONDN                                               
          Termination due to inconsistencies                                                        
    /     Table ZPRICECONDN (Statements could not be generated)                                  
    /     Error number in DD_DECIDE (9)                                                             
    /     Check on table ZPRICECONDN resulted in errors                                          
    How to resolve this?
    Do I have to do any database manipulations?
    I looked at 306296 but DROP command is not available in ABAP?
    Pl advise.
    Thanks
    Ven

    Hi,
      Whenever you make some changes to the database table, you need to activate it through the
    database utility function (SE14).
    Enhancement category for table missing: 
      to resolve this: SE11>>Table name>> Extras>>Enhancement category...and choose the option 'can be enhanced'.
    / Table ZZPRICECONDN: Key length > 120 (Restricted functionality)
       Reduce your key fields length to <120.
    After doing those changes activate it through the database utility.
    I hope, it will work for you.
    Regards,
    Jallu

  • 10)example of errors while loading data and how do u resolve them?

    )example of errors while loading data and how do u resolve them?

    hai ram reddy this is ramprasad reddy....u can get this type of most commen errors....like below
    As the frequent failures and errors , there is no fixed reason for the load to be fail , if you want it for the interview perspective I would answer it in this way.
    a) Loads can be failed due to the invalid characters
    b) Can be because of the deadlock in the system
    c) Can be becuase of previuos load failure , if the load is dependant on other loads
    d) Can be because of erreneous records
    e) Can be because of RFC connections.....(sol: raise the ticket to BASIS team to provide the connection)
    f)can be coz of missing master data.
    g)can be coz of no data found in the source system.
    h)Time stamp error........(sol: activate the data source and replicate the data source and load)
    i)Short dump error.........(sol: delete the request and load once again)
    j)Data locking when loading in parallel.
    k)ODS activation failures.
    l)No SID found........(sol: should load masterdata before transaction data)

  • How to resolve the dump Syntax error in program /1BCWDY/824VCAJI0ED4WMLLJ7N

    I have created 4 components and I have linked them to a single web dynpro application component through an interface.
    This is working fine in development.
    When we moved all these objects to quality and when i run the application it is opening the default component. However when i try to call any other component it is giving the following dump.
    Syntax error in program /1BCWDY/824VCAJI0ED4WMLLJ7NV==CP.
    When we debugged we found that this dump is arising in the CREATE COMPONENT method.
    Please suggest how to resolve this issue.

    Hi,
    Using the method prepare_dynamic_navigation i am calling all the components.
    After this method i have written the following code for deleting the active and create the new component.
    Delete the active componet if any before bind the called component
      IF wa_cmp_usage-component_usage->has_active_component( ) IS NOT INITIAL.
        wa_cmp_usage-component_usage->delete_component( ).
      ENDIF.
    Bind the compont called to this main component
      wa_cmp_usage-component_usage->create_component( lv_target_comp ).     -
    > when i debug, inside this am getting dump.
    In ST22 the error is occuring in the following place.
      call method (l_gen_class_name)=>if_wdr_classloader~create_instance
        receiving
          component_instance = me->component_factory.
    I am actually 5 components. The default and the fifth components are only having tab and a text view. There are no other UI elements. These two components are working.
    The remaining components are having many UI elements and these components are giving the above said dumps.
    Edited by: Mohamed Aslam on May 13, 2010 12:11 PM

  • How to resolve multiple declaration error in libraries

    Hi All,
    I have one C Application, it links to two libraries. There is one variable with same name defined in two different libraries. These two libraries are third party libraries and i don't have access to their source code.
    Compiler gives multiple declaration of same variable error.
    Please let me know how to resolve this error.
    Thanks in Advance.
    Regards,
    Vasu

    Please, show your compilation line as well as error that you get.
    Are these static or shared libraries?
    Are we talking about Solaris here?
    regards,
    Fedor.

  • Hi! I have a MacBook and I am trying to delete files from Microsoft Word. Somehow I cannot simply throw them in the trash. Does anyone know how to resolve this issue?

    Hi! I have a MacBook and I am trying to delete files from Microsoft Word. Somehow I cannot simply throw them in the trash. Does anyone know how to resolve this issue?

    Why not? Are there error messages? Where are the files located? Why are you deleting MicroSoft Word files?

  • Updating iTunes 12.1 and get error message "The procedure entry point CMBlockBufferCopyDataBytes could not be located in the dynamic link library CoreMedia.dll - what went wrong and how to resolve this?

    Updating iTunes 12.1 and get error message "The procedure entry point CMBlockBufferCopyDataBytes could not be located in the dynamic link library CoreMedia.dll". What went wrong and how to resolve this?

    Entry point errors can often be fixed by deleting the offending dll, then repairing the component it is part of.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If the advice above doesn't resolve things you could try this alternate version:
    iTunes 12.1.0.71 for Windows (64-bit - for older video cards) - itunes64setup.exe (2015-01-28)
    which is a 64-bit installer for the 32-bit version of the core application, similar to previous 64-bit releases.
    Or roll back to the previous build:
    iTunes 12.0.1.26 for Windows (32-bit) - iTunesSetup.exe (2014-10-16)
    iTunes 12.0.1.26 for Windows (64-bit) - iTunes64Setup.exe (2014-10-16)
    tt2

  • Tried unsuccessfully to restore my MBP, running the Mac OSX Lion, to factory settings. I keep getting the "can't download additional components for the Mac OSX Lion" error when reinstalling the OSX Lion. Any tips on how to resolve this problem?

    Hello! Tried unsuccessfully to restore my MBP, running the Mac OSX Lion, to factory settings. I keep getting the "can't download additional components for the Mac OSX Lion" error when reinstalling the OSX Lion. Any tips on how to resolve this problem?

    Hi
    Given that your answer to 1. is 'pre-installed' and 3. is 'No', I think the only thing to do is to take it to an Apple store (ideally the one you bought it from) and have them reinstall it for you.
    The intended solution in cases like yours is that you should be able to reboot and install even a wiped disk by using Apple's servers over the internet (you do this by restarting with 'command-r' and choosing 'reinstall Lion'). However if this isn't working for you then you need to get the store to do it. Don't let them fob you off with 'go home and try again'. Have them do it in the shop (you're still covered by Applecare warranty so it should cost you nothing save the inconvenience of the trip and possibly leaving the machine there while they fix it).
    A reinstall should leave all your own personal data and programs in place.
    Note for future: when you get it fixed, first thing to do is buy a cheap external drive and start keeping a backup (either Time Machine or clone with Carbon Copy Cloner).
    Message was edited by: softwater

Maybe you are looking for

  • How can i do to_nymber on top of to_char?

    Hello For formatting a number column, I am doing the following in my query: select ... to_char(col1,'999,999,999,999,999.999').... This gives me the formatted output in my query. However, this returns a character. How can I do to_number on top of thi

  • I cannot update my ipod 3G (32 gb) NO ONE KNOWS HOW TO FIX THIS.

    "iTunes could not contact the iPod software update server because you are not connected to the Internet.   Make sure your Internet connection is active and try again" This has been the plight of new ipod. I bought an iPod 3G (32 gb) used. It hadnt be

  • SAP* locked!Unlocking from DB level says unknown table USR02

    Hi, The user SAP* is locked. I tried to unlock it at DB(MAXDB) by query: sql_execute update <db_schema>.USR02 set UFLAG=0 where BNAME='SAP*' and MANDT=u2019000u2019 It says: ERR -24988,ERR_SQL: SQL error -4004,Unknown table name:USR02 Anything can be

  • Error whilst trying to upload itunes 9

    Recently I have gotten a new Ipod (ipod classic, 160GB) and when I plugged it into my computer it said I need to update my itunes to itunes 9. When I tried to do this, at first it said it had downloaded and then when I tried to open it it would say E

  • Master Group

    Hi Guru’s What is Master Group and when we are using and what the use full of master group Many Tanks’ Mahesh Kumar [email protected]