Connecting NWBC from Gateway using OData

Hi All,
I am looking possible option to connect with NWBC client from Odata service.. The reason is - We have some reports created in NWBC and we want to use this reports to avoid any UI development by using the existing reports.
Can we create a service which receive request from front end UI application in our Gateway server and route the request to NWBC.  So we can see the portal reports..
Please advice if this is possible..
-Rajesh

Ideally you can call anything from the DPC class that ABAP allows you to call.
May be what you can try is to create an RFC that would call the report and send the data.
Then you can call the RFC from the DPC class.
Not sure if this helps you ..

Similar Messages

  • I use Java plugin to remote into work computer. It now freezes when connecting to the gateway using Firfox 4. Any suggestions?

    In Java 3.x I could use Firefox to remote into my company PC and do work. When I upgraded to version 4 it isn't working. I get to where the process is connecting to the gateway and it freezes. I see the Java app begin to run, get a message it's trying to connect to the gateway and then it just hangs.
    Safari and other browsers connect without issue, so I'm thinking there is something going on with the Java app and Firefox. I have the latest versions of both.

    I recommend reaching out to Citrix via their support system -
    http://www.citrix.com/products/receiver/resources-and-support.html
    The receiver app has a specific list of servers it's compatible with, if the server is not on the list the app won't work in OS X.
    http://support.citrix.com/servlet/KbServlet/download/28492-102-671726/Receiver%2 0for%20Mac%2011%204%20FAQ%20v1_1235.pdf
    Do you know what server you're connecting to?

  • How to validate SMP Users against Gateway using OData

    Hello Experts ,
    Could you please let me know the procedure for validating SMP users via gateway . Do we need to create any OData service for validating SMP Users . If we need to do so, where do we provide SMP Connection details to get user related information while generating OData service .
    Else Do we need to follow any other approach for validating SMP Users .
    Appreciate your help.
    Thanks,
    Uday.

    Hello Experts ,
    Could you please let me know the procedure for validating SMP users via gateway . Do we need to create any OData service for validating SMP Users . If we need to do so, where do we provide SMP Connection details to get user related information while generating OData service .
    Else Do we need to follow any other approach for validating SMP Users .
    Appreciate your help.
    Thanks,
    Uday.

  • Connect 9i from vb6 using ADO

    Hi, im havin troubles connectin vb6 usin ADO to Oracle Client 9i, i can connect using OLE DB provider but with MSDAORA i cant connect, why is that?
    Can anyone drive me in the right direction??
    Thanx

    There are two "generic" function modules to read table data from SAP. The one above and RFC_GET_TABLE_ENTRIES. However, most of the time you want to filter/process the data before it leaves SAP as large data handling is slow in VB. If you have ABAP skills it is often better to develop your own RFC enabled function module.
    As of the VB access, there is several OCX you can use, documentation link:
    http://help.sap.com/saphelp_46c/helpdata/en/39/7e11e0ac6011d189c60000e829fbbd/frameset.htm
    Help title: SAP Automation RFC and BAPI Interfaces (BC-FES-AIT
    It's all fairly straightforward once you get into it.
    PS I almost always use the functions OCX...

  • Error while connecting with the url using odata...please help

    hi All,
    I was trying to do one basic ODATA example which i got from the threads.
    <!DOCTYPE html>
    <html><head>
      <meta http-equiv='X-UA-Compatible' content='IE=edge' />
      <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
      <title>Table with OData Binding</title>
         <script id='sap-ui-bootstrap' type='text/javascript'
            src='https://sapui5.hana.ondemand.com/resources/sap-ui-core.js'
            data-sap-ui-libs="sap.m,sap.ui.commons,sap.ui.table"
      data-sap-ui-theme="sap_bluecrystal"></script>
      <script>
      // the root URL of the OData service - prefixed with a local URL to a proxy which forwards the request,
    circumventing cross-domain restrictions
      // IMPORTANT: this proxy must be available for the code example to run!
      var url = "http://services.odata.org/Northwind/Northwind.svc";
    // create an ODataModel from URL
      var oModel = new sap.ui.model.odata.ODataModel(url, true);
      var oTable = new sap.ui.table.Table("sampleTable");
      oModel.read("/Customers",null,null,null,function(){
      var metadata = oModel.getServiceMetadata();
      var entityCustomerRef = metadata.dataServices.schema[0].entityType[2];
      var listOfProperties = entityCustomerRef.property;
      for ( var i = 0; i < listOfProperties.length; i++) {
      oTable.addColumn(new sap.ui.table.Column().setLabel(
      new sap.ui.commons.Label({
      text : listOfProperties[i].name,
      })).setTemplate(
      new sap.ui.commons.TextField().bindProperty("value",
      listOfProperties[i].name))) }
      oTable.setModel(oModel); // set model to Table
      oTable.bindRows("/Customers");
      oTable.placeAt("content"); // place model onto UI
      </script>
      </head>
      <body class='sapUiBody'>
      <div id='content'></div>
      </body>
    </html>
    but when i try to execute the same it is not loading any data and showing the error as :
    2014-07-21 16:04:05 (default) : https://sapui5.hana.ondemand.com/resources/ - sap.ui.ModuleSystem sap-ui-core.js:80 
    2Failed to load resource: the server responded with a status of 501 (Not Implemented) http://services.odata.org/Northwind/Northwind.svc/$metadata
    XMLHttpRequest cannot load http://services.odata.org/Northwind/Northwind.svc/$metadata. Invalid HTTP status code 501 odata.html:1
    2014-07-21 16:04:16 The following problem occurred: Failed to execute 'send' on 'XMLHttpRequest': Failed to load 'http://services.odata.org/Northwind/Northwind.svc/$metadata'. -  sap-ui-core.js:80
    Failed to load resource: the server responded with a status of 501 (Not Implemented) http://services.odata.org/Northwind/Northwind.svc/CustomersXMLHttpRequest cannot load http://services.odata.org/Northwind/Northwind.svc/Customers. Invalid HTTP status code 501 odata.html:1
    2014-07-21 16:04:17 The following problem occurred: HTTP request failed0,, -  sap-ui-core.js:80;;
    But i can launch the url with metadata through browser..kindly help???

    Hi Arun,
    replace the following line in your code:
    var url = "http/services.odata.org/Northwind/Northwind.svc";
    with the following:
    var url = "proxy/http/services.odata.org/Northwind/Northwind.svc";
    It will either work fine or this error will be skipped.

  • How to connect to SMS Gateway using servlet?????? pls help me out...

    Hi! Friends,
    I m working on an application through which we can send SMS to any GSM mobile.
    It is a web based application and the tool i m using is Java Servlet....
    I want to know that how can i connect the application to SMS Center....
    Is it possible to do using servlet. If yes please let me know....
    Waiting for ur positive reply......

    Certainly it's possible.
    Look for a telecom provider in your neighbourhood and ask if they have a Java API and then use it.

  • Connecting ms sql server from oracle using db link

    Hi,
    Source : Oracle 11g on linux
    destination : ms sql server 2005
    i need to create the db link from oracle to ms sql server to view the tables , is it posibble without configuring the gateways( as looks like it is licenced product)
    Please let me know any alternative to achive this
    Thanks
    PGR

    There are 2 gateway - the commercial Database Gateway for Ms SQl Server which requires a license and the Database Gateway for ODBC which is for free. The license for DG4ODBC is included in your database license. You only need to install a suitable ODBC driver on your Linux box (for example use the MS SQl Server ODBC driver for Linux - details can be found here: http://www.microsoft.com/en-gb/download/details.aspx?id=36437 ). and then configure the gateway using the My Oracle Support Note:
    How to Configure DG4ODBC on 64bit Unix OS (Linux, Solaris, AIX, HP-UX Itanium) to Connect to Non-Oracle Databases Post Install  
    [Article ID 561033.1]
    - Klaus

  • Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    ... when i click go - connect to server, it comes up with connection failed.
    If you're trying to connect to a Bonjour server on the remote network, that won't work over a layer 3 VPN. Use something like Hamachi or one of the SSH-tunnelling Bonjour proxy apps for that.

  • WHEN I USED TO CONNECT INTERNET FROM MY IPHONE 4S PERSONAL HOTSPOT VIA USB, AN ICON IN THE NETWORK PREFERENCE NAMED "IPHONE" GETS OPENED.... BUT NOW THIS IS NOT HAPPENING AND I AM NOT ABLE TO CONNECCT PERSONAL HOTSPOT VIA USB CABLE. PLEASE HELP ME OUT

    WHEN I USED TO CONNECT INTERNET FROM MY IPHONE 4S PERSONAL HOTSPOT VIA USB, AN ICON IN THE NETWORK PREFERENCE NAMED "IPHONE" APPEARS.... BUT NOW THIS IS NOT HAPPENING AND I AM NOT ABLE TO CONNECT PERSONAL HOTSPOT VIA USB CABLE. PLEASE HELP ME OUT???

    Please don't shout!   Using all uppercase means shouting on the internet.  If your keyboard is stuck please say so, otherwise people will think you are being obnoxious.
    Now the first question is, when you are saying connecting to personal hotspot, have you always been using the iPhone to connect to the internet?   Are you someplace where the only place to connect is available via tethering to the iPhone's celluar network?  Or do you have other options?

  • HT3576 How can I get rid of "Connect to itunes to use push notifications" pop-ups.  I just had to replace my iPhone 5 and when I did a restore from backup, most of my apps will not let me in becuase I cannot get past the"connect to itunes..." message.

    My iPhone 5 was distroyed so I replaced it with a new iPhone 5 yesterday.  I did a restore from a backup that i had performed a week ago.  When I tried to use the phone several of my apps would not let me in becuase they continually gave me a popup message "Connect to Itunes to use push notifications".  I click ok and the popup comes back.  I have shut my phone off several times.  I have complete closed the apps several times.  I have even deleted the apps from my phone and reinstalled.  All to no avail.  Please help - does anyone know how to fix this?

    Yes - I connected my phone to my computer / Itunes and went into the apps section, but from there I have no idea how to manage the push notifications.  I even tryied going into itunes that is installed on my phone.  I still cannot find anyplace to manage these popups.  I have also gone into settings - notifiations - and tried turning all notifications for these apps all off but that didnt work either.  Any guidance is MUCH appreciated - Im not sure where to go from here.

  • I have a desktop computer with xp Pro windows. I updated from Firefox 3.6 to 4.0 and found I could not connect to the internet using this updated bowser. I had to remove 4.0 and reinstall 3.6 to restore a working version of Mozilla. Why did this occur?

    I tried to update my browser from 3.6 to4.0. On restarting the computer I found I could no longer connect to the internet. I then connected to the internet using Internet Explorer and removed the mozilla browser and reinstall Mozilla firefox 4.0. Again the browser using this updated version didn't work. So reinstalled Mozilla firefox 3.6 and it worked.
    It appearsMozilla firefox 4.0 has a problem.
    My operating system is Windows XP pro.

    Uninstall 2.x totally
    Use CCleaner Registry tool
    Do whatever you need to to nuke the existing Apple programs and folders hidden here and there also.
    BC 2.2 was XP and Vista only

  • TS1424 everytime i try to download an app from itunes, or to 'view all' the apps listed, the error says; 'We could not complete your iTunes Store reuest. The network connection was reset' I used both my desktop and laptop both on Windows 7 Pro, & net is f

    everytime i try to download an app from itunes, or to 'view all' the apps listed, the error says; 'We could not complete your iTunes Store reuest. The network connection was reset' I used both my desktop and laptop both on Windows 7 Pro, & net is fine. please help. is there soemthing wrong with apple store temporarily?

    The latest message is: 'We could not complete your iTunes Store request. The network connection was reset.'
    In between, I got a messge about verifying my payment method. When I tried to submit the details, I kept getting a mmessage stating that my payment method was declined (my card is not near it's expiration date, and works fine).
    Argh!

  • Can't print from PC using AExtreme connected printer...

    Hi!
    I have an AirportExtreme BS connected to my cable modem and I can connect to the internet using my PB G4 and my wife's Dell PC using Windows XP. She is using a Belkin Wireless Network Card. No problem there!
    I also have a Lexmark C510 printer connected to the Airport Extreme via UBS. I can print without a problem from the PB G4 but on the Dell PC we can't even get it to recognize the Lexmark printer.
    When contacted directly Lexmark said that they don't provide support for Airport Extreme, blah, blah...
    Any words of advice?
    Thanks!
    Dennis

    I suggest you follow the detailed instructions found at:
    http://www.efelix.co.uk/tech/1008.html

  • How can I connect personal hotspot to use the internet from my phone on my laptop?

    I do not have internet at home and want to be able to connect using the personal hotspot on my phone. How do i do this??

    How much would be a month?
           From: Verizon Wireless Customer Support <[email protected]>
    To: kelly johnson <[email protected]>
    Sent: Wednesday, October 8, 2014 12:02 PM
    Subject:  - How can I connect personal hotspot to use the internet from my phone on my laptop?
    #yiv3595356488 img
    |  
    |
      | 
    A message from the Verizon Wireless Community
      |
    |   |
    How can I connect personal hotspot to use the internet from my phone on my laptop?
    created by Verizon Wireless Customer Support in iPhone 4S - View the full discussion                  Hello kmj65
    Thanks for replying. The plan you have it would be an additional charge to add the hotspot feature. It's not free with the Nationwide plan. You would need to add the feature online at www.verizonwireless.com/myverizon
    JoeL_VZW
    Follow us on Twitter @VZWSupport   Reply to this message by replying to this email -or- go to the message on Verizon Wireless Community Start a new discussion in iPhone 4S by email or at Verizon Wireless Community


    © 2014 Verizon Wireless
    Verizon Wireless
    One Verizon Way
    Mail Code: 180WVB
    Basking Ridge, NJ 07920
    Not interested in these emails anymore, or want to change how often they come? Update your email preferences by visiting https://community.verizonwireless.com/user-preferences!input.jspa.
      |
    We respect your privacy. Please review our privacy policy for more information
    about click activity with Verizon Wireless and links included in this email.
      |

    |

  • My samsung says video out from i pad is not supported. i am connecting with apple dock using hdmi. I do get the audio

    my samsung says video out from i pad is not supported. i am connecting with apple dock using hdmi. I do get the audio  any suggestions?

    Jeffrey-
    If the HDMI input to the Samsung is not compatible, does it have a VGA or composite input?  I have both the HDMI and VGA adapters for the iPad, which work with the small Vizio HDTV I tried.  I understand a composite video adapter is also available.
    Fred

Maybe you are looking for

  • Setting up a server to share my external hard drive ?

    Hello, I recently bought a Seagate Dockstar (a kind or ARM computer) in order to share my documents located on my external hard drive with my Arch laptop, and my iMac. I would like to have read & write access to my external hdd from both my laptop an

  • How do I paste a jpg larger than 150 dpi into Illustrator?

    I have Adobe Illustrator CS5 and run OSX 10.6.8 2.4 GHz Intel Core 2 Duo with 4GB of RAM and my question is this -- when I copy a jpg image from my Adobe Photoshop (Version 8.0) and bring it into Illustrator for a project and try to paste it in, it a

  • New iPad mini retina but why can't I download pages and numbers for free?

    I have just bought an iPad mini retina and used my current itunes account to register on the iPad. I can see that the keynote that I bought before is free but not numbers and pages. Are they not suppose to be free when buying a new device?

  • Syncing issues with iTunes to iPhone 4 after new update

    After the recent software update of ios 7.0.4., my music was no longer syncing to my iPhone 4. All the songs are ticked and ready to go but nothing would happen. I tried doing it manually. I also restarted my computer and phone but nothing is still h

  • Can I safely delete old libraries?

    I notice that I have a LOT of old Libraries, e.g. ITUNES Library 2005-9-12, etc. The older ones run from 3,000k+ to the newest at about 8,700k. Are these just old backups? Can I get rid of the earlier ones to free up disk space (I assume I'd keep the