How to use cached DISPID Binding in excel vba ?

Hi All,
I trying to call soap service in excel using vba so please provide some syntax or code to consume soap service using Cached DISPID Binding.
Also how/where to find the DISPID of soap service or any other component.
Your help will be highly appreciated.

Hi Balaramji,
As this question is actually all about VBA programming, you can check these two links that may be helpful:
Web Service calls from VBA excel
Consuming Web Services in Excel 2007
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • How to Use Web Printing with Microsoft Excel

    Hello,
    In the recent How to paper on Use Web Printing with Microsoft Excel, describes few ABAP classes and methods. Can those classes be modified  to access much more Microsoft excel objects , such as Macro ? Does any body has tried in those lines ? Any suggestions is eagerly awaited.
    regs
    D Bret

    Hi BW people,
    Since we want to modify our reports for printing (and the How-To about enhancement of web printing does not really answer to our requirements) it seems that the Excel alternative is just what we were looking for.
    Unfortunately I have been working with these classes for 6 hours now to get a very simple Excel file, but without success. I did fix the bug like Thomas Kauffman told on the forum, changed the dataprovider and prefixes and I followed every single step of the How-To document(also the check of folder options to open/save the .xls file),... The only thing that happens: the URL has changed (bookmark) and the page is reloaded again.
    So no Excel file, neither a dialogue box. I also walked -a very long time- through the code (in debugging mode) starting from ZCL_RSR_XLS_HELP_WINDOW_PRINT->PROCESS_CMD but I can't find anything!
    Is there anybody with the same problem and -better- with a possible solution to it?
    Thank you very much in advance!

  • How to use Cache Management Library (CML) for custom applications?

    Hello,
    We are planning the migration of multiple applications (J2EE, Portal, Web-Dynpro for Java) from 7.01 to 7.3 and we would like to replace some custom cache implementations with a central cache management provided by the SAP Web-AS Java.
    Several SAP standard services (e.g. UME, Configuration Manager, Scheduler) seems to use the "Cache Management Library" (CML):
    [http://help.sap.com/saphelp_nw73/helpdata/en/4a/f833eb306628d2e10000000a42189b/frameset.htm]
    Such caches can be monitored using SAP Management Console (AS Java Caches).
    Portal Runtime (cache_type=CML) and Web Page Composer can also be configured to use CML:
    [http://help.sap.com/saphelp_nw73/helpdata/en/49/d822a779cf0e80e10000000a42189b/frameset.htm]
    [http://help.sap.com/saphelp_nw70ehp2ru/helpdata/en/13/76db395a3140fcb17b8d24f5966766/frameset.htm]
    So our questions:
    How to use CML for custom applications?
    Is there any example or documentation available?
    Kind Regards,
    Dirk

    Thanks Vidyut! You've answered my question.
    I placed the jar file in the $CATALINA_HOME/shared/lib directory. But where should I place the taglib TLD file? And how should I reference it in web.xml?
    Currently, my web.xml is as follows and it doesn't work.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <taglib>
    <taglib-uri>http://abc.com</taglib-uri>
    <taglib-location>c:\Tomcat\shared\lib\mytags-taglib.tld</taglib-location>
    </taglib>
    </web-app>
    Thanks again!
    Joe

  • How to use the function EXEC_SQLCMD_MSQ in Excel?

    Hi Friends,
    can anyone explain how to use use this function EXEC_SQLCMD_MSQ in Excel to get the result.
    I have written excel macro to use this function,  statement like "Select * from t001" but the function doesn't reply any value.
    My objective is to pass the (any, generalised)
    sql statment to this function and get the result in Excel file.
    Please give the solution for this.
    Thanks
    Shankar

    Hello Shanker,
    The Fm EXEC_SQLCMD_MSQ is used in report RSMSQ020.
    U can do the same in ur report.
    If useful reward the points.
    Regards,
    Vasanth

  • How to use JDBC Positional Binding Style & ExecuteWithParams?

    Can anyone provide any help here including any documentation on how to configure this (I've checked online help and the developer guide.)
    When defining multiple Bind Position variables on a View Object (using sql statement binding style: JDBC Positional), should I defined multiple bind variable names? Otherwise, if I don't, when I use ExecuteWithParams operation to create the data control, only one input variable field is displayed. I can get a single bind position variable to work, but am struggling on how to configure / get multiple bind position variables to work with ExecuteWithParams.
    Here's my current configuration:
    1. Define View Object with two JDBC Positional Binding Parameters
    -- Bind Variables: name=parm1 (???should I define a second bind variable name???)
    -- Bind Positions = 0,1
    -- SQL Statement add another position var in where clause: "match (zip) against (CONCAT(?,'*') IN BOOLEAN MODE) and "match (name) against (CONCAT(?,'*') IN BOOLEAN MODE)
    2. On a JSF page, drag ExecuteWithParams operation from data control onto the JSF page. If I have defined only one bind variable name, only one input field is displayed (and one field label that I defined for that bind variable), but I need two input fields - one for each bind position variable. How do I set this up?
    Back-end Database is MySQL 5.0.1 which is why I am using binding stye JDBC positional.
    Thanks, Tom
    Message was edited by:
    javaX

    I did some more testing and the problem is that the queries work with one bind position variable but not with two. I created two simple view objects off of the same entity object to test:
    #1 - ViewObject with one bind position variable - where clause: where id > ?
    #2 - ViewObject with two bind position variables - where clause: where id > ? and id < ?
    I created two separate .jspx pages, view1.jspx (one input field) and view2.jspx (two input fields), for each view object by dragging ExecuteWithParams operation onto the JSF page.
    The .jspx page with one input field works (returns result sets.) The view2.jspx page with two input fields does not work - the query does not return any result sets (no errors produced, it just does not return any rows) - I've tested my query outside of jdeveloper and it works fine. I also tried switching my inputs to make sure I did not have an illogical query (i.e., id >100 and id< 1).
    Is there anything different / extra I need to do to use two bind position variables?
    I'm STUCK HERE.
    Everything in this simple test was identical except for using 2 input variables versus 1.
    Technology stack is: jdeveloper 10.1.3, jsf/ADF BC, mySQL 5.01
    Since I now understand what the problem is better, I'm going to re-post this as a new topic that more appropriately describes the problem, "Queries not working with multiple bind position variables?"
    Message was edited by:
    javaX

  • How to use formatter if binding syntax is not complex

    Hello all,
    i know how to use formatters in UI5 HTML views when data-sap-ui-xx-bindingSyntax="complex"
    But currently i have an app where the bindingSyntax is not set to complex, and for certain reasons i don't want to change that at the moment.
    How do we use formatters in non-complex binding mode? I cannot find anything about that in the docs. Constructs like data-something="{path: ' ', formatter : ' ' }" seem not to work in non-complex mode.
    Thanks in advance,
    Jan

    Hi,
    you can use formatter function. refer SAPUI5: How to directly bind two data properties into one control property using OData model? and javascript - SAPUI5: How to directly bind two data properties into one control property using OData model? - Stack Overf…
    Regards,
    Chandra

  • How to use loop in VBAK table using BDC RFC connection through excel vba ?

    Hello,
    I am trying to extract data from VBAK table using rfc connection with Excel VBA. where i can able to pull data first time, when i tried to use the same set of code using loops, it throws an error like BAD INDEX.
    Any help appreciated.

    Hello,
    I am trying to extract data from VBAK table using rfc connection with Excel VBA. where i can able to pull data first time, when i tried to use the same set of code using loops, it throws an error like BAD INDEX.
    Any help appreciated.

  • How to use caching in flex

    Hi
    i'm new to flex.I want to use caching in the flex application but i couldnt find any details regrading that.In my application will be getting values from a xml feed but on holidays there wont be any change in the values so instead of ping the server i would rather cache it and then display the values.Can u help me on this??
    Thanks,
    Magesh

    Hi Magesh,
    You can use shared objects (flash cookies) to save persistent data on a user's computer. This local storage is not garanted! The user can disable it and can also limit the amount of data that can be stored.
    I think you still need to query the server to check if the data has been updated. If so the app can receive remote updated data otherwise it can use local data.
    hth,
    Jerome.

  • How to use cache on Proxy service in OSB

    Hi all,
    I need to use cache on proxy service. I am new to OSB, I have searched for this on net but unable to find.
    Please come up with some docs or links going through which I can achieve this.
    Thanks,
    Phani.

    i assume you already checked the result caching feature which can be used on the business service?
    http://docs.oracle.com/cd/E14571_01/doc.1111/e15867/configuringandusingservices.htm#OSBAG170

  • How to call a labview dll from excel-VBA?

    How to call a simple Labview DLL from Excel VBA?
    I have seen examples of DLL calls from VB but does it work the same way for VBA? I have 2000 excel and Labview 8.5. I created the DLL and tried to call it from VBA using the same type of code as in NI's website example(ofcourse its a bit diff with 8.5)
    http://zone.ni.com/devzone/cda/tut/p/id/...
    BUT it errors out when called from excel
    ERROR: The object invoked has disconnected from its client

    You would need to provide more details about the LabVIEW DLL, such as the prototypes of the functions (VIs) that you're trying to call, and your actual VBA code. Specifically, what object you're trying to create. You should also make sure the Run-Time Enginer is installed, as well as any required libraries such as the VISA Run-Time if you're using VISA. Have you made sure to enable the ActiveX server for the DLL?
    A search yielded the following items that you may wish to peruse:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=261345&requireLogin=False
    http://forums.ni.com/ni/board/message?board.id=170&message.id=45099&requireLogin=False
    http://forums.ni.com/ni/board/message?board.id=170&message.id=299209&requireLogin=False
    http://forums.ni.com/ni/board/message?board.id=170&message.id=195846&requireLogin=False

  • How to call Copy.GetItem Method in Excel vba function

    Hi,
    I want to use sharepoint copy services to download/upload or retreive field information of a sharepoint file.
    For that i want to sharepoint web services. One class among them is copy. I want to call the GetItem method present in that class.
    Think that modules are not installed or not found in excel vba editor tools reference library list to enable.
    So please provide me the steps from scratch to install the sharepoint library. and call the Copy class methods in my script.
    Just send me a sample vba code to accomplishes the same requirement. I appreciate the help.
    Regards,
    SUBBA

    Hi SUBBA,
    The following articles for your reference:
    VBA - Download files from sharepoint
    http://ckannan.blogspot.com/2012/09/vba-download-files-from-sharepoint.html
    Using Microsoft Windows SharePoint Services with the Microsoft Office System
    http://msdn.microsoft.com/en-us/library/office/aa159897(v=office.11).aspx
    How to download a file from a Sharepoint server via Excel VBA?
    http://www.justanswer.com/computer-programming/7ntq7-download-file-sharepoint-server-via-excel-vba.html
    About the Excel VBA questions, you can also post it to Excel for Developers Forum, you will get more help and confirmed answers from there.
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=exceldev<o:p></o:p>
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to use SharePoint Metadata in MS Excel

    Hi,
    I would like to use the metadata from a SharePoint library in an Excel file without a VBA scripts. How can I get these metadata into an Excel file?
    Thanks in advance.

    Hi,
    In MS Word we have the possibility to use a library's metadata by using "Quick Parts" and "Document Properties". Unfortunatly, MS Word is not very confortable in contrast to MS Excel. Therefore we are looking for a solution to use the metadata of a sharepoint
    library in an Excel sheet.
    For example: We have implemented a customized Excel file with calculated columns. This excel file should be a, lets say a measurement protocol.
    By creating a new document (Excel Template) we want to add only the measurements. The metadata shall appear within the template. (LookUps, Date, Responsible, ID, etc.)
    Export the data into an excel file is very redundant. Because you have the data inside the library and in the excel file. Copying, Sending, Renaming, etc.. I just was wondering why MS Word has this option and MS Excel not? Do you know how I can use those
    metadata from SharePoint? 
    Thanks in advance. 

  • How to use caching in OSB

    Hi all,
    I am very new to the OSB. I have got one requirement in which I should create a cache
    to store the result for a certain period of time. The result would be a collection of employees
    which comes by invoking a webserivce service. We have a webservice which returns the employees
    based on the search criteria. If someone want the same list of employees we are hitting the web service again
    instead of that we are planning to cache the result of the search criteria and use them if the same request
    comes, rather than invoking the web service every time. For that, Is there anything available in OSB ?? if so how
    can I make use of it.. Kindly come up with your help please.
    Thanks & Regards,
    Phanindra.

    my the business service might return more than 10,000 records can I still go with the in built cache? or will it lead to performance issue?If you have enough memory resource available and following the best practices, you won't have any performance issue. It is highly scalable. Please refer -
    http://tomhofte.blogspot.com/2010/06/coherence-in-oracle-fusion-middleware.html
    http://blogs.oracle.com/MarkSmith/entry/osb_and_coherence_integration_1
    Regards,
    Anuj

  • How to use call a binding action using Javascript ?

    Hi adf people,
    JDev : 11.1.1.4.0
    How to submit the binding action using the Javascript ?

    what do u mean by submitting the binding action..???
    for javascript you can either use
    af:clientlistener to call javascript
    af:serverlistener to call from javascript to managed bean
    http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e12419/tagdoc/af_clientListener.html
    http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e12419/tagdoc/af_serverListener.html
    please tell us if you need any more information.. or explain your question properly..

  • How to use the http binding example?

    Hi all,
    i want to test the http binding example, but i didn't find any documentation to this example. Therefore i need some answers to my questions
    1. How do i deploy the QuoteService to the engine (do i have to compile it in the JDBPEL Designer?)
    2. When i have deployed the HttpBindingExample, how do i use it (which input data to use in the Process Manager?)
    Thanks for replying
    Alli

    Hi Ali,
    The QuoteService is a simple JSP, so you should deploy it as a web application to your local OC4J server which hosts the BPEL server. The context root should be QuoteService as described in the wsdl: <http:operation location="/QuoteService/quotes.jsp" />, or more simply just put under the default application location with a folder named QuoteService.
    The following code in the BPEL process assigns a value to the input variable of the invoke which invokes the service:
    <assign name="assignQuoteRequest">
         <copy>
              <from expression="'ORCL'">
              </from>
              <to variable="quoteRequest" part="symbol"/>
         </copy>
    </assign>
    Hope this helps,
    ~ronen

Maybe you are looking for

  • 11.1.0.7 SPM is not functioning

    Hi all, I'm relying on SPM to control plan change. But it's found that the SPM cannot deliver what it promises to achieve, resulting in performance regression. The SQL Txt driven from application cannot be amended. The explain plan complains about th

  • Lion install aborting before download complete

    I've successfully installed Lion on one iMac and my MacBook Pro. However, when installing on my wife's iMac, I forgot to update to the latest version of Snow Leopard first. Now the Lion download aborts about a third of the way through the process, re

  • ThinkPad W520 & Kingston Hyper-X DDR3 PnP 1600MHz Compatibility

    Hello all, I just ordered a W520 with an i7-2820QM 8MB L3. It comes with 8GB (2 x 4GB) of 1333MHz DDR3 RAM, (Samsung?) I have 16GB (4 x 4GB) of Kingston Hyper-X 1600MHz DDR3 RAM on hand and am wondering if any W520 owners/users have had any experienc

  • Budget profile error

    While creating budget through CJ30   for a project , the following Error message comes "Assign  plan/ budget profile to the object" Although in the config. Budget profile is already assigned to that Project profile. But  through CJ02 ,in the control 

  • Itunes 10.5 won't launch using windows xp

    Itunes 10.5 won't launch.  I'm using Windows XP Pro.  I've uninstalled and reinstalled and conifrmed I have vbscript running.  Please advise...