Trying to re-create the downloadable report - sort of

I have a report focused on the region of PL/SQL that loops through several satellite offices after the selection of a regional office and generates a report containing a title, summary and data. Management wants to be able to download the data in the report and APEX provides only this convenience area of standard report, so I'll try a workaround.

I created a popup page that can be called from a HTML button incorporated into the report. The problem I get is that the button must undergo three values to the popup page in order to generate the report, and I'm doing something wrong with regard to dates, because when I display the variables if sent to the popup, I get the desktop #, but the dates are coming as long as 0.0012437810945273632 and 0.002736318407960199 (from and to dates).

Can someone indicate where in my efforts of string concatenation that goofed upward?
create or replace PROCEDURE PROC_TONMILERPT(dt1 DATE, dt2 DATE, c NUMBER)
as
  dt_from    DATE           := dt1;
  dt_to      DATE           := dt2;
  dt_from_txt    VARCHAR2(12);
  dt_to_txt      VARCHAR2(12);
  cust       NUMBER         := c;
  ttl_dys    NUMBER;
  cursor c_proj is select ORG_ID, ORG_NM from ORG_ENTITIES
                    where CUSTOMER_ID = cust
                      and ORG_ID NOT IN (200,300,400,500,600,700,800,900);
  v_org      NUMBER;
  v_orgnm    VARCHAR2(47);
  cursor c_rpt is select STN, MILES, SUM(TTL_WT)
            from (select s.SHORT_NM||'-'||j.PILE_CODE_ALT_FLAG as STN, r.CYCLE_MILES/2 as MILES,
                         SUM(CASE WHEN w.SPOT_WEIGHT = 0 THEN NVL(j.MAN_SPOT_WT,0)
                                  ELSE w.SPOT_WEIGHT
                                  END) as TTL_WT
                    from TC c, TC_LOAD_JOBS j, STATIONS s, LOAD_RATES r, SPOT_WEIGHTS w
                   where c.TC_ID = j.TC_ID and j.LOAD_RATE_ID = w.LOAD_RATE_ID
                     and w.DATE_INDEX = c.DATE_INDEX
                     and j.LOAD_RATE_ID = r.LOAD_RATE_ID
                     and FN_STN_KEY(j.FACTORY_ID,j.STATION_ID) = s.KEY_ID
                     and c.DATE_INDEX BETWEEN dt1 and dt2
                     and j.FACTORY_ID = v_org
                   group by s.SHORT_NM||'-'||j.PILE_CODE_ALT_FLAG, r.CYCLE_MILES
                   union
                   select s.SHORT_NM||'-'||j.ALT_FLAG as STN, r.CYCLE_MILES/2 as MILES,
                          SUM(DECODE(j.AVG_SPOT_WEIGHT,0,j.ACT_SPOT_WEIGHT,j.AVG_SPOT_WEIGHT)) as TTL_WT
                    from TC_3RDPARTY c, TC_3RDPARTY_JOBS j, STATIONS s, LOAD_RATES r
                   where c.TC_ID = j.TC_ID and j.LOAD_RATE_ID = r.LOAD_RATE_ID
                     and FN_STN_KEY(j.FACTORY_ID,j.STATION) = s.KEY_ID
                     and c.DATE_INDEX BETWEEN dt1 and dt2
                     and j.FACTORY_ID = v_org
                   group by s.SHORT_NM||'-'||j.ALT_FLAG, r.CYCLE_MILES)
            group by STN, MILES
            order by STN;
  x_fact     NUMBER;
  x_stn      NUMBER;
  x_stn_nm   VARCHAR2(47);
  x_alt      VARCHAR2(7);
  x_rt       NUMBER;
  x_mls      NUMBER;
  x_tons     NUMBER;
  x_lds      NUMBER;
  x_tnmls    NUMBER;
  z_tnmls    NUMBER      := 0;
