Add the value of point two apex and display the result in another part of the apex

Hello

I need to make the addition of the two item values using apex.item.text and find the result in another apex.item.text.

For example:
SELECT
apex_item. Text(1,null) ONE
apex_item. Text(2,null) TWO
apex_item. Text(3,null) RESULT
FROM EMP
please suggest me

Thank you
Sudhir

>
No it does not add the two values in the column, user key to enter the value, it must add the value of the item and displays the result in a dynamic way. Need a suggestion for using javascript
>
This requirement was not not clear in the op.

See the demo of Denes Kubicek.

This topic is discussed far too often. Have you tried to Oracle Application Express (APEX) and adapting one of the many examples of LoV cascading to your situation?

See you soon,.

PS: Tip:
Look for the p_item_id and p_attributes of the APEX_ITEM API parameters.
You can call JS functions for example using p_attribute

APEX_ITEM.TEXT(...
p_attributes => 'onchange="doTotal(this);"', /* doTotal being your JS Function */
...

Published by: Dominic August 16, 2012 11:52

Tags: Database

Similar Questions

  • Two vCenters and mobile from one to another ESX host

    I have an existing vSphere environment where all virtual machines on the local drive. This environment is managed by a physical vCenter Server.

    I've built a WHOLE new environment with three hosts and each has 4 Sockets, 6 hearts with 128 GB of each host. I also created a new vCenter Server and it is a virtual machine. All are connected to the iSCSI SAN.

    I know that the ESX hosts can be managed by a vCenter server at a time. Now, I want to add old esx hosts that have virtual machines on a local drive to the new environment that is connected to a shared storage. When I try to add a host on the new vcenter server, I get a message saying that the host is already managed by the old server vcenter and if I add it to the news that it disconnects. Which is the best way to do it, or should I disconnect hosts from the old server vcenter first?

    Also how I will move the virtual machines on the local disk to the San. I have company over 4.1.

    Thank you!

    I unplug and remove the host from the old environment and then add the host in the new.  This will allow your guests to continue to operate.  Once you have hosts in the new environment, you can use sVMotion (right click to migrate, move the datastore) to move your guests to a shared storage.

  • Retrieve and display a result set using the dynamic sql?

    Hi all

    How would display a result set in Oracle using the dynamic SQL? Reason being, the table where I'd retrieve and display the result set is a GLOBAL TEMP TABLE created in a stored procedure. If I try to use the loop as usual, the compiler complains that the table does not exist. This makes sense because the compiler does not recognize the table because it is created dynamically. Here is an example:

    create or replace PROCEDURE maketemptab IS
    sql_stmt VARCHAR2 (500);
    OutputString VARCHAR2 (50);

    BEGIN
    -create temporary table
    sql_stmt: = ' CREATE of TABLE TEMPORARY GLOBAL globtemptab (id NUMBER, col1 VARCHAR2 (50))';
    EXECUTE IMMEDIATE sql_stmt;
    dbms_output.put_line ('... created table ');

    -Insert a row into the temporary table
    sql_stmt: = "INSERT INTO globtemptab values (1, 'some data of a test')';"
    EXECUTE IMMEDIATE sql_stmt;
    dbms_output.put_line ('... inserted row ');

    -Insert a row into the temporary table
    sql_stmt: = ' INSERT INTO globtemptab values (2, "some more test data");
    EXECUTE IMMEDIATE sql_stmt;
    dbms_output.put_line ('... inserted row ');

    -Select the row on temporary table
    sql_stmt: = 'SELECT col1 FROM globtemptab WHERE id = 1';
    EXECUTE IMMEDIATE sql_stmt INTO outputstring;
    dbms_output.put_line ('... selected line: ' | outputstring);

    -drop temporary table
    sql_stmt: = 'DROP TABLE globtemptab;
    EXECUTE IMMEDIATE sql_stmt;
    dbms_output.put_line ('... moved table ');

    -display the result set
    for tabdata loop (select col1 from globtemptab)
    dbms_output.put_line ('... test of recovered data are' | tabdata.col1)
    end loop;
    end;


    In short, how to rewrite the SQL below the comment "to display the result set" using the dynamic sql?

    Thank you
    Amedeo.

    Hello

    Try this:

    CREATE OR REPLACE PROCEDURE maketemptab IS
       sql_stmt     VARCHAR2(500);
       outputstring VARCHAR2(50);
       v_cursor     SYS_REFCURSOR;
       v_col1       VARCHAR2(30);
    BEGIN
       -- create temp table
       sql_stmt := 'CREATE GLOBAL TEMPORARY TABLE globtemptab(id NUMBER, col1 VARCHAR2(50))';
       EXECUTE IMMEDIATE sql_stmt;
       dbms_output.put_line('...table created');
    
       -- insert row into temp table
       sql_stmt := 'INSERT INTO globtemptab values (1, ''some test data'')';
       EXECUTE IMMEDIATE sql_stmt;
       dbms_output.put_line('...row inserted');
    
       -- insert row into temp table
       sql_stmt := 'INSERT INTO globtemptab values (2, ''some more test data'')';
       EXECUTE IMMEDIATE sql_stmt;
       dbms_output.put_line('...row inserted');
    
       -- select row from temp table
       sql_stmt := 'SELECT col1 FROM globtemptab WHERE id=1';
       EXECUTE IMMEDIATE sql_stmt
          INTO outputstring;
       dbms_output.put_line('...row selected: ' || outputstring);
    
       OPEN v_cursor FOR 'SELECT col1 FROM globtemptab';
    
       LOOP
          FETCH v_cursor
             INTO v_col1;
          EXIT WHEN v_cursor%NOTFOUND;
          dbms_output.put_line('...test data retrieved is' || v_col1);
       END LOOP;
       CLOSE v_cursor;
    
       -- drop temp table
       sql_stmt := 'DROP TABLE globtemptab';
       EXECUTE IMMEDIATE sql_stmt;
       dbms_output.put_line('...table dropped');
    END;
    /
    

    Kind regards

  • The values of cursor two corresponding and insertion into tables

    I ' am using sql developer oracle 11g.

    I have 3 tables called

    PRODUCT_NOTIFICATION

    RECORD

    PCS_NOTIFICATION

    --------------------

    PRODUCT_NOTIFICATION

    IDTITLEMessage
    21sale50% discount on all brand products

    RECORD

    IDREGNAMEACTIVATIONCODESTATUSMOBILENUM
    747407931107TESTTHERE12345
    39717371107TESTuco1THERE6789

    Now, I want to take only the message of product_notification table column and

    pick up the registered customer of registration table where the activationcode_status = 'Y '.

    PCS_NOTIFICATION

    Output of desire in the PCS_NOTIFICATION TABLE

    IDMOBILENUMMessage
    11234550% discount on all brand products
    2678950% discount on all brand products

    THEN insert the message in pcs_notification.

    It is the procedure goes as...

    create or replace

    PROCEDURE sp_notification)

    p_out_msg OUT VARCHAR2

    )

    AS

    CURSOR C_product_notification

    IS

    Select the description of product_notification;

    -Search for registered customer

    CURSOR C_registered

    IS

    Select * from registration where activation_code = 'Y ';

    for k C_INSERT

    LOOP

    THEN

    BEGIN

    If C_product_notification = C_registered THEN

    INSERT INTO PRODUCT_CLOUD_NOTIFICATION VALUES () - stuck here

    ---------------------

    ---------------------------------

    --------------------------------------

    Goal is to send the generic message for every individual mobile numbers of registered customers.

    Help, please...

    Create a sequence object to fill PCS_NOTIFICATION.ID. allows you to call him PCS_NOTIFICATION_ID_SEQ.

    Now all you need is a simple insert statement.

    insert into pcs_notification (id, mobilenum, message)
    select pcs_notification_id_seq.nextval, r.mobilenum, pn.message
      from product_notification pn
      cross join registration r
     where r.activationcodestatus = 'Y';
    
  • Compare and display several column data according to requirement

    Hello

    I have a requirement where I want to compare the data in two tables and display only the columns if there is a gap using the sql query.

    Tell userid, e-mail and phone number of the same employee is stored in two tables. Now, I want to compare data from e-mail and phone number of the two tables and display the e-mail and phone number as if they are different data.

    Employee table:

    user_id E-mail phone
    emp01[email protected]00200
    emp02[email protected]

    00300

    emp03[email protected]00400

    Table user_details:


    ID user_email user_phone
    emp01[email protected]00201
    emp02(null)00300
    emp03[email protected]00401


    Please note that both tables have completely different column names and the data may contain a null as well. What I want to achieve is to compare the same employee data in both tables and display columns that have a different value of user_details table; as:


    user_id user_email phone
    emp01[email protected]00201
    emp02(null)
    emp03[email protected]00401


    As the table column names are different, I can't use a join and less to know the difference. I tried this with the help of CASES after the WHERE clause for comparison of columns multiple but GOLD or AND the two would defy the condition to display all columns with different data for the same line.


    How to do this without creating a separate view or a table that I don't have write access? Pointers would be useful.


    -Thank you.


    No need for something like

    You just run

    Select k.user_id, k.id,.

    e.email, u.user_email,

    e.Phone, u.user_phone

    of user_key_table k

    left outer join

    e employee

    On k.user_id = e.user_id

    left outer join

    user_details u

    on k.user_id = u.id


    the rest is here just to simulate your tables (I don't want to create tables in my APEX Tablespace as there are far too many people already)

    Concerning

    Etbin

  • How to add the full value of two buttons?

    How to add the full value of two buttons (any key) VI and display it in the output text box? I am attaching a sample program, but I know that his evil... Help, please

    Try this

  • values based on the following logic 'values after the first values of two '_' and before last '_' values '.

    Hi all

    I need the values according to below 2logics in a single select query using instring and substring

    1 values based on the following logic 'values after the first values of two '_' and before last '_' values '.

    2 values based on the following logic 'values after the first values of two '_' and before last'-'values '.

    EXM:

    Entry: ABCD_EFGH_IJKLM - NOPQ_XYZ output: IJKLM - NOPQ

    Entry:. ABCD_EFGH_IJKLM - NOPQ output:IJKLM

    Thank you.

    Check the following

    WITH DATA1 AS

    (SELECT "ABCD_EFGH_IJKLM - NOPQ_XYZ" double val)

    UNION ALL

    SELECT 'ABCD_EFGH_IJKLM - NOPQ' double val

    )

    SELECT SUBSTR (VAL, INSTR(VAL,'_',1,2) + 1, DECODE (BIGGER (INSTR (VAL, '_',-1, 1), INSTR(VAL,'-',-1,1)), INSTR (VAL,'-', - 1, 1), LENGTH (VAL) + 1, INSTR (VAL, '_',-1, 1))-(INSTR (VAL, '_', 1, 2) + 1))

    OF DATA1;

    Concerning

    Salim

  • Hello experts, I use Adobe forms in SAP. My question is, is there a any restriction for additem keyword in JavaScript? I mean, even if I use the keyword additem to add the name and value of a drop-down list, it adds up to 10000 files only. Please s

    Hello experts,

    I use Adobe Forms in SAP.

    My question is, is there a any restriction for additem keyword in JavaScript?

    I mean, even if I use the keyword additem to add the name and value of a drop-down list, it adds up to 10000 files only.

    Please sugest

    A drop-down list is the bad INTERFACE design where an element can contain more than 100 entries. It is very good in tests, but absolutely unacceptable if the form must be used by a person busy doing their work. The choice of Acrobat forms are limited, but consider a list box. Despite this, there may be limits imposed by the system or the implementation.

    Better would be

    (a) stop filling after awhile the list and add an entry saying several elements not shown, running report or use better filter

    (b) be available for all filtering of course lists

  • How to unlock the locale so I can add the Mexico points to my console which is in MEXICO?

    m a veteran disabled in the Mexico. Zune hulu netflix won't work on xbox live why?

    I can only play games online or download demos of games (except capcom and some other company where I get a message similar to NO in YOUR AREA) I paid the point card FOR A NECESSARILY 4 K to the Mexico and I think MS has regional codes for products of value of REAL money. It turns out that when I but Xbox Live in the USA cards they are working on my console to the Mexico (go to the border is drainfull and painful for me to a LONG tail just to add points to my 2 consoles.) How to unlock the locale so I can add the Mexico points to my console which is in MEXICO? I bought the console in the usa because if I buy products to the Mexico, they are usually in Spanish. What is hulu, netflix zune espn lasf.fm goin to be available in the bordertown I live in the Mexico? use my email for a response (or not and I know what kind of support really means) thank you is whay. Besides why Xbox Live points cards are locked for each country? I have to go back between the two countries just to add to my acct (just to use the Mexico retail stores cards, I won't BUY a xbox360 to the Mexico because I don't want 3 of them) P.S.  I PAID for almost 7 k $ in accessories games (including a rockband and dance Matt fog machine) have I wasted my money on junk if it will not properly work in the country I want to live in?

    When I but cards Xbox Live in the USA that they are working on my console the Mexico (border is drainfull and painful for me to a LONG tail just to add points to my 2 consoles.) How to unlock the locale so I can add the Mexico points to my console which is in MEXICO? I bought the console in the usa because if I buy products to the Mexico, they are usually in Spanish.

    It seems that there is actually a game forum here (who knew?) but they just say Xbox users where to go...

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_other-gaming/Xbox/7b494905-75BA-4cf1-9960-314f55bbfc70

    (Microsoft search for)
    Xbox site: answers.microsoft.com
    )

    What is hulu, netflix zune espn lasf.fm goin to be available in the bordertown I live in the Mexico?

    There are the Zune forums here, even a single called Zune Marketplace, Applications and games that can be filtered to device: Xbox

    http://answers.Microsoft.com/en-us/Zune/Forum/apps-Xbox

    Good luck

    Robert Aldwinckle
    ---

  • Possible to use two views and controllers to work with the same MovieClip?

    Gidday

    I have a movieclip library I added in a view. The view has a controller and a model.

    The current view and the controller are an ok size, but I need another datagrid in the moviclip above addChild, and there is a good amount of features to go with it.

    I could continue to use the same view and the controller, but I was wondering how I could addChild datagrid to the movieclip and use a different point of view and the controller, but share the model?

    My controller of origin (for short)...

    public void Controller1 (sharedModel:sharedModel, stadium: Stadium)

    View1 = new View1 (_sharedModel, this, several)

    and my opinion...

    public void View1 (sharedModel:sharedModel, controller: Controller1, target: Stadium)

    I managed to infuse a second point of view one through Controller1...

    View2 = new View2 (_sharedModel, Controller2, several)

    View1 = new View1 (_sharedModel, this, several, view2)

    I addChild (datagrid) in mode 2, then addChild (view2) in view 1 and got the datagrid control to appear where it should.

    However, to view 2 does not evolve successfully all the properties of the controller 2.

    The other option was to instatntiate a whole new set VC of root, as I've done so far for every major aspect of the project, but then I wouldn't be able to add the datagrid control to the above movieclip.

    What is a better way to put in place the add items to a movieclip of two VCs?

    See you soon

    You already know the answer - you are simply not see the forest for the trees.

    If you have the code of the controller like this:

    public function get theViewIcontrol (): {SomeViewType}

    Return _theViewIcontrol;

    }

    public function set {theViewIcontrol(value:SomeViewType):void}

    If {(_theViewIcontrol)

    Remove outgoing view headphones

    }

    _theViewIcontrol = value;

    If {(_theViewIcontrol)

    setting properties, add listeners, etc.

    }

    }

    How is it that not connected?

    RobotLegs done automatically, through the [insert] metadata tag.  Look at their documentation around mediators.

    Note that in RL, the "controller" is not really a thing. The Ombudsman would simply transmit queries of the view for the event bus, and from there, the Control Board would launch everything that controls are necessary.

  • To view the zero in a pivot for two dimensions and a measure view

    How show zero instead of null for the measure, the measure is seen in two-dimensional row and one in a column.
    Thanks in advance

    Hi santhoshbon,

    Are you sure that you get a record with a NULL value or are you just can't get a record at all? There is a great misunderstanding about the lack of data compared to data with a NULL value.

    If you really a NULL value which crosses, then all you have to do is use the IFNULL(MY_MEASURE,0) and you will represent at least a 0 instead of NULL.

    If you have no trace in your fact table for this combination of your dimensions, while you do kind of thing of data densification. Here are a few options:

    (1) query use Nico logical substitute to the densification of the data: http://gerardnico.com/wiki/dat/obiee/logical_sql/obiee_sql_densification
    (2) outerjoin bypass to implement John Minkjan in the report: Outer Join work-around
    (3) implement a real outer join to the RPD: joins OBIEE
    (4) to add missing dimensional data points, use the combine with a similar request.

    My guess is that you do not get a NULL value. I'm guessing that you have data scattered and you will need to use one of the methods above to work around this problem.

    Good luck and if you found this post useful, please reward points!

    Best regards

    -Joe

  • Add the value of the column to MRU

    Hello
    I'm sure there is a simple solution to what I see, sorry if this is the case.

    I would add column values to the update of the Apex Multi line. These values are the elements on the page, apart from the form of paintings, but common to all lines updated.

    In other words, offer will save values in tabular form with the standard MRU and then a process of "trigger as" should add these additional values.

    How can I do this without having to create a custom MRU?

    Thank you
    Marc

    Hello

    I see two methods that may work.

    First of all, you say "trigger like' - why not use a real trigger for do? The values in your page items would be available using nv('Pnn_ITEMNAME) in the trigger code.

    Alternatively, you can include the column in the form of your table, and then use javascript to hide. Then, again using javascript, you could update the field until the submission process is triggered by the button. The button should call this function and then use doSubmit() to submit the page.

    Andy

  • How can I add points mark before and after every comma in TextEdit?

    Hello world

    I have a fairly big translation file CSV that I need to change and I'm wondering how to do this without having to do it manually.

    I want to add points mark before and after every comma of the document.

    Currently, my text looks like this:

    Account information, information of the affiliate account, affiliate

    Credit, Credit affiliate, affiliate

    Membership discount, discount affiliate,

    Email, e-mail address of the affiliate membership,

    Home membership, Affiliation home,

    Link, affiliate link, affiliate

    Affiliate Login, login affiliate,

    Name, name of the affiliate, affiliate

    Affiliate, affiliate,

    And I need it to be like this:

    "Total account", "Account balance",

    "Reach account balance', ' the account balance - door."

    "Account setup", "Account setup",

    "E-mail account", "E-mail account",

    "Account Information", "Account information",

    'Account Manager', 'Account manager',

    'New account', 'New account',

    'Account settings', 'Account settings',

    Tips that would help me to do it is more than welcomed.

    Thank you!

    I suggest the 'best' way to do may not be via AppleScript itself.

    AppleScript can do, but his text, the analysis is heavy, while the shell commands handle this with ease (although they are not as easy to read).

    That said, here is an example of AppleScript - the converted text will be written to the file "output.csv" on your desktop.

    game dittos to (Choose file)

    the value of output of {}

    the value question in paragraphs of (read (dittos) as text)

    Repeat with eachPara in question

    the value my entry point text delimiters to ",".

    the value $thisline for text elements of eachPara

    the value my text item delimiters to quote & "," & quote

    copy (quote & ($thisline as text) & quote) to end of output

    the value my point text delimiters to ASCII character 10

    set this to output as text

    end Repeat

    game of outputFile to (open access file ((path to the Office as text) & 'output.csv' in the text) with write permission)

    outputFile folklore of the value to 0

    write this as text to outputFile

    outputFile close access

    As you can see, it is heavy, especially compared to a few lines of shell script, but it should you get.

  • Align the two signals and measure the Phase Shift

    Hello

    I do an experiment in which I use the NI USB-6221 DAQ card. The jury is able to make 250 k samples/second. I want to measure two voltages in a circuit and find the phase shift between them at frequencies between 1 and 10000. First I ouputted a wave sinusoidal frequency variable through the Commission and applied to a test circuit. Then I used the Board to measure the two tensions consecutively (thus reducing the maximum sampling frequency at 125 k). I used the signals align VI and measured the two phases and then calculates the phase shift (VI attached in Phase 1). It worked well for the test circuit I built in which the phase shift went way logarithmique.20 degrees ~84.5 degrees and then stabilized. At frequencies above 5 000 Hz phase shift must have remained constant, but it varies more or less 1 degree. When the phase shift is 84.5 degrees, present a degree of variability is not particularly explicit. When I asked my program on the circuit that I really wanted to measure, the phase shift went from-. 5 degrees up to about 1.2 degrees. The change in the values of phase shift at high frequencies (> 3000) was environ.2 degrees. Given the small phase shift, this variation is unacceptable. Now I tried to use a sequence to each blood individually (increase the maximum sampling frequency to 250 k) and then align the two signals and measure the phase of each shift. When I use align it and re - sample Express VI to realign the two signals, I get the message "error 20333 analysis: cannot align two waveforms with dt even if their samples are not clocked in phase." Is it possible to align two signals I describe here? I enclose the new VI as Phase 2

    Matthew,

    I think I have an idea for at least part of the problem.

    I took your program data and deleted stuff DAQ.  I have converted the Signal on the chart control and looked then what was going on with the signal analysis.

    The output of the Waveforms.vi line has two waveforms, like the entry.  However, arrays of Y in the two waveforms are empty!  It does not generate an error. After some head scratching, reading the help files and try things out, that's what I think is happening: the time t0 two input signals are 1,031 seconds apart. Since the wavefoms contains 1,000 seconds of data, there is no overlap and may not align them.

    I changed the t0 on two waveforms are the same, and it lines up.  The number of items in the tables is reduced by one. Then I increased the t0 of 0.1 seconds on the first element. The output had both greater than the entry by dt t0 t0 and the size of the arrays was 224998.  Reversing the t0 two elements shifts the phase in the opposite direction.

    What that tells me, is that you can not reliably align two waveforms which do not overlap.

    I suggest that you go to 2-channel data acquisition and that it accept the reduced sample rate.  You won't get the resolution you want, but you should be able to tell if something important happens.

    You may be able to improve the equivalent resolution by taking multiple steps with a slight phase shift. This is similar to the way that old oscilloscopes of sampling (analog) worked. Take a series of measures with the signal you are currently using.  The make enough average to minimize changes due to noise. Then pass the phase of the signal of excitement to an amount that is smaller than the resolution of phase of sampling rate and repeat the measurements.  Recall that I calculated that for a 5 kHz signal sampled at 125kHz, you get a sample every 14.4 degrees. If shift you the phase of 1 degree (to the point/mathematical simulation), you get a different set of samples for excitement.  They are always separated by 14.4 degrees.  Take another series of measures. Transfer phase another degree and repeat.  As long as your sampling clocks are stable enough so that frequency does not drift significantly (and it shouldn't with your equipment), you should be able to get near resolution of what you need.  The trade-off is that you need to perform more measurements and may need to keep track of the phase shifts between the various measures.

    Lynn

  • Can I add a value of textfeild for the navigation bar entry list label?

    Hello

    I want to show the user name in the navigation in apex5 bar. Here I used a pl/sql code to get the user name of LDAP, authentication and pass it to a textfeild when connect you to the application. HERE pass the user name in the text field correctly. All I want is I want to show the value of text field in the navigation bar (the components shared-> details-> entry of the list concerned list) so, what is the syntax to add the value of the entry list Labeltext field? : P101_USER did not work. Please help me on this.

    ThiliBu wrote:

    Thank you very much for the reply.

    I do not use APEX_USER because it takes the name of the connected user. (as first name + name - string DN. But I really want to take FirstName LastName - String CN) I can get this string value CN to a text field but do not know the way to pass that on the navigation bar entry of the list value.

    Then you can explain a little more. I used & P101_USER. for the navigation-> label list entry bar. But it did not show anything on the navigation bar. Can I use custom for this substitution string. If yes how can I do this.

    For security reasons Login page elements are automatically empty, so P101_USER will contain no value when authentication is complete. Rather than use a Login page element, create a point application called USER_NAME and store the string CN value in that. It can be referenced in the entry of the Navigation bar using the syntax of static text substitution:&USER_NAME.

Maybe you are looking for

  • "I can't find * pages from the Switzerland" in google

    After a search on Google, I used for the «Swiss pages» option It has now disappeared. How can I get it back

  • HP Envy23: Start Menu button does not work

    The Start Menu button has suddenly become unusable. The Home icon has been replaced by a sheet with the icon corner folded, and in a hurry, I get a message saying "the drive or network connection that designates the shortcut"Start Menu.Ink"is not ava

  • Windows 8.1 for laserjet 4050 printer solution

    I can't do the printer to my laptop HP 15-n097ea 8.1 Windows connected to the HP 4050 series laserjet printer 6. Can run troubleshooting which has not detected a problem. Have also downloaded the latest drivers. Any ideas. Roger41

  • unwanted white box in the middle of my screen

    Whenever I start my laptop I have a white box appear in the middle of my screen. There is also o box in my taskbar, I'm unable to erase these boxes could someone help me because this problem makes me crazy thank you very much

  • Tapping on a WISN wireless traffic

    All, Is it possible to do a span or tap of all traffic coming in and a WISN port?  You can't monitor the port channel that goes into the controller. Thank you Jason