Microsoft Office Integration

We are trying to open word, excel, power point on the desktop by linking to the executable. I know that we can leverage v2 WebDAV support to browse, open, edit and resave documents to portal without having to download the document, edit the document and upload it back into portal. I need some instruction on how to do this. Thanks for your help!

Tina,
In the online help, take a look at the topic "Accessing Oracle9iAS Portal from WebDAV clients". This introduces the concept of being able to use WebDAV to manage the content in your page groups.
First you need to set up a Web Folder to display the contents of your page groups in Windows Explorer. Then in your Microsoft Office products you can open files directly from that Web Folder.
We are in the process of creating a more detailed technical note about Oracle9iAS Portal and Web Folders, so keep checking the Portal Center for this.

Similar Messages

  • Microsoft office integration with OBIEE

    Hello,
    can you please help me in
    how to integrate microsoft office with OBIEE Presentation services and how do we achieve it
    and also how to integrate microsoft outlook mail with OBIEE
    thank you
    kumr

    Go through these links
    http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/bi_addin/bi_office.htm
    http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/delivers/delivers.htm
    Thanks
    Srinivas

  • Question about Microsoft Office integration.

    Hi,
    I'm a new user in the SAP portal & KM and I'm wondered about the complexity when I publish a document in KM. In Microsoft Sharepoint is very easy, just publish the document from Office.
    Is there any way to do the same in SAP KM ? From Word, for example...
    Regards,
    Joan

    Hi,
    for connecting Windows to SAP KM you can use WebDAV and the Portal Drive. With the Portal Drive, the KM access is transparent for the user, it will be as if he is acessing a network share.
    If you're looking for some SharePoint like features inside Office like: Online Useres, Check-In/Out, Create Tasks, etc. this isn't possible. The SharePoint protocol was until recently closed to Microsoft alone. For a more closly tight integration of SAP and Microsoft you can take a look into Duet. But this is for more than just publishing Office documents.
    br,
    Tobias

  • Microsoft Office Product Integration in GP

    Hi,
    I know there is rather extensive integration possiblities avialable for Adobe Document Services (ADS) in GP. I read somewhere that it is also possible to integrate other products.
    Does anyone have any experience in this area? In particular with Microsoft Office products.
    Thanks.
    Dick

    You can see this <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e3f6edc7-0701-0010-a5a4-f2ce0c749f9e">Interactive Form Tutorial</a> which is relevant for both MS Infopath and Adobe Forms.
    There is also additional information in the <a href="http://help.sap.com/saphelp_crm50/helpdata/en/c4/8d4a4273bb3830e10000000a155106/frameset.htm">GP online help for Interactive Forms.</a>
    Regards,
    Austin.

  • Microsoft Office 2010 Integrated with SP2 ISO image

    Sir from where i can download Microsoft Office 2010 (32bit/64bit) Pro/ProPlus Integrated with SP2 ISO images. 

    As I know, there is no legal download of Windows, apart from the enterprise trial version, you can buy a physical copy, then made the iso form the DVD's.
    and integrate office 2010 SP2 with the iso
    Office 2010 and SharePoint 2010 Service Pack 2 Availability
    http://blogs.technet.com/b/office_sustained_engineering/archive/2013/07/16/office-2010-and-sharepoint-2010-service-pack-2-availability.aspx
    Regards
    Yolanda
    TechNet Community Support

  • Integrating IBM Personal Communications for Windows with Microsoft Office

    Hello,
    I am a self taught programmer and I use COM objects to integrate IBM Personal Communications with Microsoft Office.   VBScript is used to perform internal automations of the IBM product as well as integrate it with Outlook and Excel. 
    Instead of buying an e-mail product for the AS/400, I just have Personal Communications send e-mail from Outlook.  Instead of creating a spreadsheet application in Java, I integrate Excel with Personal Communications. 
    Having a Technet section that showcases integrating Microsoft products with Personal Communications to enhance it would be desirable. Any ActiveX examples in Personal Communications have to be re-engineered to work with VBScript because they are coded in Visual Basic.
    For example, VBScript can be used with Personal Communications; but, Visual Basic is used with Microsoft Office applications. 
    Because Personal Communications has limited windows interfaces, I use HTML applications to create more feature rich windows interfaces with Personal Communications when I want more complexity than either an input or a message box from VBScript.
    Although HTML applications are old technology, they are easy to create and can utilize all the functionality of MSIE to use VBScript, Javascript, C#, Java, HTML, DHTML, and CSS.  However, I generally only need VBScript, HTML and CSS.
    MSDN2 has HTML applications, CSS, and VBScript in separate sections; but, it does not have a section that shows how everything can be used together. 
    Have a great Day!
    Jesse Grune. 
     Jesse Grune

      Anything can be hacked; however, when I want to get a job done fast I write my own automation and execute it instead of filing a request for IT to write an interal system upgrade.
    For example, say I want to have my computer talk for me because I cannot talk at the moment. What I can do is use the speech capabilty of Microsoft Excel and add it as a feature of an automation. 
    [PCOMM SCRIPT HEADER]
    LANGUAGE=VBSCRIPT
    DESCRIPTION=Have the computer talk
    [PCOMM SCRIPT SOURCE]
    OPTION EXPLICIT
    autECLSession.SetConnectionByName(ThisSessionName)
    REM This line calls the macro subroutine
    subSub1_
    Sub subSub1_()
    dim myexcel
    Set myexcel=CreateObject("Excel.Application")
    dim string
    string = Inputbox("What do you want to say?")
                        myexcel.Application.Visible = False
                        myexcel.Speech.Speak string
                        autECLSession.autECLPS.SendKeys "[reset]"
                        set myexcel = Nothing
              End Sub
    If I want it to read the page to me, I can have it copy a section of a screen or set of screens and then read the data to me.  Also, I use a slight modification of the above code to allow me to write to an Excel file for hidden or visible tracking of what an associate is doing. The hidden tracking is for supervisor or managerial back end review.
    If I want to send e-mail, I Include the following code in a VBScript automation file:
             dim myOLItem, Mail
             set Mail = CreateObject ("Outlook.Application")        
             Set myOLItem = Mail.CreateItem(0)
             myOLItem.To = "Some e-mail in quotes"
            myOLItem.CC = "Some other e-mail in quotes"
            myOLItem.Subject = "A subject in quotes"     
            myOLItem.Body =   "The message body in quotes"
            myOLItem.Display
    Using CreateObject, I am able to use features of almost any progam on my desktop and have them as features in my automation.  Aslo, I can borrow features of other programming languages on my computer and use them in VBscript.
    If I wanted to add some level of security to my scripts I could have a check file that verifies my automations are secure; but, that would be a pain to maintain unless I add artificial intelligence to the program. 
    Because of security features in Outlook, I directly type my closing rather than pull my name as the current user because I don't want to bother with the popup box that my automation is hacking my address book. 
    There are some programs at work that data is typed into from the Client Access Emulator; and, if I had the time to scrpt code and the obect model of the program, I could automate that work and put a lot of people out of work.    
    Anyone that can write up cooking directions and follow them, can write a program. Debugging the program to work with a compiler or the quirks of another program from which the automation is being executed is similar to modifying a recipe depending on the cooking conditions.
    Have a great Day!
    Jesse Grune.
    Jesse Grune

  • I need help integrating Microsoft Office, Outlook and Calendar with my job and is it possible

    Ok guys I am new to the iphone 4s. I just dumped my Blackberry after 10 years. I need help integrating Microsoft Office, Outlook and Calendar with my job and is it possible? Also I need it to automatically push email and appointments to my phone? I will buy any app just need to know which is best for work environment. Here is what I am thinking about doing. http://www.groovypost.com/howto/apple/sync-iphone-or-ipod-touch-calendar-and-con tacts-with-google/ Is this the best way? For personal use I am using paid G whiz app

    I use Google Calendar Sync to sync my work Outlook calendar to a gmail account, then sync that to my iPhone.  It works well for me for the past couple of years.
    As far as mail itself, just ask your it folks for settings for remote access to your exchange account, and then set it up on the phone.
    As far as working with Office docs, to be able to actually edit them and such, look in the app store for DocsToGo or QuickOffice - they both are good but each has it's pros and cons, so on balance it's down to mere preference i think.

  • Integrating Microsoft office 2007/2010 with BPEL

    Hi All,
    Having a requirement that Microsoft office 2007/10 needs to be integrated with BPEL.
    Kindly provide some useful suggestion.
    If any documents available,please provide the link as well.
    Thanks in advance

    Hello,
    Based on this link:
    https://websmp210.sap-ag.de/smb/sbo/platforms
    that I copied for you:
    Desktop System Platforms      addon 2005 SP1 2005 B      2007 A
    Microsoft® Office 2000 SP3
    - Standard & Professional
    Edition                                                      
    Microsoft® Office XP SP2
    - Professional Edition                                           X               X
    Microsoft® Office 2003 SP1
    - Standard & Professional Edition                          X                  X
    Microsoft® Office 2007
    - Standard & Professional Edition             X(1)      X               X (2)
    (1) XL Reporter 2005 does support Microsoft® Office 2007 as of XL Reporter 2005 SP01 PL29.
    (2) XL Reporter 2007 currently does not support Microsoft® Office 2007. Planned to be supported in Q3/2007.
    x sign means it is okay with the version. The version is in the header/top. You can understand and have solution for your problem after read it.
    Rgds,

  • How can i use microsoft office on the mAC - what app do i purchase? help?!!

    how can i use microsoft office on the mAC - what app do i purchase? help?!!

    What aspect of Microsoft Office? Office is a suite of programs... Word, Excel, Powerpoint, etc.
    You've got several potential options. Libre Office and Open Office (both googleable) are 'open source,' free, downloadable programmes that will open most MS Office programmes and perform many of the functions of MS Office. Might be an idea to have a look round for reviews (etc) first, to see if they sound like they'll match your needs.
    If you're keen to use the App Store, there's Apple's own suite of programmes: Pages, Numbers and Keynote. They're a word processor, spreadsheet programme, and presentation-type programme with similar functions to Word, Excel and Powerpoint respectively. They're pretty good for most functions, and are better integrated with Macs than MS programmes. They're excellent programmes for what they do, and relatively cheap (about £14 each?).
    But if you're heavily reliant on MS, want ALL the bells and whistles of MS, or need to regularly transfer files between MS programmes on other computers and your laptop / desktop computer, then they might not be the best of ideas. Keynote - IME - can have some difficulties in transferring formatting to Powerpoint.
    Finally, there's MS Office Mac 2011. You can't download MS Office from the App Store, but can order the CDs from most online stores (including Apple's own store). It might be worth price hunting - if you're a student, you can usually find the programmes relatively cheap (£38 at the moment on Software4Students, though you'll need to belong to an academic institution / have a UK .ac email address). Apple's own prices on MS software are unlikely to be the best prices out there (though the product will be identical).
    MS Office includes Word, Excel and Powerpoint in the basic version. The slightly more expensive version (which, I think, is the £38 one on S4S) includes Outlook. Which - IME - is far more of a nuisance than Apple's native Mail programme.
    (I should probably add - I'm an academic. I own both Apple's own programmes, and MS Office 2011. I tend to use the MS programmes more, if only because they're the ones that other people tend to use, and transferring between Apple and MS programmes is a minor inconvenience. Pages also lacks Garamond, my favourite work font. The Apple progs are, however, far more beautifully integrated, and would be MORE than good enough for most users...)

  • HT4759 Can I place documents created with Microsoft Office for Mac, eg. WORD, or .pdf files be stored in iCloud?  If so, how can I put them there?

    Hi,
    I am trying to learn how to use iCloud, would like to hsve it my documents on it, which are mostly created in WORD (part of Microsoft Office Suite for Mac) or .pdf files.  I don'r see how to get them into iCloud.  Actually I don't see how to place anything at all in iCloud other than contacts, etc.  I am not seeing how it can be usedul to me.

    I should have been more clear. You have to buy the iWork programs from Apple. They are available in the App Store.
    Pages: http://www.apple.com/iwork/pages/
    Numbers: http://www.apple.com/iwork/numbers/
    $20 each.
    The iWork programs are integrated with iCloud and work fairly automatically with it. iCloud is only intended for specific purposes and is not intended for general purpose storage.
    Dropbox is though, and it's free.

  • Why is the Microsoft Office Access Database Engine data source looking for a workgroup information file?

    While trying to import to MSSQL2012 from SSDT using the wizard from an Access 2013 DB (.accdb) which is password protected, I get the following error with the username blank and the password field correctly populated: 
    Cannot start your application. The workgroup information file is missing or opened exclusively by another user. (MicrosoftOffice Access Database Engine)
    But according to this link:
    http://office.microsoft.com/en-us/access-help/what-happened-to-user-level-security-HA010342116.aspx
    MSA10 and beyond shouldn't need workgroup information files, although it's not clear to me if they are
    created/used or not.
    I can point the wizard to some local version of system.mdw at Advanced -> All -> Jet OLEDB:System Database, and then the error becomes:
    Not a valid account name or password. (Microsoft Office Access Database Engine)
    for any username I can think of.
    Questions:
    1.  Why does this data source insist on looking for a workgroup information file even though user-level security should be disabled?
    2.  Why does the Open dialog box for the Microsoft Access Database Engine have *.mdb as the only selectable filetype?
    3.  How can I get around these errors for an .accdb that is password protected?
    Thanks!

    Hi JordanPG,
    To connect to Access 2007 or later database, we need the Microsoft ACE 12.0 OLE DB driver. SQL Server only installs the Microsoft Jet 4.0 OLE DB driver which can be used to connect to Access 2003 or earlier database. Besides, the Microsoft Jet 4.0 OLE DB
    driver only has 32-bit version, but the Microsoft ACE 12.0 OLE DB driver has both 32-bit and 64-bit version. However, the 32-bit and 64-bit Microsoft ACE 12.0 OLE DB drivers cannot be installed on a single server.
    According to your description, you can use the 64-bit SQL Server Import and Export Wizard to load data from the Access database, so the 64-bit Microsoft ACE 12.0 OLE DB driver is installed on your computer. Since the BIDS/SSDT is a 32-bit application, the
    64-bit Microsoft ACE 12.0 OLE DB Provider is not visible in BIDS/SSDT. So, when you said that you select “Microsoft Access (Microsoft Access Database Engine)" in the SQL Server Import and Export Wizard (it is actually the 32-bit version) started by the SSDT,
    I think it should be “Microsoft Access (Microsoft Jet Database Engine)”. Because the Microsoft Jet 4.0 OLE DB driver only supports Access 2003 or earlier format, it threw the error “Test connection failed because of an error in initializing provider. Unrecognized
    database format 'C:\myDB.accdb'”.
    In this situation, you have two approaches to avoid this issue:
    Launch the SQL Server Import and Export Wizard (64-bit), and select “Save SSIS Package” to “File System” on the “Save and Run Package” page. Then, the package will be saved to a specified directory. After that, you can add this existing package to a SSIS
    project. The status of the corresponding OLE DB Connection Manager should be Work Offline, or the OLE DB Source will throw an error about 32-bit driver if the Connection Manager is not in Work Offline status, you can ignore that and the package can run successfully
    in SSDT as long as the project is set to run in 64-bit runtime mode.
    However, for the SSDT 2012 integrated with Visual Studio 2012, the 64-bit runtime mode is disabled. In this situation, to run the package in SSDT, you have to uninstall the 64-bit Microsoft ACE 12.0 OLE DB drivers and install the 32-bit one. Here is the
    download link:
    http://www.microsoft.com/en-in/download/details.aspx?id=13255 
    Regards,
    Mike Yin
    TechNet Community Support

  • Unable to open SharePoint 2010 task from any Microsoft Office application - cannot open a new form (schema validation errors)

    I can’t get the Microsoft Office SharePoint Task integration to work with any SharePoint 2010 Workflows.  When any end user clicks the “Open this task…”
    button from outlook (or any other office application) a warning dialog appears stating that:
    “Outlook cannot open a new.
    The form contains schema validation errors.”
    The error details are:
    Element '{http://www.w3.org/1999/xhtml}div' is unexpected according to content model of parent element '{http://schemas.microsoft.com/office/infopath/2009/WSSList/dataFields}Body'.
    Some points to note:
    I can replicate this using on several computers running as different users. 
    I have full control over the site and the task I am trying to open. 
    When I navigate via the SharePoint site I can open the task. 
    The Info Path form that cannot be opened was automatically created by automatically SharePoint designer / InfoPath.  I have subsequently deleted the form and published
    the workflow (which created the InfoPath form again). 
    I am running Mircosoft Office Professional Plus 2010 version 14.0.5128.5000 (32-bit)
    One workaround is to remove the “Open this task…” button as per
    http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010general/thread/eb273ee9-6a4b-409c-8eb0-5351bb113386/. This is not ideal and will be my last resort.
    Any suggestions and or thoughts appreciated.
    Thanks!

    Yes, I tried that.  It did not work for me.
    I have 4 site collections.  The main site collection is the only one that I receive the error.  
    When the user clicks on the email link  and opens the document for approval, they receive the following error when they click on "Open This Task". 
    Element '{http://www.w3.org/1999/xhtml}a is unexpected according to content model of
    parent element '{http://schemas.microsoft.com/office/infopath/2009/WSSList/dataFields}Body'.
    There is nothing wrong with the task list itself, just the link from the Office 2010 client. 
    I am wondering if there is a web config or other file on the server that is specific to the site collection??
    Tracey

  • What version(s) of Microsoft Office are supported by GW2012

    We have a customer currently on GW2012 who is using the old Novell OpenOffice release (3.2.1-22 IIRC) to integrate with GroupWise Document Libraries. To cut a long story short it is not a rewarding experience for the customer and they want to switch to using Microsoft Office.
    So my question is simple - Which version(s) of Microsoft Office are supported by Novell to work with DMS integration for GroupWise 2012?
    I know they need to be 32bit for ODMA support to even exist but are we talking Office 2007/2010/2013, any of them or none? If nothing is supported any longer then why is DMS even included in GW2012? Moving them to Vibe would be a big ask.
    If this customer buys Microsoft Office and has issues using it with their GW system then we need to be able to raise an SR with Novell and not get a "that's not supported" answer.
    TIA,
    Mark.

    We have been using Office 2010 x32 for about a year with GW 2012 SP2 -
    so far so good.
    As a note, we do get Error 8E14 from time to time when creating a new
    document using "Save As" with an older library document as the source.
    We are able to recover the new file with a few steps and no data is
    lost. Just annoying.
    Not sure about Vibe .... no custom fields, etc
    Steve
    MarkDissington wrote:
    >
    > We have a customer currently on GW2012 who is using the old Novell
    > OpenOffice release (3.2.1-22 IIRC) to integrate with GroupWise
    > Document Libraries. To cut a long story short it is not a rewarding
    > experience for the customer and they want to switch to using
    > Microsoft Office.
    >
    > So my question is simple - Which version(s) of Microsoft Office are
    > -supported- by Novell to work with DMS integration for GroupWise 2012?
    >
    > I know they need to be 32bit for ODMA support to even exist but are we
    > talking Office 2007/2010/2013, any of them or none? If nothing is
    > supported any longer then why is DMS even included in GW2012? Moving
    > them to Vibe would be a big ask.
    > If this customer buys Microsoft Office and has issues using it with
    > their GW system then we need to be able to raise an SR with Novell and
    > not get a "that's not supported" answer.
    >
    > TIA,
    > Mark.

  • Office Control API is it only for Microsoft office

    Office Control API is it only for Microsoft office or can Star office and open office use the same API.
    IF no please let me know the API used for Star office and open office
    Can anybody provide me with a material of integrating open office and star office to webdynpro java.
    Thanks in advance
    Arulbabu

    Hi Prabkaran,
    You are rt, Its only for Microsoft Office. Prequisites are like below :
    Prerequisites
    "You can only use the OfficeControl UI element if one of the following software programs is installed:
    &#9679;     Microsoft Office 2000, Microsoft Office XP or Microsoft Office 2003
    All Office versions are supported that are currently supported by Microsoft. For details, see http://support.microsoft.com
    If you have Microsoft Internet Explorer installed, check your Internet Options to see whether the ActiveX control elements for executing and initializing are enabled. To do this, choose Internet Options ® Security ® Custom level ® ActiveX controls and plug-ins ® Enable. Otherwise, the Microsoft Word or Excel document cannot be displayed."
    You can go learn more at http://help.sap.com/saphelp_nw04/helpdata/en/5d/a0b16a9d2e4e4d8b2322af6728263f/frameset.htm
    Thanks,
    Raags

  • Microsoft Office 2000 Compatibility

    Does anybody know how well SAP B1 integrates with Office 2000?  I've been told for full functionality we need 2003 / 2007, but at present we only use 2000.
    Thanks

    Jonathan,
    The forum that you have posted your question in is for questions related to the SAP Business One Integration for SAP NetWeaver .  Your question is application related.  Application questions should be posted in the SAP Business One Discussion Forum at ...
    With respect to your question ... it depends on what version of SAP Business One you are talking about.  For SAP Business One 2007A, the versions of MS Office that are supported are Microsoft® Office 2003 SP3 Standard & Professional Edition and Microsoft® Office 2007 Standard & Professional Edition.  For SAP Business One 2005A, the versions of MS Office that were supported are Microsoft® Office XP SP2 Professional Edition and Microsoft® Office 2003 SP3 Standard & Professional Edition.
    Eddy

Maybe you are looking for

  • Automatic creation of serial number

    Hello guys,    In serial number profile, in serializing procedure for PPAU and PPRL i have maintained 4-automatic(creation of serial number) and this serial number profile i have given in workscheduling view of material master.When i create the produ

  • Flash builder very slow

    Hi all, i'm using Adobe® Flash® Builder™® 4.7 with Windows 7 64bits, Core i5, 8Go RAM, SSD Samsung EVO PRO 256Go After a few minutes Flash Builder becomes very slow. I can no longer enter a lineunless it freeze. The processor increases its frequency

  • Signal 11 Error for EBS Alert Request :-

    Hello Everyone, One of the alert created in R12 Test Env is errored out with SIGNAL 11 error. After checking the concurrent request log, error has occured while executing the action set that calls action of simple DELETE, ROLLBACK statements. Below s

  • Tracking pad issue with Os

    Sometimes the track pad arrow is not responding correctly.  The arrow will be responsive, the screen will blink and the tracking pad becomes very erratic.

  • Peoplecode to get dropdownlist box value and its description

    Hi, I have assigned a value and its description to dropdownlist box. when try to get the value and description in somewhere, i didn't get the description. i got only the value of the current row in a rowset. but i want to fetch the description which