About web.show_document

Hi to All,
Before: I use the release 10g 10.1.2.0.2 R2.
In a Form that initialize Parameters, I have the procedure Start_Report calling with button:
PROCEDURE Start_Report IS
  rep_id     REPORT_OBJECT ;
  v_rep      VARCHAR2(256);
  rep_status VARCHAR2(100);
  vjob_id           VARCHAR2(100);
  Cursor C_REP IS
  Select   *
  From     REPORTS
  Where    REP_CODICE = :REP.REP_LIST ;
  LR$Rec   C_REP%ROWTYPE ;
  LC$Target Varchar2(128) ;
  pl_id     ParamList ;
  pl_name   Varchar2(10) := 'REPTMP' ;
  LN$Params Pls_integer := 0 ;
BEGIN
  Open  C_REP ;
  Fetch C_REP Into LR$Rec ;
  Close C_REP ;
  pl_id := Create_Parameter_List(pl_name);
  LC$Target := Nvl( LR$Rec.REP_DESNOME, 'c:\reports\report.pdf' ) ;
  rep_id := find_report_object('REP');
  SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_FILENAME, LR$Rec.REP_NOME);
  SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_SERVER, LR$Rec.REP_SERVER);
  If LR$Rec.REP_EXEC_MODO = 'BATCH' Then
    SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_EXECUTION_MODE, BATCH);
  Else
       SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_EXECUTION_MODE, RUNTIME);
  End if ;
  If LR$Rec.REP_COMUN_MODO = 'SYNCHRONOUS' Then
    SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_COMM_MODE, SYNCHRONOUS);
  Else
    SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_COMM_MODE, ASYNCHRONOUS);
  End if ;
  If LR$Rec.REP_DESTIPO = 'FILE' Then
    SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_DESTYPE, FILE);
  ElsIf LR$Rec.REP_DESTIPO = 'PRINTER' Then
    SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_DESTYPE, PRINTER);       
  ElsIf LR$Rec.REP_DESTIPO = 'MAIL' Then
    SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_DESTYPE, MAIL);       
  ElsIf LR$Rec.REP_DESTIPO = 'CACHE' Then     
    SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_DESTYPE, CACHE);       
  End if ;
  If LR$Rec.REP_DESTIPO = 'FILE' Then
    SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_DESNAME, LC$Target );
  End if ;
  SET_REPORT_OBJECT_PROPERTY(rep_id, REPORT_DESFORMAT, LR$Rec.REP_DESFORMATO);
  -- Set the parameters --
    For i IN PKG_VARS.TB_Params.First .. PKG_VARS.TB_Params.Last Loop
         If PKG_VARS.TB_Items(i) IS NOT NULL Then
        Add_Parameter( pl_id, PKG_VARS.TB_Params(i).REP_PAR_REP_NOME, TEXT_PARAMETER, Name_In( PKG_VARS.TB_Items(i) ) ) ;
        LN$Params := LN$Params + 1 ;
         End if ;
    End loop ;
  If LN$Params > 0 Then
        v_rep := RUN_REPORT_OBJECT( rep_id, pl_id );
  Else
     v_rep := RUN_REPORT_OBJECT( rep_id );
  End if ;
  -- Run the report --
  vjob_id := substr(v_rep, length(LR$Rec.REP_SERVER)+2, length(v_rep));
  rep_status := REPORT_OBJECT_STATUS(v_rep);
  IF rep_status = 'FINISHED' THEN
       WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid' || vjob_id || '?server='||LR$Rec.REP_SERVER,'_blank');
  ELSE
       DISP_ALERT(2, v_rep, rep_status);
  END IF;
  If NOT Id_Null(pl_id) Then
    Destroy_Parameter_List( pl_id ) ;
  End if ;
  Exception
       When Others Then
      If NOT Id_Null(pl_id) Then
         Destroy_Parameter_List( pl_id ) ;
      End if ;       
END;When this procedure run, this ALERT is displayed (DISP_ALERT):
Report <ServerReport+ReportNumber> failed with status ENQUEUED
I have inspect in the Application Server Control Console and the report <ReportNumber> is correctly created.
The Property of Report are BATCH, ASYNCHRONOUS, CACHE, PDF
Can You help me ?
Best Regards
Gaetano

