Put Values On Web-Page [message #560781] |
Tue, 17 July 2012 01:59 |
mamalik
Messages: 270 Registered: November 2008 Location: Pakistan
|
Senior Member |
|
|
Dear All,
Our end-user inputs values on web-page fields by seeing data from oracle report. I want to update web-page fields automatically by database procedure. I want to know how can we put a value on web-page field?
Thanks In Advance.
|
|
|
Re: Put Values On Web-Page [message #560825 is a reply to message #560781] |
Tue, 17 July 2012 05:27 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
Could you explain it once again, providing some more details?
I think that someone moved your question into the Apex forum (but I'm not sure it really is about the Apex).
So: there are some values in the database. You've written a report that displays these values (PDF, for example). Now, there's that web page which contains some items. User reads the PDF and blindly copies/enters values into these items. Is that right? If so: as you are being very kind and feel sorry for your users to copy values from PDF to web page, you want to do that "automatically". Right? If so, what do you need the report and web page for? Create a procedure which will accept some input parameters, use them in SELECTs WHERE clause and insert into some_table (col1, col2, ...)
select col_1, col_2 ...
from some_other_table
where <condition goes here>
If I'm wrong, then you should research how web designers connect their web pages to the database. I don't know anything about it (but someone else might).
|
|
|
|
|
|
|
Re: Put Values On Web-Page [message #560841 is a reply to message #560837] |
Tue, 17 July 2012 07:00 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
a) I'm not a guru
b) There are MANY things I know nothing about. This is one of them (and I have no particular reason to research it at the moment, but you might want to do that).
|
|
|