Hello,
in a file are records of the following format:
----0---m---28.07.2007---23:13:18---rest---id=123456
----9---a---28.07.2007---23:13:46---rest---id=345677
----0---a---28.07.2007---23:13:57---rest---id=876543
By comparing the id's to the actual processing id (e.g. id=345677 ), I'd...
Hello, I'd like to process UDP pakets with perl on a windows xp platform. I used to use activestate perl on the windows platform.
Can anybody tell me the necessary modules (from activestate) or even some examples to send, receive and evaluate UDP pakets.
Many thanks in advance
Hello,
I'd like to call a site within a perl script (with lwp) which has an image as parameter.
Here is the relevant source:
<INPUT src="/img/navigation/formabschicken.gif" value="" name="Antwort" border="0" class="norm" type="IMAGE">
What is the value of the parameter Antwort ?
Thanks for...
Hi lewisp,
I wrote in formsweb.cfg:
[my_section]
otherparams=myparam1=%alpha% myparam2=%beta%
Then in the Form WHEN-NEW-FORM-INSTANCE Trigger:
DECLARE
outdir VARCHAR2(100);
BEGIN
TOOL_ENV.GETVAR('myparam1', outdir);
:GLOBAL.export_dir := 'd:/oas/Apache/Apache/htdocs/'||outdir||'/'...
Hello,
I'd like to determine the output directory when using the Forms TEXT_IO utility
in the formsweb.cfg (of the OAS) as other_params.
This would facilitate maintenance and it is more flexible.
But I do not know how to access this parameter within Forms 9i.
Hello,
I got 4 text items in a form , STARTDATE, STOPDATE (of Data Type: Date),
and STARTTIME, STOPTIME (of Data Type: Datetime) in a form which serve as
input parameters for a stored procedure (all 4 of type date in procedure header)
Then I would like to concatenate STARTDATE and STARTTIME...
On a tab page should be displayed the result of four indifferent queries, each based on a stored procedure.
At the moment, the queries are processed serially, by the statements:
GO_BLOCK('one');
CLEAR_BLOCK(No_Validate);
EXECUTE_QUERY;
GO_BLOCK('two');
CLEAR_BLOCK(No_Validate);
EXECUTE_QUERY...
@Many thanks to lewisp. Here is my code:
CREATE OR REPLACE
PROCEDURE DYN_KENR_SWITCH ( in_table VARCHAR2)
AS
l_number NUMBER(8);
l_counter NUMBER(12);
l_rowid VARCHAR2(100);
l_rownum NUMBER;
l_kenr VARCHAR2(14);
TYPE alpha_type IS REF CURSOR;
alpha_rec alpha_type;
BEGIN...
I'd like to have the tablename as a parameter for a procedure:
CREATE OR REPLACE
PROCEDURE myproc( p_table VARCHAR2 )
AS
CURSOR c_forcolumn (p_table VARCHAR2)
IS
SELECT alpha.ROWID ,alpha.scope_column
FROM p_table alpha
ORDER BY scope_column;
BEGIN
NULL;
FOR rec IN...
I'd like to copy the date/contents of a text_item (typ: Date ,length 19, format mask: dd.mm.yyyy HH24:MI )
into another text_item ( typ: Date ,length 19, format mask: dd.mm.yyyy HH24:MI )
Used a WHEN-BUTTON-PRESSED Trigger with:
:MY_BLOCK.MY_NEW_TIMEFIELD :=...
@lewisp: Can you show me another method (not TEXT_IO) to write to the client machine from forms ?
Which java scripts do you refer in your latest reply ? Can you provide a URL, please ?
@danmul: Hello, just found out how it works, in the layout editor mark one of the tab labels and change attributes with the symbols of the tool bar (for example I for italic or change the font size, ....)
The only drawback is , that the settings concern all tab labels...
Greetings
@sem: I would like to write to the client pc.
I thought TEXT_IO writes to the client pc
and UTL_FILE writes to the server machine.
Am I not right here ??
@BJCooperIT: yes your right, the navigable item could be hidden behind another text_item, button, etc which is displayed on the corresponding tab.
But the essential thing is, to create a "no base table item" as mentioned by sem. Whitout this additional item it seems not to work.
Thanks for...
I've displayed scott.emp in a form and would like to export it locally (on the client
machine). I read something about Package TEXT_IO which seems to be included into
Forms, but I do not know how to export the table contents into a csv file (start
export with WHEN-BUTTON-PRESSED trigger).
I use...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.