Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: hudo
  • Order by date
  1. hudo

    process records in file

    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...
  2. hudo

    process UDP pakets with perl

    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
  3. hudo

    Image as parameter

    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...
  4. hudo

    select with loop

    Have the following table CREATE TABLE mytable ( PK1 NUMBER, PK2 NUMBER, ARRAY NUMBER, DESCRIPTION VARCHAR2(20) ); ALTER TABLE mytable ADD( PRIMARY KEY (PK1,PK2) ); INSERT INTO mytable(PK1,PK2,ARRAY,DESCRIPTION) VALUES (1,1,3,'DESC_3'); INSERT INTO mytable(PK1,PK2,ARRAY,DESCRIPTION) VALUES...
  5. hudo

    access other_params within forms 9i

    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||'/'...
  6. hudo

    access other_params within forms 9i

    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.
  7. hudo

    implement hyperlink

    How can a hyperlink be implemented into forms 10g ?
  8. hudo

    hierarchical tree node as selected

    Like to set a Node or Leaf of a hierarchical tree as "selected" without clicking it with the mouse.
  9. hudo

    date problem

    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...
  10. hudo

    process queries parallel

    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...
  11. hudo

    tablename as input-parameter for procedure

    @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...
  12. hudo

    tablename as input-parameter for procedure

    Can you post me please an example ?
  13. hudo

    tablename as input-parameter for procedure

    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...
  14. hudo

    copy date into text_item

    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 :=...
  15. hudo

    text_io problem

    @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 ?
  16. hudo

    change tab label property

    @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
  17. hudo

    text_io problem

    @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 ??
  18. hudo

    workaround for FRM-40106: no navigable items in block

    @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...
  19. hudo

    text_io problem

    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...
  20. hudo

    workaround for FRM-40106: no navigable items in block

    Hello, need a workaround for error FRM-40106: No navigable items in destination block but all items of the block should be/remain invisible.

Part and Inventory Search

Back
Top