Using Port with apex

I need some help...
I need some examples using port(serial, usb or paralelo) any execise please send it... to [email protected]
i want do a lot of things with it... or if you know where are there examples on the web.. please tell me
Thank u,

HTML is NOT really meant to do ANYTHING with the ports, you would need to look at Java or another higher level language.. What exactly ar eyou looking to do with the Ports?
Also, isn't this a duplicate of your other posting from today? Help in Apex3.2
Please try not to double post about the same topic..
Thank you,
Tony Miller
Webster, TX

Similar Messages

  • Using JQuery with Apex

    Hello, I have a question for those of you who are using JQuery with Apex:
    This is my HTML header:
    <script type="text/javascript" src="&WORKSPACE_IMAGES.jsapi.js"></script>
    <script type="text/javascript">
    google.load("jquery", "1.3.2");
    </script>
    The problem is that JQuery still loads from Google and since the Company Intranet has the cookies blocked the privacy icon appars in IE. I am sure somebody will one day notice this and it's gonna be a "big" problem.
    I suspect that something must be changed below to make the privacy icon dissapear,
    if (!window['google']) {
    window['google'] = {};
    if (!window['google']['loader']) {
    window['google']['loader'] = {};
    google.loader.ServiceBase = 'http://www.google.com/uds';
    google.loader.GoogleApisBase = 'http://ajax.googleapis.com/ajax';
    google.loader.ApiKey = 'notsupplied';
    google.loader.KeyVerified = true;
    google.loader.LoadFailure = false;
    google.loader.Secure = false;
    google.loader.GoogleLocale = 'www.google.com';
    Any ideas how to change this code and if this is going to work?
    George

    Hi,
    If you do not like use jQuery from Google, discard your code
    <script type="text/javascript" src="&WORKSPACE_IMAGES.jsapi.js"></script>
    <script type="text/javascript">
    google.load("jquery", "1.3.2");
    </script>and use e.g. this guide to integrate jQuery to your Apex apps
    http://www.oracleapplicationexpress.com/tutorials/66-integrating-jquery-into-apex
    Br,Jari

  • Using alerts with ApEx 2.2

    I want to use alerts from an ApEx application (after I insert to a table for example), the problem is that alerts can only be run as the apps account.
    Is there a way to make alerts work?

    The question was misunderstood.
    Because Oracle apps uses a different security scheme then apex you'll really have to code for it within your alert. Any user that updates/inserts/deletes on the table you would base your alert on will fire the trigger not just "apps" user. However because the apex users are not apps and not in fnd_user table the transaction would get recorded as anonymous user (user_id = -1). Probably the best you could do would be put some "if" statements in your alert to check for user not found in fnd_user then make a v('APP_USER') call to get the apex user_name. Because your dealing with two different security schemes you can't do anything but work around's.
    Todd

  • Using AJAX with ApEx

    Hi All,
    I'm new to Ajax and I'm trying to create an alert that prompts the user if the information that they entered into a form results in a primary key violation. The problem is that the application procedure that I created is not returning a value when it should be, because I am not receiving the alert when I violate a primary key...I don't know what I am doing wrong. Any help would be much appreciated.
    My javascript code is as follows:
    function checkNull(){
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=P3PK',0);
    get.add('P3_MEMIMPNUM',$x('P3_MEMIMPNUM').value);
    get.add('P3_ACTIONDATE',$x('P3_ACTIONDATE').value);
    get.add('P3_ACTION',$x('P3_ACTION').value);
    ajaxresult = get.get();
    if (ajaxresult)
    alert("Primary Key Violation!");
    get = null;
    The application process P3PK is processed On Demand and the PL/SQL Block is as follows:
    DECLARE
    str_memimpnum varchar2(15);
    BEGIN
    SELECT memimpnum
    INTO str_memimpnum
    FROM tblaction
    WHERE memimpnum = :P3_MEMIMPNUM AND
    actiondate = :P3_ACTIONDATE AND
    action = :P3_ACTION;
    HTP.prn(str_memimpnum);
    END;
    Finally, the save button is set to redirect to a URL and the URL target is as follows:
    javascript:onclick=checkNull();
    Note: There is more to the checkNull function, but I only included the section that I felt was applicable to this issue.
    Thanks in advance!

    Hello,
    Most likley it's an issue with your OnDemand Process.
    Change your alert to
    alert(ajaxresult);
    And then in your process change it to with a htp.prn('Hello World'); to make sure your calling the right thing.
    Then output the item values.
    htp.prn(:P3_MEMIMPNUM);
    Just work your way through it.
    Also you can easily debug these returns using Firebug addon in Firefox. http://www.getfirebug.com
    then
    Regards,
    Carl
    blog : http://carlback.blogspot.com/
    apex examples : http://apex.oracle.com/pls/otn/f?p=11933:5

  • Problems using Ajax with Apex 3

    Hi folks,
    I've got a client website biult with Application Express on a Oracle Database System. I attached some Ajax funtionallities on fields and there are standard Interactive Reports which are biult on Ajax as well.
    When I try to access the site normally (http) there are occuring no problems at all. But when I try to access the site via https, the Ajax functionallity doesn't work right.
    For example: There is a field named P37_STD_ERFASSTER_WERT which has an onblur javascript event: onblur="viertelstunde_runden(this)". This calls the following javascript function.
    The Java Script code calls an Application Process which calls a PL/SQL function on my database.
    JavaScript code:
    +function viertelstunde_runden(obj) {
    var std = obj.value;
    std = std.replace(".", ",");
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=rundStdErfassterWert',0);
    get.add('P37_STD_ERFASSTER_WERT', std);
    result = get.get();
    obj.value = result;
    }+
    So I'm filling '2.4' into the field. After the Process i get the following response: "<html><body><p>2,5</p></body></html>". Does somebody have a clue, why the response is packed into the html tags?
    As a proxy I've got an Apache2 server on a Ubuntu Server 8.1. Is there something wrong defined in the Apache2 Config?
    Thanks for all tips and other helping responses.
    Greetings
    Sandro

    Hi Roel,
    Thx for your quick answer.
    The App-Process looks like this:
    declare
    l_std_erfasster_wert number;
    begin
    l_std_erfasster_wert := br_stunden.runde_viertelstunde(v('P37_STD_ERFASSTER_WERT'));
    htp.prn(l_std_erfasster_wert);
    end;
    And the PL/SQL Procedure on the DB like this:
    -- erfasste Stunden auf Viertelstunde-genau runden
    FUNCTION runde_viertelstunde (
    i_std_erfasster_wert IN stunden.std_erfasster_wert%TYPE
    RETURN NUMBER
    IS
    l_std NUMBER;
    l_min NUMBER;
    BEGIN
    l_std := TRUNC (i_std_erfasster_wert);
    --Rest von Stunden sind Hundertstel-Minuten
    l_min := (i_std_erfasster_wert - l_std) * 100;
    --Hundertselminduten runden auf 25/50/75 oder 100
    l_min := ROUND (l_min / 25) * 25;
    --wenn Minuten aufgerundet auf volle Stunde (100), gibt es eine Stunde mehr
    --und Minuten sind 0
    IF l_min = 100
    THEN
    l_std := l_std + 1;
    l_min := 0;
    END IF;
    RETURN l_std + (l_min / 100);
    END runde_viertelstunde;
    :Sandro

  • Unable to download using ports with usb cable after ios7 upgrade

    Why doesn't the compuetr recognize other devices using usb cable to download media?

    Hi neocec!
    I have a couple of suggestions for you that will help you troubleshoot this issue. First, you should try to reset the iOS device by following these instructions:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    If you are still experiencing issues after attempting that troubleshooting step, you will want to restore your iOS device according to these instructions:
    iTunes: Restoring iOS software
    http://support.apple.com/kb/HT1414
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Resource Management with Apex

    I have seen examples of using dbms_resource_manager with Apex where Apex_public_user has its consumer group switched according to some rule. Trouble is many hundreds of apex users connect using this single username.
    What I wish to know is it possible to perform this at a finer level of granularity, ie at individual Apex user level.
    If so I control the resources available to Apex users individualy.
    Is this even a sensible thing to do? Criticisms are welcome.

    Hi Tony,
    I would be interesting to see any example.
    I posted my question before: Creating interactive gantt chart in apex 4
    but no one give any answer yet.

  • Using wwv_flow_load_excel_data and apex collections

    Hi!
    I have a question regarding very popular subject: parsing csv files.
    I made one application, which takes csv file, parses it using Vicas's code, presents validation report to the user, and finally allows to submit data into the datatable.
    Everything works fine, but I don't like this solution. CSV can cause problems when quotation mark is used inside, when numbers have 1000 separators and so on.
    Besides that, I have to add some code to validate column types. Lot of mess.
    The solution incorporated into apex tool, called "Data Load/Unload" looks much better. It would be nice to use that inside apex application adding some business validations, and hardcoding table and columns names.
    I have seen wwv_flow_load_excel_data package and I'm wondering if it is possible to use load_excel_data procedure to perform that task?
    Is there any documentation to that package?
    Somebody heard about using that with apex collections (to avoid a need of temporary table)?
    Regards,
    Arek

    And if somebody else is looking for "ApEx" forum:
    Oracle Application Express (APEX)

  • MDM Server Ports with Batch operations

    Hi,
    how can i use MDM Server Ports what i define in ports table of my repository in MDM Console with ImportManagerBatch and especially with SyndicatorBatch? i use 5.5.24.06 SP2.

    Hi Dmitry,
    My understanding is that ports are most useful if you are using XI MDPS (Master Data Processing Server?).  You define ports in the console.  Key thing to remember a port works if you attach it to a client system that is defined as inbound/outbound; does not work if the client system being associated is just inbound or just outbound.  You define the file format under format setting. 
    In my case, since I do not use XI, I need to manually associate the location of my files to the regedit setting.  Only then, port setting can be selected on the import manager file definition.
    I learnt how to define ports.  I use import manager batch and syndicator batch but I did not see an additional benefit of using ports with them.  For example, I have 70+ tables to load using import manager.  Most are based on Excel and XML file types.  SO, I have my ini files defined for each of the XMLs, and one for excel (it has several tabs) with source, destination, and file location information.  Then, I have a bat file with IMB commands associating each of ini files to a map/agency/language, etc.  And execute the bat file from command line.
    May others in the forum who used ports with IMB or Syndicator batch can give more insights.
    Thanks
    Savi

  • HP Quality Center Sprinter with APEX

    Is anyone using this with APEX? HP says they aren't certified with this environment on their testing tools. They said that Quick Test Professional can be made to work but that Sprinter may not be able to.

    You'll need some form of access to get a proper solution in place, one of which would be 2010 Business Connectivity Services(BCS)
    http://msdn.microsoft.com/en-us/magazine/ee819133.aspx
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How to use thunderbolt port with disks and DVI-display

    Hello,
    today I use a 15" MacBookPro and have attached 1TB LaCie with FW800  (for time machine) and DVI-Display using Mini-port.
    Need to add more external disk space and look for Lacie 2 TB with thunderbolt connection (for storing mass of pictures in Raid1 version)
    Is it possible to connect the new disk, the other disk with an Thunderbolt->FW800 adapter and the DVI-Display to one thunderbolt port?
    What are the options I have, to get all three to work at the same time?

    No, or at least not without additional hardware. You have too many end-points for one Thunderbolt chain.
    You also have the problem that the Thunderbolt->FW800 adapter is not yet for sale.
    If the new disk you get has two Thunderbolt ports (which not all do), you could daisy-chain the Thunderbolt->FW800 adapter behind it, but that adapter has to be at the end of the chain. The Mini-port->DVI adapter likewise needs to be at the end of a chain.
    So, you can probably get all three connected at one time by connecting the "1TB LaCie with FW800  (for time machine)" to your FW800 port, while connecting the Thunderbolt->FW800 adapter (when available) to the second port of the new disk. I say "probably" because nobody has the TB-FW adapter yet to try it.
    As for doing it on one Thunderbolt port with additional hardware, you might look into third-party docking stations being released in the next few months. The announced prices are in the low-to-middle hundreds. I won't mention brand names, as this is an Apple forum, but they aren't too hard to find by web search.
    The highest-priced solution would be the Apple Thunderbolt Display, which gives you a FW800 port for your 1TB drive, a pass-thru Thunderbolt port for your new disk, and of course a 2560x1440 display (plus ethernet and usb2 ports you may not need). It's available now, in the uppermost hundreds. There are some refurbs in the online Apple Store at the moment at 15% off.

  • Possible to use old macbook (mini dvi port) with 24 in LED display?

    Is there a combo of adaptors that will allow me to use my older macbook (mini-DVI port) with the new apple LED screens- i.e. adaptors allowing mini-DVI to mini displayport connector that comes with monitor?

    You need this component and a mini DVI to DVI adapter.
    (53913)

  • HT1476 when i plug my phone into the usb port with the apple charger that came with my phone i get an error msg say charging not supported by this device.   But when i use a gigaware (radioshack brand) usb charger, no error msg.  Why?

    when i plug my phone into the usb port with the apple charger that came with my phone i get an error msg say charging not supported by this device.   But when i use a gigaware (radioshack brand) usb charger, no error msg.  Why?

    - Try restoring the iPod, first from backup and then try to factory settings/new iPod to rule out a software problem.
    - Look at the dock connector on the iPod. Look for abnormalities like bent or corroded contacts, foreign material and broken or cracked plastic.
    - Could you have damaged something when you took the iPod apart and replaced the Home button?

  • How to set up NAT for two servers using same port with ASDM ASA 5505

    Hi there,
    We have a new installation of a ASA 5505 and are trying to get some NAT issues straightened out. Here is the scenario: On our internal network, we have two servers running Filemaker Server, a relational database server that clients connect with using port 5003. Our goal is to be able to allow users from the outside to access either of these servers as needed. I know how to set up a simple static NAT rule and matching Access rule in ASDM which would be fine for a case in which only one server using a given port is running on a network, but for simple static rules I seem to be blocked from entering a different translated port number from the orginal port number, which becomes a problem when two servers we need to access from the outside are running software using the same port number.
    What is the simplest way to address this need? I am guessing that I need to set up a scenario like this, where port 5004 (or any arbitrarily choosen unused port, can be used to access the second server:
    Outside user enters   FQDN:5004  and this translates to Database server # 1 as   192.168.1.40:5003
    and
    Outside user enters   FQDN:5003  and this translates to Database server # 1 as   192.168.1.38:5003
    If so, what is the easist way to get this done? Or is there a better what to handle this scenario?
    Thanks in advance,
    James

    I would create two objects and use object NAT
    object network Obj_5004
    host 192.168.1.40
    object network Obj_5004
    nat (inside,outside) static service tcp 5003 5004
    object network Obj_5003
    host 192.168.1.38
    object network Obj_5003
    nat (inside,outside) static service tcp 5003 5003
    Of course you will need to open your outside interface for tcp ports 5003 and 5004 to make this happen

  • Cant use DVI-D port with DVI-D cable from Pav 500-100a to HP W2207 monitor

    I have a new Pav 500-100a factory standard with no mods.  A HP w2207 monitor.
    Currently connect fine with VGA to the DVI-D port with the adapter that came with the pc.  I've setup Windows, updated to 8.1, put in my files from my old PC and all was well except video isnt that good.
    I got a DVD cable form work but its a DVI-I cable.  It took 5 mins before windows comes up and then whenever the background picture changed in the theme it hung for a few seconds.  I read that I need a DVD-D cable which i purchasd today.
    The packet says its a CL-DVI2M - DVI M/M 24+1 CABLE 2M.  The tech in the shop says its a good calbe and will work fine.
    When connected and I power up I get teh hp logo and rolling dots then it goes blank.
    I reconnect teh VGA cable and its all fine - using the VGA to DVI adapter.
    I ran msconfig and turned of safe boot - restarts and comes up fine in safe mode.  I set the resolution to 1280x800 and restarted and reconnected the DVI cable - blank again.
    If I put the VGA cable back in it boots fine.  The monitor has been factory reset and seens the DVI connection but Windows remains blank. Also tried booting first with no cable - connect teh DVI and the monitor remains in sleep - power reset teh monitor and still blank also shows no DVO conenction.
    I fI power up with DVI connected I can get to BIOS, and i see the HP logo and dots as Win 8 starts.
    I dont know what else I can try.  I have no other usable video card with DVI
    Any ideas out there?
    Pls help - Steve
    Although I am an HP employee, I am speaking for myself and not for HP.
    This question was solved.
    View Solution.

    Hi Steve,
    Only connect one active video cable to the monitor and do not use any adapters.
    Use a flashlight and examine the DVI connector on the monitor.  Which DVI type is it?
    Some of the older HP monitors have DVI issues so you might want to check with HP Support and see if you have one of those models.
    An older post a long time back indicated that audio also had to be feed to the monitor (claimed by a poster).  If this is indeed true then it's a monitor design flaw. So, you could use a native HDMI cable and test out that claim. 
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

Maybe you are looking for