Activity checkin  Problem

hi

Hi
Please refer to  [NWDI Home Troubleshooting |http://wiki.sdn.sap.com/wiki/display/TechTSG/%28NWDI%29Home]
Regards
Arun Jaiswal

Similar Messages

  • Activation lock problem!

    Hello,
    I just got a new iPhone 4s from a friend and I can't get into it because of an activation lock problem. I've already tried to restore it in recovery mode but than I still have to log in to his account. Now i've logged in to his iCloud account and deleted the iPhone using the following instructions:
    Sign in to their iCloud account at www.icloud.com/find.
    Click All Devices to open a list of devices linked to their account, then select the device to be removed. It should show a gray dot or the word “Offline” next to the device name.
    Click "Remove from Account" to remove the device from their account.
    But it seems that I have should done the following instructions, because the iPhone wasn't completely erased yet:
    Sign in to their iCloud account at www.icloud.com/find.
    Click All Devices to open a list of devices linked to their account, then select the device to be removed.
    Click the Erase button to erase all content and settings from the device. When prompted, don't enter a phone number or message. Click Next until the device is erased.
    When the erase is complete, click "Remove from Account" to remove the device from the account.
    The problem is that it's too late for that now, because I already deleted the iPhone from his iCloud... Please help me out here, what can I do to still erase it from iCloud?!
    Greets

    Were you, by chance, running a beta version of iOS 7 on your phone?
    If so, this will be the problem. You will need to log Into the private developers forum athttps://developer.apple.com/support/ios/
    If you are not a developer, you will need to seek help by way of your favourite search site.

  • Activity Box problem

    I am working on an Activity Box problem. I got some errors, Please Help and Thanks in advance!!!
    My program likes:
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    /*ActivityBox Applet */
        public class ActivityBox extends Applet {
    //Declarations
        String panelString = new String("News from the field.");
        String southString = new String("South Button");
        String infoString = new String("Type here.");
        String kbString = new String("East ");
        MousePanel cp = new MousePanel(100,100,panelString);
        MousePanel ep = new MousePanel(100,100, kbString);
        MousePanel np = new MousePanel(50,50);
        MousePanel sp = new MousePanel(100,100);
        MousePanel wp = new MousePanel(100,100,"West - Type here");
        TextField myText = new TextField(infoString);
        Button southButton = new colorChanger(southString);
        colorChanger Blues = new colorChanger(Color.blue);
        buttonListener Zap = new buttonListener(cp, myText, ep);
        kbListener Tap = new kbListener(ep, kbString);
    //init
        public void init() {
         setLayout(new BorderLayout(5,5));
             np.addMouseListener(Blues);
         add("North",np);
             np.add(myText);
         np.setBackground(Color.Cyan);
             sp.addMouseListener(Blues);
             southButton.addActionListener(Zap);
         sp.add(southButton);
         add("South", sp);
         sp.setBackground(Color.Cyan);
             ep.addMouseListener(Blues);
         add("East",ep);
         ep.setBackground(Color.Cyan);
             wp.addMouseListener(Blues);
             wp.addKeyListener(Tap);
            add("West",wp);
         wp.setBackground(Color.Cyan);
             cp.addMouseListener(Blues);
         add("Center",cp);
         cp.setBackground(Color.Cyan);
    /* MousePanel */
    class MousePanel extends Panel {
        public String nameTag = "";
        Dimension myDimension = new Dimension(15,15);
    //Constructor 1 - no name tag
        MousePanel(int h, int w) {
         myDimension.height = h;
         myDimension.width = w;
    //Constructor2 - with name tag
        MousePanel(int h, int w, String nt) {
         myDimension.height = h;
         myDimension.width = w;
         nameTag = nt;
    //paint
        public void paint(Graphics g) {
         g.drawString(nameTag,5,10);
    //change text
        public void changeText(String s){
         nameTag = s;
         repaint();
        public Dimension getPreferredSize(){
         retrun myDimension;
    //getMinimumSize
        public Dimension getMinimumSize(){
         return myDimension;
    class colorChanger implements MouseListener {
        private Color oldColor = new Color(0,0,0);
        private Color changeColor = new Color(0,0,0);
        //constructor
        colorChanger(Color it){
         changeColor = it;
        //Methods required to implement MouseListener interface
        public void mouseEntered(MouseEvent e) {
         oldColor = e.getComponent().getBackground();
         e.getComponent().requestFocus();
        public void mouseExited(MouseEvent e) {
         e.getComponent().setBackground(oldColor);
         e.getComponent().transferFocus();
        public void mousePressed(MouseEvent e) {
        public void mouseReleased(MouseEvent e) {
        public void mouseClicked(MouseEvent e) {
    class buttonListener implements ActionListener {
        private MousePanel it1 = new MousePanel(0,0,"");
        private MousePanel it2 = new MousePanel(0,0,"");
        private TextField from = new TextField("");
        private String words = new String("");
        //constructor
        buttonListener(MousePanel target1, TextField source, MousePanel target2){
         it1 = target1;
         from = source;
         it2 = target2;
        //Methods required to implement ActionLIstener interface
        public void actionPerformed(ActionEvent e) {
         words = from.getText();
         it1.changeText(words);
         from.setText("");
         it2.changeText("");
    }//end buttonListener
    class kbListener implements KeyListener {
        private MousePanel it = new MousePanel(0,0,"");
        private String putString = new String("");
        //constructor
        kbListener(MousePanel target, String display){
            it = target;
         putString = display;
        //Methods required to implement KeyListener interface
        public void keyPressed(KeyEvent e) {
        public void keyReleased(KeyEvent e){
        public void keyTyped(KeyEvent e){
         putString = putString + e.getKeyChar();
         it.changeText(putString);
    }When I compiled it, I got:
    ActivityBox.java:18: cannot resolve symbol
    symbol  : constructor colorChanger (java.lang.String)
    location: class colorChanger
        Button southButton = new colorChanger(southString);
                             ^
    ActivityBox.java:24: cannot resolve symbol
    symbol  : constructor BorderLayout (int,int)
    location: class BorderLayout
            setLayout(new BorderLayout(5,5));
                      ^
    ActivityBox.java:28: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            np.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:33: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            sp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:36: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            ep.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:40: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            wp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:43: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            cp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:72: cannot resolve symbol
    symbol  : class retrun
    location: class MousePanel
            retrun myDimension;
            ^
    .\BorderLayout.java:8: setLayout(java.awt.LayoutManager) in java.awt.Container c
    annot be applied to (BorderLayout)
            p.setLayout(new BorderLayout ());
             ^
    .\BorderLayout.java:9: cannot resolve symbol
    symbol  : variable NORTH
    location: class BorderLayout
            p.add("North", BorderLayout.NORTH);
                                       ^
    .\BorderLayout.java:10: cannot resolve symbol
    symbol  : variable SOUTH
    location: class BorderLayout
            p.add("SOUTH", BorderLayout.SOUTH);
                                       ^
    .\BorderLayout.java:11: cannot resolve symbol
    symbol  : variable EAST
    location: class BorderLayout
            p.add("EAST", BorderLayout.EAST);
                                      ^
    .\BorderLayout.java:12: cannot resolve symbol
    symbol  : variable WEST
    location: class BorderLayout
            p.add("WEST", BorderLayout.WEST);
                                      ^
    .\BorderLayout.java:13: cannot resolve symbol
    symbol  : variable CENTER
    location: class BorderLayout
            p.add("CENTER", BorderLayout.CENTER);
                                        ^
    14 errors

    Again compile ur code .... I don't seem to get all those errors

  • Setting up Abode Digital Editions, when I try to Authorize with my Abode id information I get the message "Activation Server Problem - check connection to the internet" when I clearly am connected to the internet ?

    Hi can anyone help me please this is driving me crazy ! I download and install Abode Digital Editions and when I try to Authorize with my Abode ID information I get the message " Activation Server Problem - check connection to the internet when I clearly am connected to the internet ?

    <moved from Downloading, Installing, Setting Up to Adobe Digital Editions>

  • EasyDMS7.1  checkin problem

    Hi,
    I have installed EasyDMS version 7.1.2.0 successfully. My PC property is 32 bit  Window 7 Enterprise OS. I am able to create DIR successfully and can also upload originals to DIR without checkin successfully. But whenever i try to checkin the originals in EasyDMS and click "apply" or "OK" button after that a new window pops up without any message displayed. The popup window only has "OK" button and nothing else. But I can checkin the originals using Change with SAPGUI function. The checkin problem happens only in EasyDMS. What could be the problem?

    Hi Mohamed,
    based on my experience with this kind of error I would kindly ask you to see the SAP note 164203 and use report RSHTTP05 to check the SAPHTTP connection. The problem seems to be with the HTTP dll's and the note 164203 has helped
    in resoliving the problems with the SAPHTTP.
    Best regards,
    Christoph

  • Activity Monitor problems increase CPU and power burn

    Migration Assistant worked very nicely, transferring from a Powerbook G4 with 30GB of files and data in about 45min via Firewire.
    However, after 2 days of usage, the CPU was still running at 80% and applications were incredibly sluggish. My battery calibration at full charge only showed a little over 1 hour. Activity Monitor also would not show any processes -- the list was completely blank.
    The solution was to rename the Preferences folder, allowing programs to create a new Preferences folder. I then selectively populated the new folder with the main old preferences for mail, Safari, etc. This not only solved the Activity Monitor problem, but immediately drove down the CPU usage to about 10% where I'd expect it. Now the battery shows over 2.5 hrs on a full charge with the screen on full brightness (and it's BRIGHT!)
    Also, Microsoft Word/Powerpoint/Excel/Entourage: trial software on the MacBookPro will mess up your migration, so delete the trial software BEFORE MIGRATION ASSISTANT.
    Hope this helps some of you out there!

    Another thing users who run Migration Assistant should know is that many of your background processes and helpers may slow down the Macbook.
    For example, I notice that a bunch of PowerPC menu items running under Rosetta slowed things down. Also, the Microsoft Office Autoupdate background process, which is started from System Preferences > Accounts > Login Items constituted one Rosetta process running all of the time.
    When I remove/disabled these background processes, I noticed a significant difference.

  • Activity Queued problem

    Hi,
    I am facing some problem when i tried to Checkin the activity and ACTIVATE the activity. the status of the activity is Running and when i checked the same in CBS the status of the Request Activity is QUEUED. there is no progress with the activity.
    Pl. any suggestions.

    We have checked and the mentioned parameter is set to false.
    We go this error initially  "Retrieving pending activities failed: CBS Server Error: The compartment for given software component is being initialized( internal code: BS_SC_META_DATA_NOT_AVAILABLE)" and when synchronise using the coentext menu of the actovity and try to activate it. The activity is not getting activated.
    The status in CBS showes Queued for a long time
    regards
    Sam

  • DTR Checkin problem after OS migration

    Hi,
    We are getting problem in check in only in the following case :
    When ever there is any chnage in existing model is done in R/3 and the chnaged model is reimported , then the check in activity is failing only for that activity with following error :
    Checkin of activity failedInternal Server Error [Internal Server Error]
    This error is coming after migration from AIX to windows.
    Please let me know what may be the probale reason.
    Thanks,
    Kousik

    Hi
    Do you have the .sac files in ur  <CMS transport directory>\cms\inbox ?? May b thats the reason.

  • SharePoint Foundation Active Directory Problem

    Hey,
    I have a problem with the Active Directory connection to SharePoint Foundation.
    My Situation looks like this:
    I'm working on a kind of project controlling plattform. Each of our customers has its own site. Also each customer has an account in our Active Directory. For the administrative part, we have a list which contains some infos of the customer, the url to its
    site and the contact person.
    I wrote an import-script which creates a site and a new item in the list. To put the contact person in the list-item, I use a code-snippet like this:
    try
    user = web.EnsureUser(loginName);
    catch (Exception ex)
    throw new Exception("LoginName " + loginName + " not found");
    Now the problem is, that the try/catch block fails too often which means: SharePoint doesn't know the loginNames of some of our customers.
    Why does SharePoint not know maybe 1/5 of all our customers? All of them have an account in our active directory, none of them ever logged in the SharePoint (at the time they even doesn't know, that they have a SharePoint site for this project).
    I searched the internet for the problem but all I found where questions related to the synchronization of ad-properties to SharePoint Foundation. But I don't want to sync the phone-number or something like that - I want SharePoint only to know all the loginNames
    of our customers, not only 1/5 of them.
    How do I achive this, what am I doing wrong?
    Thank you!

    web.EnsureUser has nothing to do with the UPS at all. This has nothing to do with synchronisation (it does have a role but it's a maintenance one and nothing to do with authentication.
    The simplest answer is that the login names are being entered wrongly. Having said that there are a few areas you can look at to try to identify the problem:
    Does it fail repeatedly for the same username? Can you add that user to the site manually using a people picker control and if so will the script work afterwards? Are there any trends in the user accounts that SharePoint cannot find?

  • Swing and Active rendering problem

    Hopefully this is the right place to post. I have a problem with active rendering and swing. Basically my code below messes up when I start rendering the swing either using repaint() or paint(g).
    If I use repaint() then the gui flickers like mad and if I use paint(g) then I get deadlocks when typing into the textbox.
    Any help would be great for what am I doing wrong. How do I solve this problem?
    public GuiWindow() {
              try {
                   guiImage = ImageIO.read(this.getClass().getResource("Images/Gui2.png"));
              } catch (Exception e) {}
              this.setPreferredSize(new Dimension(800, 600));
              this.setUndecorated(true);
              this.setIgnoreRepaint(true);
              this.setResizable(false);
              this.addKeyListener(kl);
              this.setFocusable(true);
              this.requestFocus();
              this.setTitle("PWO");
              JPanel panel = new JPanel()
              public void paintComponent(Graphics g)
              //Scale image to size of component
                   super.paintComponent(g);
                   Dimension d = getSize();
                   g.drawImage(guiImage, 0, 0, d.width, d.height, null);
                   this.setIgnoreRepaint(true);
                            //draw background for the gui
              JTextField Name = new JTextField(20);
              panel.add(Name);
              this.setContentPane(panel);
                    myRenderingLoop();
    public void myRenderingLoop() {
              int fps = 20;
              long startTime;
              int frameDelay = 1000 / fps;
              this.createBufferStrategy(2);
              BufferStrategy myStrategy = this.getBufferStrategy();
              Graphics2D g;
              while (!done) {
                   startTime = System.currentTimeMillis();          
                   do {
                        do {
                             g = (Graphics2D)myStrategy.getDrawGraphics();
                             this.repaint();
                             this.render(g); //render the game
                             g.dispose();
                        } while (myStrategy.contentsRestored());
                        myStrategy.show();
                        Toolkit.getDefaultToolkit().sync();
                   } while (myStrategy.contentsLost());
                   while (System.currentTimeMillis() - startTime < frameDelay) {
                        try {
                             Thread.sleep(15);
                        } catch (InterruptedException ex){}
         }Edited by: Aammbi on Apr 6, 2008 7:05 PM

    I really have no idea what your code is trying to do, but a few comments.
    1) There is no need to use a BufferStrategy since Swing is double buffered automatically
    2) Don't use a while loop with a Thread.sleep(). Chances are the GUI EDT is sleeping which makes the GUI unresponsive
    3) Use a Swing Timer for animation.
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.

  • 10.4.6 and Active Directory Problem - Volume cannot be found??

    I have bound six 10.4.6 to active directory. All went sweet with no problems. I have "force local home folder" off in Directory Access for AD. I can login to the Mac no problem using any user account from AD. If I login with a user the first time all goes well. The desktop icons show and the home directory is that of the users network home folder and can browse it. All good until I log out and login again. I get the desktop icons but the users home directory give the error "The Volume for %username% Cannot be found" when trying to access. I can browse the network to the user home folder without having to authenticate. The server (2003) shows no login errors, all looks fine. I have upgraded one Mac to 10.4.7 but made no differnce.
    I have installed "services for Mac and Appletalk" on the server but from what I have been told this shouldn't need to be installed but I did as I was getting no where anyway.
    Any ideas?
    PowerPC   Mac OS X (10.4.6)  

    Hi Chris!
    Before I comment, I want to define a couple of things. A "Mac home folder" stores a user's files (Documents, Library, etc.). This home folder can be stored locally on the workstation or it can be stored on a server. A "Windows home folder" is defined in a user's Active Directory account and can be used as the Mac home folder or simply as a network user folder for storage.
    While the idea of a network-based Mac home folder is nice, it can be clunky simply because the entire user experience is dependent on network speed and/or good file synchronization between your server and workstation. As someone who works in a group supporting about 300 Macs, I suggest enabling local home folders and not using a network-based Mac home folder.
    Next, File Services for Macintosh (AFP protocol) built into Windows Server will not support network-based Mac home folders. This is a dead end. You can install a third party product from Group Logic called ExtremeZ-IP, which does support network-based home folders over AFP.
    Therefore, what's happening in your network is that the network-based Mac home folders are being mounted via the SMB protocol, which uses Windows style file sharing. SMB in Mac OS X is good for limited use but I wouldn't recommend it for extensive use, which would include network-based Mac home folders.
    Here's what I suggest for your AD settings: 1.) Enable local home folders. 2.) Connect via SMB. This will keep your users' Mac home folders local to the machine but if their Windows network home folder is properly defined in their AD account settings then these should automatically mount on the Desktop via SMB at login.
    If you can get your Windows home folders to mount automtically on the users' Desktops then you can experiment with synchronization. After logging in, each user can visit Apple menu --> System Preferences... --> Accounts and the synchronization options will be available. A user can synchronize all or part of his local Mac home folder to his mounted Windows home folder.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.7)  

  • 10.5.5 Active directory problem for mobile users

    I an running 10.5.5 on a MBP 2.4. The computer is attached to Active Directory for authentication. The accounted is setup as a mobile user with automatic home sync. Below is the problem I'm experiencing after 10.5.5.
    Upgrade worked fine, everything went through as expected. When I got home with computer, couldn't login. I did eventually get logged in, computer became extremely unresponsive at intermittent times.
    At work next day, everything worked fine.
    I believe this is a problem with 10.5.5 computers that are bound to AD, when AD is not available (but internet is.) Some type of weird priority locking or timeout setting? It seems to fail immediately if no network is available, but if the internet is available it is like it gets "hung" waiting for a response.
    Anybody else having similar problems?
    Below are the details on the specific tests that brought me to this conclusion.
    1) Boot with work network cable connected - Works fine
    2) Boot with work wifi network enabled - works fine
    3) Boot with public wifi network enabled and work cable - works fine.
    4) Boot with only public wifi - appears "frozen" (turned off after 5 minutes of trying to login)
    5) Boot without network or wifi - works fine using cached mobile account info
    6) Boot with network cable and public wifi, remove network cable after login- works fine for a period becomes periodically frozen. attempts to do anything become queued, when computer starts responding queue emptys out (can see menus / applications switch around to correspond with clicks.)
    7) Change account to Manual sync of mobile account, again boot with network cable and public wifi, remove network cable- no freezing responds normaly.
    All steps repeated after rebinding computer to AD - same results.

    First rule of installing an upgrade, run permissions repair both before & after. Did you do that?
    I'm using a Mac dual bound to AD & OD, works perfectly. I can't speak for the exact setup of your network but I personally would be suspicious of AD. I had a similar issue some time back where my processor would go crazy with the net directory authentication running like crazy. Turned out AD had somehow forgotten my computer. It only happened away from work where my Mac couldn't contact the AD server (not exactly sure why). I'd try the following.
    1. While at work create a local administrative account on your Mac (you should always have a backup account anyway).
    2. Login as local admin account.
    3. open Directory Utility from the Applications/Utilities folder & remove the AD server (you'll need an account that can bind machines to AD).
    4. re-add your Mac to AD.
    This may resolve your issue & shouldn't hurt anything in the least.

  • Binding to Active Directory Problem. I am a Newb! probably something stupid

    Hey All,
    Trying to get my apple xsever to join our windows domain. I got it to bind and the user accounts show up on the machine but then it askes me to join it to the Active Directory Kerberos realm. I am confused.
    what i am trying to do is joint it to the windows domain for my admin account on the actual server and then set up local user accounts on the machine so when my mac users log in they authenticate using the local mac account and not the windows domain account. Does this make sense? From what i read macs authenticate using the local account before going to the windows account which is what i want. I am a total newb to this so forgive me for the stupid questions.
    cheers all,
    jess

    Hi
    set up the xserve as an Open directory Master
    will it place nice on the network
    with the rest of the windows servers that we have.
    There should be no problem in doing this. All you need to do is decide whether you want your Mac Server to run its own DNS Service or to use the existing DNS service being provided by the AD Server. Open Directory Master requires DNS Services running somewhere.
    i just want to have a mac studio of about 35 people be
    kind of an island within a sea of windows users. If
    there can be cross over there then fine.. but really
    i want the mac to work well with the apple server and
    if i can get the windows clients hooked up also then
    fine.
    There should be no problem with this.
    When you say studio do you mean a graphics design studio? Or are you talking about a video production studio? If the answer is yes to either one or both then perhaps a simple file server would do. An Open Directory Master is OK in this environment but your network needs to be up to job. Ideally gigabit ethernet certainly for video production and also if your studio are heavy photoshop users. You could get away with 100Base-T but with 35 heavy users editing files stored on the server as well as Home folders it may be a bit too much. If this is the situation in your studio you would be better placed working locally and saving the files back to the server at the end of the day. You would set up your users with names and passwords in the OD directory node. Your studio can use those account details to log on to the server to access share points but still work locally if they need to. If you start windows services on the mac server then there should be no reason for windows clients to access share points on the mac server as well. Be careful how you configure windows services as you already have existing PC servers on the network.
    As you have already stated your aim is to keep the macs completely separate from the PCs then consider connecting all your macs to a separate switch and have them running of a different IP address range and subnet mask. You could then use an intervening router to handle traffic between the two networks, this way you control cross platform access to shared resources. If you understand networks, routers etc then you should be able to accomplish this without too much trouble. Again searching the Server forums should give you plenty of ideas and advice on the best way to achieve what you want. As ever defining and deciding what you want you want the server to do is half the problem.

  • Java/Active Directory problem

    I have a strange problem. We have an application that we login to through a website. The application requires Java 1.42_9 to run properly. These workstations came from Dell with java 1.50_6 preloaded which I removed infavor of the required 1,42_9. Everything works normally when a user logs into the the workstation (WinXP SP2) as the local adminstrator. The problem arises when a user logs into the machine with an Active Directory account. We trying to run the website to login to our application and all we get is the Red X in the upper left hand corner of the screen. There is nothing in the Java console, it seems like java does not even attempt to start. I am not sure what Active Directory has to do with this but as long as we log in as a local admin everything works great. If I load Java 1.50_6 back on the workstation it works but it takes over two minutes for Java to load which is unacceptable. I have also tried 1.50_7 but it too take too long to load.
    Sorry for the long winded post, but Im hoping someone has suggestions on why logging into Active directory causes 1.42_9 to fail.

    Your problem is your use of these two combinations
    constrains.setSearchScope(SearchControls.SUBTREE_SCOPE);
    ctx.search("", "(objectclass=*)", constrains); Many LDAP servers, including Active Directory, do not permit subtree searches from the root.

  • LDAP Active Directory Problem

    Hi,
    i have a win 2003 server (german) and apex 3.x. I (hope i ) have read all postings to this topic. Read the Apex Book, tried the Oracle Examples but all examples i have found won´t work for me. After three hours i found one solution that works:
    (Domain: marco.de)
    create or replace FUNCTION check_ldap_user(
    p_username IN VARCHAR2,
    p_password IN VARCHAR2
    ) RETURN boolean IS
    l_session DBMS_LDAP.session;
    l_ret binary_integer;
    BEGIN
    l_session := DBMS_LDAP.init (
    hostname => '192.168.178.100',
    portnum => '389');
    IF (DBMS_LDAP.simple_bind_s (
    ld => l_session,
    --dn => 'cn='||upper(p_username)||',cn=user,dc=marco,dc=de', /* <= This line does not work */
    dn => upper(p_username), /* <= This Version work */
    passwd => p_password)) = 0 AND p_password IS NOT NULL THEN
    l_ret:=DBMS_LDAP.UNBIND_S(ld=> l_session);
    RETURN True;
    ELSE
    RETURN False;
    END IF;
    EXCEPTION WHEN OTHERS THEN
    dbms_output.put_line(sqlerrm);
    RETURN FALSE;
    END;
    The Question is, if there any problems with a german Active Directory Server (Mayby the groups like "Domänen-Admins" are the problem)
    Thanks
    Marco

    Hi,
    Any help?

Maybe you are looking for

  • Tax issue in US - very urgent. !!

    Dear All, Someone from SAP told me that : "In US localisation the tax is depending only on the delivery and good receipt location.The tax code will apply for all the item depending on the Business partner ship to address in case of a delivery and on

  • PO Document Type Without Good Reciept and Invoice Reciept

    Hi All, Can i configure my document type in such a way that it do not require Goods Receipt as well as Invoice Verification. I know i can do the same with Account assignment category. But what if i am not using any particular account assignment categ

  • Spanish display incorrect after unicode conversion

    Dear Experts, Currently we upgrade our SAP system from 4.6B NU to ECC6.0 UN. in 4.6B system we had implemented Simple Chinese and French language package to the system. after upgrade to ECC6.0 no-unicode system. we perform a MDMP unicode conversion.c

  • Regarding COLLECT stmt usage in an ABAP Program.

    Hi All, Could anyone please explain if the COLLECT statement really hampers the performance of the program, to a large extent. If it is so, please explain how the performance can be improved with out using the same. Thanks & Regards, Goutham.

  • Applets and classes in jar files

    I have placed an applet and a group of classes that the applet uses in a jar file. The classes are grouped in their own files in a short directory tree within the jar file. When the applet is loaded by the browser on a client with the usual CODE="app