Trial Implementation

Hello experts,
We want to create an ESS/MSS software demo, but our landscape it's not ready yet. So I have been searching and some one published the way to install a SAP Netweaver trial with ESS functionality.
The problem is that it need a SAP Netweaver Java Trial versión, but I could not find it.
I have been looking for another way, but it is so hard to find the correct solution. Please could someone help me?. There is another way to performe a "local" demo?. I found a SAP NetWeaver Java and ABAP Trial Version on Linux - VMware Edition... might be util?
Thank you very much
Best regards

Hi, thanks you both...
Well, I was also have been searching on the web and I have found a guy that installed a local Portal (ESS/MSS) on his laptop (very good thread for start point. It is in spanish).
According with his experience, he installed an IDES 6.0 EhP4 and portal. He did that with the IDES's CDs. On this CDs are contained the Java Stack (trial) and MSS functionalities. For ESS it is necesary download and install the SPs.
This trial is available for a month, after that, it is requesting for a licence, but if you already have a licence, it is free....
If you want to take a look to the thread: IDES y SAP Portal para ESS y MSS
Best regards

Similar Messages

  • Netscout WAAS Integration

    Looking for anyone who has successfully integrated Netscout's agent solutions with WAAS.  What we have interest in includes:
    1) What elements software, OS, Licenses and hardware reversions are required.
    2) What challenges were encountered, such as having to upgrade, change control, operational issues, etc
    3) How well is it working what are the pros and cons
    4) If you had to do it again what would you do different?
    I've only been able to find a limited set of trial implementations and we're developing or near / long-term service management architecture and want to consolidate, leverage (cost control) and move capabilities to the correct location.
    Thanks in advance,
    KM:)

    Try adding the IP address as a Monitor Server and see if it changes from pending to active after adding the data sources.
    1. Login into the NAM.
    2. Click Setup ---> Data Sources
    3. Choose WAAS ---> Monitored Servers
    4. Click Add and enter the ip address.
    Now try to add the data sources for the Setup ---> Data Sources ---> WAAS ---> Devices .
    This is a known bug:
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtf51695

  • Implementing oracle applications 11.5.8 trial version

    Hi ALL
    Pls, could someone help me. I am implementing the version 11.5.8 Trial version of Oracle applications and I am having problems. I 've a 140GB hard drive and 512 ram stand alone PC. The problems are:
    1. I need to install the MKS software I cannot seem to get an evaluation version. The company wants me to pay £349 sterling which nearly $500 licensing fees.
    2. The rapid install keeps asking me for a domain name. I have entered system32/drivers/etc/host and it still has not work.
    Pls, any help regarding above queries will be deeply appreciated.
    Pls, send replies to [email protected]
    Many thx
    Dorothy

    Dorothy,
    1. Earlier MKS Toolkit evaluation is available for 30 days. It looks like that they are no more giving the evaluation software. Recently i have visisted the MKS site, but end up getting no evaluation software from there. TRY out on Google, you may found somewhere. MKS is mandatory to install oracle apps on windows.
    2. if you put an entry like in the host file as
    127.0.0.1 localhost
    127.0.0.1 dorothy.imafidon.com
    when the rapid install asks for the domain name give the name as imafidon.com
    Hope this would solve for you.
    Thanks
    Krishna

  • How to implement a time-limited trial version of application?

    Hello
    I am working on a trial version of my application for Windows Phone 8.1 Runtime.
    I based my code on this MSDN tutorial:
    https://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn532253.aspx
    It clearly mentions here about a trial-period of an application.
    However, when I launched the Store Dashboard, I didn't see any places in which I could set the trial-time period. There's only one checkbox turning on or off an ability for users to download a trial version.
    Is it possible for Windows Phone Runtime to make a time-limited trial version of an application? For example - after 48 hours it would block itself from using it.
    The important thing is to make sure the trial does not restart when user reinstalls the application (as if it could be done if I used AppSettings for validating a first-app run time).
    Thanks in advance

    For windows phone you have to implement your own way to check if the trial is over and apply the action yourself. Although on windows 8.1 store does what you want automatically.

  • How to implement a 30 day trial period?

    Hello,
    I'm trying to implement a 30 day evaluation period for a pure C# WinForms commercial application. The requirements are basically that an uninstall / reinstall should not reset the countdown and it should not be trivial for the user to do it himself. It would also be nice if it were obscured even from detection using SysInternals regmon / filemon software.
    I'm thinking of storing the install date somewhere, but where? I tried using isolated storage, but was disappointed to see it just stores as a normal file in the user's Application Data directory.
    Certainly this problem has been solved before. Thanks for any ideas...

     in c# this code work for me,
    try it 
    The Code snippiest is,
    In your main Application, add this code to Programm.CS
    using SecureApp;
    static void Main()
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                string path = @"Software\Tanmay\Protection";
                Secure scr = new Secure();
                bool logic = scr.Algorithm("tanmay", path);
                if(logic ==true)
                    Application.Run(new Form1());
    Here all the necessary information will save in Registry.
    So you must provide a valid path, which will create this dll. 
    In this case the password is : tanmay, 
    Those two things are provided as,
    bool logic
    = scr.Algorithm("tanmay", path);
    The main code scr.Algorithm(,) is as follows,
    public bool Algorithm(String appPassword, String pass)
                globalPath = pass;
                bool chpass = checkPassword(appPassword);
                if (chpass == true) //execute
                    return true;
                else
                    bool block = blackListCheck();
                    if (block == false)
                        string chinstall = checkfirstDate();
                        if (chinstall == "First")
                            firstTime();// installation date
                            DialogResult ds = MessageBox.Show("You
    are using trial Pack! Would you Like to Activate it Now!", "Product key", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
                            if (ds == DialogResult.Yes)
                                Form1 f1 = new Form1(appPassword,
    globalPath);
                                DialogResult ds1 = f1.ShowDialog();
                                if (ds1 == DialogResult.OK)
                                    return true;
                                else
                                    return false;
                            else
                                return true;
                        else
                            string status = dayDifPutPresent();
                            if (status == "Error")
                                blackList();
                                DialogResult ds = MessageBox.Show("Application
    Can't be loaded, Unauthorized Date Interrupt Occurred! Without activation it can't run! Would you like to activate it?", "Terminate Error-02", MessageBoxButtons.YesNo, MessageBoxIcon.Error);
                                if (ds == DialogResult.Yes)
                                    Form1 f1 = new Form1(appPassword,
    globalPath);
                                    DialogResult ds1
    = f1.ShowDialog();
                                    if (ds1 == DialogResult.OK)
                                        return true;
                                    else
                                        return false;
                                else
                                    return false;
                            else if (status
    == "Expired")
                                DialogResult ds = MessageBox.Show("The
    trial version is now expired! Would you Like to Activate it Now!", "Product key", MessageBoxButtons.YesNo,MessageBoxIcon.Information);
                                if (ds == DialogResult.Yes)
                                    Form1 f1 = new Form1(appPassword,
    globalPath);
                                    DialogResult ds1
    = f1.ShowDialog();
                                    if (ds1 == DialogResult.OK)
                                        return true;
                                    else
                                        return false;
                                else
                                    return false;
                            else // execute with how
    many day remaining
                                DialogResult ds = MessageBox.Show("You
    are using trial Pack, you have " + status + " days left to Activate! Would you Like to Activate it now!", "Product key",MessageBoxButtons.YesNo, MessageBoxIcon.Information);
                                if (ds == DialogResult.Yes)
                                    Form1 f1 = new Form1(appPassword,
    globalPath);
                                    DialogResult ds1
    = f1.ShowDialog();
                                    if (ds1 == DialogResult.OK)
                                        return true;
                                    else
                                        return false;
                                else
                                    return true;
                    else
                        DialogResult ds = MessageBox.Show("Application
    Can't be loaded, Unauthorized Date Interrupt Occurred! Without activation it can't run! Would you like to activate it?", "Terminate Error-01", MessageBoxButtons.YesNo, MessageBoxIcon.Error);
                        if (ds == DialogResult.Yes)
                            Form1 f1 = new Form1(appPassword,
    globalPath);
                            DialogResult ds1 = f1.ShowDialog();
                            if (ds1 == DialogResult.OK)
                                return true;
                            else
                                return false;
                        else
                            return false;
                        //return "BlackList";

  • Implementing trial version of air application

    I am developing an air application in which i need to create its trial version which can expires after 14 days of its usage. I want to restrict same user to reinstall trial version.
    Registring user's IP address is not the right solution.I want to register my application name in system registry.
    How to register my application name into system registry?

    If on windows, take a look at the following file to see what's going on:
    c:\Document and Settings\User Name\Local Settings\Application Data\Adobe\logs\Install.log
    Common issues:
    The version number specified in the application.xml file of the download is not the same as the value specified in the update.xml file.
    The application ID of the new file is not the same as that in the old file.
    At any rate, the probable in most probably due to an invalid value in the application descriptor file.

  • How can I implement a status bar at the bottom of a resizable application?

    Hello all,
    I am a JavaFx newbie and I am implementing an application (a Sokoban game), with a menu at the top of the frame and a gaming area covering the rest of the frame. To support the game, I have to load images at certain positions in the gaming area.
    The game also includes a level editor with another menubar and where images are set to other positions.
    I implemented this in another view, swiching from the game mode to the level editor mode and vice versa is just done by setting the other view visible. Up to now this works, here the important statements building these details:
    Group root = new Group();
    gameView = new Group(); // for gaming mode
    le_view = new Group()   // for level editor mode
    MenuBar gameMenubar = new MenuBar();
    Menu menuGame = new Menu(bundle.getString("MenuGame"));
    ... building the menu items and menues ...
    gameView.getChildren().add(gameMenubar);
    ImageView buildingView[][] = new ImageView[22][22];
    for (nCol = 0; nCol < 22; nCol++) {
        for (nRow = 0; nRow < 22; nRow++) {
            buildingView[nCol][nRow] = new ImageView();
            buildingView[nCol][nRow].setX(nCol * 26 + 5);
            buildingView[nCol][nRow].setY(nRow * 26 + 40);
            gameView.getChildren().add(buildingView[nCol][nRow]);
    gameView.setVisible(true);
    root.getChildren().add(gameView);
    ... same stuff to build the le_view ...
    le_View.setVisible(false);
    root.getChildren().add(le_View);
    Scene scene = new Scene(root, 800, 600, Color.CORNSILK); Now I want to introduce a status bar at the bottom of the frame, which of course has to follow the bottom of the frame, if it is resized. And of course the menu and the status bar should not grow vertically, if the height of the frame is increased.
    The implementation seems to be easy with StackPane for the frame and one BorderPane for each mode.
    For the first step I only tried implementing the game mode with only one BorderPane (just setting the menu, the gaming area and the status bar each into a HBox and setting these three HBoxes at the top, into the center and at the bottom). I also tried this via GridPane and via VBox; I always get any erroneous behaviour:
    Either the menubar is visible, but the menus do not pop up the menu items, or the anchor point of the menu and of gaming area are set 100 pixels left of the left frame border and move into the frame when the frame width is increased, or the menu is set 20 pixels below the top of the frame, or HBox with the menu grows when the frame height is increased, so that the anchor point of the gaming area moves down.
    Can you describe me a correct construction of such a frame? Thanks in advance.
    Best regards
    Gerhard

    Hello Gerhard,
    Glad the code helped, thanks for a fun layout exercise.
    For the draft code I just pulled an icon off the internet over a http connection.
    If you haven't done so already place any icons and graphics you need local to your project, so that resource lookups like:
    Image img = new Image("http://www.julepstudios.com/images/close-icon.png");become
    Image img = new Image("close-icon.png");then performance may improve.
    Another possible reason for your performance problem could be that when you use a vbox, the vbox content can overflow the area of the borderpane center and might be sitting on top of the menu pane, making you unable to click the menu (which is what happens to me when I try that with the draft program with the vbox wrapping mod, then resize the scene to make it smaller). This was a trick which caught me and the reason that I used a Group originally rather than a vbox. I found a vbox still works but you need to tweak things a bit. The trick I saw was that the order in which you add stuff to the borderpane is important. The borderpane acts like a stack where the last thing added floats over the top of everything else if you size the scene small enough. For your project you want the menu on top always, so it always needs to be the last thing added to the borderpane, but when you swap in the level pane for the game pane, then back out again, the game pane can end up on top of the menu which makes the menu seem like you can't click it (only when the scene is sized small enough). It was quite a subtle bug which took me a little while to work out what was happening. For me the solution was to add just one vbox to the center of the border, and then swap the game pane and the level editor in and out of the vbox, that way the center of the layout always stayed behind the menu bar and the status bar.
    I added some revisions to reflect the comments above and placed some comments in the code to note what was changed and why.
    public class SampleGameLayoutRevised extends Application {
      public static void main(String[] args) { Application.launch(args); }
      public void start(Stage stage) throws Exception {
        final BorderPane gameLayout = new BorderPane();
        final Group gameView = new Group();
        final MenuBar gameMenubar = new MenuBar();
        final Menu gameMenu = new Menu("Mode");
        final VBox centerView = new VBox();
        centerView.setStyle("-fx-background-color: darkgreen");  // we set a background color on the center view to check if it overwrites the game menu.
        MenuItem playGameMenu = new MenuItem("Play Game");
        MenuItem levelEditMenu = new MenuItem("Edit Levels");
        gameMenu.getItems().add(playGameMenu);
        gameMenu.getItems().add(levelEditMenu);
        gameMenubar.getMenus().add(gameMenu);
        final StackPane levelEditView = new StackPane();
        levelEditView.getChildren().add(new Text("Level Editor"));
        ImageView buildingView[][] = new ImageView[22][22];
        Image img = new Image("http://www.julepstudios.com/images/close-icon.png");  // use of http here is just for example, instead use an image resource from your project files.
        for (int nCol = 0; nCol < 22; nCol++) {
          for (int nRow = 0; nRow < 22; nRow++) {
            ImageView imgView = new ImageView(img);
            imgView.setScaleX(0.5);
            imgView.setScaleY(0.5);
            buildingView[nCol][nRow] = imgView;
            buildingView[nCol][nRow].setX(nCol * 20 + 5);
            buildingView[nCol][nRow].setY(nRow * 20 + 40);
            gameView.getChildren().add(buildingView[nCol][nRow]);
        final VBox statusBar = new VBox();
        final Text statusText = new Text("Playing Game");
        statusBar.getChildren().add(statusText);
        statusBar.setStyle("-fx-background-color: cornsilk"); // we set a background color on the status bar,
                                                              // because we can't rely on the scene background color
                                                              // because, if the scene is sized small, the status bar will start to overlay the game view
                                                              // and if we don't explicitly set the statusBar background the center view will start
                                                              // to bleed through the transparent background of the statusBar.
        gameLayout.setCenter(centerView); // we add the centerview first and we never change it, instead we put it's changeable contents in a vbox and change out the vbox content.
        gameLayout.setBottom(statusBar);
        gameLayout.setTop(gameMenubar);   // note the game layout is the last thing added to the borderpane so it will always stay on top if the border pane is resized.
        playGameMenu.setOnAction(new EventHandler<ActionEvent>() {
          public void handle(ActionEvent event) {
            centerView.getChildren().clear();  // here we perform a centerview vbox content swap.
            centerView.getChildren().add(gameView);
            statusText.setText("Playing Game");
        levelEditMenu.setOnAction(new EventHandler<ActionEvent>() {
          public void handle(ActionEvent event) {
            centerView.getChildren().clear();  // here we perform a centerview vbox content swap.
            centerView.getChildren().add(levelEditView);
            statusText.setText("Editing Level");
        playGameMenu.fire();
        Scene scene = new Scene(gameLayout, 800, 600, Color.CORNSILK);
        stage.setScene(scene);
        stage.show();
    }Other than that I am not sure of a reason for the slowdown you are seeing. In my experience JavaFX has been quick and responsive for the tasks I have been using it for. Admittedly, I just use if for a bunch of small trial projects, but I've never seen it unresponsive for a minute.
    - John

  • Open Payable,Receivable & Trial Balance!!

    Hi Guys,
    I need your help in Trial Balances.
    Our company has aquired a small firm which does not use Oracle ERP.
    Now we are planning to merge them under Oracle EBS.
    My question is what information do we need to bring related to their
    trail balances so that we can reconcile GL with AP,AR & INV.
    1) Open Sales Invoices
    2) Open Payable
    3) Advance Payment
    is there any GL component related to this to be brought in??
    Thanks in advance
    Prashant Pathak

    1) Open & Pending PO
    No Accounting impact unless you have encumbrance. So you do not have to worry.The only thing you need to worry about is definition of open PO. If PO is received but not yet billed you ought to have accrual balance in your old system (assuming accrual basis of accounting). If you convert these POs, when invoice is matched to this PO (this is no receiving expected as goods are in inventory or consumed), you have to make sure to use the accrual account (it should default). It is kind of a mess as you have to train people carefully to look for holds, which one is received earlier which one is received now and so on. Ideally the value of these POs+AP invoice value conversion with the accrual account should match with you accrual balance in your GL conversion.
    2) Open & Pending SO
    No accounting impact.
    3) Open & Pending AR,AP Invoices ( may be we might close Open invoice's in old system)
    AP for liability and distribution accounts, I think you should use actual liability account and reclassify later in GL (reclassify the one that was converted in GL) and for the charge account, you should use dummy accounts as the account could be accrual or actual department charge account. As this will be coming in GL, just make sure that the values match.
    4) Open & Pending Receipt
    Not sure whether you will be using a dummy bank account or actual one (accounting for cash and clearing are derived from the receipt classes) for converting these receipts. If cash gets converted in the GL into actual cash account (sensitive topic and highly individualistic to each implementation), then you have to use dummy cash account. If not in GL you have to use dummy cash account.
    5) Customer
    No accounting impact
    6) Vendor
    No accounting impact
    7) Item
    No accounting impact
    8) On Hand Inv ( what about the cost of this inventory? How do we tackle this in GL?)
    In inventory when we covert we have no choice in choosing the material account (inventory account) as it is taken from organization (average cost) or subinventory (standard cost) so on. Hence we cannot change that. The only thing we can change is the account we pass while doing on-hand conversion. Usually we call this guy as Inventory Clearing account. Depending on your set up (different inventory accounts for different organizations) you have to use different clearing accounts.
    So in inventory conversion you generate
    Dr Inventory account
    Cr Inventory Clearing Account.
    In GL you bring in the value of inventory account into Inventory clearing account. When you transfer from inv to gl, clearing account gets squared off.
    Thanks
    Nagamohan

  • How to implement Modbus Ethernet communicat​ion in Lookout, if we want to simulate the PC as PLC ?

    Problem Description :
    Dear Sir,
    We are doing a project where we are using Lookout with
    Front end Modicon PLC. The communication is by
    Ethernet, using Modbus.
    Since the installation is at a distant place, we wanted
    to use another PC (running Lookout) to simulate the
    PLC. For this, we tried to communicate
    a: the server Lookout PC running Modbus Ethernet mode of
    Modbus object as Master
    b: with another PC (for simulating the PLC) running
    Modbus Slave
    We did not get any communication. (we have given the
    details of what we have done, at the end of this email)
    We also tried connecting the above 2 PC's as
    a: the server Lookout PC running Modbus Serial mode of
    Modbus object as Master
    b: with another PC (for simulating the PLC) running
    Modbus Slave object
    Again we did not get any communication.
    If instead of PC (b) we connect the Modbus simulator to
    PC (a), there is no problem in communicating
    Please let us know how to go about establishing the
    communication between 2 PC's using Modbus serial,
    and Modbus Ethernet. A detailed step by step procedure
    would help us a lot.
    Thanking you
    Warm Regards
    Raja Mahbubani
    Procedure of our trial with ethernet.
    This is what we have done in detail.
    On PC A:
    We created an object (Pot) and connected it to
    the modbus data member of the modbus object say 40001. In the
    properties of the modbus object we selected modbus ethernet mode
    of communication and in the IP address field we wrote the IP
    address of the machine B to which we are trying to communicate
    i.e. 152.63.50.2.
    On PC B: we tried the following two methods
    Trial 1 : We created a modbus slave object and
    inserted an expression for the same data memeber to which the
    object was connected hoping to get the value of the pot of machine
    A on machine B.
    Trial 2 : We created a modbus object on machine B and we wrote
    the IP address of machine A and inserted an expression for the
    same datamemeber to which the object was connected hoping to get
    the value of the pot of machine A on machine B.
    NI Software : Lookout
    Version : 4.0.1 or 4.5
    OS : Windows 98
    NI Hardware : N/A
    Drivers : N/A
    Other Hardware/Instruments : N/A
    CPU : Pentium
    RAM : 64
    Vendor : S-Tech
    Customer Information :
    Raja Mahbubani
    Theta Controls
    IN
    [email protected]
    Ph: (+91) 20 4222556/7

    The ModbusSlave which comes with Lookout currently supports only Serial communication. So, you cannot use Ethernet between your two PCs. At least not with Modbus Master-Slave setup (if you must speak Ethernet between the two PCs, IPASCII object lets you do that, but then you'll need to implement your own protocol).
    Since all you want to do is simulate a Modbus PLC on a PC, you can use the Serial mode of communication for now. And later on just modify the Object in your Server Lookout to use the Ethernet mode.
    For setting up a Serial Modbus Slave, use a null-modem cable between the two PCs (lines 2 and 3 are swapped). On your PC 'B,' create the Modbus Slave object with the right COM port for that PC. And on your PC 'A' create the regular Modbus Object as if you w
    ere connecting to the Modbus Simulator box. The only difference here is the cable. The simulator box uses a straight-through cable whereas the Slave needs a null-modem cable.
    Hope this helps.
    Rgds,
    Khalid

  • Time Capsule WDS trial and error--working now

    *{ I }*
    I consider myself an expert in using Mac computers and Mac wireless systems although I am no hacker and no programmer by any stretch of the imagination (although I did teach myself how to use HyperStacks way back in 1990!). Although Apple overall provides a relative ease of use for computer technology, setting up a WDS network under b or g mode is still not always perfect. In this post, I relay my experiences of using a new Time Capsule to join an existing WDS network in 802.11g mode. It took several trials and errors and there might still be some glitches but for now it seems to be working.
    note: you might want to skip to the last section roman numeral five if you want to skip the "travels with Conal and his Time Capsule" and see what my most helpful hint is.
    *{ II }*
    WDS stands for Wireless Distribution System which is when you use wireless routers to extend the range of your networks using a wireless method rather than linking each router by long cables. In the ideal situation, you would link the routers by cables but in a home situation one may not be able to have unsightly cables hanging everywhere.
    My previous WDS system looked something like this:
    DSL Modem == Extreme ~~ Express1 ~~ Express2 ## laptop
    Key
    == represents wired connection between routers
    ~~ represents wireless connection between routers
    ## represents wireless connection to a wireless device that is not a router (eg., laptop)
    Extreme = Airport Extreme, the previous generation that looked like a saucer (or humourously I have heard called a "boob-style" station.
    Express1 and Express2 = Airport Express, the previous generation that only could broadcast in b or g
    My laptop usually connects to the network from Express2 because that has the strongest signal in my room.
    *{ III }*
    When I received my Time Capsule, I wanted to replace the existing Express2 and make Express2 simply become a wifi client (not a router) so that I can still use it for AirTunes and not to have it broadcast router signals. The reason for this is because Express2 and Time Capsule reside in the same room and aside from the redundancy of network signals, I don't know if having two wireless routers in such close proximity to each other would cause havoc on my network performance. I wanted the network to look like this schematic:
    Extreme ~~ Express1 ~~ Time Capsule
    I unplugged Express 2 and took it to the same location as Express 1 and Extreme 1. Then I plugged in Time Capsule. The idea of putting them in close proximity for set up was so that they could properly configure each other.
    I opened up Airport Utility and it saw all four of my routers. I went through the wizard for Time Capsule selecting the option for it to replace an existing router. When all configurations were automatically set Time Capsule rebooted and in about two minutes or less, Airport Utility tells me there was an error configuring the Time Capsule. I knew immediately then that I had a few long hours ahead of me.
    After that first failure I tried these various ways:
    1. retried the wizard automatic way (never worked for my setup which albeit is not the simplest of network setups is neither the most complicated)
    2. performed a manual configuration whereby I added the Time Capsule Airport ID to Express1 making Time Capsule a remote router of Express1; then I manually added Express1 to TimeCapsule as a router that it should connect to (that didn't work for some reason)
    3. finally I got out the ethernet cable, hard reset Time Capsule, plugged in ethernet cable from laptop to TimeCapsule, and the manually added the Airport ID to Express1 and vice versa.
    Note that I went through trial #2 several times fiddling around with other various WDS configuration etc. Finally what really worked for me was #3. I find that despite that I should be able to configure a new router wirelessly, I was not able to do so with success. I had to do it in a wired ethernet fashion.
    After that was done, all was set. Well, almost because I still had to reconfigure Express2 so that it no longer would work as a router but as a wifi client.
    *{ IV }*
    Now my whole network looks like this
    DSL Modem == Extreme ~~ Express1 ~~ TimeCapsule ## Express2 ## laptop
    Note that Express2 and my laptop are actually both connected wirelessly to TimeCapsule. I am unable to draw it in another way due to the limitations of using linear text to represent parallel items.
    *{ V }*
    So, my advice for those who are having trouble with configuring Time Capsule or other wireless router, sometimes you might want to try plugging in an ethernet cable so that not only is the connection more solid but that pretty much continual contact with the router is available.
    I realise that WDS in 802.11n is configured slightly differently and so perhaps WDS setup has improved but as it stands in 802.11g and 802.11b in the way Apple has implemented it, I would not suggest someone below the level of expert doing it. It can be very baffling, confusing, and irritating. I would never ask my father to try to set up WDS on his own even though there is a wizard for it. I know some people (like Chris Prillo) has had no problems with the wizard, but I have always had problems with the wizard. Not only did I have problems with it when trying to get the Time Capsule to replace an existing router, but when I set up my original WDS network I also couldn't use the wizard to set it up. It kept giving me errors.
    Message was edited by: Conal Ho
    Message was edited by: Conal Ho

    You are over complicating things. I have a Time Capsule (TC), AirPort Extreme (AE) Base Station and AirPort Express (AX) all working flawlessly with WDS.
    Make sure to write down the MAC addresses of the TC, AE, and AX. You will need them to configure WDS.
    Using the AirPort Admin util configure the TC. Turn on WDS and set the TC to be the main.
    Using the AirPort Admin software configure the first AX. Turn on the WDS and set it as a remote client of the TC. You will need the MAC address of the TC.
    Using the AirPort Admin software configure the second AX. Turn on the WDS and set it as a remote client of the TC. You will need the MAC address of the TC.
    You may have to reboot each device after each config change.
    See my blog post on this at http://islandinthenet.com/2008/07/01/airport-everywhere-with-wireless-distributi on-system-wds/
    Message was edited by: Khurt Williams

  • SAP NetWeaver 2004s Java Trial Version on Windows Vista

    Hello everyone,
    I have been trying to install SAP NetWeaver 2004s Java Trial Version for three days now on Windows Vista Ultimate. Since Microsoft has a new security infrastructure implemented in Windows Vista, it is not that easy to install SAP NetWeaver 2004s Java Trial Version. Windows Vista has some sort of User-account security. In summary, in Windows Vista, you are logged in as an administrator, but when it comes to change system files or do registry entries, you or respectivly third party programs (e.g. SAP NetWeaver 2004s Java Trial Version installer) has no rights to do things like registry entries. There is a possibility to rightclick on the setup.bat file and start it in administrative mode, but that doesn't change a thing.
    I hope you guys get my problem.
    This is the error log:
    WARNING 2007-01-28 21:09:35
    Error 5 (acces denied
    ) in execution of a 'RegOpenKeyEx' function, line (69), with parameter (SYSTEM\CurrentControlSet\Services\DPS).
    WARNING 2007-01-28 21:09:35
    The Subkey 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DPS' does not exist on the 'localhost' host.
    ERROR 2007-01-28 21:09:35
    MOS-01185  The subkey 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DPS' does not exist on the 'localhost' host.
    ERROR 2007-01-28 21:09:35
    FCO-00011  The step collect with step key |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|collect was executed with status ERROR .
    Please help!
    yours
    erik

    Windows Vista isn't on the support matrix of SAP Netweaver 2004s!
    you may play arround with regedit and chaning the security settings of SYSTEM\CurrentControlSet\Services\DPS key. SAPinst is doing a KEY_ALL_ACCESS when enumerating the services registry.
    Starting with Vista some registry values have special protection which do not allow administrators to open them with KEY_ALL_ACCESS.
    peter

  • Problems with SAP NetWeaver 7.01 ABAP Trial Version installation

    Hi,
    I have installed NW 7.01 ABAP trial version "successfully".
    Unfortunately the application server doesn't start.
    After some time the Dispatcher process stopps.
    In the syslog you can see that 7 workprocesses are started.
    they all don't seem to be able to connect to the database and shut down.
    The related syslog messages are:
    Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Database: Database error -10709 at CON   
    Database: > Connection failed (RTE:Database name is missing) 
    SAP-Basis System: Stop Workproc 4, PID     4136
    I already re-installed the Trial version, and I also checked that the database is up and running.
    The error persist.
    Can anyone help ?
    Thanks
    Stefan

    Hi Juan,
    thanks for the suggestion.
    here's the trace file dev_dev0.
    Still need help though ....
    Regards Stefan
    trc file: "dev_w0", trc level: 1, release: "701"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Sat Oct 25 20:51:49 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' ...
    B  Library 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' loaded
    B  Version of 'C:\SAP\NSP\SYS\exe\run\dbsdbslib.dll' is "700.08", patchlevel (0.7)
    B  New connection 0 created
    M sysno      02
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7010
    M patchlevel 0
    M patchno    7
    M intno      20020600
    M make:      multithreaded, ASCII, optimized
    M pid        5388
    M
    M  kernel runs with dp version 240(ext=110) (@(#) DPLIB-INT-VERSION-240)
    M  length of sys_adm_ext is 364 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 5388) [dpxxdisp.c   1319]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Sat Oct 25 20:51:50 2008
    M  DpShMCreate: sizeof(wp_adm)          8232     (1176)
    M  DpShMCreate: sizeof(tm_adm)          3786880     (18840)
    M  DpShMCreate: sizeof(wp_ca_adm)          1280     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     1200     (60)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    M  DpShMCreate: sizeof(comm_adm)          528048     (1048)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1296)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 04CA0040, size: 4389744)
    M  DpShMCreate: allocated sys_adm at 04CA0040
    M  DpShMCreate: allocated wp_adm at 04CA1BF8
    M  DpShMCreate: allocated tm_adm_list at 04CA3C20
    M  DpShMCreate: allocated tm_adm at 04CA3C50
    M  DpShMCreate: allocated wp_ca_adm at 050404D0
    M  DpShMCreate: allocated appc_ca_adm at 050409D0
    M  DpShMCreate: allocated comm_adm at 05040E80
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 050C1D30
    M  DpShMCreate: allocated gw_adm at 050C1D70
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 050C1DA0
    M  DpShMCreate: allocated wall_adm at 050C1DA8
    M  rdisp/queue_size_check_value :  -> off
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Sat Oct 25 20:51:52 2008
    M  ThInit: running on host 4FIL41430
    M  calling db_connect ...

    C  DBSDBSLIB : version 700.08, patch 0.007 (Make PL 0.7)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.007) Support DB-Type 'SAP DB' by UPDSTAT (note 1225668)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC SDK Version : SQLDBC.H  7.6.0    BUILD 002-121-083-965
    C  SQLDBC Library Version : libSQLDBC 7.6.4    BUILD 014-123-188-347
    C  SQLDBC client runtime is MaxDB 7.6.4.014 CL 188347
    C  SQLDBC supports new DECIMAL interface : 0
    C  SQLDBC supports VARIABLE INPUT data   : 1
    C  SQLDBC supports keepAlive indicator   : 0
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...
    C  *** ERROR => Connect to database failed, rc = -10757 (XUSER error (the USERKEY is unknown))
    [dbsdbsql.cpp 113]
    C  Try to connect (SQLOPT) on connection 0 ...
    C  *** ERROR => Connect to database failed, rc = -10709 (Connection failed (RTE:Database name is missing))
    [dbsdbsql.cpp 137]
    B  ***LOG BV3=> severe db error -10709    ; work process is stopped [dbsh#1 @ 1199] [dbsh    1199 ]
    B  ***LOG BY2=> sql error -10709 performing CON [dblink#1 @ 431] [dblink  0431 ]
    B  ***LOG BY0=> Connection failed (RTE:Database name is missing) [dblink#1 @ 431] [dblink  0431 ]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1440]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10557]

    M  Info for wp 0

    M    pid = 5388
    M    severity = 0
    M    status = 0
    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server 4FIL41430_NSP_00 on host 4FIL41430 (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Sat Oct 25 20:51:52 2008
    M  *  RELEASE     701
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10777
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   724]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  261]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 5388) [dpnttool.c   334]

  • Intalling BO front end tools on top of SAP BW (trial version).

    Hi All,
    I currently work on SAP BI and SAP Enterprise Portal projects.  I am looking at installing BO Front end tools on top of SAP BW (just a trial version though).  
    Does anybody have the links where I can download this software?  Also I have played about with Excelsious which appears to be the new version of analyzer.  What is the new version of Web Application Designer (Pioneer??)  Is it possible to integrate web templates created with BO into the SAP Enterprise portal? Is there any guides which explains how to create simple dashboards with BO front end tools and integarte them into the portal?
    I have a found some decent blogs already and am currently attempting to install BO onto my laptop.
    Any help appreciated.
    Thanks,
    Nick.

    Hello Nick,
    yes you can implement BO Reports/Dashobard into the Enterprise Portal in some way. Its a bit tricky and here are some usefull guides you may have a look into.
    Creating links to reports which you can integrate into your sap portal:
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_url_reporting_opendocument_en.pdf
    Xcelsius 2008 User Guide:
    http://help.sap.com/businessobject/product_guides/xcelsius2008/en/Xcelsius2008_user_guide_en.pdf
    Crystal Reports 2008 User Guide:
    http://help.sap.com/businessobject/product_guides/cr2008V1/en/xi3-1_cr_usergde_en.pdf
    Trail Versions:
    SAP Crystal Solutions Downloads
    You may also check the installation guide for the SAP Integration Kit from the SAP Service Marketplace (You need a S-User to login) htto://service.sap.com
    Regards
    -Seb.

  • What are the different options for implementing web security?

    Hi,
    Right now I am working on an internet website. We are using JSP for presentation and running Weblogic Application Server. I want to know different options for implementing website security. One of the options that I am aware of is to use LDAP. But we donot want to go and buy a LDAP Directory Server now. So I would really appreciate if somebody could let me know my choices here.
    Thanks in advance.

    Hi,
    If you are working on a Windows 2000 platform, the most obvious choice would be Active Directory Server as this is shipped free with Server 2000. It is LDAP compliant, although does have a few differences that set it apart from the other X500 standard based solutions which I will mention in a moment. Details on these differences can be found at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnactdir/html/msdn_activedirvsnds.asp
    Other options are openldap, an open source implementation of an ldap server or iPlanet's Directory Server. If you are initially doing an evaluation, a trial version is available of the iPlanet software and can be downloaded from their site. I found this particularly easy to get to grips with and their is excellent documentation available. There is also an offering from Novell, but I have no experience of this.
    Hope this helps.
    Jon

  • SAP Netweaver ABAP Trial - Running but Dialog Queue standstill

    Dear all,
    since today morning I am having troubles with the SAP Netweaver ABAP Trial version which has run now for over 6 months without any issues. The issues appeared suddenly and I didn't change anything to configuration / network. I am going through the forum now since a couple of hours and I have checked the following. I have read that the most common error is, that the log is full. Anyhow I have checked the log files.
    1.) Logfiles: I can't see anything in the log file saying that something is wrong. Please find enclosed the log files DEV_DISP, DEV_W0 and DEV_MS:
    DEV_DISP:
    trc file: "dev_disp", trc level: 1, release: "720"
    sysno      00
    sid        NSP
    systemid   562 (PC with Windows NT)
    relno      7200
    patchlevel 0
    patchno    201
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    \\mwsrvsap\sapmnt\NSP\SYS\profile\NSP_DVEBMGS00_mwsrvsap
    pid        3112
    Sun Sep 07 12:04:00 2014
    kernel runs with dp version 133000(ext=118000) (@(#) DPLIB-INT-VERSION-133000-UC)
    length of sys_adm_ext is 588 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3112) [dpxxdisp.c   1315]
      shared lib "dw_xml.dll" version 201 successfully loaded
      shared lib "dw_xtc.dll" version 201 successfully loaded
      shared lib "dw_stl.dll" version 201 successfully loaded
      shared lib "dw_gui.dll" version 201 successfully loaded
      shared lib "dw_mdm.dll" version 201 successfully loaded
      shared lib "dw_rndrt.dll" version 201 successfully loaded
      shared lib "dw_abp.dll" version 201 successfully loaded
      shared lib "dw_sym.dll" version 201 successfully loaded
      shared lib "dw_aci.dll" version 201 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    rdisp/dynamic_wp_check : 1
    rdisp/calculateLoadAverage : 1
    Sun Sep 07 12:04:04 2014
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  6423]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    DpIPCInit2: start server >mwsrvsap_NSP_00                         <
    DpShMCreate: sizeof(wp_adm) 31696 (2264)
    DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/584064/584080
    DpShMCreate: sizeof(comm_adm) 584080 (1144)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (296)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (80)
    DpShMCreate: sizeof(vmc_adm) 0 (2152)
    DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: sizeof(j2ee_adm) 3952
    DpShMCreate: SHM_DP_ADM_KEY (addr: 00000000079D0050, size: 6363600)
    DpShMCreate: allocated sys_adm at 00000000079D0060
    DpShMCreate: allocated wp_adm_list at 00000000079D3070
    DpShMCreate: allocated wp_adm at 00000000079D3260
    DpShMCreate: allocated tm_adm_list at 00000000079DAE40
    DpShMCreate: allocated tm_adm at 00000000079DAE90
    DpShMCreate: allocated wp_ca_adm at 0000000007F1DDA0
    DpShMCreate: allocated appc_ca_adm at 0000000007F2D7B0
    DpShMCreate: allocated comm_adm at 0000000007F3D1C0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0000000007FCBB60
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated gw_adm at 0000000007FCBC10
    DpShMCreate: allocated j2ee_adm at 0000000007FCBC50
    DpShMCreate: allocated ca_info at 0000000007FCCBD0
    DpShMCreate: allocated wall_adm at 0000000007FCCC60
    Sun Sep 07 12:04:05 2014
    DpCommAttachTable: attached comm table (header=0000000007F3D1C0/ft=0000000007F3D1D0)
    DpSysAdmIntInit: initialize sys_adm
    rdisp/test_roll : roll strategy is DP_NORMAL_ROLL
    dia token check not active (6 token)
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    DpRqQInit: keep protect_queue / slots_per_queue 0 / 2001 in sys_adm
    rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> EsILock: use spinlock for locking
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 8195MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 8196MB
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 2048 blocks reserved for free list.
    ES initialized.
    mm.dump: set maximum dump mem to 96 MB
    DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    MPI: dynamic quotas disabled.
    MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 4.0.1 4.0.1 5.1) [dpxxdisp.c   1701]
    ***LOG Q0K=> DpMsAttach, mscon ( mwsrvsap) [dpxxdisp.c   12467]
    MBUF state LOADING
    DpStartStopMsg: send start message (myname is >mwsrvsap_NSP_00                         <)
    DpStartStopMsg: start msg sent
    CCMS uses Shared Memory Key 73 for monitoring.
    CCMS: Initalized shared memory of size 60000000 for monitoring segment.
    CCMS: Checking Downtime Configuration of Monitoring Segment.
    CCMS: AlMsUpload called by wp 1024.
    Sun Sep 07 12:04:06 2014
    CCMS: AlMsUpload successful for C:\usr\sap\NSP\DVEBMGS00\log\ALMTTREE.DAT (657 MTEs).
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1296]
    MBUF state ACTIVE
    DpWpBlksLow: max wp blocks in queue is 800 (80 %)
    MBUF component UP
    DpMsgProcess: 1 server in MBUF
    DpAppcBlksLow: max appc blocks in queue is 500 (50 %)
    DEV_W0:
    trc file: "dev_w0", trc level: 1, release: "720"
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      00
    M sid        NSP
    M systemid   562 (PC with Windows NT)
    M relno      7200
    M patchlevel 0
    M patchno    201
    M intno      20020600
    M make       multithreaded, Unicode, 64 bit, optimized
    M profile    \\mwsrvsap\sapmnt\NSP\SYS\profile\NSP_DVEBMGS00_mwsrvsap
    M pid        3208
    M
    M  kernel runs with dp version 133000(ext=118000) (@(#) DPLIB-INT-VERSION-133000-UC)
    M  length of sys_adm_ext is 588 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workp. 0 3208) [dpxxdisp.c   1377]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpIPCInit2: read dp-profile-values from sys_adm_ext
    M  DpShMCreate: sizeof(wp_adm) 31696 (2264)
    M  DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    M  DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    M  DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/584064/584080
    M  DpShMCreate: sizeof(comm_adm) 584080 (1144)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm) 0 (296)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm) 0 (80)
    M  DpShMCreate: sizeof(vmc_adm) 0 (2152)
    M  DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)
    M  DpShMCreate: sizeof(gw_adm) 48
    M  DpShMCreate: sizeof(j2ee_adm) 3952
    M  DpShMCreate: SHM_DP_ADM_KEY (addr: 00000000100C0050, size: 6363600)
    M  DpShMCreate: allocated sys_adm at 00000000100C0060
    M  DpShMCreate: allocated wp_adm_list at 00000000100C3070
    M  DpShMCreate: allocated wp_adm at 00000000100C3260
    M  DpShMCreate: allocated tm_adm_list at 00000000100CAE40
    M  DpShMCreate: allocated tm_adm at 00000000100CAE90
    M  DpShMCreate: allocated wp_ca_adm at 000000001060DDA0
    M  DpShMCreate: allocated appc_ca_adm at 000000001061D7B0
    M  DpShMCreate: allocated comm_adm at 000000001062D1C0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 00000000106BBB60
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated gw_adm at 00000000106BBC10
    M  DpShMCreate: allocated j2ee_adm at 00000000106BBC50
    M  DpShMCreate: allocated ca_info at 00000000106BCBD0
    M  DpShMCreate: allocated wall_adm at 00000000106BCC60
    M  DpCommAttachTable: attached comm table (header=000000001062D1C0/ft=000000001062D1D0)
    M  DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    M
    M Sun Sep 07 12:04:06 2014
    M  rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  <ES> EsILock: use spinlock for locking
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    M  DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    M  ThStart: taskhandler started
    M  ThInit: initializing DIA work process W0
    M
    M Sun Sep 07 12:04:08 2014
    M  ThInit: running on host mwsrvsap
    M
    M Sun Sep 07 12:04:10 2014
    M  calling db_connect ...
    B  Loading DB library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' ...
    B  Library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' loaded
    B  Version of 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' is "720.00", patchlevel (0.201)
    C
    C  DBSDBSLIB : version 720.00, patch 0.201 (Make PL 0.201)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.201) Take care of warnings during database connect (note 1600066)
    C    (0.117) Define a primary key on the temp tables for R3szchk (note 1606260)
    C    (0.114) Support of MaxDB 7.8 and 7.9 (note 1653058)
    C    (0.103) Close all lob locators at end of the transaction (note 1626591)
    C    (0.101) Fix for unknown table __TABLE_SIZES_ (R3szchk) (note 1619504)
    C    (0.098) Use filesystem counter for R3szchk (note 1606260)
    C    (0.092) Secondary connection to HANA (note 1481256)
    C    (0.089) UPDSTAT with SAPSYSTEMNAME longer as 3 characters (note 1584921)
    C    (0.081) No UPSERT on WBCROSSGT (note 1521468)
    C    (0.080) New feature batch streaming (note 1340617)
    C
    C
    C  Loading SQLDBC client runtime ...
    C  SQLDBC Module  : C:\sapdb\clients\NSP\pgm\libSQLDBC77.dll
    C  SQLDBC SDK     : SQLDBC.H  7.9.7    BUILD 010-123-243-190
    C  SQLDBC Runtime : libSQLDBC 7.9.7    BUILD 010-123-243-190
    C  SQLDBC client runtime is MaxDB 7.9.7.010 CL 243190
    C  SQLDBC supports new DECIMAL interface : 1
    C  SQLDBC supports VARIABLE INPUT data   : 1
    C  SQLDBC supports VARIABLE OUTPUT data  : 1
    C  SQLDBC supports Multiple Streams      : 1
    C  SQLDBC supports LOB LOCATOR KEEPALIVE : 1
    C  SQLDBC supports LOB LOCATOR COPY      : 1
    C  SQLDBC supports BULK SELECT with LOBS : 1
    C  SQLDBC supports BATCH STREAM          : 1
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...
    C  Attach to SAP DB : Kernel    7.9.07   Build 010-123-243-190
    C  Database release is SAP DB 7.9.07.010
    C  INFO : Database 'NSP' instance is running on 'mwsrvsap'
    C  DB supports UPSERT SQL syntax : 1
    C  DB supports new EXPAND syntax : 1
    C  DB supports LOB locators      : 1
    C  DB uses MVCC support          : 0
    C  DB max. input host variables  : 2000
    C  DB max. statement length      : 65535
    C  UPSERT is disabled for : WBCROSSGT
    C  INFO : SAP DB Packet_Size = 131072
    C  INFO : SAP DB Min_Reply_Size = 4096
    C  INFO : SAP DB Comm_Size = 126976
    C  INFO : DBSL buffer size = 126976
    C  INFO : SAP DB MaxLocks = 300000
    C  INFO : Connect to DB as 'SAPNSP'
    C  Command info enabled
    C  Now I'm connected to MaxDB
    C  00: mwsrvsap-NSP, since=20140907120410, ABAP= <unknown> (0)
    B  Connection 0 opened (DBSL handle 0)
    C  INFO : SAP RELEASE (DB) = 731
    M  ThInit: db_connect o.k.
    M
    M Sun Sep 07 12:04:11 2014
    M  ICT: exclude compression: *.zip,*.rar,*.arj,*.z,*.gz,*.tar,*.lzh,*.cab,*.hqx,*.ace,*.jar,*.ear,*.war,*.css,*.pdf,*.gzip,*.uue,*.bz2,*.iso,*.sda,*.sar,*.gif,*.png,*.swc,*.swf
    DEV_MS:
    trc file: "dev_ms", trc level: 1, release: "720"
    [Thr 3092] Sun Sep 07 12:03:56 2014
    [Thr 3092] ms/http_max_clients = 500 -> 500
    [Thr 3092] MsSSetTrcLog: trc logging active, max size = 52428800 bytes
    systemid   562 (PC with Windows NT)
    relno      7200
    patchlevel 0
    patchno    101
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    pid        3088
    [Thr 3092] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 3088) [msxxserv.c   2278]
    [Thr 3092] load acl file = C:\usr\sap\NSP\SYS\global\ms_acl_info.DAT
    [Thr 3092] MsGetOwnIpAddr: my host addresses are :
    [Thr 3092]   1 : [10.0.0.225] mwsrvsap.local (HOSTNAME)
    [Thr 3092]   2 : [127.0.0.1] mwsrvsap (LOCALHOST)
    [Thr 3092]   3 : [10.10.0.10] mwsrvsap (NILIST)
    [Thr 3092] MsHttpInit: full qualified hostname = mwsrvsap
    [Thr 3092] HTTP logging is switch off
    [Thr 3092] set HTTP state to LISTEN
    [Thr 3092] *** HTTP port 8100 state LISTEN ***
    [Thr 3092] *** I listen to internal port 3900 (3900) ***
    [Thr 3092] *** HTTP port 8100 state LISTEN ***
    [Thr 3092] CUSTOMER KEY: >V1901974459<
    [Thr 3092] build version=720.2011.10.26
    2.) So I installed the SAP MaxDB Database Manager in order to check the logs and do an archiving. But here seems to be the issue - I can not see the NSP Database instance (see attached screenshot). But how can this be? The log file say that the db connection is ok?
    3.) What is really strange to me is the Syslog in the management console --> see log3.png. Why does it say work process in reconnect status?
    Does anybody have an idea how to solve this issue? Help is really appreciated and points will be rewarded.
    Best regards
    Maik

    Thank you first of all for your answer.
    I tried to do so, but in the MaxDB Database Manager I can add the db instance, but I am not able to connect to it (service is running).

Maybe you are looking for

  • Error in File Receiver Channel

    Dear All, I am Getting below error in File Receiver Channel. Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error when getting an FTP connection from connection pool: com.sap.aii.af.service.util.concurrent.ResourcePo

  • Dynamic forms that keep changes?

    I am trying to get a dynamic form built that will keep the changes that are made when the file is saved and then opened up again. For example If I have 6 sub forms to begin with and I delete 3 of them and text to others (some of them expand) and save

  • Catching Exception of a function in a procedure

    Hi, I have a procedure named P calling a function named F. If function F returns no value.. I want to catch that exception in the procedure/function itself and display to the user that the function named F has returned without any values. Thanks in a

  • Can a virus be transferred from an iphone 4s and infect a PC?

    Been reading a couple of article recently and was hoping to get a little more clarity on the situation.

  • Sql query hangs..

    Hi, the below query is getting hanged repetedly although the update is happening but its very slow(taking more than 12 hrs ) Please tell the issue.the indexes are prope and table Test1 is going for full table scan. update Test1 t1 set t1.A = select t