WLSE, WDS setup need to add new WLAN interface !

This wireless network setup got a WLSE and WDS and lots of Aironet 1210
One SSID with MAC authentocation
Single network I mean the LAN and WLAN on same network
We are in process of seperating WLAN and LAN by means of VLAN and want to retain the old setup for WLAN with a different SSID
Can some one please guide me what is the best approach? I am familiar with IOS can do lot's of stuff with router/Switch and PIX/ASA's but Wireless is not my domain
Thanks in Advance,
Siraj.

Hi ,
Modify the the methods as given below
public void rowadd() {
OAViewObject vo = (OAViewObject)getEmployeeDetailWIPVO1();
OADBTransaction txn = getOADBTransaction();
if (!vo.isPreparedForExecution()) {
vo.setWhereClause("1=0");
vo.executeQuery();
vo.next();
vo.last();row = vo.createRow();
vo.setCurrentRow(row);
vo.insertRow(row);
row.setNewRowState(Row.STATUS_INITIALIZED);
Thanks
Pratap

Similar Messages

  • I need to add new MacBooks to mac server workgroup manager. 10.9.5

    i need to add new MacBooks to mac server workgroup manager. cannot find them by mac address, name or ip. how do i add the new MacBooks. i think there is no workgroup manger programs for mavericks, so there must be a new way to create and add new clients to workgroup manager. can someone please inform me or point me to a dock that explains how thank you.

  • Need to add new fields in transaction UDM_DISPUTE.

    Hi Friends,
    This is regarding UDM_DISPUTE transaction in FSCM.
    I need to add new fields (drop down lists) in transaction UDM_DISPUTE.
    Program Name: SAPLSRMCLFRM2
    Screen Number: 100
    Can any one please suggest me with the name of exit using which I can add these new fields.
    Or another way through which I can add these new fields viz., BADI or classes.
    Thank You in Advance!
    Regards,
    Tejaswini

    Execute the below code to find the userexits the t-code is using
    REPORT yuserexit_vin NO STANDARD PAGE HEADING.
    TABLES : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    TABLES : tstct. DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.
    IF sy-subrc EQ 0.
      SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR' AND object = 'PROG' AND obj_name = tstc-pgmna.
      MOVE : tadir-devclass TO v_devclass.
      IF sy-subrc NE 0.
        SELECT SINGLE * FROM trdir WHERE name = tstc-pgmna.
        IF trdir-subc EQ 'F'.
          SELECT SINGLE * FROM tfdir WHERE pname = tstc-pgmna.
          SELECT SINGLE * FROM enlfdir WHERE funcname = tfdir-funcname.
          SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR' AND object = 'FUGR' AND obj_name EQ enlfdir-area.
          MOVE : tadir-devclass TO v_devclass.
        ENDIF.
      ENDIF.
      SELECT * FROM tadir INTO TABLE jtab WHERE pgmid = 'R3TR' AND object = 'SMOD' AND devclass = v_devclass.
      SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu AND tcode EQ p_tcode.
      FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
      WRITE:/(19) 'Transaction Code - ', 20(20) p_tcode, 45(50) tstct-ttext.
      SKIP.
      IF NOT jtab[] IS INITIAL.
        WRITE:/(95) sy-uline.
        FORMAT COLOR COL_HEADING INTENSIFIED ON.
        WRITE:/1 sy-vline, 2 'Exit Name', 21 sy-vline , 22 'Description', 95 sy-vline.
        WRITE:/(95) sy-uline.
        LOOP AT jtab.
          SELECT SINGLE * FROM modsapt WHERE sprsl = sy-langu AND name = jtab-obj_name.
          FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
          WRITE:/1 sy-vline, 2 jtab-obj_name HOTSPOT ON, 21 sy-vline , 22 modsapt-modtext, 95 sy-vline.
        ENDLOOP.
        WRITE:/(95) sy-uline.
        DESCRIBE TABLE jtab.
        SKIP.
        FORMAT COLOR COL_TOTAL INTENSIFIED ON.
        WRITE:/ 'No of Exits:' , sy-tfill.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'No User Exit exists'.
      ENDIF.
    ELSE.
      FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
      WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
      GET CURSOR FIELD field1.
      CHECK field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    * *---End of Program

  • In transactions ME21n, ME22n, ME23n I need to add new field to item detail

    Hello,
    In transactions ME21n, ME22n, ME23n I need to add a new field  to the table control TC_1211, in SAPLMEGUI screen 1211 for PO line items.  The new field is UNSPSC Code, a 30 char field, which will be enterable/changeable on the ME21n, ME22n screens and display only on ME23n. 
    BADI ME_PROCESS_PO_CUST enables you to extend the business logic of the Enjoy purchase order.  Is this the correct BADI to use for the purpose of adding a new input/output field to the PO detail SAPLMEGUI screen 1211?   
    Does anyone have any examples of adding a new field to PO Item Detail screen using BADI ME_PROCESS_PO_CUST?  I have had some experience creating Badi's, and would appreciate very much some sample code if possible. 
    We are on release SAP ERP Central Component 5.0
    SAPKB64018     SAP Basis Component
    SAPKA64018     Cross-Application Component
    SAPKH50013     Logistics and Accounting
    Thank you,
    Victoria

    Hi,
    Thank you for the response.  I tried this and found  Badi ME_PROCESS_PO_CUST.  Do you have any examples of adding a new cust field to PO Item overview screen using badi ME_PROCESS_PO_CUST? I have had little experience creating badi's, and would appreciate very much some sample code if possible.
    In transactions ME21n, ME22n, ME23n I need to add a new field in PO Item overview (screen 1211 of SAPLMEGUI). The new field ZZUNSPSC, has been appended to table EKPO as a 30 char field, which will be enterable/changeable on the ME21n, ME22n screens and display only on ME23n.
    Can you tell me if method FIELDSELECTION_ITEM of badi ME_PROCESS_PO_CUST the correct one to use for the purpose of adding a new input/output field to the PO item overview on SAPLMEGUI screen 1211?
    Thank you for help - much appreciated,
    Vicki

  • Need to add new cameras to Camera Raw in PS CS2 (not ready to update to CS6 yet).  Can do... how?

    Windows Vista-64, CS2 Photoshop and Illustrator.  CS2 works well for what I do... don't need to update yet.  Need to add Canon 5D Mark2.  When try to open Raw files, get error message: Photoshop says it can't complete the request because it isn't the right kind of document.  I believe this means that the camera is not recognized.  Current DNG Converter is 3.7.  Would like to add Raw support for all newer cameras, so able to work with files from virtually any customer.

    I use camera raw to make preliminary color/brightness/contrast adjustments then save as 16-bit RGB file... then final adjustments in Photoshop.  If I can add (for example) DNG Converter 8.2, to simply allow the CR2 image to open, then I don't need any other features.  What I gain be upgrading to CS6 is additional functionality in Photoshop... no doubt I will be very glad when I do, but meanwhile I only need camera raw as a preliminary step in my workflow.
    Not brain surgery... whatever additional functionality is available in Canon 5d mark 2 that is not in Canon 5d is unnecessary for my purposes now.  Is there a reason that Adobe would not allow adding 5d mk2 (even if not all functionality is enabled)?
    Ideally, I would hope to download DNG Converter 8.2, install it in my Photoshop CS2, and continue with my normal workflow process.  Adobe could easily create a warning that "some functionality provided in certain newer camera files is not available, recommend upgrading to CS6."  Just makes sense to support users as long as possible rather than force the upgrade.

  • I have a fillable form that's already been made. I need to edit fields by moving them and I need to add new fields. How do I do that?

    I have a form that was made by someone else. I need to move fields and add new fields in the same box. How do I do that?

    If the form was created in Acrobat and you have Acrobat, you should be able to edit the fields by selecting: Tools > Forms > Edit
    This is for Acrobat 11. If the PDF has security restrictions that prevent editing or was created with LiveCycle Designer, you won't be able to edit it in Acrobat. If security was applied, you'll need to know the password in order to remove it to allow editing.

  • Need to add new condition type using   BAPI_SALESORDER_CHANGE

    Hi all,
    I am using BAPI_SALESORDER_CHANGE to add new condition type for an order item.
    I am able to add it, but problem here is, that i want that condition type to be manually changable. Here, in BAPI, after execution, condition type field becomes disable.
    My code is as follows:
                    MOVE 'B' TO wa_logic-pricing.
                      MOVE 'X' TO wa_logic-cond_handl.
                      wa_cond-itm_number = wa_vbap-posnr.
    *                  wa_cond-cond_st_no = it_konv1-stunr.
    *                  wa_cond-cond_count = it_konv1-zaehk.
                      wa_cond-cond_type =  it_discount-kschl.
                      wa_cond-CONDORIGIN = 'C'.
                      APPEND wa_cond TO i_cond.
                      CLEAR: wa_cond.
                      wa_condx-itm_number = wa_vbap-posnr.
    *                  wa_condx-cond_st_no = it_konv1-stunr.
    *                  wa_condx-cond_count = it_konv1-zaehk.
                      wa_condx-cond_type =  it_discount-kschl.
                      wa_condx-updateflag = 'I'.
                      wa_condx-COND_VALUE = 'X'.
                      APPEND wa_condx TO i_condx.
                      CLEAR: wa_condx.
    FORM f_update_order .
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          salesdocument    = salesdocument
          order_header_in  = wa_headerdata
          order_header_inx = wa_headerdatax
          logic_switch     = wa_logic
        TABLES
          return           = it_return
          order_item_in    = i_itemdata
          order_item_inx   = i_itemdatax
          conditions_in    = i_cond
          conditions_inx   = i_condx.
      IF NOT it_return[] IS INITIAL.
        PERFORM f_commit_or_rollback.
      ENDIF.
    ENDFORM.
    Please let me know, if it could be achievable.
    Best regards,
    Meena
    Moderator Message: Corrected the code tags. You need to use flower brackets.
    Edited by: kishan P on Aug 25, 2010 6:04 PM

    Hi,
    This is the demo code i am writing:
    Even Change manual entry field in BAPI did not helped me.
    [code]REPORT  ZTESTM1.
    data: l_knumv type knumv.
    DATA: it_return        TYPE STANDARD TABLE OF bapiret2,         "Internal table for t_txt_ret
           wa_return        type  bapiret2.
    data: begin of it_konv occurs 0.
           include structure konv.
           data: end of it_konv.
    data: logic_switch type standard table of    BAPISDLS,
          wa_logic type BAPISDLS.
    data:itemdata type STANDARD TABLE OF BAPISDITM,
          wa_item type   BAPISDITM.
    data : salesorder type BAPIVBELN-VBELN.
    data:itemdatax type STANDARD TABLE OF BAPISDITMx,
          wa_itemx type   BAPISDITMx.
    data: wa_header type BAPISDH1,
          wa_headerx type BAPISDH1X.
    data: i_cond type STANDARD TABLE OF BAPICOND,
          wa_cond type BAPICOND.
    data: i_condx type STANDARD TABLE OF BAPICONDX,
          wa_condx type BAPICONDX.
    move '0060008601' to salesorder.
    move '000010'  TO wa_item-itm_number.
    append wa_item to itemdata.
    move ' '  to wa_header-BILL_BLOCK.
    move   'U'  to wa_headerx-UPDATEFLAG.
    move  'X' to wa_headerx-BILL_BLOCK.
    MOVE: 'U'  to wa_itemx-UPDATEFLAG,
         '000010'  TO wa_itemx-itm_number.
         append wa_itemx to itemdatax.
    move 'B' to wa_logic-PRICING.
    move 'X' to wa_logic-COND_HANDL.
    select single knumv from vbak into l_knumv where vbeln = '0060008601'  .
    select * from konv into table it_konv where knumv = l_knumv  and kposn = '000010'.
          wa_cond-ITM_NUMBER = it_konv-kposn.
          wa_cond-cond_type = 'Z550'.
          wa_cond-CONDCHAMAN = 'X'.
           append wa_cond to i_cond.
           clear: wa_cond.
    wa_condx-ITM_NUMBER = it_konv-kposn.
    wa_condx-COND_TYPE = 'Z550'.
    wa_condx-UPDATEFLAG = 'L'.
    append wa_condx to i_condx.
    clear: wa_condx.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument               = salesorder
       ORDER_HEADER_IN             = wa_header
        order_header_inx            = wa_headerx
       LOGIC_SWITCH                = wa_logic
      tables
        return                      = it_return
       ORDER_ITEM_IN               = itemdata
       ORDER_ITEM_INX              = itemdatax
       CONDITIONS_IN               =   i_cond
       CONDITIONS_INX              =   i_condx
      EXTENSIONIN                 =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.[code]
    Thank you.
    Meena

  • Need to add new line in Service Provider Agreement

    Hi All,
    In Change Service Provider (T Code- EEDMIDESERVPROV02) screen, under the agreement tab (Payment and Billing Data) I need to add the agreement details for respective Service Provider which I am getting through WebService Call (ABAP Proxy).
    Need to update existing or add new record programatically.
    Is there any standard function module or method to do the same ?
    Thanks in advance.

    Hi Ankit,
    There is a standard class for this - CL_ISU_IDE_DEREGSPAGREEMENT, which I believe should help you.
    Regards,
    Asif

  • Do I need to add new users under sun-web for declarative security to work?

    Hello,
    Do I need to add a <principal-name> element under sun-web.xml whenever a new user registers on my website? I am planning to use declarative security for my website, so I went ahead and created a custom realm that uses JDBC to get users information from MySQL. To do a simple test I added a new user under a new group that does not have a mapping under sun-web.xml. However, web.xml has the needed security-constraint and security-role elements that define the role and the protected resources. The problem is that when I deploy the application under SJSAS PE9 I get the following warning: "No Principals mapped to Role [jdev]". Does that mean I have to add each and every use to sun-web.xml for the declarative security to work?

    Good question. I am having the same problem with my LDAP realm. Funny thing is that the exact same approach worked fine and dandy with Sun AS 8. Sounds to me like something broke under AS 9 ...

  • Urgent -Need to Add new values for the LOV field in forms

    HI,
    I am customizing an existing form. In that i need to add some values for the LOV fied which can be used during run time.
    Please Can some one help me in doing this?
    Thanks
    Suresh P

    Go to Navigator and edit the LOV or create a new one.
    hope that helps!

  • Need to add new InfoObject to existing target

    Hi,
    I need to add one extra InfoObject to my existing cube. Data is coming from r/3 can please detailed me the procedure..
    r/3 side enhancements and BW side enhancement in details.
    regards,
    Silpa

    Hi Silpa,
    Before adding the field into existing info cube fiirst u need to check in R/3 the field is properly enhanced  or and data is populated or not
    In R/3 side if u enhance any field that will avialble on field only known exit or inversion check in data source make that field seletion properly.
    After that u need to check in RSA3 check the data.
    After Replicate u r data source.
    Once it is completed in R/3 come to BW
    U need add the compateble field in transferstructure structure and CS also.
    To load the new field data u need to delete the existing data in cube level.
    And go for Re-init.
    Hope this will help.
    Regards,
    HARI GUPTA

  • Need to add new UI elements in HAP_PMP_OVERALL_APPRAISAL view VW_MAIN

    Hi,
    how to add new UI elements (input field, read only field and button) on VW_MAIN view of HAP_PMP_OVERALL_APPRAISAL .
    This is about ESS MSS Performance Mgmt.
    I am checking for enhancement modifications, enhacement spots, dynamic programming to add new UI elements etc.
    kindly provide inputs
    thanks
    B

    Hi,
    The following procedure explains how to add UI elements in the view of the standard component.
    1. Create an Enhancement Implementation.
    2. Create a new node on Component controller context.
    3. Create a new method on component controller as the supply function of the new node.
    4. Create new node on the view context by binding it from the controller context.
    5. Create the UI elements on view.
    6. Create post-exit on view method DoModifyView.--> In order to handle the events of UI element newly added.
    7. Create a pre-exit on component method(Ex: SAVEAPPRAISALDATA) --> to get the static attributes of node.
    Hope, the above steps will be useful .
    Regards,
    Abi

  • Need to add new drop down option in Approval preview screen

    Hi All,
    My requirement is to add new drop down option in Approval preview screen in BID Invitation.
    Please advice.
    Thanks,
    S K.

    Hi check the following notes
    OSS Note      672960     User defined Fields 2
    OSS Note      458591     user defined fields : Preparation and use
    Rgds
    Saj

  • Do we need to add new datafile.

    There is one and only one datafile in my database. Now its size reached 3.6 GB. I already set it as Autoextend.
    At this stage, do we need to add one more datafile ?

    That depends...
    Would having multiple files allow you to spread I/O over more spindles?
    In the event of a disaster, how quickly can you restore a 3.6 GB file? If your data files were 2 GB, how would that affect the time it would take to recover from the loss of a data file?
    Does your operating system have a limit on the size of a single file?
    Personally, I would tend perfer a few 1 - 2 GB data files to a single large (and growing) file, but there may be no benefits to this in your environment.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Need to add new fields to the condition table

    Hello All,
    The requirement is to create the new condtion table for MM containing the following fields and maintain the entries in this table:
    - client
    - characteristic
    - class
    - internal characteristic.
    THe condition tables are created via tcode M/03 or through the customizing path
    Material Management > Purchasing > Conditions > Define Price Determination Process > Maintain Condition Table.
    The problem which i am facing is as follows :
    -SAP has the standard procedure for the generation of the condition tables . Selected fields are made available by SAP in the field catalog and we can select only from the those available fields. Once we select the required fields the condition table is automatically generated in the background.
    -As the requirement is, we need to have 4 fields in the generated condition table (client, characteristic, class and internal characteristic), but the problem is that none of these fields are available in the field catalog which is provided by SAP (in tcode M/03, M/04 and M/05).
    -Designing of the Z table wonu2019t be useful as we would not be able to use the Z table as the condition table.
    Can you please suggest how can we add the desired field to the existing field catalog in M/03 or is there any other alternate solution to this ?
    Thanks in advance for your help.

    >
    Rinkesh Doshi wrote:
    > Hello,
    >
    > The specific ABAP question which I have is :
    >
    > Is there any way in which we can enhance the existing field catalog in M/03 tcode to include the 4 new fields (client ,characteristic,class,internal characteristic) ?
    >
    > Thanks.
    Please post your code which you developped until now and show us where the problem is. I cant see any ABAP related question.

Maybe you are looking for

  • Change Procurement type

    Dear  All How can i change the Semifinished or other Material procurement type<b>.(convert F[/b<b>](External Procurement)</b> To <b> Both Procurement(X).)</b> <b>condition</b> :-Already Purchase order And other trasaction is still going on that parti

  • I must be stupid... Where have my playlists gone?

    Touch 2G... I went to a lot of trouble to create my playlists. They synched okay when loading the Touch. But now, when I touch Playlists, all I see is Genius and On-The-Go. Where is all my music? I can access it through the alphabetical lists of Arti

  • Cant upload all my photos onto my mac

    i have a bold 9900 and i use a mac os x desktop . i try to upload all my picture using desktop manager but it will only upload s few pictures not all of them . i have a feeling that it doeasnt recognize them a pictures because when i go into my finde

  • PopUpManager + Concurrency = NOT Thread-Safe

    Is there any way to make the PopUpManager not throw evil messages like this: RangeError: Error #2006: The supplied index is out of bounds. at flash.display::DisplayObjectContainer/addChildAt() at mx.managers::SystemManager/ http://www.adobe.com/2006/

  • GP process action details in Web dynpro

    Hi I want to get the list of action  and the actions details for a GP Process in web dynpro callable object. Can anyone please help me.