Hello,
If you use the properties :
BATCH, ASYNCHRONOUS, CACHE, PDF
it means that RUN_REPORT_OBJECT will NOT wait for the Reports execution completion to return.
So, the bahaviour here is normal ..
If you don't want to get this alert, use SYNCHRONOUS mode ...
Regards

Similar Messages

  • Question about web.show_document

    Hi,
    I am using form 10g and I want to call the function web.show_document to show
    a web page called test.html.
    Where the html should be placed so that calling
    Web.Show_Document('test.html','_self') will show the content ?
    Thanks.
    Ivan

    This question really has little to do with Forms. This is really a question related to using a web server.
    The html file needs to be located in a physical directory that corresponds to a virtual path which is defined within the HTTP Server. You can create your own or use an existing one. Refer to the HTTP Server (or Apache) documentation. Specifically look for references to using "mod_alias":
    http://httpd.apache.org/docs/1.3/mod/mod_alias.html#alias
    Here is an example assuming you are using Forms 10.1.2:
    1. Copy the html file to this directory: %ORACLE_HOME%\forms\java
    2. The URL you would use to access the file would look something like this (replace the server, port, and file name with your own):
    http://server:port/forms/java/test.html
    The WEB.SHOW call would look something like this:
    WEB.SHOW_DOCUMENT ('http://server:port/forms/java/test.html');

  • Web.show_document() with javascript

    Hi Guys,
    I'v been searched this forum about web.show_document() with javascript.
    I saw some threads said
    I can do like
    WEB.SHOW_DOCUMENT ('javascript:window.open("http://www.google.com","","fullscreen=no,titlebar=no,location=no,toolbar=no,menubar=no,status=no,resizable=yes");self.close()','_blank');
    and someone said it worked, but it doesn't work in my machine.
    also some one said the javascript engine is not included in Form 10.1.2, so I can not use WEB.SHOW_DOCUMENT function like above.
    My form builder is 10.1.2.0.2 (Production), os is xp sq2 ,ie 6.(ie6 has some tighter security)
    I want to get clarification about this function, can i use the javascript on it or not ? I really want the pop up window without toolbar and customize size. I need do some configuration in formweb.cfg also?
    Thanks in advance. I appreciated every response.
    Appcat

    Hi Jan,
    Thanks for your reply. I check the metalink about it.
    The first solution is
    1. Make forms Developer URL a trusted site in IE to allow script executions.
    For that open Internet Explorer->Internet Option-> Security.
    Select the "Trusted Sites" Option.
    Click on the Sites Button.
    Add the Developer Suite URL in that.
    for example
    http://<Yourmachinename>:8889/
    It doesn't work in my machine ,still can not activate the javascript.
    The second solution is
    2. Place the script invocation code in a html file in Oracle_home/forms/server directory and call it.
    For example :
    Create a simple form.
    In Forms Trigger :
    web.show_document('http://<Yourmachinename>:8889/file.html');
    In the file.html you may enter the code, for example:
    <HTML>
    <HEAD>Heading</HEAD>
    <BODY>
    <SCRIPT LANGUAGE="Javascript">
    window.open("http://www.yahoo.com","_self");
    </SCRIPT>
    </BODY>
    </HTML>
    It also doesn't work in my machine, the problem is http://<Yourmachinename>:8889/file.html can not be found, even i put it under the Oracle_home/forms/server folder, but i click it directly ,the javascript works. that means the URL http://<Yourmachinename>:8889/file.html is incorrect or I should put the html file into other directory. And I also checked the default.env,FORMS_PATH=D:\DevSuiteHome\forms.
    anything wrong with my env?
    Do you have any idea about it?
    Thanks,
    Appcat
    Message was edited by:
    user577805
    Message was edited by:
    user577805

  • Simple question: calling URL link with WEB.SHOW_DOCUMENT is not working

    Hi folks,
    this should be an easy question, but I have no idea why it's not working :-(.
    In one of my form, I would like to place an URL link behing button.
    For this purpose I'm using below code:
       WEB.SHOW_DOCUMENT('http://www.google.com','_blank');But when above code is executed, nothing happens :-(.
    Could it be because I'm using it within modal type of window?
    Thanks,
    Tomas
    I'm using Oracle Forms 10g

    have you checked with using self instead of blank to see if it will replace your current page with the one you are tyring to call?
    Have you got any other firefox plugins running such as Ad block? can you try disabaling all addons and even the internal pop-up blocker jus to see if this will work?
    if self works but blank does not how about having the main app called from a multi frame page. one frame with the app in and the other frame with some javascript that can be called to open a new window? dont know if that will work and its late so probably not thought it thorugh fully :)

  • Web.show_document() with .csv-Files

    Hallo,
    when I try to show a .csv-file using web.show_document in MS-Excel I'm facing the following problem:
    Depending on the windows-settings (?) before showing the Excel-sheet the browser opens an alert 'open/save file'.
    When this alert is activated the web.show-document() is not successfull, that means: it seems that the browser tries to open the new window but it immediatly 'crashes' (I'm using '_blank' as parameter).
    When this alert is not activated everything works perfect.
    My guess is that it has something to do with whith the javascript-problem under XP-SP2. (i also can't get javascript working together with web.show_document).
    Enviroment is: Forms 10g, Windows XP SP2, MS-IE (Mozilla works fine), 10g iDS and iAS
    any ideas?
    tia
    Frank

    Hello,
    already done, doesn't help.
    The odd thing is: when I type the url web.show_document should show directely into the IE (with virtual pathname) the alert shows up, I can choose 'open' and it works (thats the way I get rid of the alert). It seems to me that showing the alert somehow causes the problem in combination with web.show_document.
    I have a similar problem with javascipt. When I type it directly into the browser everything works fine, from web.show_document .. no way.
    So my guess was that maybe the alert itself uses javascript. I dont know much about java and browsers and so its really only a guess.
    The Alert I'm talking about is the following (modulo translation errors):
    do you want to open or save the file
    Name... / Type... /from....
    open/save/cancel -Buttons
    checkbox: always ask before opening a file of this type
    Frank

  • Web.show_document working with abnormal parameter

    I was opening some web pages from forms 10g using:
         web.show_document(url, '_blank');
    in a button pressed trigger. That worked fine, except it continually opened new pages. If the button is pressed 10 time, 10 pages opened one after another. I was giving warning to the user about this quirk.
    Then while debugging I happened to edit the code and change it to:
         web.show_document(url, '_blank;');
    With the semicolon at the end of _blank parameter the pages now open in one browser window, replacing itself if the button is repeatedly pressed. This is exactly the functionality I want. However, I can't find any documentation that uses any parameter for web.show_document other then the standard ones without semicolons included.
    Does anyone know if this is safe to do?

    Hi,
    You can use below different parameters depends on your requirements. To view documentation press ctrl+h in forms builder,  use search feature to locate the topic.
    '_self' Causes the document to load into the same frame or window as the source document.
    '_parent' Causes the target document to load into the parent window or frameset containing the hypertext reference. If the reference is in a window or top-level frame, it is equivalent to the target _self.
    '_top' Causes the document to load into the window containing the hypertext link, replacing any frames currently displayed in the window.
    '_blank' (default) Causes the document to load into a new, unnamed top-level window. Note that these targets are lowercase and enclosed in single quotation marks.
    hope this help you.

  • IE7 and web.show_document

    We run a forms application using 9.0.4 on IAS10gR1, JInitiator is 1.3.1.13. We often use web.show_document to display files (usually pdfs, but also other types) that are stored as blobs in the db or as files on the app server. From time to time users complain that this feature doesn't work anymore. In most cases this is caused by a popup blocker, either IE, or they use Firefox, or have installed Google's or Yahoo's toolbar with their popup blockers enabled.
    But now we are facing problems with users that have installed IE7. When they try to show a file which should be displayed using web.show_document, a new window flickers shortly and then disappears, even with the popup blocker disabled.
    Anybody out there with the same experience and (hopefully) a solution/workaround?
    And yes, I know that IE7 is not yet certified.
    Thanks in advance.
    Gerald

    We had the same problem opening files through web.show_document with IE7. It has to do with the Download settings in your Internet or LocalIntranet zones under Tools > Internet Options > Security > Select the zone > Custom level > Downloads group > Automatic prompting for file downloads setting.
    These prohibit IE7 to ask the user about downloading a file. That's why the new browser window closes right away. You could either change the settings for Internet and lower the security for all sites, or add your Forms server to Local intranet or even TrustedSites and set these up properly.

  • Title of the browser displaying a report output through web.show_document

    Hiya
    We are using Oracle Forms 10g 10.1.2.0.2
    All our Forms and Reports are working well.
    We are using Java Script in Web.Show_Document so that when the report is displayed on the screen in the browser, the browser's toolbar and menubar should not be visible.
    The code looks like this:
    v_url_in := 'reports/rwservlet' || '/getjobid' || v_job_id || '?server='|| 'my_rep_server';
    v_url_out := 'javascript:window.open("'||v_url_in||'", " ", "toolbar=no,menubar=no");self.close();';
    Web.Show_Document (v_url_out, '_blank');
    The above code is working absolutely fine. No issues about this.
    Now when the report opens in a new browser window,the title of the browser window reads as follows:
    http://<hostname>:8889/reports/rwservlet/getjobid1234?server=my_rep_server - Microsoft Internet Explorer
    So rather than displaying the title of the browser window as the URL of our Application Server, we want to show the title to Reports name so that it
    reads as
    'Customer Sales Summary Report - Microsoft Internet Explorer'.
    Does anyone has any idea if it is possible to change the title of the browser window, if so, how ?
    Cheers
    Mayur

    Mayur,
    I'm not a web developer either, however, I've done this kind of thing using the HTP database package - as I mentioned. What you could do is write a database procedure that accepts the URL and the Title as parameters and let the procedure open the URL for you. For example:
    CREATE OR REPLACE PROCEDURE show_url(p_url VARCHAR2, p_title varchar2) AS
    BEGIN
       htp.htmlOpen;
       htp.headOpen;
       htp.htitle(p_title);
       htp.headClose;
       htp.bodyOpen( cattributes => 'onLoad="WinOpen()"');
       htp.bodyOpen;
       htp.script(clanguage => 'javascript',
                    cscript => '<!--
                                function WinOpen() { open("'||p_url||'","_self");
                                //-->'
       htp.bodyClose;
       htp.htmlClose;
    END;I was unable to test this procedure on my Oracle XE install, but it should work on a non-XE database.
    Hope this helps.
    Craig...
    -- If my response or the response of another is helpful or answers your question, please mark the response accordingly. Thanks!

  • Problem with web.show_document in calling report

    Hi ,
    I have started the reports server... Programs->run->"C:\oracle\product\DevSuite10g\BIN\rwserver.exe server".
    The system started a report server called "f".
    Pressing a button:
    declare
    begin
    URL_VAR:='/reports/rwservlet?server='||rep_server_name_var||'&report=texnikos_user\mod3_hmerolog_kinisis_.RDF'||'&desformat='||desformat_var||'&destype='||destype_var||'&userid='||username_var||'/'||password_var||'@'||tns_var||'¶mform='||param_form_var;
      WEB.SHOW_DOCUMENT(URL_VAR,'_parent');
    end;The system displays the error:
    REP-52266: failed starting the Reports Server f.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0.
    As action Oracle points out about it:
    Please make sure the server is not already started as a stand alone server.
    But there is not.... The server f has started successfully....
    Do you have any idea why is that...???
    NOTE: I use Oracle Dev10g. I also noticed that in the window which shows the status of the report server... in the last line as "active threads"(i don't know if i translated into english right ... the status is displayed in greek) that there are 2. Is this problem...???
    Thanks, alot
    Simon
    Message was edited by:
    sgalaxy

    Eventually , the report run... when the active thread got the value 1. How is it done...(i mean the value of 1 , instead of 2 when the report started...????) How to secure that the active thread would be 1 if this is the problem...????
    However , because the report is 2 page accross.... the report displays the first page and down the other page.... Is it possible to display both pages accross as i see them in report builder env....?????
    Thanks , a lot
    Simon

  • Web.Show_document to open .csv file in Excel How??

    We have a utility built in our menu (mmb)
    It reads the screen output and creates a .CSV file on the server using text_io and then using Web.show_document displays the file on the client.
    The file opens in MS-EXCEL. It gives a standard Excel prompt for Open , Save or run.
    Now our application has moved to FMW 11gAS.
    The file creation is happening but the file is opening in HTML format.
    The excel prompt is not coming.
    Where is setting to be done to open the .CSV files in EXCEL

    In addition to what I already mentioned, your issue may be partially caused by these two bugs: 10186820 & 10191154
    Both have been fixed in 11.1.1.6, which was released last week. Information about the 11.1.1.6 patch set can be found in MyOracleSupport note 1364511.1
    The fix should also already be in 11.1.2.0

  • WEB.Show_Document(POP Up Window In 11g forms)

    Is it possible to open a Http inside the POP Up Window In 11g forms.
    This is what i tried to use:
    Created a Dummy Window,dummy Canvas and by clicking the push button i gave this message:
    web.show_document('http://www.google.com','Html_Window');
    WEB.Show_Document will open only in seperated window but i need to open in the Pop Window is it possible please help on this.

    As Denis mentioned, you cannot show html content natively in a form. You would need a bean to do that. However, if you are just trying to create something that looks like a standard browser pop-up window, there are several ways to do it. Be aware however, that in some cases, the following example will not work if you are using an older JRE. The latest JRE is 1.6.0_29 and runs the following code correctly assume the browser is not set to block pop-ups.
    EXAMPLE 1:
    web.show_document('javascript:window.open ("http://www.oracle.com","myPop","location=no,toolbar=no,menubar=no,status=no,resizable=yes,height=600,width=600");self.close();');
    EXAMPLE 2:
    Declare
         inJS      varchar2(32767);
    Begin
         -- More info about window.open here:
         -- http://www.w3schools.com/jsref/met_win_open.asp
         inJS := 'new_win=window.open("http://www.oracle.com","new_win1","menubar=0,location=0,toolbar=0,status=0,scrollbars=1,resizable=1,width=500,height=600");';
         web.javascript_eval_expr (inJS);
    End;

  • Unable to create a reports server to test web.show_document in Forms 10.1.2

    Hi all,
    In Forms 10.1.2 DS, I'm trying to use the web.show_document built-in to 'generate' a report from a .jsp file. This JSP file was created by wizard through creating a report object in the Object Navigator. The code I'm using from a push button is as follows:
    web.show_document('http://<hostname>:8889/reports/rwservlet?report=<dirpath>\Sales.jsp&userid=<username/password@connectstring&server=<server_name>'
    As far as I am aware no 'reports server' has been created so I've tried the following command in a dos window:
    rwserver -install <server_name>
    but this just raises an 'alert' indicating that I should consult an installation guide to setup and install the server. So my questions are:
    (1) Is what I'm trying to do supported in DS?
    (2) What installation guide should I consult?
    Any information on this would be gratefully appreciated,
    Kevin.

    Hi Inol,
    Thanks for the response. I agree with the comment about exposing user details, I'm just doing a bit of experimenting at the moment! I tried to do what you suggest in terms of changing the URL but whether I reference the server or leave it out, the subsequent browser session seems to hang and then eventually I get a 'Page Not Found' response. On using the URL 'http://127.0.0.1:8889/reports/rwservlet/showenv?', I get an 'Access Denied' Error Page. Is there something additional I need to set up with regards to Reports to get this to work?
    regards,
    Kevin.

  • WEB.SHOW_DOCUMENT doesn't work on XP SP2

    I have come to realise that the command WEB.SHOW_DOCUMENT works on Windows 2000, but not on Windows XP SP2. I have just finished reading a lengthy document by Oracle about running reports from a form, but they don't say what to do about this problem, or even acknowledge that there is a problem. I have found a way around it, but it's a real pain in the butt.... Can anyone advise me on how to get WEB.SHOW_DOCUMENT to work properly on XP? When I run the command, I get no error, but nothing happens. It's the same at home and at college, and we all use XP SP2.
    thx
    adam

    The problems you are experiencing have little to do with the Oracle product. They are the result of security changes put in place by Microsoft. In short, only common net protocols can be assured to work with Forms WEB.SHOW calls. For example: HTTP, HTTPS, FTP, etc. You can no longer use JAVASCRIPT, FILE, etc. If you want to gain access to resources on the client machine you will need to add a signed Java Bean to your form. If you don't know how to write Java code, you can use WebUtil (downloadable from OTN):
    http://www.oracle.com/technology/products/forms/htdocs/webutil/webutil.htm
    References
    Oracle Bug 3813722
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=BSS&p_id=3813722
    Microsoft Bug
    http://support.microsoft.com/default.aspx?scid=kb;en-us;884763

  • How can I maximize the window which opened using web.show_document() ?

    My user complain, everytime they want to print the report it didn't
    show maximize screen,
    How can I maximize the browser or window which opened using web.show_document() ?
    Thank you

    Thank you for replaying,
    I did search in forum, but I only go one about maximize window when calling
    a report (web.show_document). the link :
    Maximize the new opened window
    Frank said to use "Javascript to the Forms", but no futher explanation whow
    to do it ?
    please help, I don;t know javascript.
    Cabe,

  • Calling Reports from Forms (run_report_object and then Web.Show_document)

    Hi all,
    we are in the process to prepare a Forms-Migration from 6i to 10g and like probably most of the other Forms-Customers we also use Reports.
    We have setup a test-scenario with Forms/Reports Standalone Installation. So we have some Forms running and we are now starting to test reports.
    I have created a Test-Form to call run_report_object in the documented way. That means described in the white paper. set the parameters, then call the run_report_object BUILTIN and when the job is finished, I do a call to the Web.Show_Document BUILTIN with "getjobid". As destype I use "CACHE"
    So far so good, that works like a charm.
    But after seeing the output in the browser, I can use the URL as a template and only change the jobid and then I can see all other reports as well, whether the output is from me or not. Even worse if I change the URL to use the command "showjobs" I can see a nice list with all the output and can click and see all of them.
    Is there a way to secure this in an easy way.
    I have read the white papaer about securing the use of WEB.SHOW_DOCUMENT with a cookie, but that sounds to me that it is meant if I want to run the report with that builtin which isn't the case I am willing to run the Report with "RUN_REPORT_OBJECT" which is secure enough to me, but the output of all jobs can be seen from anybody.
    Because we use the Forms/Reports Standalone Installation (because of License-Costs, ...) Single-Sign_on is no option for us we only want a situation where we can do the same as before.
    Run a report, see the output and nobody else can see it.
    If anybody has an idea how to do it, that would be great.
    Thanks,
    Mark

    thanks for the answers,
    but I'm still thinking that there is no "easy" Migration-Solution for our request.
    Running a report and after doing whatever needs to be done (read, print, ...) and don't care about additional security because nobody else can read it.
    But that might be the price for the bunch of new features in the "Web"-World were you never know where your application runs and you have to secure a lot more stuff then before.
    Anyway I think we proceed with a combination out of the adviced Metalink Note : 437246.1. We can set the expiration-parameter, we cannot set diagnostic=NO because we use Run_Report_Object but we can change httpd.conf and we reject all calls to showmap, showjopbs, etc.
    I'm not sure whether we need the rewrite part, but we'll see.
    Thanks,
    Mark

Maybe you are looking for

  • Firefox won't open mailto links in a new window like it used to...it just opens gmail in the current tab.

    I recently upgraded firefox and now whenever I click a mailto link it opens gmail in the current tab rather than in a new window. How can I get it to open email links in a new window.

  • Refreshing Smart Playlists with song limits...

    I have gone from a 20 gig down to a 4 gig and I would like to create a series of smart playlists to limit and 'control' the amount of music on my ipod nano... but not have 16 gigs of music collecting dust on my harddrive. For example, I have create a

  • Must run twice for daq to work

    I have an application I am working on that is giving some minor problems.  When I first boot up the computer, it doesn't seem the DAQ is working at initial startup.  I am using a Daqpad 6016 (I think that is the model, it is the USB daq) and have som

  • ASE 15.7 new feature : In-row LOB

    We are trying to implement In-row LOB in our environment. We already have a POC for this feature. But all the testings' are done on a non-replicated environment. I want to know if this is already in use in production replicated environment. And any i

  • I want to pair an IPad with phonack ComPilot?

    I want to pair a phonack ComPilot with an IPad. The procedure starts out but adds that the is not paired, it's what I am trying To do