Fetch Records directly from BackEnd DB

Hi Forum Members,
I have a Z table. It should have a SQL Server representation at the Back End! I want to directly fetch data from that Back End SQL Server table. Is it possible? If yes, then how?
Also I want to know if my Z-table name is ZEMP then what will be it's name in SQL server DB. Will it get changed or it will be the same ZEMP?
Sugata

Hi Joachim,
  That is not the answer of my question. I want to access the underneath database (SQL Server or Oracle) directly. If my Z-table name is ZEMP, in backend database what would be the corresponding table for ZEMP? Will it be ZEMP or something else, I mean to say some suffix/prefix will be added with the Z-table name?
Secondly, will I be allowed to directly access the back end database? If yes, then how and what all authorization I must have with me?
Pl. respond.
Regards,
Sugata

Similar Messages

  • Recording direct from PC, Xtreme Gamer

    Hi all, I know this question has been asked before, but I couldn't find it in a forum search, so I don't mind a link to a previous answer to this, and that is; how do I record directly from the PC and not the microphone. I am using Jing Pro to record the video and I would like to submit a song with it on You Tube that comes direct from my PC for cleaner sound. I have the Sound Blaster X-fi Extreme Gamer? with driver version 2.20.65
    My PC specs are Windows 7 64-bit and I am using Logitech G5 5. sound system.
    Thanks for your help
    Scott

    I managed to solve the problem But I don't rly know why it's working for me now:S Because I reinstalled the newest drivers for couple times and it's worked at least... I read somewhere that this card doesn't work fine at Windows 7 x86/x64 Ultimate (best of 7th version is propably Professional), I have both on student license, but I was too lazy to reinstall the systemD

  • Creating new DMS info record directly from purchase order transactions

    Hello Everybody,
    does anyone knows of a way to make it possible for users to Create New DMS info record directly from the purchase order transactions ?
    e.g:
    in ME22N there is a button of "Documents" for an item level in the order, but that button only allows to link an existing info record.
    Link To a screenshot:
    http://img263.imageshack.us/i/me22n1.jpg/
    Regards,
    Yossi Fridman.

    hi
    This query has already been addressed in the following Forum by Christoph Hopf..
    pls chk link below.
    Create DIR through P.O and Sales order screen
    Thanks
    john
    Edited by: johnpp on Feb 15, 2011 11:54 AM
    Edited by: johnpp on Feb 15, 2011 11:57 AM

  • Trying to fetch the data from backend but its throwing an exception

    Trying to fetch the data from backend by clicking on a search button, but its throwing an exception
    ex: Could not create JCOClientConnection for logical System: MIGATEST_MODELDATA_DEST - Model: class org.wb.operations.testflightmodel.FlightModel. Please assure that you have configured the RFC connections and/or logical system name properly for this model!
    can anyone help me how i can proceed further.
    regards,
    Suresh.

    Hello,
    Go to http://<servername>:<port>/webdynpro/welcome and check whether the destination name MIGATEST_MODELDATA_DEST exists there and working fine.
    Ashu

  • Record directly from camera to  hard drive

    Can I record a two hour stage play directly to my MacBook Pro's hard drive (or to an external hd)? Are there any issues that I should be aware of?

    You need a camcorder to capture the 2 hour stage play. You can transfer to the computer's hard drive later. There are USB cameras that record directly to the hard drive, but they are low resolution.

  • Can we do Audio Recording direct from phone on Captivate 5?

    Hi Folks,
    I wonder is it possible for us to do an audio recording from our phone via a headset with an in-built mic. Something is an audio conferencing on the phone while we have netmeeting to share our documents? Or we have to do it via skype or msn directly which mean a mic input into our laptop in order to record down the meeting on Captivate 5 in full video with audio?

    Thanks so much imjolly, I have tried on numerous occasions connecting the HH4 to the test socket in the master NTE5 (in the attic!) to no avail, I'm using filters, I've changed filters over (we've several) unplugged everything, I haven't done a quiet line test (will have to find out how), the speedchecker gives us 4-6 Mbps (just at the mo we're getting 4Mb) and I found these figures in the router; I could find other logs too I'm sure! Many thanks again - I'm optimistic about July!
    03:36:12, 21 Jun.
    DSL noise margin: 23.00 dB upstream, 12.00 dB downstream
    DSL line rate: 448 Kbs upstream, 4096 Kbps downstream
    DSL is down after 303 minutes uptime
    ETHoA is down after 303 minutes uptime
    PPPoA is down after 303 minutes uptime [Waiting for Underlying Connection (WAN DSL- Up)]
    Hope this is of help!

  • I am trying to connect my ipad version of garage band to my mac book pro so as to record directly from the ipad as a midi instrument but with no success.  Can you help?

    I am trying to connect my ipad to my mac book pro.  I want to use the ipad as a software instrument (playing from garage band) and to record in garage band on the mac book.  I have plugged the ipad in, turned on the ipad and opened up garage band but the mac book pro has not picked it up.  Why?  Any suggestions.

    Maybe it should, I'm all PC here so I can't actually test it myself. As far as I can recall all the stuff I've read has GarageBand for iOS acting as the recording instrument in the MIDI relationship rather than an input device for something else.
    Could be worth posting to GarageBand for iOS Feedback and suggesting it as a feature.
    tt2

  • Strange Behavior: VO query result shown in UI different from backend

    Hi Experts,
    I have an issue with one of the VOs in my application. The VO uses an expert query.
    The application uses ADF faces for the front end. The UI is created by dragnDrop method from ViewCriteria(Datacontrol for this VO) to the page.
    I would expect the page to always show the data which I would get when I execute the query from the backend.
    But the data that comes up in the UI(through the VO and queryPanel, af:table) is different from the data set if I execute the query directly from backend. (Oracle 11G Database)
    The issue occurs for one set of data and not for another set of data.
    I tried the following:
    In VOImpl, the executeQuery method is overridden to add additional filters.
    Just before super.executeQuery, captured the getQuery() result.
    The query got this way, I am running from back-end(SQLPLUS/Toad) returns expected results, whereas when the Application is run, the UI table shows duplicate data for one set alone.
    Please share pointers on how to debug this issue further.
    Please note that this post is not about the query but I am illustrating the query here just in case its needed.
    The query is something like this:
    Fetch rows from maintable that belong to either the set mapping to :bindvariable1 or the set mapping to bindvariable2. This could be represented as a union between the two selects as well.
    select
    col1,col2,col3...
    from main_table, table1, table2
    where
    (main_table.idcolumn =:bindvariable1
    and table1.referencecolumn =:bindvariable1
    and table2.referncecolumn =:bindvariable1)
    or
    (main_table.idcolumn =:bindvariable2
    and table1.referencecolumn =:bindvariable2
    and table2.referncecolumn =:bindvariable2)
    and
    maintable.idcolumn2=table1.idcolumn
    and maintable.idcolumn3=table2.idcolumn
    Thanks for your time and help.
    Ganesh Iyer

    Do you have a security policy associated with the table?
    Oracle 8i supports virtual private database where the server can dynamically modify a query.
    The query 'SELECT * FROM EMP' could be modified by the server to 'SELECT * FROM EMP WHERE DIVISION = 'AIRCRAFT' by putting a security policy on the EMP table.
    You, as a user, would never know it happened.
    A security policy based on some arcane rule such as the time of day could cause the problem you are describing.
    The only other way I know of is if you logged in as two different users and each user has different privileges on the table.
    Good luck!
    null

  • Way to record straight from DV camcorder?

    Is there a way to record directly from a DV-camcorder? If there is, how? I'm using a Panasonic PV-DC252. I want to directly record from my camcorder as I don't want to use tapes to record my videos.
    Please Help! Thanks!

    No Klaus, I don't believe that a 4 pin firewire will fit into a six pin socket. Correct about the scart plug though.
    We are slowly drifting away from the original question which I believe revolves around the change that has been made so that ALL cameras plugged in no longer are "recognised" as cameras. If this continues we will in the future be buying lightbulbs which do not work since they are not fitted with the chip that allows the current to flow. Just how far does the innocent consumer let himself get ripped off before he takes to doing the same amount of damage to the companies who are continually swindeling away his limited resources? My trust is day for day dwindling as I see through more of their methods of increasing revenues.
    Or can someone show me that I am dreaming?

  • Importing directly from Dvcam didn't work

    I have a few cameras that go to a switcher, which is plugged into a Sony Dvcam (records to tapes).  I stopped using the tapes a while ago and recorded live to iMovie with Fire wire. 
    I recently got a new MacBook Pro with Final Cut Pro, so I connected the Dvcam to it with the fire wire and a thunder bolt adapter.
    Anyway, Final Cut Pro did not record directly from the Dvcam.  On iMovie, I would just click Import and it would record.  But I clicked import on Final Cut pro, and it looked like it was importing.  After an hour, I clicked Stop Importing and I realized that nothing was recorded and I lost everything.
    After messing with the Dvcam and FCP, I noticed that it does import if I have a tape playing.  But it doesn't import if there's no tape??? I don't get it, why can iMovie do this but not FCP?
    Another thing I notice is that FCP gives control to the Dvcam and vice versa, which I don't want.  For example, if I click import while there's a tape in it, it will play whatever was on the tape and starts importing that.  Or if I stop recording on the tape, the importing will end.  Overall though, I don't even want to use tapes if I don't have to.  But I use the Dvcam because I have the Fire wire output (which I now connect with the thunder bolt adapter).

    So is there any way I can still record live from dvcam to FCP?
    I would just record in iMovie and edit in FCP, but importing dv iMovie projects = no audio in FCP apparently.

  • Record audio from .exe file

    Hi we had created an entire project of 2.5 hours of around 140 slides using Adobe Captivate 6. We had put the slide notes as text and published an .exe file and shared the same with the client.
    However, now we have lost the source captivate .cptx file and have to redo the project from scratch.  We have the powerpoint presentation for each slide so putting the objects as per the .exe is not an issue.
    We figured the easiest way to have the audio is to record directly from the .exe and then put the audio files in captivate, rather than putting slide notes and repeating the entire process.
    Is there a way to directly record audio from the .exe file? This will reduce our effort with respect to the pronunciation of words.

    Double-click your .exe file and let it run, do not close. If you're on Windows 7 go to
    C:\Users\your user name\AppData\Local\Temp\
    and look for a folder like CPE7770.tmp. You can use the date and time stamp to locate this folder.
    Your swf file will be there.
    If on another Windows OS, the path should be similar.
    You can also use software like Audacity or Audition to record audio from your computer. Set up will depend on your system config.
    Cheers,
    Seth

  • Fetch Info Record price from ECC 6.0 and print on Consignment Contract form

    Hi, we need to fetch the info record price from ecc 6.0 and print it on the consignment contract form. the system for using consignment contracts is not designed yet. once it is designed the consignment contracts would be created in the srm system. we're using srm 5.0 and using extended classic scenario. currently the purchase contracts are being created directly in the srm system. someone plz help me with this.

    knock knock...anyone here? plz help me.

  • PDE-PLI031 Unable to fetch record from table tool_modulre

    Dear ALL
    I am creating PL/SQL Libraries in report builder.
    but When I try to save the Library to database, a error
    PDE-PLI031 Unable to fetch record from table tool_modulre.
    Would you please tell me how to solve this problem
    and why it coming
    thankyou very much
    pritam singh

    Hi ,
    Saving a library (.pll) to database would store the object inside specific tables that are to be created.
    If you are using 6i, then you should find toolbild & toolgrnt.sql files which you have to run in the order specified. The above scripts creates the necessary tables and henceforth you won't get those errors while saving.
    Hope this helps.
    Thanks,
    Vinod.

  • MDX to fetch record from 1st of current month to 5th of next month and same for previous year

    In my date dimension I have a attribute CalendarDate. I do have a hierarchy [Date].[Year].[Quarter].[Month].[CalendarDate] as well. I need to fetch data starting from 1st working day of current month to 5th working day of next month by MDX. I do have a attribute
    to filter working day as IsWorkingDay. How can we get a dynamic MDX that will find the current month first and than it will filter the record from 1st working day of current month to 5th working day of next month. And same for the previous year same month
    to compare.
    Thanks in advance!
    Palash

    Hi P,
    You can use a calculated member to dynamically add all the days in the current month and the first 5 in the following month.  You will need to change measure, cube and hierarchy names.
    with member measures.ThisMonthAnd5 as 
    sum([Date].[Year].parent.children,Measures.[Sales])
    +sum(Head([Date].[Year].parent.nextmember.children,5),Measures.[Sales])
    select 
    {Measures.[Sales]
    ,Measures.ThisMonthAnd5
    } on 0,
    non empty [Date].[Year].[CalendarDate]  
    on 1
    from MyCube
    Richard

  • How to fetch records from the database into a combo box?

    Hi:
    I&acute;m really new with ABLBPM and I&acute;m trying to fetch records from the database to display them into a combo box as valid values for a presentation but I&acute;m using a dynamic method with this code:
    <em>for each row in SELECT campo1, campo2 from TABLE</em>
    <em>do</em>
    <em>solicitudes[] = [row.campo1, row.campo2]</em>
    <em>end</em>
    <em>return solicitudes
    </em>And the debugger says that SQL instructions can be used only in fuctions and procedures that are executed on the server.
    Do you know another way to do it?
    P.D. Sorry for my terrible english
    Greetings

    Hi Steve,
    Thank you, your idea is perfect, but when I try to run the screenflow where the combo should be filled I get this error:
    fuego.lang.ComponentExecutionException: No se ha podido ejecutar correctamente la tarea.
    Motivo: 'java.lang.NullPointerException'.
         at fuego.web.execution.InteractiveExecution.setExecutionError(InteractiveExecution.java:307)
         at fuego.web.execution.InteractiveExecution.process(InteractiveExecution.java:166)
         at fuego.web.execution.impl.WebInteractiveExecution.process(WebInteractiveExecution.java:54)
         at fuego.webdebugger.servlet.DebuggerServlet.redirect(DebuggerServlet.java:136)
         at fuego.webdebugger.servlet.DebuggerServlet.doPost(DebuggerServlet.java:85)
         at fuego.webdebugger.servlet.DebuggerServlet.doGet(DebuggerServlet.java:66)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
         at fuego.web.execution.servlet.ServletExternalContext.forwardInternal(ServletExternalContext.java:197)
         at fuego.web.execution.servlet.ServletExternalContext.processAction(ServletExternalContext.java:110)
         at fuego.webdebugger.servlet.DebuggerExecution.dispatchComponentExecution(DebuggerExecution.java:64)
         at fuego.web.execution.InteractiveExecution.invokePrepare(InteractiveExecution.java:351)
         at fuego.web.execution.InteractiveExecution.process(InteractiveExecution.java:192)
         at fuego.web.execution.impl.WebInteractiveExecution.process(WebInteractiveExecution.java:54)
         at fuego.web.execution.InteractiveExecution.process(InteractiveExecution.java:223)
         at fuego.webdebugger.servlet.DebuggerServlet.doDebug(DebuggerServlet.java:148)
         at fuego.webdebugger.servlet.DebuggerServlet.doPost(DebuggerServlet.java:82)
         at fuego.webdebugger.servlet.DebuggerServlet.doGet(DebuggerServlet.java:66)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    Any ideas??
    Thanks and greetings

Maybe you are looking for

  • Can't email contents of page

    Hi all I use to be able to send html emails with Safari by simply clicking mail contents of this page. Now whenever I click it, I get the following message.. ''An email message can't be created because Safari can't find an email application. You can

  • Can sync  to mac and windows with the same device

    I just bought my partner an iphone, and he wants to know if once activated through itunes, will the phone sync to any computer regardless of the operating system as long as itunes is installed. We have Macs at home but he has windows in the office.

  • Email Submit button trying to save

    When I use the email submit button it is trying to save the form instead of attaching it to an email.  Started doing this since changed OS to WIndows 7 from XP

  • Problem with Nokia 5530

    When I start the phone my "Contacts bar" on Home screen work, but when I enter menu and than turn back on Home screen my "Contact bar" freeze. Please help me. I reinstall phone's sofware from Nokia software updater but problem is still here. I am sor

  • Third Party IP Phone

    HII, I am working with CCM 5.1 as a service Provider. One of my customer have a third party 3Com 2102. I can't register his phone in my register.I have some configured already that i attached with mail. plz. help me ..and tell me how to configure tha