About SAPRFC connector for PHP...

I open this new post because Gregor make me notice that the thread where I initially post it was close...Sorry about that -:)
Ok, question is...How can contact Eduard Koucky??? I wrote him some time ago, but he never answer me...Gregor just told that Craig do the same, without any answers...My main concern is about the TABLES parameters when calling a FM or BAPI...I remember that we had this discussion some time ago, but we never be able to solve it...
I already tried:
saprfc_table_init
saprfc_table_insert
saprfc_table_modify
Without any luck...Maybe I need to try again...But still...If anyone can contact Eduard or give a nice solution to my problem...It would help me a lot
P.S: What I do now to solve my lack of TABLES parameters...Is to create a long String parameters separating each line by a "/" symbol...Inside the FM, I just read it into an internal table...It's works great...But isn't the way I want to work.
Greetings,
Blag.

Hi Blag,
I've just tried this and it works perfect:
[code]          //We must know if the function really exists
          $fce = saprfc_function_discover($rfc, "BAPI_SALESORDER_SIMULATE");
          if(!$fce){
               echo "The function module has failed.";
            echo $rfc;
            exit;
          //Pass import parameters
          $ORDER_HEADER_IN = array (
                    "DOC_TYPE"=>"AG",
                    "SALES_ORG"=>"1000"
          saprfc_import ($fce,"ORDER_HEADER_IN",$ORDER_HEADER_IN);
          //Pass table parameters
          saprfc_table_init ($fce,"ORDER_ITEMS_IN");
          $ORDER_ITEMS_IN = array (
                    "MATERIAL"=>"P-100",
                    "REQ_QTY"=>"0000000001000"
          saprfc_table_append ($fce,"ORDER_ITEMS_IN", $ORDER_ITEMS_IN);
          $ORDER_ITEMS_IN = array (
                    "MATERIAL"=>"P-101",
                    "REQ_QTY"=>"0000000001000"
          saprfc_table_append ($fce,"ORDER_ITEMS_IN", $ORDER_ITEMS_IN);
          $ORDER_PARTNERS = array (
                    "PARTN_ROLE"=>"AG",
                    "PARTN_NUMB"=>"0000001555"
          saprfc_table_append ($fce,"ORDER_PARTNERS", $ORDER_PARTNERS);
          saprfc_table_init ($fce,"ORDER_ITEMS_OUT");
          //Call and execute the function
          $rc = saprfc_call_and_receive ($fce);[/code]
Regards
Gregor

Similar Messages

  • Saprfc version for php 5.2.1

    Hi all
      Can anyone pls tell me the version of saprfc to be installed for php version 5.2.1
    Thanks in advance

    The lastest version
    on the SAPRFC How to
    I assume you are using windows. If you are having hassles with getting it to work download a utility called <a href="http://www.dependencywalker.com/">dependency walker</a>.
    You can use this to check if the php_saprfc.dll is missing a dependency.
    I have been getting a dependency on DRVADODB.DLL on one particular machine and have had no joy resolving that yet.
    The other option is to grab a copy of Visual Studio Express Edition 2005 and compile it for yourself. Not for the fainthearted but I believe the force is strong with you.
    Hope this is useful,
    Nigel

  • Saprfc.dll for php 5.4 or upper version

    Hai All,
    Purpose for interfacing SAP in PHP, Is there any saprfc.dll build for xamp version 1.7.3 or upper, or PHP 5.4 or upper,
    Now, I already use saprfc.dll what compatible for PHP 5.2 only..
    Thank for answer.
    arif diyanto

    The lastest version
    on the SAPRFC How to
    I assume you are using windows. If you are having hassles with getting it to work download a utility called <a href="http://www.dependencywalker.com/">dependency walker</a>.
    You can use this to check if the php_saprfc.dll is missing a dependency.
    I have been getting a dependency on DRVADODB.DLL on one particular machine and have had no joy resolving that yet.
    The other option is to grab a copy of Visual Studio Express Edition 2005 and compile it for yourself. Not for the fainthearted but I believe the force is strong with you.
    Hope this is useful,
    Nigel

  • Question about SDK dependencies for PHP

    Dear Sirs,
    I'm having a problem when I was creating the connection with my azure storage account. so I have the folloowing questions:
    Is the folder structure of Azure SDK and its dependencies are correct?
    In the case the folder structure is not correct, how the folder structure with PEAR and  Azure must be?
    Please find below step-by-step I went thru trying to address the issue.
    When I running the following line the program stopped processing.
    $ BlobRestProxy = ServicesBuilder :: getInstance () -> createBlobService ($ connectionString);
    So I accessed the error log file that is in the LogFiles / php_errors.log and it showed the following error:
    [16-Mar-2015 12:18:33 America / Los_Angeles] PHP Warning: require_once (HTTP / Request2.php): failed to open stream: No such file or directory
    in D: \ home \ site \ wwwroot \ pear \ WindowsAzure \ Common \ Internal \ Http \ HttpClient.php on line 33
    [16-Mar-2015 12:18:33 America / Los_Angeles] PHP Fatal error: require_once (): Failed opening required 'HTTP / Request2.php' (include_path
    = '; C: \ php. \ Pear') in D: \ home \ site \ wwwroot \ pear \ WindowsAzure \ Common \ Internal \ Http \ HttpClient.php on line 33
    I opened the file HttpClient.php on the line 33 and there was the following code:
    require_once 'HTTP / Request2.php';
    We got information that Azure SDK for PHP requires the following PEAR packages:
    http_request2: http://pear.php.net/package/HTTP_Request2
    Mail_mime: http://pear.php.net/package/Mail_mime
    Mail_mimeDecode: http://pear.php.net/package/Mail_mimeDecode
    Also, we got the following links to help install above packages?
    https://github.com/Azure/azure-sdk-for-php/issues/694
    and
    http://stackoverflow.com/questions/4483317/failed-opening-required-http-request2-php-include-path-c-php5-pear
    We checked the above links and only way we could do thru below link:
    https://github.com/Azure/azure-sdk-for-php#install-as-a-pear-package
    After installation we got the following folder structure:
    "ajao" -> root folder
    "pear" -> folder that contains PEAR packages and Azure SDK
    The autoload page is located at the following folder path "ajao\pear\WindowsAzure\WindowsAzure.php"
    Even after Azure dependencies installation the above explained error still there.
    Is the folder structure of Azure SDK and its dependencies are correct?
    In the case the folder structure is not correct, how the folder structure with PEAR and  Azure must be?
    Thanks & Regards,
    Pedro Gustavo Duarte

    Dear Sean,
    There is no spaces. When we copied from Azure to text editor, we end up getting those spaces. The main problem is that in order to connect
    to Azure storage account we need to install Http_Request2, Mail_mime, and Mail_mimeDecode dependencies into Azure SDK for PHP. Unfortunately, we are not able to install them.
    Best regards,
    Pedro Gustavo Duarte

  • Any news about SQLSRV Driver for PHP x64?

    I have tried several times to compile this for x64 with no luck, all I keep getting are errors like these:
    ext\sqlsrv\core_stmt.cpp(1994) : error C2664: 'convert_string_from_utf16' : cannot convert parameter 3 from 'SQLLEN' to 'SQLINTEGER &'
    ext\sqlsrv\core_stmt.cpp(2006) : warning C4244: 'initializing' : conversion from 'SQLLEN' to 'int', possible loss of data
    ext\sqlsrv\core_stmt.cpp(2119) : warning C4244: 'initializing' : conversion from 'SQLLEN' to 'SQLINTEGER', possible loss of data
    ext\sqlsrv\core_stmt.cpp(2130) : error C2664: 'sqlsrv_result_set::get_data' : cannot convert parameter 5 from 'SQLINTEGER *' to 'SQLLEN *'
    Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    ext\sqlsrv\core_stmt.cpp(2157) : error C2664: 'sqlsrv_result_set::get_data' : cannot convert parameter 5 from 'SQLINTEGER *' to 'SQLLEN *'
    Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    ext\sqlsrv\core_stmt.cpp(2183) : error C2664: 'convert_string_from_utf16' : cannot convert parameter 3 from 'SQLLEN' to 'SQLINTEGER &'
    ext\sqlsrv\core_stmt.cpp(2227) : error C2664: 'convert_string_from_utf16' : cannot convert parameter 3 from 'SQLLEN' to 'SQLINTEGER &'
    ext\sqlsrv\core_stmt.cpp(2380) : warning C4244: 'initializing' : conversion from 'SQLLEN' to 'int', possible loss of data
    NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\amd64\cl.exe"' : return code '0x2'
    Everybody says it's because x64 is experimental in PHP 5.5, but I have successfully compiled another well known DB Server (IBM DB2) for x64 without any problems or errors, Oracle also comes with PHP 5.5 x64, so if DB2 and Oracle can be compiled for x64 why
    not SQLSRV?
    Thanks,

    Could you try my PHP 5.5.20 builds at http://www.apachelounge.com/viewtopic.php?t=6123 ?
    I made a few changes: https://github.com/Jan-E/msphpsql/commit/45c6300f2dbc74dd0aa4aaf57b76bea084050ed8
    php_pdo_sqlsrv.dll does not compile yet with x64, but php_sqlsrv.dll does. Please check the 64-bits builds and also make sure that the 32-bits build still works.
    BTW: I added PHP 5.6 support as well.

  • Connector for Active Directory Password Sync

    Friends,
    We have some questions about the Connector for Active Directory Password Sync:
    1. There is a need to extend the AD schema when using this connector.
    2. If I have 10 domain controllers and are not synchronized, the documentation tells us to install the dll in each domain controller. Is there any way to do this if necessary, to install this dll in a single domain controller?
    Thanks for your help.
    regards

    Definitely:
    For your Point-1 Look for the Preinstallation section in the AD Password Sync Connector Guide which talks nothing about extending AD schema which supports the validity of the statement.
    For your Point-2 Look for Metalink Article-432727.1 which confirms that the connector has to be installed on all the DC's
    Thanks
    SRS

  • SCF Connector for Microsoft Live Communication Server 2003 Enterprise

    Hi folks,
    Does anybody has informations or experience about SCF Connector for Microsoft Live Communication Server 2003 / Microsoft Messenger.
    Thanks
    Axel

    Yes!
    But I think you want to have some details about the integration.
    More or less there doesn't exist any posibility to customize this.
    You can define some commands like in CLP "Send Mail" but you have to write your own java code for starting ms communicator with the selected user.
    On the other hand there exists from MS as well a Communicator Web Access (CWA). This is like OWA a web application. So you can integrate CWA via a URL iView.
    Best Regards
    Frank

  • Php 5.12 / Apache 2.054 / Saprfc 1.4.1 for php 5.1.1

    Hi Everybody,
    I am trying to install this sap connector.
    It's easy but no simple to find the good version running together.
    My configuration below :
    Windows XP Pro SP2
    IIS 5.1 on port 80
    Apache 2.054 on port 8080
    Php 5.12
    Saprfc 1.4.1 for php 5.1.1
    I use the binaries distributions for each product.
    I have no issue, i hope, to load php_saprfc.dll module: i have no error message when Apache is starting.
    The test file index.php is running nice and display the environment to screen, BUT I DON'T FIND SAPRFC MODULE.
    If some of you have a idea, thanks for your help.
    If its usefull i have no issue to send us my files httpd.conf and php.ini.
    Best Regards
    Georges FREROT

    Hi Everybody,
    I want test the connector saprfc with php on two technical environments bellow:
    - Windows XP SP2 Professional, IIS 5.1, php 5.11 or 512
    - Windows XP SP2 Professional, Apache 2.054, php 5.11 or 512
    Windows XP is running on C: .
    IIS 5.1 is running on port 80, and Apache 2.054 on port 8080.
    I have build a development workspace on H: .
    The directory tree has this structure:
    H
    Apache2054
    Apache2
    Php511
    ext
    sessions
    includes
    Php512
    ext
    sessions
    includes
    saprfc141-511
    WebDev
    Sessions
    I have downloaded binaries of Apache 2.054, Php 5.11 and 512 and his Pecl 5.11 and 512 and Saprfc 141 511.
    I have uncompressed :
    Php 5.11 under H:\php511, 
    Pecl 5.11 under H:\php511\ext,
    Php 5.12 under H:\php512, 
    Pecl 5.12 under H:\php512\ext,
    Apache 2.054 under H:\Apache2054,
    SapRfc 1.4.1 5.1.1 under H:\saprfc141-511
    My first step is run php on IIS in isapi mode. It’s successful.
    The command localhost:80//Index.php display correctly echo phpinfo().
    My second step is install saprfc requirements:
    Copy:
    php_saprfc.dll in H:\Php511\ext
    php_saprfc.dll in H:\Php512\ext
    librfc32.dll up to date in C:\Windows\System32
    Verify msvcp60.dll up to date is in C:\Windows\System32.
    Modify php.ini:
    Include_path = “.;H:\Php511\includes;H:\Php511\pear”
    Extension_dir =”H:\Php511\ext”
    Include_path = “.;H:\Php512\includes;H:\Php512\pear”
    Extension_dir =”H:\Php512\ext”
    Extension=php_mbstring.dll
    Extension=php_gd2.dll
    Extension= php_saprfc.dll
    Extension=php_soap.dll
    Extension=php_mysql.dll
    To run php 5.11 or php 5.12 I modify the system path and configuration in WebServer 
    The results with php 5.11 are :
    With IIS 5.1 no loading error message, echo phpinfo() running nice, but no display the saprfc module.
    With APACHe 2.054 loading error message the same twice for php_saprfc.dll
    The results with php 5.12 are :
    With IIS 5.1 no loading error message, echo phpinfo() running nice, but no display the saprfc module.
    With APACHe 2.054 no loading error message, echo phpinfo() running nice, but no display the saprfc module
    If some of you have an idea what is wrong or forget at this point, thanks to help me.
    Bests Regards
    Georges FREROT

  • Cannot install Flash Builder 4.6 for PHP

    I have FB4.5 premium installed, and have bought an upgrade license to the "for PHP" version. I downloaded the 2 files from the adobe web site (only V4.6 seems to be downloadable now) - that's FlashBuilderPHP_4_6_LS1.7z and FlashBuilderPHP_4_6_LS1.exe. The installation goes past specifying all the options but just before it finishes it says "rolling back installation" and exits. I hunted around and founf PDApp.log, and these are the last few lines. They give me no clue as to what has gone wrong except maybe the first line here but it keeps going for a little while after that message. I've tried 3 times now with a reboot in between, and it fails every time. Is it time to download a fresh copy of the installation files or get a DVD?
    Thanks
    2/3/2012 14:11:44 [INFO] PIM - Package id BE253463-D6DD-4046-BF29-FAF2E8EADEFB is already installed
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS insertPackageUpdateList.
    2/3/2012 14:11:44 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    2/3/2012 14:11:44 [INFO] PIM - Backup Folder Created
    2/3/2012 14:11:49 [INFO] Utilities - File does not exist
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS installPackage at file C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\DWA\DWA.pimx.
    2/3/2012 14:11:50 [INFO] Setup - Finished Installing package - C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\DWA\DWA.pimx
    2/3/2012 14:11:50 [INFO] Setup - Start Installing package - C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:50 [INFO] PIM - START installPackage at file C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:50 [INFO] PIM - Trying to access xml at path:C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:50 [INFO] PIM - XML is valid
    2/3/2012 14:11:50 [WARN] PIM - Failed to find Node
    2/3/2012 14:11:50 [INFO] PIM - Package id 288AEB6F-C67B-4244-8B68-392A279BC618 is already installed
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS deleteAppletRegInfoRecords.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS deletePackageUpgradeInfoRecords.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS deletePackageInstallationInfoRecords.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS insertPackageUpdateList.
    2/3/2012 14:11:50 [INFO] PIM - SUCCESS insertAppletRegInfoList.
    2/3/2012 14:11:50 [INFO] PIM - Backup Folder Created
    2/3/2012 14:11:56 [INFO] Utilities - File does not exist
    2/3/2012 14:11:57 [INFO] PIM - SUCCESS installPackage at file C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx.
    2/3/2012 14:11:57 [INFO] Setup - Finished Installing package - C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6\packages\LWA\LWA.pimx
    2/3/2012 14:11:57 [INFO] PIM - Processing ... _pimCreateOrUpdateAAMInventory
    2/3/2012 14:11:57 [INFO] PIM - Inventory Already present on the machine...
    2/3/2012 14:11:57 [INFO] Setup - TimeLog: End Installing. Now launching PDApp
    2/3/2012 14:11:57 [WARN] Setup - Install Source Path not specified. Searching for payloads at the launch path.
    2/3/2012 14:11:57 [INFO] Setup - Deployment Engine launched with command : "C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\DWA\Setup.exe" --deploymentFile="C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\silentinstall\remove.xml" --installSourcePath="C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\WinFBInstaller\Adobe Flash Builder 4.6"
    2/3/2012 14:11:58 [FATAL] Setup - End Adobe Setup. Exit code: 33
    2/3/2012 14:11:58 [INFO] PIM - PIMSqlite closeDB status 0
    2/3/2012 14:11:58 [INFO] PIM - FREE PIM Instance ...

    I worked it out in the end - I had to uninstall FB4.5 and reboot. Why couldn't the installation say so instead of just crashing? I found this out, by the way, by trying to run the installer created under c:\program files(x86)\adobe\adobe flash builder 4.6. That one told me at least that I had to uninstall a previous version, though even then it was coy about which one

  • When Flash Builder 4.6 for PHP is released will it support AIR 3.2 ???

    We've all been waiting a long time since last November's Private Beta of Flash Builder 4.6 which was released shortly thereafter, for the Flash Builder 4.6 for PHP version.
    However, Flash Builder 4.6 for PHP (The one with Zend Studio included in it) is scheduled for 2012 - Q1 release, meaning?
    I guess, at the latest March 31st.
    This is significant, because AIR 3.2 is Great, but it will Live or Die based on what happens, I believe, in the next year, the new demo with the 2 geniuses at Adobe, Lee Brimelow and Thibault Imbert, which essentially ARE the driving intellectual force behind AIR, make me feel more comfortable than the management at Adobe,
    http://tv.adobe.com/watch/adc-presents/hardware-accelerated-graphics-for-mobile-games-with -adobe-air-32/
    So, when FB 4.6 for PHP is released, will it support AIR 3.2?
    There's another thing, there are a ton of job offerings for iOS 5 or Android Java, but no AIR (very few and the damage control fromthe eff'ed up press release is still meandering).
    Adobe needs to compliment its consumer base and developer base, with a Developer Network for Corporate integration so there are contracts out there for us who live between our dream ideas and meals, by doing contracting work, and it'd be nice to do it in Flash Builder 4.6 instead of taking on an iOS 5 or Android Java or PhoneGap project.  At least for Gamers.
    REPORTS: Social Gaming will be a $5B industry by 2015. The total mobile market will be a $15B industry by 2015.
    I'm shooting for the Social Gaming, and I like what I see in the above video.
    But again, people have to pay bills, why doesn't Adobe reach our to Corporations for certified developers like Mickysoft and Apple?

    I worked it out in the end - I had to uninstall FB4.5 and reboot. Why couldn't the installation say so instead of just crashing? I found this out, by the way, by trying to run the installer created under c:\program files(x86)\adobe\adobe flash builder 4.6. That one told me at least that I had to uninstall a previous version, though even then it was coy about which one

  • Latvian Language support for generated PDF's with FPDF module for PHP

    Hello !
    I have a problem with Adobe Reader for Android. I am working with online PDF creation with PHP module named FPDF.
    With FPDF module for PHP you can create PDF's online.
    The problem is that - when generated PDF appears on phone it doesn't show Latvian language ( cp1257 or  ISO-8859-13 for example ). For example - "ŗķļņž" and "ŖĶĻŅŽ" is shown with other symbols.
    However opening the same file with standart app "Polaris Office" - the text is show as it used to be, without problem.
    Strange bug, that i can't fix from PHP ( Tried a lot of decodes and encodes ). Also i have saved PHP file with different encodings - nothing helped.

    You might ask about this in the regular forum. There are several form experts there that may be able to help you.

  • In the download for PHP 5.3, there is no php5ts.dll

    found php5ts.dll
    PHP 5.3 not working aft er the following changes were made:
    IIS: properties->home directory->configuration   C:\PHP\php5.dll
    with GET,HOST,POST,DEBUG
    doc_root = "C:\inetpub\wwwroot"
    tried each of :
    ;extension=php_sqlsrv_53_nts_vc9.dll
    ;extension=php_sqlsrv_53_nts_vc6.dll
    ;extension=php_sqlsrv_53_ts_vc9.dll
    extension=php_sqlsrv_53_ts_vc6.dll
    cgi.force_redirect = Off
    IIS 5.1 with cgi 1.5 RC
    extension_dir = "C:\PHP\ext"
    contains all 4 files:
    php_sqlsrv_53_nts_vc9.dll
    php_sqlsrv_53_nts_vc6.dll
    php_sqlsrv_53_ts_vc9.dll
    php_sqlsrv_53_ts_vc6.dll
    added to XP Prof SP3 path: ;C:\PHP;C:\PHP\ext
    also created (just in case) PHPRC environment variable (alongside path)
    containing C:\PHP;C:\PHP\ext
    I gave IUSR_LANDON all powers
    http://207.254.225.224:8080/phpinfo.php
    all firewalls set to accept 8080
    <?php
           phpinfo();
    ?>
    _______________________________________________RESULTS
      The website cannot display the page
    HTTP 500 
       Most likely causes:
    •The website is under maintenance.
    •The website has a programming error.
       What you can try:
         Refresh the page.
         Go back to the previous page.
         More information
    This error (HTTP 500 Internal Server Error) means that the website you are visiting had a server problem which prevented the webpage from displaying.
    For more information about HTTP errors, see Help.
    Should I remove the old versions (not used here) of ntwdblib.dll?

    The flavor of the Microsoft SQL Server Driver for PHP that you enabled in the php.ini file is the Thread Safe VC6 version. Therefore, you’ll need to install the appropriate version of PHP run-time (i.e. VC6 x86 Thread Safe) from http://windows.php.net/download/.
    When installing PHP, you should select the IIS/FastCGI option, and then establish a mapping between IIS and php-cgi.exe. In other words, your IIS configuration should point to the PHP CGI executable and not php5.dll that happens to be the Non Thread-Safe PHP run-time.
    Moreover, the library ntwdblib.dll is not needed anymore.
    On final note: it might be worth upgrading your IIS to at least version 6.0 that was optimized for FastCGI usage.
    Hope this helps,
    Serban
    Serban Iliescu - MSFT

  • Oracle Connector for Outlook and Sent Mail

    I'm very desperate for help with my problem. I have a customer that uses Outlook 2003 with the Oracle Connector for Outlook. When I set up the Connector, I only had it handle her Calendar. By that I mean that the only thing I wanted the Connector to do was pull her Oracle Calendar information and put it into Outlook's calendar. I used the default setting of the Connector of IMAP, but deselected the incoming and outgoing mail servers.
    The user kept having problems with Outlook going Offline so I decided to remove the Connector. I did not realize until after removing the Connector account from Outlook that her sent mail was being saved in Oracle. This is very problematic for me because I have no idea what to do. Is there a way to retrieve the sent mail? I don't even understand why the sent mail was being saved within the Oracle folder. Once I deleted the Connector account in Outlook I was then told that I had to choose another folder for new mail to go to so I chose Personal Folders.
    If I go to \Documents and Settings\User's Name\Local Settings\Application Data\Microsoft\Outlook, I find the folder for the Connector. There is one in particular that has a .dll file that is about 56MB in size. However, I have no idea if that's the sent mail and, if so, how do I retrieve it.
    I'd GREATLY appreciate any help that can be given on this. I simply would like to know if there is a way to retrieve that mail.
    The user is using an IMAP account. This is NOT an Exchange account.

    1. Yes, OCFO is only for comunication with Oracle Calendar
    2. Yes, you can see any mail stored on the Oracle IMAP server without OCFO. Just subscribe to IMAP folders you want ...

  • Can I develop CF projects using Flash Builder 4.5 for PHP?

    I currently develop CF projects using Flash Builder 4.5.  I am considering purchasing Flash Builder 4.5 for PHP.  Will I still be able to work on my CF projects using FB for PHP?

    Because in the installation instructions for FB for PHP it says that you have to uninstall the current installation of FB which I have several CF projects that I use regularly.  I hate to uninstall if it turns out that I can't transport my current projects into FB for PHP. 
    Oh that sux!  It's just an Eclipse plug-in, and one can have installed multiple installs of Eclipse OK, so I wonder why they're said this?
    OK, because I give suck advice, I'll D/L it and install it on a spare machine and take a look.  FB usually has a CF perspective does it?  So what you need to know is whether FB for PHP still has the CF perspective?
    Or are you asking whether you can install CFB (or CFEclipse) as a plug-in to FB for PHP, like one can with FB?
    Sorry about the bad advice.
    Adam

  • Where is Flash builder 4.6 for php ?

    Hello,
    I found flash builder 4.5 for php and flash builder 4.6, where is flash builder 4.6 for php ?

    Is it really that difficult to add Flash Builder 4.6 as a plugin to Zend Studio?  I did that for a long time prior to Flash Builder 4.5 for PHP, which is essentially the same thing.  It really doesn't take a rocket scientist.  =/
    On that note, if you own Flash Builder 4.6 and don't feel like shelling out the extra money for Zend Studio or waiting for Flash Builder 4.6 for PHP, then it's really as simple as adding Flash Builder as a plugin to Ecliplse for PHP using PDT.  Also, doesn't take a rocket scientist.  Personally, I don't see the big deal myself.  I don't even bother with using Zend Studio anymore and prefer to use Komodo Edit since it's autocomplete features are awesome and it's very quick at auto complete by simply adding a folder for your favorite PHP apps from different frameworks to different content management systems.  Furthermore, there is still support in Flash Builder 4.6 to connect to a PHP data service if you really just want to create some automated code.  Ultimately though, I don't understand why anyone would use amf.ini or the default options in production.
    Rather than pointing to the default endpoint, if you're using a framework in the first place, it makes a lot more sense to setup a service controller and have the endpoint point to that such as index.php/services/amf (or if you're like me and prefer cleaner url's modify .htaccess to remove index.php).  The bottom line is there really was nothing great about Flash Builder 4.5 for PHP.  Alot of things were broken for one and it was far easier to use the datawizard which still exists for testing purposes.
    After that, you should be focusing on deploying the applicaiton for production, and adjusting the settings in the Zend Framework to create a new project the correct way, dumping your HTML file to a view along with the swf file, and it may be a good idea to point the HTML file to swfobject on the Google Ajax Libraries page.  Everything else is a cakewalk.
    In other news, if you'd like a ligher footprint than using the entire Zend Framework, why not use something like CodeIgniter and create the necesssary hooks to use Zend AMF?

Maybe you are looking for

  • How can I transfer my old purchase to a new ID?

    I no longer have access to an old e-mail address (iTunes ID) and can't get hold of some musics purchased. How can I transfer them to my new ID?

  • Object Oriented Modelling and Code Generator

    i have a final yr project on java--any help plzz Objectives: In software development we make extensive use of models to capture details about objects in a domain, the attributes of the objects and the relationships between the objects. Once complete,

  • Clearing in previous year

    Hi there I have an issue in resetting (using FBRA) clearing GL document which belongs to 2007. This clearing doc has few line items, which were generated while clearing other GL docs . While I thought it might be due to a closed period, I tested in m

  • Adobe not rendering the current timeline, but a cached version?

    Hello! This is driving me up the wall, and costing me a great deal of time, so any help would be appreciated.  Inside my Adobe Premiere project I have a referenced composition from Adobe After Effects. Every now and then I need to tweak the After Eff

  • Hide filename ext when saving?

    This might be a simple prefrence setting but I can't seem to make it work. In CS5 and I go to "save for web" like I would when I was on CS4. A lot of times I will click on an exsiting file so that file name will auto fill the new save name and then i