BEGIN
  ttl_dys      := dt_to - dt_from;
  dt_from_txt  := to_char(dt1,'MM/DD/YYYY');
  dt_to_txt    := to_char(dt2,'MM/DD/YYYY');
  htp.p('<table width="500">');
      htp.p('<tr><td width="40%">Ton Mile Report</td>');
          htp.p('<td rowspan="3" width="60%" class="ttl">Transystems</td>');
      htp.p('<tr><td width="40%">From '||to_char(dt_from,'MM/DD/YYYY'));
              htp.p(' To '||to_char(dt_to,'MM/DD/YYYY')||'</td></tr>');
      htp.p('<tr><td width="40%"> '||ttl_dys||' day period</td></tr>');
  htp.p('</table>');
 
  OPEN c_proj;
    LOOP
      FETCH c_proj into v_org, v_orgnm;
      EXIT WHEN c_proj%NOTFOUND;
  htp.p('<p>'||UPPER(v_orgnm)||'</p>');
  --Project Work
  htp.p('<table border="1" width="500">');
      htp.p('<tr><th width="40%">Pile</th>');
          htp.p('<th width="20%">Ton Miles</th>');
          htp.p('<th width="20%">Tons</th>');
          htp.p('<th width="20%">Loaded Miles</th></tr>');
        x_tnmls     := 0;
        OPEN c_rpt;
          LOOP
            FETCH c_rpt into x_stn_nm, x_mls, x_tons;
            EXIT WHEN c_rpt%NOTFOUND;
              z_tnmls   := z_tnmls + x_mls*x_tons;
              x_tnmls   := x_tnmls + x_mls*x_tons;
      htp.p('<tr><td>'||x_stn_nm||'</td>');
          htp.p('<td class="r">'||to_char(ROUND(x_mls*x_tons,0),'999G999G999')||'  </td>');
          htp.p('<td class="r">'||to_char(ROUND(x_tons,2),'999G999G999D99')||'  </td>');
          htp.p('<td class="r">'||x_mls||'  </td></tr>');
          END LOOP;
        CLOSE c_rpt;
    ----Create a button for popup download
      htp.p('<tr><td><input type="button" value="Download" onclick="callTonMilePopup('||v_org||','|| dt_from_txt||','|| dt_to_txt||')"></td></tr>');
    ----
  htp.p('</table>');
  htp.p('<p class="t">Total for '||v_orgnm||' -  '||to_char(ROUND(x_tnmls,0),'999G999G999'));
      htp.p('  Ton Miles and   ');
      htp.p(to_char(ROUND(x_tnmls/ttl_dys,0),'999G999G999')||'   Average Ton Miles per Day</p>');
    END LOOP;
  CLOSE c_proj;
 
  htp.p('<p class="t">Customer Totals -  '||to_char(ROUND(z_tnmls,0),'999G999G999'));
      htp.p('  Ton Miles and   ');
      htp.p(to_char(ROUND(z_tnmls/ttl_dys,0),'999G999G999')||'   Average Ton Miles per Day</p>');
END;
/
Here is the header:
<script language="JavaScript" type="text/javascript">
  function callTonMilePopup (formItem1, formItem2, formItem3) {
    var formVal1 = formItem1;
    var formVal2 = formItem2;
    var formVal3 = formItem3;
    var url;
  url = 'f?p=&APP_ID.:1347:&APP_SESSION.::::P1347_ORG_ID,P1347_FROM_DT,P1347_TO_DATE:'
       +formVal1 +',' +formVal2 +',' +formVal3;
  w = open(url,"winLov","Scrollbars=1,resizable=1,width=600,height=1000");
  if (w.opener == null)
  w.opener = self;
  w.focus();
  }
</script>

He did the math on your date: 02/05/2010 = 0.001243781094527363184079601990498

Add quotes around your casting call to the javascript function:

.
.
.
HTP.p (')');
.
.
.

Tags: Database

