Messagebox FORM_LOAD in 2004

Hi,
I know SBO 2004 is no longer supported, but one customer is still running 2004. Before upgrading to the next version its required to cancel some (10.000+) journal entries. For this reason I developed a little tool which does the required mouseclicks via UI-API.
My problem is to catch the messagebox form load event from the "Create Reversal from transaction" popup. In 2005 everything works... but in 2004 I am not able to handle the event.
I am using following code:
The m_MsgBoxEvent is true if the event should be triggered. In my case the bool is set to true.
private void UI_ItemEvent(string FormUID, ref SAPbouiCOM.ItemEvent pVal, out bool BubbleEvent)
            if (pVal.EventType == SAPbouiCOM.BoEventTypes.et_FORM_LOAD &&
                pVal.FormType == 0 &&
                pVal.BeforeAction)
                if (m_MsgBoxEvent)
                    this.OnMessageBoxShow(FormUID, ref pVal, out BubbleEvent);
            else
                                this.OnAnyItem(FormUID, ref pVal, out BubbleEvent);
            BubbleEvent = true;

Hi Sebastion,
In 2004 the before formLoad event is not sent to the addon. That's why your code is never executed.
Regards
Ad

Similar Messages

  • MessageBox on Adobe Form in SAP MSS PCR for SAP ECC 5.0

    Hello,
    I have a question regarding the behavior of Adobe form messagebox in SAP HR MSS PCR (Personal Change Request)
    I tried to test how the messagebox looks like, and so I created a PCR scenario with an Adobe form. This form contains a datetime field. I added the script "xfd.host.messageBox("this is message", "this is title") to the "exit" event of the datetime field. Then I did all the necessary steps so that this PCR is displayed in the Portal.
    Now at the runtime, when I select a date value from the datetime field, the messagebox is displayed, BUT within an empty Adobe Reader page. It is not displayed on the top of my adobe form.
    But the strange thing is that when I use tab key to navigate through the datetime field, the messagebox is displayed on the top of my adobe form, without the empty Adobe Reader page.
    I also tried my script with several different event types, including "Change", and "Validate", it behaves the same way. But when I tried it with the event type "MouseExit", no empty Adobe reader page is shown up at all (of course, this is not the right event type for me)
    The environment is SAP ECC 5.0, SAP MSS business package for ECC 5.0, SAP Portal 7.0 (NW 2004s), Adobe LiveCycle 7.1, and Adobe Reader 8.1.1
    Has anyone experienced this? I'd really appreciate any comments and suggestions. Thanks in advance.
    Best regards,
    Harrison

    Antony,
    The Adobe Reader version is 8.1.1
    Just wondering if you used messageBox in interactive forms with ISR framework, and it worked well for you?
    Thanks.
    Harrison

  • MessageBox on Adobe Form in MSS PCR for ECC 5.0

    Hello,
    I have a question regarding the behavior of Adobe form messagebox in MSS PCR.
    I tried to test how the messagebox looks like, and so I created a PCR scenario with an Adobe form. This form contains a datetime field. I added the script "xfd.host.messageBox("this is message", "this is title") to the "exit" event of the datetime field. Then I did all the necessary steps so that this PCR is displayed in the Portal.
    Now at the runtime, when I select a date value from the datetime field, the messagebox is displayed, BUT within an empty Adobe Reader page. It is not displayed on the top of my adobe form.
    But the strange thing is that when I use tab key to navigate through the datetime field, the messagebox is displayed on the top of my adobe form, without the empty Adobe Reader page.
    I also tried my script with several different event types, including "Change", and "Validate", it behaves the same way. But when I tried it with the event type "MouseExit", no empty Adobe reader page is shown up at all (of course, this is not the right event type for me)
    The environment is ECC 5.0, MSS business package for ECC 5.0, SAP Portal 7.0 (NW 2004s), Adobe LiveCycle 7.1
    Has anyone experienced this? I'd really appreciate any comments and suggestions. Thanks in advance.
    Best regards,
    Harrison

    Antony,
    The Adobe Reader version is 8.1.1
    Just wondering if you used messageBox in interactive forms with ISR framework, and it worked well for you?
    Thanks.
    Harrison

  • 2004 Registering Add On Connection Timed Out

    Hi I am having a bit of trouble getting an addon to register and load successfully in SBO 2004...
    I can get the Add On to Install properly, however when I load it, I get the error :
    Add-on connection timed out
    This occurs even though the add on has successfully loaded in the background and is running.  In the Add On Manager the status of the add on is set to Failed...
    I tried setting the AddonIdentifier string before connecting in my code using the Add-on Identifier Generator (Development and Implementation strings but these did not help)
    The Helloworld sample was a good help getting thus far, but even when try to install that as an add it disconnects straight away.
    Any help much appreciated!

    Hi Frank,
    I think the problem was the fact that I was hardcoding the connection string. After I changed it to accept it through the command arguments that the SAP application passes in it seems to connect fine - below is the procedure that I use to connect, I have left the commented lines in to show you how i was trying to connect.  I am still unsure as to when to use the AddonIdentifier property however.
    I have the add-on working 85% well now, but have posted again at SAP Business One SDK any input on this post would be very appreciated!
    Thanks,
    Daniel
              private bool SingleSignOn()
                   SAPbouiCOM.SboGuiApi objGui = new SAPbouiCOM.SboGuiApi();
                   objCompany = new SAPbobsCOM.Company();
                   string strCookie;
                   string strConnection;
                   long lngConnectResult;
                   try
                        //objGui.AddonIdentifier = "4CC8B8ACE0273A61489738C94047855DE8768CDD37F64D4F11E82759A542BD515D5A6E4F50A19B939FBB0FA844FA35C7B604E771";
                        //objGui.Connect("0030002C0030002C00530041005000420044005F00440061007400650076002C0050004C006F006D0056004900490056");
                        objGui.Connect(Environment.GetCommandLineArgs().GetValue(1).ToString());
                        objApplication = objGui.GetApplication(-1);
                        strCookie = objCompany.GetContextCookie();
                        strConnection = objApplication.Company.GetConnectionContext(strCookie);
                        if(objCompany.Connected)
                             objCompany.Disconnect();
                        lngConnectResult = objCompany.SetSboLoginContext(strConnection);
                        if(lngConnectResult != 0)
                             System.Windows.Forms.MessageBox.Show("Connection failed, make sure SAP Business One is running and you are logged into a Company");
                             return false;
                        lngConnectResult = objCompany.Connect();
                   catch
                        System.Windows.Forms.MessageBox.Show("Connection failed, make sure SAP Business One is running and you are logged into a Company");
                        return false;
                   return true;

  • Get MessageBox parent form

    Hi together,
    for my actual solution I need to fill different textfields etc. in a form e.g. invoices.
    To commit the invoice my program performs a mouseclick on the OK-button.
    Now a messagebox comes up to finally commit the transaction. My program catches the FORM_LOAD - Event of the messagebox, so that I am able to click Yes or No. My problem is, that the event also catches the FORM_LOAD event of each other messagebox.
    How can I get the form or the item which shows the messagebox? With this information I could catch the FORM_LOAD event especially for the situation I need it.
    Thanks a lot!
    Sebastian

    Welll thats the problem...
    Here is something you could do (have not tried this but might work)
    - Add another gobal bool
    - When you catch the first global bool + the formload of the first messagebox add a userdatasource to the first messagebox.. Then catch messagebox events that lead to the second messagebox, but only if your added userdatasource exist (= knowning that it is the first messagebox) and set the second global variable... that way you know that the parent of the second messagebox was the first messgebox [Hmm that last sentence became rather confusing, but hope it is understandable :-)]

  • Add on 6.5 = 2004

    Hello All,
    I would like to know if someone have trouble to run Add On on SAP 2004 ?
    I have a litlle Add On. It show a messagebox if the partenaire is "On Hold".
    The Add On works a little time and If I go at the end of BP record and I move to the first record the add on freeze. SBO tells me that the Add has been Disconnected and ask me if i want to :
    - restart the add on
    - loggoff current company
    - continue without the add on
    I can just tell SBO to continue without the Add On.
    If I go on Administration / Add Ons / Add On administration and restart the Add On manually it works.
    But I have the same trouble it freeze again.
    Already encountered a similar problem ?
    Tks for your answer
    Laetitia
    Ps: sorry for my english

    Hi,
    I did not encounter this problem until now, but I heared from colleagues that someone else did... and that it did vanish after uninstalling + re-installing "UI API" (installed with SAP Business One client installation).
    Someone else compiled his Add-On on another PC, created the installer + ard file - then the Add-On worked properly on the test PC; unfortunately he did not check in detail what the differences were, if any.
    Maybe you should report your problem in a message on SAP Service Marketplace so that colleagues from support can find out what is wrong; maybe they know about other partners facing the same issue.
    Sorry,
    Frank

  • Stop displaying system messagebox

    Hi,
    Does any one know how to prevent B1 from showing a system messagebox. I want to change the quantity in the Reorder Recommendation Report matrix without the system asking me if I want to update the price. I have written some SDK that applies all my required cell data (100+ rows) but for every row that is changed I get this messagebox.
    Help!!!!!!!!!
    I can't expect my customer to physically confirm 100's of system messages for what is supposed to be an automated process.
    Many thanks...

    Hello John,
    There's no specific object for disabling system messages. You will have to catch the event when the system message comes up and to simulate a click on it.
    System Messages have Formtype = 0 and are loaded of course with a FORM_LOAD event. You can use EventSpy to check this out.
    Then it will be transparent for the user.
    Here some code to give you just a suggestion of how it might be.
    If pVal.BeforeAction = False And pVal.FormType = 0 Then
    If pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_LOAD = True Then
    Dim oMessageForm As SAPbouiCOM.Form
    oMessageForm = B1_Application.Forms.Item(pVal.FormUID)
    oMessageForm.Items.Item("1").Click()
    End If
    End If
    HTH,
    Felipe

  • Limitations of upgrading from ERP 2004 to 2005

    We are evaluation completing an upgrade from ERP 2004 to 2005. However, we found a limitation in note 879335 regarding upgrading the portal.
    We have an Enterprise Portal instance that is separate from the SAP ECC J2EE add-in. The ESS components including XSS run on the J2EE add-in.
    According to this note, we cannot upgrade the XSS component on the J2EE add-in because it
    is not running on EP. Does this mean we need to undeploy the XSS components and then upgrade the J2EE and then install the XSS component? or Do we need to import the XSS component on EP and then
    upgrade?
    Why is this a limitation?

    I have isolated the issue further. In the following code fragment the event is being fired twice the first time and never again:
              If pVal.FormType = 133 And pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_LOAD Then
                   '// get the event sending form
                   'SBO_Application.MessageBox("Hello world")
                   oForm = SBO_Application.Forms.GetFormByTypeAndCount(pVal.FormType, pVal.FormTypeCount)
                   oNewItem = oForm.Items.Add("Button1", SAPbouiCOM.BoFormItemTypes.it_BUTTON)
                   oNewItem.Left = 285
                   oNewItem.Top = 382
                   oNewItem.Width = 100
                   oNewItem.Height = 19
                   oNewItem.FromPane = 0
                   oNewItem.ToPane = 1
                   oButton = oNewItem.Specific
                   oButton.Caption = "New Button"
              End If
    End Sub
    The code is an adaptation of the SDK VB.NET sample ('11.SystemFormManipulation'), which is supplied with the latest version of the SDK installation.
    The big question is why is the event being fired twice.

  • Struts/UIX and a messagebox

    Hi,
    Who can I use
    <messageBox automatic="true" dataName="???" dataNamespace="???"/>
    to display a ActionErrors in the requestScope.

    Hi,
    Thank you very much for your help but I reded before.
    So let me tell you what I did:
    I had LogonAction extends DataAction with a method:
    public void prepareModel(DataActionContext dac)
    String username = ((LogonBean)dac.getActionForm()).getUser();
    String password = ((LogonBean)dac.getActionForm()).getPassword();
    if(!"ghassan".equals(username) && !"123".equals(password))
    dac.getActionErrors().add(ActionErrors.GLOBAL_ERROR, new ActionError("badnamepassword"));
    this.saveErrors(dac.getHttpServletRequest(),dac.getActionErrors());
    dac.setActionForward("relogon");
    and I had a UIX page :
    <?xml version="1.0" encoding="UTF-8"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40"
    xmlns:struts="http://xmlns.oracle.com/uix/struts"
    expressionLanguage="el">
    <content>
    <struts:dataScope xmlns="http://xmlns.oracle.com/uix/ui" xmlns:data="http://xmlns.oracle.com/uix/ui">
    <provider>
    <!-- Add DataProviders (<data> elements) here -->
    </provider>
    <contents>
    <document>
    <metaContainer>
    <!-- Set the page title -->
    <head title=""/>
    </metaContainer>
    <contents>
    <body>
    <contents>
    <form destination="logon.do" name="logon" method="POST">
    <contents>
    <pageLayout>
    <about/>
    <copyright>
    <text text="Copyright 1989 - 2004 Accad institute"/>
    </copyright>
    <corporateBranding>
    <image source="images/otn_logo.gif"/>
    </corporateBranding>
    <end/>
    <globalButtons/>
    <pageButtons>
    <submitButton text="Enter"/>
    </pageButtons>
    <pageHeader>
    <header text="System Logon" icon="images/login_pagetitle.gif" autoflip="true">
    <contents>
    <rawText text="Use your user name and the password to enter the system"/>
    </contents>
    </header>
    </pageHeader>
    <privacy>
    </privacy>
    <productBranding/>
    <start>
    <sideBar>
    <contents>
    <messageBox automatic="true"/>
    </contents>
    </sideBar>
    </start>
    <tabs/>
    <contents>
    <labeledFieldLayout>
    <contents>
    <messageTextInput name="username" promptAndAccessKey="&amp;User Name" required="yes"/>
    <messageTextInput name="password" promptAndAccessKey="&amp;Password" tip="case sensitive" required="yes"/>
    </contents>
    </labeledFieldLayout>
    </contents>
    </pageLayout>
    </contents>
    </form>
    </contents>
    </body>
    </contents>
    </document>
    </contents>
    </struts:dataScope>
    </content>
    <handlers>
    <!-- Add EventHandlers (<event> elements) here -->
    </handlers>
    </page>
    and when I pressed on the submitButton the page redisplaied with a messagebox have title 'Error'.
    So where is the error here
    thank you very much for any help.

  • What is new in Broadcaster 2004s

    Anyone have a simple overview with some details why we should change from reporting agent to Broadcaster (we are on 3.5.3

    Reporting Agent will be only supported in the 3.X runtime in 2004s.
    All the new functionalities like Bursting, PDF etc will be implemented in Broadcaster only.
    See attached documentation for new functionalities in Broadcaster.
    https://websmp203.sap-ag.de/~sapdownload/011000358700004219392005E/ERQA_INFOBROADCASTING.PDF

  • I need to buy an External Portable HD 500GB for my iMac OSX 10.4.11 (PowerPc 2004). Can anybody please tell me a few Names/Products that are compatible? Please if you can, just tell me some product name, instead what generical characteristics it needs :s

    Hello
    I have been reading forums and forums and after days of research l gave up.
    Unfortunately it seems that nobody has provided a name of a brand yet.
    Although the effort is very admirable, l am still at the point of finding myself back at square one, with an unanswered question:
    Which portable external HD 500GB should l purchase for my iMac 10.4.11 (Power PC 2004)?
    I know there are many different ones, but l hope at least somebody can suggest one.
    A clear Name of a Product that matches the compatibility.
    I am not an expert of computer and so all the theoretical explanations of technical characteristics mean next to nothing to me :(
    I hope that someone kind enough to halo me out with this will be able to let me know.
    My most greatefull thank you to you all in advance :)
    And1001

    Try http://eshop.macsales.com/shop/hard-drives/External-Enclosures/
    If you have question about any items on their page, MacSales has an extremely god technical support staff.
    Allan

  • I need to load an InfoCube from an InfoSet - Is this possible in 2004s?

    Greetings,
    <b>This question looks long, but it's really not.  I'm just trying to give a lot of detail about the screens that I am seeing.  Anyway, here goes:</b>
    I am in 2004s.  I want to load an InfoCube from an InfoSet.  I know that an InfoSet is just a view and does not physically store data, but recent documentation published by SAP seems to indicate that this is
    possible in 2004s (There is a document called "Developer Guide - 2004s" that says the following:
    "InfoSets are an additional, easily manageable data source for generic data extraction.  They allow you to use logical databases of all SAP applications, table
    joins, and further datasets as data sources for BI".  ) 
    So... that led me to believe an InfoSet could load an InfoCube.  In other words, the InfoSet would be the source and the InfoCube would be the target.  I am in RSA1, and I right-click on the cube that I want to be the target.  I select the "Create Transformation" option from the context menu.  In the "Create Transformation" screen that pops up, I enter "InfoCube" in the target object type field and the name of the InfoCube in the target name field.  I enter "InfoSet" in the source object type field and the name of the InfoSet in the source name field. 
    I get a pop-up that says "Cannot generate proposal".  I click the green arrow, and then I get an error message
    that says "Transformation does not exist (see long text)". 
    When I click on the error message, I get the following information in the Performance Assistant:
    "Transformation does not exist (see long text)
    Message no. RSTRAN010
    Diagnosis
    The transformation specified by transformation ID , source  and target , does not exist.
    System Response
    The system terminates processing."
    Any help would be much appreciated!  It seems like it must be possible to use an InfoSet as a source in a data load, or else it would not be an option in the "Create Transformation" screen.  ????
    I've also tried right-clicking on the cube and selecting "Create Data Transfer Process".  I enter the same information on this screen: the types and names of the source and target.  Then I get a pop-up that says "Source and target have not been linked with a transformationDo you want to generate a default transformation?".  There are two buttons I can click: one labeled "Yes" and one labeled "Abbrechen".  I choose "Yes", because I have no idea what "Abbrechen" means.
    Then I get the same pop-up from before: "Cannot generate proposal".  I hit the green arrow, and I'm back in the
    "Create Data Transfer Process" screen.  So... I'm stuck in an infinite loop of screens that I can't get out of. 
    If someone could help, I would be grateful!  THANK YOU VERY MUCH!

    Thank you so much, Ram!  I REALLY APPRECIATE YOUR HELP!
    I am wondering if it possible to manually create a node in RSA6 for the InfoSet.  I tried it by doing the following:
    I went to RSA6 and clicked on the white icon for "Create Node".  I then entered the number "8", followed  by the name of the InfoSet.  (I entered an "8", because all our DataSources seem to start with an "8".  I'm not sure why.) 
    The DataSource now shows up, but when I double-click on it, nothing happens.  When I select it in the hierarchy and then click the icons for "Display" or "Change" or "Check", I just get an error message that says, "You have not selected any DataSources."
    Also, do you know where I can get my hands on the white paper? 
    Thanks again!
    Regards,
    Sarah-Jane

  • Can I restore Office 2004 from Time machine backup

    Hi Guys,
    I have managed to delete office 2004 when I was trying to install office 2008 using a friend's copy. Office 2008 will not work for me as it needs online registration.
    I no longer have the office 2004 install disk. Is it possible to re-install office 2004 from my time machine backup. I can see it is available in the backup from before yesterday but not sure if I try to restore what will happen.
    Any advice appreciated.
    Thanks,
    Paul

    Hi PaulieHK,
    Open Finder on you original view desktop.
    No go to Application folder and select the Office 2004.
    NOW, select the Time Machine icon in the dock and it will bring you back in history.
    You can go back before you tried to install Office 2008.
    Select IN Time Machine the application Office 2004 and click on PUT BACK.
    Time machine will now put back the situation as it was before the installing Office 2008.
    When you see your original desktop again try to open Office 2004.
    Good luck ...
    Dimaxum

  • Dreamweaver MX 2004 - "An Unidentifed Error has occorred." - Please help!!

    Hi folks. I have scoured the internet for a fix to this problem. Most of the posts I read are unanswered or the solution does not work. I am hoping a guru reads mine and has the magic answer - I am ready to chuck the project altogether if I can't find a solution. Although I am not a newbie to simple page design, I have never really tackled data access (dynamic content) before, like I am about to. I am ready and willing to learn but this obstacle may hinder my interest if it is going to be this big a pain in the keester.
    Let's start with my system config:
    Windows XP Pro w/ SP3
    Dreamweaver MX 2004
    IIS 5.1 - configured with FTP support
    PHP 5.2.11
    MySQL 5.0 - For now I am using the Test DB that comes with MySQL. Using "root" account.
    I have verified that all is running properly to the best of my knowledge. Certainly Dreamweaver up until this issue has worked for years. I have not used DW for data access before on this machine but have successfully on others.
    IIS > Loads web content from http://localhost just fine. Including PHP test page. And IIS help stuff that comes pre-installed.
    MySQL > I can build DB's and Schemas just fine. I can even import data from external sources so I have to assume it's running fine.
    Dreamweaver > The site I am building has the following config:
    Local Info
    Site Name: medimj
    Local Root: C:\medimj *set to refresh
    Images: C:\medimj\images
    HTTP: blank
    Remote Info
    Access: Local/Network
    Remote Folder: C:\inetpub\wwwroot\medimj\       *set to refresh auto
    Testing Server
    Server Model: PHP MySQL
    This site contains: Dreamweaver MX Pages Only (default)
    Access: Local/Network
    Testing Server Folder: C:\indetpub\wwwroot\medimj\          *set to refresh auto
    URL Prefix: http://localhost/medimj
    <<<Everything else I believe is irrelevant to the topic and left to defaults>>>
    SO HERE IS WHAT IS HAPPENING:
    When I go to make a data connection (Step 4 under the Database tab of Applications section in DW), I click the "+" button and select "MySQL Connection". The dialogue window appears and I input:
    Connection Name: medimj
    MySql Server: localhost
    User Name: root
    Password: <password>
    I click "Select" button and get an error window that says "An Unidentified error has occurred." and I am taken back to the MySQL Connection dialogue box. I have tried adding http:, slashes, \medimj, IP address, and pipe name to the Server name to make the connection and none of it works. If I put a DB name and click "ok" the binding will appear but no table ever come into view. If I click on "Test" I get the same error.
    Here is the mysql area of the test.php. From what I see, I should be able to make a connection; but I'm not expert. Should I be seeing more information?:
    mysql
    MySQL Support
    enabled
    Active Persistent Links
    0
    Active Links
    0
    Client API version
    5.0.51a
    Directive
    Local Value
    Master Value
    mysql.allow_persistent
    On
    On
    mysql.connect_timeout
    60
    60
    mysql.default_host
    localhost
    localhost
    mysql.default_password
    no value
    no value
    mysql.default_port
    3306
    3306
    mysql.default_socket
    no value
    no value
    mysql.default_user
    no value
    no value
    mysql.max_links
    Unlimited
    Unlimited
    mysql.max_persistent
    Unlimited
    Unlimited
    mysql.trace_mode
    Off
    Off
    I just don't see what's wrong at this point. I really hope somebody here can help.
    I've been at this for 4 days and uninstalled and reinstalled everything to no avail. I hope I have given enough information for someone to make a suggestion that will help. I thank anyone for their time in advance.
    prdreamweaver

    I would like to share with everyone a fix for this problem. I wish I could say I found it here but I did not. After continuing to search the Internet, while eagerly awaiting an answer here, I stumbled upon the answer deep in a thread in the MySQL website forums.
    If someone should find this topic before the supposed Adobe fix, please do not waste your time with what Adobe suggests. It has been know cause more problems than help - as was the case with me. Applying their "fix" forced me to reinstall MySQL and a fresh version of PHP. I am also providing OS information and versions of all components I am using as well as settings within Dreamweaver. I cannot speak as to whether this fix transitions across other versions of Dreamweaver but it's worth looking at if yours does not match mine.
    NOTE: ALWAYS MAKE A RECORD OF WHAT YOU CHANGE. THIS IS BASIC TROUBLESHOOTING AND WILL MINIMIZE THE NEED TO REINSTALL IF THINGS GET WORSE. BEING ABLE TO REVERSE WHAT YOU'VE CHANGED IS IMPORTANT.
    System Info
    OS: Windows XP Pro w/ SP3 (patched to the hilt)
    IIS: 5.1 (installed from XP Pro CD - additional windows components)
    PHP: v5.2.11 (installer version)
    MySQL: v5.0.87 (installer version)
    Dreamweaver: MX 2004
    Install IIS, PHP, and MySQL per their individual instructions.
    IIS Tweaks
    Note: This tweak assumes you haven't already created your website virtual directory under IIS. If you have, you can delete it and follow these steps. You don't have to but I like this recommendation I found on another site as it tricks DW into thinking its attaching to an "outside" server. You'll see what I mean when you see the DW confg options later in this topic.
    1. Create a folder under c:\inetpub\wwwroot that matches the local folder in DW for the site you are designing. Make sure they are spelled the same. If you have pages and images already in your local folder for DW, you don't have to re-create them here. You can sync them to the "server" much like you would when you FTP your pages up to a live server. Just make sure the root folders are named the same.
    2. Right click your localhost site select "properties". Click the "Home Directory" tab. Click on the "Configuration" button. Under "Application Mappings", click the "Add" button. A new dialogue box appears > In the "Executable" area, browse to the root PHP folder and select file "php5isapi.dll" and click ok to return to the dialogue box. In the "Extension" box type ".php" without the quotes. Make sure "Script Engine" and "Check that file exists" are checked. Click ok.
    NOTE: A DIALOGUE BOX MAY APPEAR ASKING IF YOU WANT TO PROPOGATE THE CHANGES ACROSS ALL OTHER SITES. YOU CAN SAY YES BUT IT DOESN'T ALWAYS WORK. (IT'S AN IIS THING) TO SEE IF IT DID, CHECK THE PROPERTIES OF YOUR VIRTUAL DIRECTORY AND FOLLOW STEP TWO IF YOU DON'T SEE THE PHP MAPPING THERE.
    PHP Tweaks
    1. extension_dir = c:\php\ext ~ change folder to match your install
    2. cgi.force_redirect = 0 ~ required for IIS
    3. register_globals = On
    4. register_long_arrays = On
    5. extension=php_mysql.dll ~ removed the ;
    6. extension=php_mysqli.dll ~ removed the ;
    7. include_path = "."
    8. mysql.default_host = localhost
    9. mysql.default_port = 3306
    **NOTE: IF I DIDN'T PUT QUOTES - NEITHER SHOULD YOU.
    10. Save and Close
    copy the file libmysql.dll
    to c:\windows & c:\windows\system32 ~ this file is in the root of PHP 5 folder
    XP Environment Variables: Add the following at the end of Paths> c:\<php folder>;c:\<php folder>\ext ~ change php folder for your install
    NOTE: ANY CHANGES TO ENVIRONMENT VARIABLES HAS THE POTENTIAL TO CAUSE SYSTEM PROBLEMS IF NOT DONE CORRECTLY. MAKE SURE YOU HAVE A ";" AT THE END OF THE PATH BEFORE YOU ADD THE CHANGES.
    REBOOT!!!! THESE CHANGES WILL NOT TAKE EFFECT UNTIL YOU DO SO.
    DW - edit current site or create it new
    Local Info:
    Should be left however you have it now OR if creating new, just do it like you always have.
    Remote Info:
    Access : Local/Network
    Remote Folder: C:\inetpub\wwwroot\<your virtual directory>
    * Check Refresh Automatically
    Testing Server:
    Server Model: PHP MySQL
    Access: Local/ Network
    Testing Server Folder: C:\inetpub\wwwroot\<your virtual directory>
    URL Prefix: http://localhost/<your site name>
    * Check Refresh Automatically
    ** I don't make changes to anything else under site editing so I stop there. Click OK and you're done.
    At this point, you should see under the "Application" section on the "Database" tab, steps 1,2,3 checked. Now create a connection by clicking the "+" button. Enter the following:
    Connection Name: <whatever you want>
    MySQL Server: localhost
    User Name: root (or another account you have created with sufficient privileges)
    Password:
    Database: enter a DB name you wish to connect to or click select if you wish to browse for it.
    You shouldn't get the "Unidentified Error..." message anymore. I know I don't.
    I hope this helps the next poor sap this happens to. I'm sorry for the long post but I hate, hate, hate, when people post half assed instructions because they are too lazy to type.
    Good luck everyone and happy designing!!!
    prdreamweaver
    email: [email protected]
    (you can email me with questions but remember, I am not an expert with dynamic content. however, I am willing to assist if I can)

  • SAP NetWeaver 2004s SR 1 SP9 INSTALL

    I spent last week trying to install SAP Netweaver 2004s SR 1 SP9 in XP SP2 with no success.
    The JDK version is 1.4.2_09 and the install process fail in step "Import Java Dump", the <i>sapinst.log</i> indicates the error:
    14-dic-2007 11:55:30 com.sap.inst.jload.Jload dbImport
    GRAVE: <b>DB Error during import of J2EE_CONFIGENTRY</b>
    14-dic-2007 11:55:30 com.sap.inst.jload.Jload printSQLException
    GRAVE: Message: Cannot assign NULL to host variable 2. setNull() can only be used if the corresponding column is nullable. The statement is "INSERT INTO J2EE_CONFIGENTRY( CID ,  NAMEHASH ,  ISFILE ,  NAME ,  DTYPE ,  VBIGINT ,  VDOUBLE ,  VSTR ,  VBYTES ,  FBLOB ) VALUES ( ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )".
    14-dic-2007 11:55:30 com.sap.inst.jload.Jload printSQLException
    GRAVE: SQLState: SAP06
    14-dic-2007 11:55:30 com.sap.inst.jload.Jload printSQLException
    GRAVE: ErrorCode: 1001142
    14-dic-2007 11:55:31 com.sap.inst.jload.db.DBConnection disconnect
    INFO: disconnected
    ERROR 2007-12-14 11:55:31
    CJS-30049  Execution of JLoad tool 'C:\j2sdk1.4.2_09\bin\java.exe -classpath "C:\Archivos de programa\sapinst_instdir\NW04S\SNEAK_PREVIEW\FULL\INSTALL\install\sltools\sharedlib\launcher.jar" -showversion -Xmx512m com.sap.engine.offline.OfflineToolStart com.sap.inst.jload.Jload "C:/Archivos de programa/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/lib/iaik_jce.jar;C:/Archivos de programa/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sltools/sharedlib/jload.jar;C:/Archivos de programa/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sltools/sharedlib/antlr.jar;C:/Archivos de programa/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sltools/sharedlib/exception.jar;C:/Archivos de programa/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sltools/sharedlib/jddi.jar;C:/Archivos de programa/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sltools/sharedlib/logging.jar;C:/Archivos de programa/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sltools/sharedlib/offlineconfiguration.jar;C:/Archivos de programa/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sltools/sharedlib/opensqlsta.jar;C:/Archivos de programa/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sltools/sharedlib/tc_sec_secstorefs.jar;C:\sapdb\programs\runtime\jar\sapdbc.jar" -sec J2E,jdbc/pool/J2E,
    MX3506DC0976/sapmnt/J2E/SYS/global/security/data/SecStore.properties,
    MX3506DC0976/sapmnt/J2E/SYS/global/security/data/SecStore.key -dataDir C:/Programas/SAPNW2004sJavaSP9_Trial/SAP_NetWeaver_2004s_SR_1_Installation_Master_DVD__ID__NW05SR1_IM1\../Sneak_Preview_Content\JAVA\JDMP -job "C:\Archivos de programa\sapinst_instdir\NW04S\SNEAK_PREVIEW\FULL\INSTALL\IMPORT.XML" -log jload.log' aborts with return code 1.<br>SOLUTION: Check 'jload.log' and 'C:/Archivos de programa/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/jload.java.log' for more information.
    ERROR 2007-12-14 11:55:31
    FCO-00011  The step importJavaDump with step key |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|9|0|NW_Jload|ind|ind|ind|ind|9|0|importJavaDump was executed with status ERROR .
    INFO 2007-12-14 11:55:38
    An error occured and the user decide to stop.\n Current step "|NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|9|0|NW_Jload|ind|ind|ind|ind|9|0|importJavaDump".
    I have read many posts in many forums and there are some posts about the same problem of the table J2EE_CONFIGENTRY, but never clear answers (or answers for Linux OS). I really appreciate any help about it.
    PD: No, it's not the timezone configuration (I have GMT+1 and daylight saving enabled).

    Hi Friends!
    This is Anand Here
    I am totally new to SAP
    I was trying to install SAP on 2003Server
    while installing the ABAP System-Central Instance
    I Got this error message
    An error occurred during the installation of component SAP ERP 2004 SR1>ABAP  System>Oracle> Non-Unicode>Central Instance Installation. Press the log View Button to get extended error information or press OK to terminate the installation. Log Files are written to SAP ERP  2004 SR1>ABAP System>Oracle> Non-Unicode>Central Instance Installation
    The following error occured and the installation could not proceed
    ERROR 2007-12-27 20:33:33
    - FSL-00001 System Call Failed. Error 5 (Access is denied.) in execution of system call 'FindFirstVolumeMountPoint' with parameter (
    ?\Volume{c682cb5b-b31d-11dc-be09-806e6f6e6963}\), line (77) in file (synxcfsmit.cpp).
    ERROR 2007-12-27 20:33:33
    MOS-01235 Module function getInfo of module CIa0sMount Failed,
    Can Somebody help me with this

Maybe you are looking for

  • No sound was recorded when recording videos on iPhone 4

    Hi, my iPhone can't record sound when recording video, but the voice memo app still works fine. Any ideas? (It plays some "weeeee" sounds insteaad)

  • Setting 'struct tm' tm_zone="GMT" doesn't work, takes default system timezone

    Dear Dev-Meisters, I'm trying to find out why setting  tm_zone="GMT" in a "struct tm" is not working on Mac OS X 10.6.x. and mktime().... However with gmtime() it works but apparently it's not recommended for Mac OS X... I need to read in a data file

  • Intercopmany billing error

    Dear ALL I am doing the intercompany sales process . For the same task i have created the sales order , delivery and finally created the invoice for the customer . After that when i am trying to create the intercompany invoice , system is showing me

  • Problems syncing a previously​-used Z22 with a Mac OS 10.4 iBook

    I want to remove the User name that originally was entered in the Z22 and replace it with a new User name to match up with the User name in my iBook and thus allow the file data in my iBook to sync over to the Z22.   However, I haven't found any inst

  • Yum update fails on oel 4

    Hello, I have a virtual machine set up with OEL4 and Oracle Database 9iR2 installed on it quite a while back. All had worked well at the time of setup. Couple of days back, I decided to update the OS and ran "yum update" with yum pointing to "el4_lat