REP-0171 when using rwclient.bat to run report in 11g

Hi,
I m using rwclient.bat in oracle 11g to run a report. Destype=localfile, desformat='PDF'.
In this case, REP-0171 is occured. How to avoid this issue.??
Note : If i use Destype=File it works fine.
I m trying to use Destype=localfile so that the PDF is saved directly at the client machine.

Hi,
"LocalFile" surely works on the Application Server. But, if i run a report from the client machine using LocalFile the output is not saved on the local disk of the client machine.
Saving the file directly on the client machine is my concern.

Similar Messages

  • Rep-1247 when using Run_propuct

    Hello,
    Oracle 8.0.6
    Reports Builder 6.0.8 (i)
    I'm having some troubles calling a .rep from a form. I use a run_product to call this report (which work prpoerly when using reports builder). When I execute the run_product i obtain a 'rep-1247 Not compiled pl/sql code'.
    I've tried to compile the report with several privileges users. It compiles fine and works when running from reports builder. There is no B.D. function calls in the reports but in some local program units i execute sql calls. If i delete this units everything works so i think the reason is this way.
    Can you help me, please?

    Hi,
    "LocalFile" surely works on the Application Server. But, if i run a report from the client machine using LocalFile the output is not saved on the local disk of the client machine.
    Saving the file directly on the client machine is my concern.

  • How to specify term file when using static html to run webforms 10g

    I'm using static HTML to run forms
    document.writeln('<PARAM NAME="serverArgs" ');
    document.writeln(' VALUE="escapeParams=true module=genoa.fmx userid= sso_userid=%20 sso_formsid= sso_subDN= sso_usrDN= debug=no host= port= term=/forms90/hsd65html/genoa.res"> ');
    I'm specifying the term as term=/forms90/hsd65html/genoa.res.
    During forms startup I get the message unable to read the file. I can bwoense the file by http://server/forms90/hsd65html/genoa.res
    Any idea how to specify the term file in static html.
    Thanks

    term is not a http address, but a directory address. So, you have to specify the path on the server:
    term=c:\oracle\forms90\.....

  • Error 404--Not Found - while running report in 11g

    Dear All ,
    I have my oracle application in 10g R1. Now we are migarting that to 11g .
    There is a temporary directory where we are generating report output (PDF)
    we are using an alias name web_reps for this folder .
    Given the AliasMatch in forms.conf and in registry given the alias name for FORMS_MAPPING .
    It was working with 10g . Tried the same in 11g so that report is generating in the folder (PDF)
    but while openeing the file using web.showdocument () using the alias name it is giving the below error .
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    If any body know this issue pls help .
    Thanks
    Jyo

    Are you using apache in front of your weblogics, or just plain weblogic? Also please post the full version of your 11g installation (11.1.1.x or 11.1.2.x). If you are using no apache and the 11.1.1.x version for development (without apache) the forms servlet and the reports servlet are deployed on different weblogic instances running on a different port; meaning forms is available under e.g.
    http://ias:9001/forms/frmservlet
    whereas reports is available under
    http://ias:9002/reports/rwservlet
    but when running reports via web.show_document it assumes both are running on the same port. Also make sure your weblogic instances are up and running. So either you use apache for production (in 11.1.1.x or 11.1.2.x) or you go for 11.1.2 in development where the forms and the reports servlets are deployed on the very same port. As far as I am concerned I'd go for 11.1.2 as the production environment is nothing different from 11.1.1 and the development environment is a hell of a lot easier to install.
    cheers

  • Strange behavior when using Runtime.exec() to run batch file

    I've been struggling with this for hours.
    I have a Swing application which upon clicking a button, I want to execute a batch file. This batch file itself uses a command window.
    When I use
    Runtime load = Runtime.getRuntime();
    load.exec("cmd /c start c:\\renew\\renew2\\bin\\win\\renew.bat");
    The program (Renew) will start up no problem, but when I exit Renew, the command window stays put. I want the command window to close. Running Renew stand-alone, upon closing Renew, it will exit the command window.
    When I use
    Runtime load = Runtime.getRuntime();
    load.exec("cmd /c c:\\renew\\renew2\\bin\\win\\renew.bat");
    or
    Runtime load = Runtime.getRuntime();
    load.exec("c:\\renew\\renew2\\bin\\win\\renew.bat");
    When I press the button, sometimes the Renew application will come up right away, sometimes the Renew application will come up after a very long delay, and most times, the Renew application will only come up after I have closed the Swing frame where the button is located. When I use this code, the command window that Renew uses is never visible.
    What I want is to simply have the Renew application behave the same exact way launching from my Swing application as when Renew is being run standalone.
    Any suggestions? Thanks so much.
    Sincerely,
    Will

    Getting rid of start makes the startup time very variable. Sometimes it starts up right away, sometimes after many minutes, most times only after I close my application.
    Thanks, Any other suggestions?
    (BTW, I have read the famous "When Runtime.exec() won't" article, and have tried its suggestions to no avail)
    Message was edited by:
    willies777

  • Teststand 4.1.1 Crashes when using two or more "run VI Asynchronously" at a time

    I am running a terminal window reading constantly from a serial port running in a different thread using "Run VI Asynchronously". 
    Towards the end of the test I open a separate VI in another thread also using "Run VI Asynchronously".  This VI constantly reads packets from the Ethernet.
    I am running the Sequence in the C++ User interface and for some reason every once in a while TestStand Crashes and in the dialog it it says
    "MFC Operator interface Example has encountered a problem and needs to close.  We are sorry for the inconvenience."
    Error signature:
    AppName: testexec.exe    AppVer: 4.1.1.55   ModName: msvcr80.dll
    Do any of you have any idea as to why this would do this?  Also what is the best way to open and close these threads?
    Any help would be greatly appreciated.
    Test Engineer
    L-3 Communications
    Solved!
    Go to Solution.

    In case 1 below you should definitely be using the sequence context of the new thread rather than the original thread. Using a subsequence (in a new thread) directly is a good idea for that use case.
    In case 2 are you dynamically/programmatically creating local variables in any of the threads or are you just setting/getting values? Setting and getting values is protected by the TestStand engine, but dynamically creating properties underneath Locals or other containers requires you to do your own thread synchronization (i.e. using locks) around such modifications and access.
    Also, in case 2 you are using locals from the original thread that creates the new thread right? Is that what you want? It would be safer to pass the actual local variables that you need in this case as parameters rather than passing the sequence context that belongs to a different thread. Also do you start and stop the asynchronous vi in the same subsequence in the same thread? Do you wait for the asynchronous VI to finish before exiting the subsequence?
    All that run VI Asynchronously does is create a temporary sequence and use the sequence call step to call it in a new thread, so doing that explicitly instead will give you more control over how the parameters are passed so it's probably worth making that change anyway. You might however need to be doing more than that to ensure thread safety depending on what parameters you are passing in and what the VIs and other code in the original thread is doing with them.
    Hope this helps,
    -Doug

  • Plant abroad - when use tax indicator? Two reporting countries one invoice

    Hi!
    My customers has its head office (company code) in Sweden. It has plants abroad and we have activated this function. Now the sellers in Sweden have been on business trip in both Sweden and in Australia (where we have plant abroad). They have used their master card and now the invoice from the bank has arrived and my customer wonders what tax indicators should be used when posting the invoice (with travel costs both in Sweden and Australia). My questions are:
    -Should we use only swedish tax indicators (rep. country Sweden) on all costs on the invoice, both from Sweden and from Australia? Or should I use different tax indicators, since the customer is VAT registered in both countries?
    -Does plant abroad only regards shipping material to and from the plant in Australia? Or can other costs that appears when having travelling costs within the country also be reprted with Australian tax indicators (reporting country Australia)? If it it so, how can I post an invoice with tax indicators with different reporting countries in one transaction in  fb60?
    Thank you very much in advance!
    Best Regards, Åsa

    Hello,
    Could you please tell me the solution for the same as I am having some similar situation.
    Thanks.

  • ORA-03113 when using connect by in a report query ?

    Hi,
    Oracle 10g r2, ApEx 4.0.2.
    I have a classic report on page zero, I need the following query to display my data :
    select
         distinct '<input class="radio_report_search_photos" name="radio_selected_photo" type="radio" />' as "Sel",
         phot_id,
         phot_description,
         '<img alt="" id="thumb_'||phot_id||'" class="clickable_thumb" src="#OWNER#.show_photo?v_id_photo='||phot_id||'" />' as "Thumb",
         substr(SYS_CONNECT_BY_PATH(kw_text, ', '),3) keyword_list
    from
         select
              phot_id,
              phot_description,
              kw_id,
              kw_text,
              pkw_kw_id,
              pkw_phot_id,
              count(*) OVER(partition by phot_id ) cnt,
              ROW_NUMBER() OVER(partition by phot_id order by kw_text) seq
         from
              photos,
              photos_keywords,
              keywords
         where
              phot_id = pkw_phot_id
              and pkw_kw_id = kw_id
              and contains(kw_text,nvl(:P0_SEARCH_PHOTO_KW,'%')) > 0
    where
         seq = cnt
    start with
         seq = 1
    connect by prior
         seq+1 = seq
    and prior
         phot_id = phot_idIt works great when executing from any software. I get the expected results.
    But yhen I try to put it in the report region source, I get an ORA-03113 when I apply changes...
    It works if I remove CONNECT BY PRIOR and SYS_CONNECT_BY_PATH from the query.
    Why ?
    Thanks.
    Details :
    url : https://my_host.ch/pls/htmldb_dev/wwv_flow.accept
    Error :
    Fri, 22 Jul 2011 09:25:38 GMT
    ORA-03113: end-of-file on communication channel

    OK I now use xmlagg & xmlelement instead of connect by.
    Sorry for not providing any solution.
    Yann.

  • BEx Variable Key/Name swap when used as Prompt in WebI report

    Hi,
    We are using Bex Variables in a Query used as a base for a BOBJ Universe and Query.
    When refreshing the report the Prompt box displays the Name and Key of the infoobject (Dimension), but when selecting one of those values - moving it to the right, it brings across the Name not Key.
    Our requirement is that the Key is selected value rather than the name - is this possible? And if so how?
    Netweaver 2004S & Business Objects XI 3.0.
    Regards,
    Laurence

    Ingo,
    Thanks, I understand this in the background the Key is used, but is there any way to "swap" the Key and Name in the Prompt box, specifically my users want the Key to display in the right hand side of the Prompt bax when selecting, (or in the dropdown box, in the Prompt tab in WebI)
    Best Regards,
    Laurence

  • Error when used GOTO option in Web Report which is published in EP

    Hi All,
    I ran the report Process Chain Status report in EP and I got the data for that.When I right click on the one process chain and clicked GOTO option ->clicked on Process Chain Log and its giving the following error.Pls help me out regarding this.
    ---Error when processing your request -
    What has happened?
    The URL .... was not called due to an error.
    Note
         The following error text was processed in the system XXX: Template interpretation cancelled, syntax error.
         The error occurred on the application server xxx_yyy and in the work process 1 .
         The termination type was: RABAX_STATE
         The ABAP call stack was:
    SYSTEM-EXIT of program SAPLRSRR_WEB
    What can I do?
         If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system xxx in transaction ST22.
         If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server  xxx_yyy in transaction SM21.
         If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 1 in transaction ST11 on the application server xxx_yyy . In some situations, you may also need to analyze the trace files of other work processes.
         If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-https -c: 500 -u: XBW -l: E -s: xxx -i: xxx_yyy -w: 1 -d: 20091208 -t: 113254 -v: RABAX_STATE -e: ITS_CANT_LOAD_INCLUDE
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Your answers will be very  much helpful for ontime delivery.
    Thanks in advance,
    BI User

    Hi,
    I guess you can refer this SDN thread
    Error running SOAMANAGER
    Rgds,
    Murali

  • Failed to view report when using ActiveXViewer.cab of Crystal Reports XI

    Hi
    I failed to run Active Server Pages sample application that uses Crystal Reports XI Developer Edition on windows server 2003 machine ie 6.
    What i am getting is a grey page with tiny x mark, meaning that activex failed to load (if i am not mistaking)
    I have followed "Troubleshooting Report Designer Component Application Issues" document and succeded in
    1. manually activeX installing (checked in ie and it a matching object appeared there).
    2. succesfully ran the "test.wsf" (xsl was created)
    but still in ie activex won't load.
    Any help will be appreciated...
    thx
    Edited by: Daniel Polonsky on Mar 11, 2009 11:29 AM

    Try this code, the report source uses Enterprise but you should be able to replace that with local file:
    Sub Window_Onload
       'On Error Resume Next
       Dim webBroker
       Set webBroker = CreateObject("CrystalReports115.WebReportBroker.1")
       if err.number <> 0 then
            window.alert "The Crystal Report Viewer is unable to create its resource objects."
       elseif ScriptEngineMajorVersion < 2 then
            window.alert "IE 3.02 users on NT4 need to get the latest version of VBScript or install IE 4.01 SP1. IE 3.02 users on Win95 need DCOM95 and latest version of VBScript, or install IE 4.01 SP1. These files are available at Microsoft's web site."
       else
         Dim y, z, yy
         z = 10
         y = 4
         Dim URLwebSource(13)
         Dim webSource(13)
         Set router = CreateObject("CrystalReports115.ReportSourceRouter.1")
         for x = 0 to y
         Set webSource(x) = CreateObject("CrystalReports115.WebReportSource.1")
         next
    '     for x = 0 to y
         'reportIDs(1) = 763
         'response.write reportIDs(x)
    <%
         for x = 0 to 4
         response.write(VBCRLF&"URLwebSource(" & x & ") = ""/crystalreportviewers115/viewrpt.asp?id=" & reportIDs(x) & "&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise""")
         next     
    %>
    '      URLwebSource(x) = "/crystalreportviewers115/viewrpt.asp?id=" + reportIDs(0) + "&apsuser=Administrator&apspassword=&apsauthtype=secEnterprise"
    '     next
         for x = 0 to y
         'webSource(x).PromptOnRefresh = True
         webSource(x).ReportSource = webBroker
         webSource(x).URL = URLwebSource(x)
         next
         for x = 0 to y
         router.addreport webSource(x)
         next
         CRViewer.ReportSource = router     
       end if
       CRViewer.ViewReport
    End Sub
    Thank you
    Don

  • Error when using UserParameter in jdbcquery tag

    i am passing a parameter WHERECLS to my report but when i try and use the parameter i.e &WHERECLS i get the following message from the Report Server
    REP--867751910: Internal error
    JDBCPDS-62008:oracle.xml.parser.v2.XMLParseException: Expected ';'.
    REP-4111: Fail to create pluggable data source 'QP_1'
    REP-0002: Unable to retrieve a string from the Report Builder message file.
    REP-0069: Internal error
    JDBCPDS-62000:oracle.xml.parser.v2.XMLParseException: Expected ';'.
    If i take the &WHERECLS out then the report runs, i can use the &WHERECLS when using a Oracle SQL Query Report when it is inside the <select> tag
    any ideas ??

    thanks for replying this is my query, i cut my query down to the bare minimum for testing.
    <JDBCQuery>select top 1000 * from calls &WHERECLS</JDBCQuery>
    i setup a UserParameter called WHERECLS in the top of the
    data section.

  • Error when running reports: "File Server needs to be re-initialized"

    Hi.
    This error "File Server needs to be re-initialized" appears when our users try to run reports on 11.5.10. EBS.
    There is also a message box that appears and reads:
    "A error occurred while attempting to establish a conection to Application File Server. There may be a network configuration problem, or the TNS listener may not be running."
    This is a problem in our test environment. We recently ran autoconfig on the test side.
    I have checked Metalink and also wider google search.
    Perhaps we have an issue with the tnsnames files? Well, I verified this and the tnsnames in production and test, and they are the same.
    Perhaps a listener.ora file issue?
    "The issue is caused by the variables APPLFSTT and APPLFSWD is not being set properly in the <8.0.6_ORACLE_HOME> listener.ora file. " (Note 263654.1)
    I am trying to verify the meaning of the following (in listener):
    ( SID_DESC = ( SID_NAME = FNDFS )
    ( ORACLE_HOME = /oracli2/oracle/testora/8.0.6 )
    ,APPLFSTT=
    TEST_BALANCE;TEST;PROD_806_BALANCE;TEST_FO;TEST_806_BALANCE;PROD_FO,APPLFSWD=/or
    acli2/oracle/testappl/admin;/oracli2/oracle/testcomn/temp;/oracli2/oracle/testco
    mn/html/oam/nonUix/launchMode/restricted' )
    In the APPLFSTT entry, should there be any mention of "PROD" ? Shouldnt this all be changed to TEST?
    Also, comparing this to the PROD listener, the order of APPLFSTT is different:
    TEST: APPLFSTT=
    TEST_BALANCE;TEST;PROD_806_BALANCE;TEST_FO;TEST_806_BALANCE
    PROD:APPLFSTT=
    PROD_806_BALANCE;PROD;PROD_BALANCE;PROD_FO,
    I have made a copy of our listener in TEst, so I can edit the existing one. Trouble is, not sure if I even should try to edit it!
    Any suggestions, much appreciated.
    Oracle 9.2.0. AIX 5.2.
    Notes covered in Metalink:
    274177.1
    303971.1
    304568.1
    263654.1

    Yes thanks for that. Metalink has informed me to do the same, basically.
    But I am in the middle of a cloning, so I will finish that then run autoconfig once again.
    I already ran Autoconfig on both source and target, so will do again once this process is over.
    Cheers.
    DA

  • Missing Search Field when using 3.1 Create App Wizard ?

    Hi
    2 points which look like bugs to me;
    1 - In all previous versions whenever I used the create app wizard to build up a list of pages, reports always included the 'search across any varchar field' funtionality. This seems to have disappeared when using the Classic form of reports. It is obviously there if you use an Interactive report.
    2 - Again when using the Create App wizard, if I use the Classic form (in order to be able to also 'Generate Analysis Pages') these do get built, but not linked in any way (tab, list region, button etc) to any other pages. I can link them myself, but I am demonstrating APEX here and it doesn't look so good....
    Can someone just quickly confirm I am not going mad here ?
    Jules

    Hi Jules,
    You're not going mad! I've reviewed the behaviour of the Search field and the Analysis Pages link using releases 3.0.1 and 3.1.1, and there is a difference in behaviour between the two versions.
    Classic Reports generated via the Create Application Wizard in 3.1.1 should have a Search text field above the report region, however this field is missing. I've logged bug 7185486 for this issue. Classic Report&Forms generated via the Create Application Wizard, with the "Include Analysis Pages" option selected, are missing a link to the Analysis pages in 3.1.1. I've logged bug 7185486 for this issue. I've updated both bugs with a workaround. A fix for these issues will be available in a future release. Thanks for bringing these two issues to our attention.
    Regards,
    Hilary

  • Kernel Panic when using Garageband with Blue Snowball USB mic

    *HI ALL,*
    *I purchased Mac Pro recently about 3 weeks ago. I am on the latest updates including the recent firmware update. However whenever I use garageband with external USB mic(Blue Snowball) my Kernel Panics and OS freezes and forces me to Power On again. It happened 20 times so far in few hours.*
    *I opened garageband first time today after bought this external mic from apple store. I did not use garageband without this mic plugged into USB, I only used garageband with MIC plugged in and in couple of minutes to 5 minutes of using garageband the Kernel Panic occurs. Need your help please. Here is the message I get after login again which I reported consistently to Apple. Any immediate help is appreciated. I use iMove, iPhoto and other apps without any problem. Harddisk verification went o.k.*
    Sun Apr 6 22:13:35 2008
    panic(cpu 7 caller 0x001A8C8A): Kernel trap at 0x004209d5, type 14=page fault, registers:
    CR0: 0x8001003b, CR2: 0x0000000c, CR3: 0x013fe000, CR4: 0x00000660
    EAX: 0x00000000, EBX: 0x0ea7c3c0, ECX: 0x1059f4f0, EDX: 0x85ccfb8c
    CR2: 0x0000000c, EBP: 0x85ccfb08, ESI: 0x0ea7c3c8, EDI: 0x0ea7c3d0
    EFL: 0x00010202, EIP: 0x004209d5, CS: 0x00000008, DS: 0x11ac0010
    Error code: 0x00000002
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0x85ccf8f8 : 0x12b0f7 (0x4581f4 0x85ccf92c 0x133230 0x0)
    0x85ccf948 : 0x1a8c8a (0x461720 0x4209d5 0xe 0x460ed0)
    0x85ccfa28 : 0x19ece5 (0x85ccfa40 0x4256f6 0x85ccfb08 0x4209d5)
    0x85ccfa38 : 0x4209d5 (0xe 0x85cc0048 0x10 0xe920010)
    0x85ccfb08 : 0x42028d (0xea7c3c0 0x85ccfb8c 0x0 0x0)
    0x85ccfb58 : 0x420c0e (0xea8b700 0x420978 0x85ccfb8c 0x0)
    0x85ccfba8 : 0x6055d9 (0xea7c3c0 0x0 0x85ccfc08 0x615b08)
    0x85ccfc08 : 0x609a11 (0xe92a000 0xeed0240 0xf56bff 0x0)
    0x85ccfc68 : 0x86334bde (0x13c56800 0xeed0240 0xf56bff 0x0)
    0x85ccfcd8 : 0x86334ddd (0xfbe4400 0x2 0x1 0x14)
    0x85ccfcf8 : 0x86335056 (0xfbe4400 0x14 0xf7f4a80 0x7c79d6)
    0x85ccfd38 : 0x86335156 (0xfbe4400 0x54 0x0 0xf7f4a80)
    0x85ccfd88 : 0x9f2e64 (0xfbe4400 0x8634d000 0x862c1010 0x110a)
    0x85ccfdf8 : 0x9eec9f (0xfd03600 0x10506588 0x110a 0x3ea740)
    0x85ccfe68 : 0x9ee169 (0x13d7d000 0x110a 0x13c4c940 0x13dbab7c)
    0x85ccfea8 : 0x43c47e (0x13d7d000 0x110a 0x55f 0x1)
    Backtrace continues...
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.driver.AppleUSBAudio(2.5.4b4)@0x86326000->0x8634cfff
    dependency: com.apple.iokit.IOAudioFamily(1.6.4b7)@0x9e4000
    dependency: com.apple.iokit.IOUSBFamily(3.0.8)@0x5ff000
    com.apple.iokit.IOAudioFamily(1.6.4b7)@0x9e4000->0x9fafff
    dependency: com.apple.kext.OSvKernDSPLib(1.1)@0x9e1000
    com.apple.iokit.IOUSBFamily(3.0.8)@0x5ff000->0x626fff
    BSD process name corresponding to current thread: GarageBand
    Mac OS version:
    9C7010
    Kernel version:
    Darwin Kernel Version 9.2.2: Tue Mar 4 21:17:34 PST 2008; root:xnu-1228.4.31~1/RELEASE_I386
    System model name: MacPro3,1 (Mac-F42C88C8)

    I've been getting a number of kernel panics when using USB Mics with Skype, though I have not experienced any crashes when using Garageband.
    The crash report cited the AppleUSBAudio driver as the culprit. Here's the set up:
    MacBookPro Core2 2.66 15"
    Mac OS X 10.5.2
    Blue Snowflake USB Mic, Blue Snowball USB Mic
    Skype (latest rev - 2.7.0.257)
    AppleUSBAudio.kext version 2.5.6b3
    Seems to be a lot of crashiness with USB Audio in 10.5.2 - let's hope we see a patch soon

Maybe you are looking for

  • Print report to client printer from forms

    Hi, I need to print a report directly to a client printer. There is a utility called ORARRP - Oracle Reports Remote Printing Utility. But the document I saw was from Oct 2001 - so is this still the only and best option ? I'm using RUN_REPORT_OBJECT i

  • Has anyone configured to send WSIB with FAX, if so ?

    We would like to send the WSIB form thru the FAX option.  I really am not too sure where to start for configuration and what our options are WE DO currently use SCOT to send email alert

  • NW4, TREX 7.0

    May there be steps necessary for the Enterprise Portal (NW4) that is using TREX 7.0?

  • Firmware for WRT54GS with Speedbooster

    I have version 1.5 apparantly by looking into my router.  When I look for a download for it I can not find it on this website.  So I tried downloading version 1's firmware upgrade and then I read the readme file and it says to look for a file that en

  • I can't get my songs from my iPod onto my computer

    After I put songs onto my iPod, I delete them from my library. Now that I am getting a new iPod, I want to put all of my songs from my iPod into my library, but I have no clue how to do it, and the manuel says nothing about it. Please help me out! wi