Similar Questions

  • BI Publisher - combine or link reports to create the biggest report

    Hello

    I use Oracle BI Publisher Enterprise 11.1.1.7.0 and creating a reports, using the tool within BI Publisher statement. I created the template data and reports, and everything works fine. The reports are called Oracle Apex and receive the report parameters passed with the PDF output. Everything works as expected. But now I have a new requirement to run multiple reports at the same time. For example, I have three reports that they want to run with a click and have all three shows upward into a single PDF. Is it possible to do so without creating a new comprehensive report which contains all three?

    Thank you

    Report Binder/merge is not supported in the PIF.

  • hen im getting trying to connect to the download server

    need help to download creative cloud, I am trying to connect to the server in the status bar and never made

    You download the desktop app creative cloud creative apps or applications creative suite Adobe?

    Do you receive a particular message?

    Here are some possibly related to check, but it depends on your situation:

    Update connection creative cloud

    "Unknown Server error" | Sign in to creative cloud

    sign in, activation or connection errors. CS5.5 and later, Acrobat DC

    Guinot

  • Create the Download button or link

    Hello

    Can someone help me please on the following requirement.

    I develop a custom page, in what I have to include the download button or download link. Can anyone suggest it please how to do this and I tried to do as stated in Devguide, but the download link is not visible.

    Here are my requirements:

    I have a model of Bill and I must download this template to my page of the OPS. so I need help in how to achieve the requirement and where to keep the model and how to download it from the page of the OPS.



    Thank you

    Hello

    Your file must be in the db as a BLOB type and associate the viewAttribute should be referred to this column, and you must run the query of the VO.

    Thank you
    Pratap

  • How to create the test report in the next line?

    Hai

    I'm working on a Labview 10.0 application that tracks testing the jury of the Horn. Whenever a test runs that the results are recorded in a spreadsheet excel from line in an Excel worksheet. For example, 1 test results go 14, test 2 online ranks 19, etc...

    Here is an example that I've programmed very quickly to allow you to see how it can be done.

  • Excel not downloaded in the same order as on the interactive report

    I have download to Excel on the interactive report, it is not sorted in the same way? Can I fix this?

    Hi Doug,.

    Could be a quick solution to this solution, you can have a download link on the header of the report area and that it points to a page that contains the same report with the csv model.

    Download CSV Report 
    
    where 3 is the page number for csv output report.
    *replace click by onclick
    

    or if you want more control over the report, you can create a button on the interactive report region and at the click of the button run a process to download a csv output file.

    Put dummy code for creating csv file

    DECLARE
    CURSOR cEmp IS
    SELECT
         Eno,Ename,SAL,DEPT
    FROM emp_table ORDER BY 1 DESC, 2 DESC,4;
    BEGIN
         owa_util.mime_header('application/octet', FALSE );
            htp.p('Content-Disposition: attachment; filename="Employee.csv"');
            owa_util.http_header_close;
    --Printer Header Row
         htp.p('Employee '  || ',' || 'Name'   || ',' || 'Salary'  || ','|| 'Department' ||  chr(13));
    for cThis in cEmp
    LOOP
              htp.p( '"'|| cThis.eno ||'"'||   ','|| '"'|| cThis.ename   || '"'|| ',' || cThis.sal||  ','|| '"'|| cThis.dept  || '"' || chr(13));
        END LOOP;
    htmldb_application.g_unrecoverable_error := true;
    EXCEPTION
              WHEN OTHERS THEN
                   htp.p('Download Error ' || SQLERRM || ' with error code ' || SQLCODE);
    END;
    

    Also, you can disable the download report link in the interactive report menu by going to reports-> Search bar attribute->, under include in the Actions Menu: uncheck the download option.

    I hope this helps.

    Thank you
    Manish

  • How to create a matrix report

    Hi all
    I want to create a matrix manually report in writing the query how can I create in the generator of reports 10g
    Please give me the steps in details or documentation for this can not so I easily create the matrix report and also design
    for the matrix report. Please give me specific examples to create the matrix report.

    Please give me the steps in detail.



    Please answer...

    Take a look at this http://download.oracle.com/docs/cd/E12839_01/bi.1111/b32122/orbr_matrix.htm#g1017642

    -Clément

  • How to avoid the total general of the classic report when the column break is installed in the Apex

    Hi all

    I develop application using Oracle Apex 4.2.0.

    I created the classic report Page.

    That I have summarized a column by selecting the check box check sum for the column.

    His shows the Grand Total.

    Then I chose the columns to break to the first column.

    His show the total groupwise and total as well as great as image below.

    dc.jpg

    My requirement is

    Need to hide total(Total:)) GroupWise or total general. I need to show any a total, not both.

    How to do this?

    Thank you

    Su.GI

    Su.GI wrote:

    Hi, thanks for your response.

    I use theme - productivity Application - issue 26

    -Standard model

    Report - report of Standart for classic report model.

    The above CSS code where I want to use in the page or report or model region.

    Specify a static region ID for the report area and put the following CSS rule in the CSS Inline property page:

    #static-region-id .uReportStandard tr:last-child td {
      display: none;
    }
    

    where static-region-id is the ID specified for the region.

  • How to avoid the totals in the crosstab report.

    Hi all

    I created the crosstab report.

    The output displays as below.
                                         
    lvl   Group     Item           PH1               PH2            PH3
    
    1                                   10                15               20 
         Expense                        10                15               20
                       item1             5                 10              10
                       item2             5                  5               10
    
    
    2                                     11                16               21 
         Internal                       11                16               21
                       item1             6                11              11
                       item2             5                  5               10
    It's a total automatically lvl total and total Group (E.g. 1, 2 lines of lvl and expenses, the internal lines.
    But I don't want to view the totals. Wise technicality is sufficient. How to avoid that the totals.

    Version of Discoverer: 4.1.48.06.00

    Thanks in advance
    Kavi

    Hello

    Try changing your crosstab options (available from the journal edit) outline inline.

    Rod West

  • Change the SQL report to Intractive report

    Dear friend


    I created the SQL report.

    Could you tell me please, there is a way to change the SQL report to Intractive report.

    How can I do that.

    Thank you

    Under the Definition of the region of the report; look over to the right margin and you will see interactive report-migrate under tasks .

    The f

  • With regard to the interactive report

    I've created the interactive report, then I remove the function of adding/deleting/changing inside, because I put my function all in plsql package. I could handle the add and delete function changed, however, is totally giving me a headache. I create an anonymous PL/SQL (process) block when the click on the button Delete, then delete the button will trigger the javascript confirmation. and then in my anonymous PL/SQL block, I key in

    myPLSQLpakacage.myDeleteProcedure(:p1_tableid);

    When I run the system, the process got through, and the "success" message. However, registration is still there stay. I check my point, process and compare to that of the sample «Document Library 0.92» I just found out they got from the additional hidden (P75_RETURN), after the process, it will go to the Page (and P75_RETURN) which I don't understand.

    Please help on this point, why my plsql did not, I try just to run the query in the anonymous pl/sql block as

    declare
    Identification number;
    Start
    ID: = v('p1_tableid');
    delete from the table where tableId = id;
    commit;
    end;

    but it's still not. So what's the problem with that?

    Hello

    BEGIN/END; It must be for all PL/SQL code.

    However, your problem is actually on this piece:

    0.01:... Process "reset page": CLEAR_CACHE_FOR_PAGES (AFTER_SUBMIT) 52
    0.01: removal of application cache "103" page: 52

    You have a "reset page" process that runs immediately before your process - this clears the value of P52_TABLEID. This process is usually provided automatically when you create a form by using a wizard. Delete it or the Never value condition.

    Andy

  • I'm on the 4.1.1.00.23 Apex vesion. I've created a classic report and I am trying to sort. Here's how I'm trying to sort by column name. I have TotPGPV with sorting sequence 1 desc and NewTOTPGPV with sorting sequence 2 desc. I have Count1, Count5 with t

    I'm on version 4.1.1.00.23 of the APEX. I've created a classic report and I am trying to sort. Here's how I'm trying to sort by column name. I have TotPGPV with sorting sequence 1 desc and NewTOTPGPV with sorting sequence 2 desc. I have Count1, Count5 with the sort column. What I'm asking is when the report is run can column sorting to default Count1 and Count5 descending instead of the ascendant. I don't see anywhere to set the default value for the sort column.

    Hi - on the report of the page attributes - that you show in your attached screenshot - you can select the columns to sort on the sort sequence as well as the direction of the sort, i.e. for a given column, you can choose to allow sorting on this column, what position this column must be in the sort sequence and whether to sort Ascending or descending by default (i.e. '1' means sort this column first and bottom-up and "1 desc") sort this column first and downhill). Don't forget that once you click on one of the headings of column during execution, it changes your sort settings and these settings are stored in your preferences, that is, they are used again the next time you log in your application and rerun the report.

    Kind regards
    Marc

  • Im trying to download something off the internet and it says that the download link can not be created and will not let me download.

    Whenever I try to download this thing from a Web page I know is safe, he said that the link cannot be created. How can I do so im allowed to download?

    What web browser do you use? Have you tried to use an alternative web browser? If more than one web browser is saying it is not safe or cannot be verified, then its probably not.

    Mind to reveal what you are trying to download? Help us to better understand the problem.

    You can try to temporarily disable your Antivirus and Windows Firewall and try the download again. (Do this at your own risk).

  • How to publish a report created by the Oracle Report Builder

    Hello world

    My colleague and I have tried to use the Oracle Report Builder to replace our existing report builder of our ERP system. We have already created the report in Report Builder from the suite of development.

    What we are looking for is a similar solution such as Microsoft reporting services;
    (1) create models of corporate report
    (2) and then download the template files to a location (for example, the folder on the server)
    (3) then all users in the company can access it through a web browser with a few fields which they can enter certain critiria (e.g. order number).
    (4) then send it to the printer and print out must stand exactly as the model.


    Unfortunately, we had very hard time trying to find out what it takes and how to publish this report in Oracle we have created. We spent 15 hours on it, but no results.

    15 hours we tried to install the 'Oracle' service, but finally, my colleague said that it was not what we are looking for you, "report Oracle service" is used to the error of the hosted application on the server, not to publish the report of company created by the "Oracle report bulider.


    We use Oracle Database 10 g for the LES quite a long time already. We had setup the Oracle Developer and the installed Application Server.

    Could someone tell us please what kind of service Oracle we are looking actually. Other guides any suggestion and installation are also the most welcoming.


    Best regards
    Bryan

    Hello

    If you want to be able to run your reports on the web, the best solution is to use the 'Oracle Application Server'

    http://www.Oracle.com/technology/software/products/IAS/htdocs/101202.html

    For example, the stand-alone edition of 'forms and reports Services '.

    Then, use the reports Servlet to submit applications for running a report server:

    http://download-UK.Oracle.com/docs/CD/B14099_17/bi.1012/b14048/pbr_run.htm
    Application server Oracle® reports Services publishing reports to the Web
    10g Release 2 (10.1.2)
    B14048-02

    13 queries in race report

    http://www.Oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwwhthow/HOWTO/runPrint/deploy_rpt.htm
    Deploy a report

    Concerning

  • Mac Mini to crash, trying to understand the panic report

    My Late 2009 Mac Mini Core2Duo 8 GB Ram started to crash and this is the last report of panic.  I don't understand what is the error.

    Anonymous UUID: 89505A63-49A1-1409-1B56-F6C97DB19897

    Sun Apr 10 16:06:38 2016

    Panic report *.

    panic (cpu 0 0xffffff801eef437e appellant): ' thread_invoke: preemption_level 1, possible cause: blocking while holding a spinlock, or within interruption context"@/Library/Caches/com.apple.xbs/Sources/xnu/xnu-3248.40.184/osfmk/kern/s ched_prim.c:2068.

    Backtrace (CPU 0), frame: return address

    0xffffff812896b800: 0xffffff801eedab12

    0xffffff812896b880: 0xffffff801eef437e

    0xffffff812896b910: 0xffffff801eef0def

    0xffffff812896b950: 0xffffff801efc6650

    0xffffff812896b9c0: 0xffffff801f486c3c

    0xffffff812896b9f0: 0xffffff801f486c9f

    0xffffff812896ba10: 0xffffff801f48c420

    0xffffff812896ba30: 0xffffff801f48c45d

    0xffffff812896ba40: 0xffffff7f9fc31557

    0xffffff812896bae0: 0xffffff7f9fd1e0cc

    0xffffff812896bbc0: 0xffffff7f9fbe2e8c

    0xffffff812896bc30: 0xffffff7f9fc294c4

    0xffffff812896bcc0: 0xffffff7f9fc31892

    0xffffff812896bd00: 0xffffff7f9fb54a7c

    0xffffff812896bd80: 0xffffff7f9faeadcc

    0xffffff812896be10: 0xffffff801f4b5958

    0xffffff812896be80: 0xffffff7f9faea65f

    0xffffff812896bee0: 0xffffff7f9faef971

    0xffffff812896bf20: 0xffffff7f9faef6cf

    0xffffff812896bf40: 0xffffff801f4b27c1

    0xffffff812896bf80: 0xffffff801f4b28b6

    0xffffff812896bfb0: 0xffffff801efc8e27

    Extensions of core in backtrace:
    com.apple.iokit.IOUSBHostFamily (1.0.1) [4C8B5BB6-6AE4-313E-B79C-AC07A4E31A2D] @ fffff7f9fab6000-0xffffff7f9fb1efff > 0xf
    dependency: com.apple.driver.AppleUSBHostMergeProperties (1.0.1) [52E62355C]@0xffffff7f9fab2000 9D5F86A1-76EF-3007 - 94 CA-496
    com.apple.iokit.IOUSBFamily (900.4.1) [7B5AC81A-D0B6-3F3D-87C7-AFD78F4686DB] @0xfff fff7f9fb28000-> 0xffffff7f9fbc1fff
    dependency: com.apple.iokit.IOPCIFamily (2.9) [4FE41F9B-2849-322A-BBF8-A94816C003D6] @ 7f9f72c000 0xffffff
    dependency: com.apple.iokit.IOUSBHostFamily (1.0.1) [4C8B5BB6-6AE4-313E-B79C-AC07A4E31A2D] @0 x ffffff7f9fab6000
    com.realtek.driver.RtWlanU (1830.2b9) [341CBE7A-D4DF-3A6D-A06E-92B6EE2F4EA4] @0xfff fff7f9fbd4000-> 0xffffff7f9ff46fff
    dependency: (3.2) com.apple.iokit.IONetworkingFamily [848B398F-4D96-3024-8092-6CD3534D2CCA] @0 xffffff7f9fa7e000
    dependency: ffff7f9fb28000 @0xff com.apple.iokit.IOUSBFamily (900.4.1) [7B5AC81A-D0B6-3F3D-87C7-AFD78F4686DB]

    Corresponding to the current thread BSD process name: kernel_task

    Mac OS version:

    15E65

    Kernel version:

    15.4.0 Darwin kernel version: Fri Feb 26 22:08:05 PST 2016; root:XNU-3248.40.184~3/RELEASE_X86_64

    Kernel UUID: 4E7B4496-0B81-34E9-97AF-F316103B0839

    Slide kernel: 0x000000001ec00000

    Text of core base: 0xffffff801ee00000

    Text __HIB base: 0xffffff801ed00000

    Name of system model: Macmini3, 1 (Mac-F22C86C8)

    Availability of the system in nanoseconds: 13927482804366

    last load kext to 13844240430139: com.apple.driver.AppleXsanScheme 3 (addr 0xffffff7fa1bbb000 size 32768)

    Finally unloaded kext to 13907399057741: com.apple.driver.AppleXsanScheme 3 (addr 0xffffff7fa1bbb000 size 32768)

    kexts responsible:

    com.realtek.driver.RtWlanU 1830.2.b9

    com Apple.filesystems.afpfs 11.0

    com Apple.NKE.asp - tcp 8.0.0

    com.apple.driver.AppleHWSensor 1.9.5d0

    com.apple.driver.ApplePlatformEnabler 2.6.0d0

    com.apple.driver.AGPM 110.21.18

    com Apple.filesystems.autofs 3.0

    com.apple.driver.AppleOSXWatchdog 1

    com.apple.driver.AppleUpstreamUserClient 3.6.1

    com.apple.driver.AppleMCCSControl 1.2.13

    com Apple.Driver.pmtelemetry 1

    com.apple.iokit.IOUserEthernet 1.0.1

    com.apple.iokit.IOBluetoothSerialManager 4.4.4f4

    com.apple.Dont_Steal_Mac_OS_X 7.0.0

    com.apple.driver.AppleHV 1

    com.apple.driver.AppleIntelSlowAdaptiveClocking 4.0.0

    com.apple.driver.AppleLPC 3.1

    com.apple.GeForceTesla 10.0.0

    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.4.4f4

    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0

    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1

    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0

    com.apple.BootCache 38

    com.apple.driver.AppleIRController 327,5

    com.apple.driver.AppleUSBStorageCoexistentDriver 3.7.1

    com.apple.iokit.SCSITaskUserClient 3.7.7

    2.8.5 com.apple.iokit.IOAHCIBlockStorage

    com.apple.driver.AirPortBrcm43224 700.36.24

    com.apple.driver.AppleFWOHCI 5.5.2

    com.apple.driver.AppleAHCIPort 3.1.8

    com Apple.nvenet 2.0.22

    com.apple.driver.usb.AppleUSBOHCIPCI 1.0.1

    com.apple.driver.usb.AppleUSBEHCIPCI 1.0.1

    com.apple.driver.AppleRTC 2.0

    com.apple.driver.AppleHPET 1.8

    com.apple.driver.AppleACPIButtons 4.0

    com.apple.driver.AppleSMBIOS 2.1

    com.apple.driver.AppleACPIEC 4.0

    com.apple.driver.AppleAPIC 1.7

    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0

    com Apple.NKE.applicationfirewall 163

    com Apple.Security.Quarantine 3

    com.apple.security.TMSafetyNet 8

    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0

    com.apple.security.SecureRemotePassword 1.0

    com.apple.AppleGraphicsDeviceControl 3.12.6

    com Apple.kext.Triggers 1.0

    com.apple.driver.AppleSMBusController 1.0.14d1

    com.apple.iokit.IOSurface 108.2.1

    com.apple.iokit.IOSerialFamily 11

    com.apple.driver.CoreCaptureResponder 1

    com.apple.iokit.IOSlowAdaptiveClockingFamily 1.0.0

    com.apple.nvidia.classic.NVDANV50HalTesla 10.0.0

    com.apple.nvidia.classic.NVDAResmanTesla 10.0.0

    com.apple.driver.AppleHDAController 274.7

    com.apple.iokit.IOHDAFamily 274.7

    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.4.4f4

    com.apple.iokit.IOBluetoothFamily 4.4.4f4

    com.apple.driver.IOPlatformPluginLegacy 1.0.0

    com.apple.driver.IOPlatformPluginFamily 6.0.0d7

    com.apple.driver.AppleSMC 3.1.9

    com.apple.iokit.IOFireWireIP 2.2.6

    com.apple.iokit.IONDRVSupport 2.4.1

    com.apple.iokit.IOGraphicsFamily 2.4.1

    com.apple.driver.usb.IOUSBHostHIDDevice 1.0.1

    com.apple.driver.AppleUSBAudio 303.3.1

    com.apple.iokit.IOAudioFamily 204.3

    com.apple.vecLib.kext 1.2.0

    com.apple.driver.CoreStorage 517.20.1

    com.apple.iokit.IOUSBHIDDriver 900.4.1

    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.7

    com.apple.iokit.IOUSBMassStorageClass 4.0.2

    com.apple.iokit.IOUSBMassStorageDriver 1.0.0

    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.7

    com.apple.iokit.IOBDStorageFamily 1.8

    com.apple.iokit.IODVDStorageFamily 1.8

    com.apple.iokit.IOCDStorageFamily 1.8

    com.apple.driver.usb.AppleUSBHub 1.0.1

    com Apple.Driver.USB.cdc 5.0.0

    com.Apple.Driver.USB.Networking 5.0.0

    com.apple.driver.usb.AppleUSBHostCompositeDevice 1.0.1

    com.apple.iokit.IOAHCISerialATAPI 2.6.2

    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.7

    com.apple.iokit.IO80211Family 1110.26

    com Apple.Driver.corecapture 1.0.4

    com.apple.iokit.IOFireWireFamily 4.6.0

    com.apple.iokit.IOAHCIFamily 2.8.1

    com.apple.iokit.IONetworkingFamily 3.2

    com.apple.driver.usb.AppleUSBOHCI 1.0.1

    com.apple.driver.usb.AppleUSBEHCI 1.0.1

    2.2.9 com.apple.driver.NVSMU

    com.apple.iokit.IOUSBFamily 900.4.1

    com.apple.driver.AppleEFINVRAM 2.0

    com.apple.iokit.IOUSBHostFamily 1.0.1

    com.apple.driver.AppleUSBHostMergeProperties 1.0.1

    com.apple.driver.AppleEFIRuntime 2.0

    com.apple.iokit.IOHIDFamily 2.0.0

    com.apple.iokit.IOSMBusFamily 1.1

    com Apple.Security.sandbox 300.0

    com.apple.kext.AppleMatch 1.0.0d1

    com.apple.driver.AppleKeyStore 2

    com.apple.driver.AppleMobileFileIntegrity 1.0.5

    com.apple.driver.AppleCredentialManager 1.0

    com.apple.driver.DiskImages 417.2

    com.apple.iokit.IOStorageFamily 2.1

    com.apple.iokit.IOReportFamily 31

    com.apple.driver.AppleFDEKeyStore 28.30

    com.apple.driver.AppleACPIPlatform 4.0

    com.apple.iokit.IOPCIFamily 2.9

    com.apple.iokit.IOACPIFamily 1.4

    com.apple.kec.Libm 1

    com Apple.KEC.pthread 1

    com Apple.KEC.corecrypto 1.0

    Model: Macmini3, 1, MM31.00AD.B00 of BootROM, 2 processors, Intel Core 2 Duo, 2.26 GHz, 8 GB, MSC 1.35f1

    Graphics card: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB

    Memory module: DIMM0/0 BANK, 4 GB DDR3, 1067 MHz, 0x859B, 0x435434473353313036374D2E4D3136464B44

    Memory module: DIMM0/1 BANK, 4 GB DDR3, 1067 MHz, 0x859B, 0x435434473353313036374D2E4D3136464B44

    Airport: spairport_wireless_card_type_airport_extreme (0x14E4, 0 x 90), Broadcom BCM43xx 1.0 (5.10.131.36.16)

    Bluetooth: Version 4.4.4f4 17685, 3 services, 27 aircraft, 1 incoming serial ports

    Service network: Ethernet, Ethernet, en0

    Network service: Wi - Fi, AirPort, en1

    Serial ATA Device: ST500LM021-1KJ152, 500,11 GB

    Serial ATA Device: OPTIARC DVD RW AD - 5670S

    USB device: USB 2.0 Bus

    USB Device: HDD external

    USB Device: 802.11n NIC

    USB device: USB 2.0 Bus

    USB device: USB Bus

    USB device: USB 2.0 hubs

    USB device: USB keyboard

    USB device: Gaming mouse

    USB Device: IR receiver

    USB device: USB Bus

    USB device: C-Media USB Headphone Set

    USB device: Hub BRCM2046

    USB Device: USB Bluetooth host controller

    Crush Bus:

    The panic was apparently caused by the Realtek USB network device or its software. I suggest that you unplug the unit and then remove the software.

    Any third party software that is not installed on the App Store or by drag-and - drop in the Applications folder and uninstall by drag - move to the trash, is a modification of the system.

    Whenever you delete changes to the system, they must be eliminated completely, and the only way to do this is to use the uninstall tool, if any, provided by the developers, or follow their instructions. If the software has been removed incompletely, you may redownload or reinstall even to finish the job.

    I never install modifications of the system myself, and except as stated in this comment, I do not know how to uninstall them. You'll have to do your own research to find this information.

    Here are some general guidelines to help you get started. Suppose you want to remove the so-called "BrickMyMac" (a hypothetical example). First of all, menu using the product, check if there is one, for instructions. Not finding here, look at the Web site, let's say www.brickmymac.com. (Maybe it's not the name real site, if necessary, search the Web for the name of the product). If you don't find anything on the Web site or in your search, contact the developer. While you are waiting for a response, download BrickMyMac.dmg and open it. There may be a request here as "Uninstall BrickMyMac." If this is not the case, open "BrickMyMac.pkg" and look for an uninstall button. The uninstall program can also accessible by clicking on the button customize, when one exists.

    Back up all data before making any changes.

    Generally, you will need to restart the computer in order to perform an uninstall. Until you do this, there may be no effect, or the unpredictable effects.

    If you can't remove the software in any other way, you will have to erase and install OS X. Never install any third party software, unless you're sure you know how to uninstall in the contrary case, it can create problems which are very difficult to solve.

    Try to remove the complex system of changes by hunting for files by name, often will not work and can make the problem worse. The same goes for 'utilities' as the 'AppCleaner"designed to remove software.

Maybe you are looking for