Creating/updating Workcenter via batch file

Hello,
I need to update/create workcenters via batch file, including the cost, capacity and scheduling views.
Concerning the capacity views (table CRCA), could somebody tells me how to initialize the key field CRCA-CANUM (capacity allocation number) ?
Thank you in advance

hi
good
Definition:Operations are carried out at a work center. In the R/3 System work centers are business objects that can represent the following real work centers, for example:
Machines, machine groups
Production lines
Assembly work centers
Employees, groups of employees
Use
Together with bills of material and routings, work centers belong to the most important master data in the R/3 production planning and control system. Work centers are used in task list operations and work orders. Task lists are for example routings, maintenance task lists, inspection plans and standard networks. Work orders are created for production, quality assurance, plant maintenance and for the Project System as networks.
Data in work centers is used for
Scheduling
Operating times and formulas are entered in the work center, so that the duration of an operation can be calculated.
Costing
Formulas are entered in the work center, so that the costs of an operation can be calculated. A work center is also assigned to a cost center.
Capacity planning
The available capacity and formulas for calculating capacity requirements are entered in the work center.
Simplifying operation maintenance
Various default values for operations can be entered in the work center.
Look at CR01 ,CR02,CR03 Transaction
table : CRHD Table
thanks
mrutyun^

Similar Messages

  • Difference between running a java application as jar or via batch file?Hi,

    Hi,
    I'm facing some strange differences in the behavior of my application , only caused by different methods to execute the application . So I have know the potential difference between these methods to locate the error.
    1) running my application it with java -jar (via batch-file or command-prompt) or in eclipse works fine
    2) executing the jar by double click causes problems.
    The difference I know are that you can easily pass arguments to jvm, when using the jar.Maybe there is a differences in thread scheduling, but I'm not sure about that.
    Can anyone tell me, the differences between these to methods of execution?
    Thanks a lot in advance.
    Greetings Michael

    Hi,
    to get a clue I have redirected the System.err and System.out to a TextArea
    (see code below) and suddenly the error was gone. So according to the behavior that it had worked before in the ide and via batch file where the System stream can do unlimited writing. I think it is obvious, that something goes wrong with streams of System.
    Does anyone knows what happens to messages which are send to the default streams, when running the app as jar? I normally would assume that they would point to /dev/null or something else, but as I have experienced it seems that they are blocking after a certain amount, which prevented my app from working. (By the way invoking it with javaw has the same effect.)
    This goes a little bit off topic, perhaps I should post a new thread.
    But this is a huge difference between java and and javaw (jar), I wasn't aware of i t until now.
    Hope someone can explain me how javaw handles System.err and System.out.
    Thanks for your participation.
    Greetings Michael
    @SuppressWarnings("unused")
         private static void debug(){
              /* Debug Jar-File if no console exists */
              final JTextArea ta = new JTextArea(25, 80);
              ta.setWrapStyleWord(true);
              final JScrollPane jscp = new JScrollPane(ta);     
              class TextAreaPrintStream extends PrintStream {
                   private JTextArea consoleTextArea;
                   TextAreaPrintStream(JTextArea consoleTextArea, OutputStream out) {
                        super(out);
                        this.consoleTextArea = consoleTextArea;
                   /* (non-Javadoc)
                    * @see java.io.PrintStream#println(java.lang.String)
                   @Override
                   public void println(String x) {
                        this.consoleTextArea.append(x +'\n');
                   /* (non-Javadoc)
                    * @see java.io.PrintStream#print(java.lang.String)
                   @Override
                   public void print(String s) {
                        this.consoleTextArea.append(s);
              TextAreaPrintStream out = new TextAreaPrintStream(ta, System.out);
              TextAreaPrintStream err = new TextAreaPrintStream(ta, System.err);
              System.setOut(out);
              System.setErr(err);
              JDialog dialog = new JDialog( (Frame) null, "Log" , false);
              dialog.setContentPane(jscp);
              dialog.setSize(dialog.getPreferredSize());
              dialog.setVisible(true);
              System.err.println("Test Error");
         Used proposed solution from sn.schulz :
    http://forum.java.sun.com/thread.jspa?forumID=257&threadID=213477

  • Update Metadada via Batch

    Hello
    Guys,
    Is there any way to update a metadata via Batch?
    The Batch Loader will not work for me, because I don´t want to publish new documents.

    Hi
    There is a massmetadataupdate component that is a custom gig done by consultants to do the sort of the requirement which you are looking for . You should be able to get hold of it from any consultants at Oracle. Apart from that BatchLoader is best option for metadata update and I am not sure " what are you referring to as not to be published" .
    Metadata update does not create a new revision of the content .It's only a checkout and checkin operation that creates a new revision for the existing content and sends it to the indexer for getting published / released.
    Hope this helps
    Thanks
    Srinath

  • CREATE MULTIPLE TABLES USING BATCH FILE OR ANYOTHER MODE

    Dear Legends,
    I want to create Multiple table at a single stroke in oracle sql developer or sql*plus using any mode like batch file or sql files...
    I dont know the exact mode and how to create it please guide me..I want to learn more about this since am a DBA Beginner..
    Any kind of help would be appreciated more...Thanks in Advance
    Regards,
    Karthik..

    Hi Everyone,
    According to your suggestion I did everything and all works fine yesterday... But today the same script.bat file is not opening sqlplus...
    as soon as I double click the bat file it opens the prompt and it shows upto the copyright ..oracle all rights reserved. sql> prompt is not visible or upto that it strucks... please help me..
    My SCRIPT.BAT
    @echo off
    set ORACLE_SID=VESS
    set PATH=%oracle_home%\bin\
    sqlplus scott/tiger@VESS @test.sql
    echo "Disconnected"
    My test.sql
    select * from tab;
    Please help me...
    Regards,
    Karthik..

  • How to creating concurrent call in batch file

    Hallo,
    I want to write a batch file under windows to call 6 instances concurrently to test whether the program is thread-safe. Below is the shell script for linux to create parallel call, it works. But if I use the same syntax, i.e. "&" to connect "java" call in batch file under windows, it only creates serial call, not concurrent call.
    How can I write a windows script or a batch file under windows to build parallel call.
    Best Regards
    saarxfk
    parallelCall.sh
    # set the classpath
    export CLASSPATH=
    for i in jars/*jar; do export CLASSPATH=$CLASSPATH:$i; done
    java WinsServiceClient morganti.pdf morganti.pdf it &
    java WinsServiceClient alesi.pdf alesi.pdf it &
    java WinsServiceClient morganti2.pdf morganti2.pdf it &
    java WinsServiceClient alesi2.pdf alesi2.pdf it &
    java WinsServiceClient morganti3.pdf morganti3.pdf it &
    java WinsServiceClient alesi3.pdf alesi3.pdf it
    ------------------------------------------------------------------------------------------------

    Hallo,
    I want to write a batch file under windows to call 6
    instances concurrently to test whether the program is
    thread-safe. Below is the shell script for linux to
    create parallel call, it works. But if I use the same
    syntax, i.e. "&" to connect "java" call in batch
    file under windows, it only creates serial call, not
    concurrent call.
    How can I write a windows script or a batch file
    under windows to build parallel call.
    You can't do that in windows from one shell. Open 6 shells and do it manually

  • Directing to internal update server via overrides file

    Hi all,
    I have my internal update server up and running, and am now working on creating an AAMEE built .pkg installer for my organization. One of my goals is to use an internal update server, as defined by an override file indicated during the AAMEE build.  I've read over the AAMEE Guide V3.0 pg 121-122 a few times, but I'm still having trouble translating the example code to my world.
    I'm having trouble translating 2 things:
    1) in the example, it's --root="/serverroot/updates/Adobe/CS"  This does not mirror the serverroot of my AUSST folder hierarchy. I have /serverroot/updates/oobe .  Should this concern me?
    2) similar issue with --url="http://serverabc.example.com:1234/Adobe/CS".  In my serverroot, there are 2 folders: updates and webfeed.
    What's the bottom line goal of the overrides file- to point at the /documentroot/oobe/aam[1|2]0/[mac|win]/updaterfeed.xml file?  Did I totally just make that up?

    Hi Syuroff,
         In this case, you should use the root as /Volumes/Drive2/AUSST_Updates/updates/oobe and the url you need to specify should point to this location. For example if http://serverx:8080 points to /Volumes/Drive2/AUSST_Updates then you need to specify the url as http://serverx:8080/updates/oobe. If you allow directory browsing, then you can verify that the URL http://serverx:8080/updates/oobe points to /Volumes/Drive2/AUSST_Updates/updates/oobe. Once you ensure this, you have to run
    AdobeUpdateServerSetupToolCS5 --root="/Volumes/Drive2/AUSST_Updates/updates/oobe"
    and select appropriate option to sync with Adobe Update Server. Once this step is completed, you will see two folders namely updates and webfeed created under /Volumes/Drive2/AUSST_Updates/updates/oobe location. Now you can run another command to generate the client config file:
    AdobeUpdateServerSetupTool2.0  --genclientconf="/Volumes/Drive2/AUSST_Updates/updates/oobe/config"
                                                           --root="/Volumes/Drive2/AUSST_Updates/updates/oobe"
                                                           --url="http://serverx:8080/updates/oobe"
    As mentioned in my earlier post, this command will create a folder named config under /Volumes/Drive2/AUSST_Updates/updates/oobe/config
    location. This folder will contain all the override files for both Mac and Windows.
    Let me know if this answers your query.
    Thanks,
    Abhishek | [email protected]

  • How to create directories with a "batch" file

    Hi,
    This may be a no brainer for you wizards out there.
    I have a text file with several hundred lines in it. Each line contains the name of a directory I'd like to create.
    I'm hoping there's a way to prepend something like "mkdir" to each line and then "execute" the file from a terminal window to create all these directories for me.
    Anybody got any ideas?
    Thanks!

    Unix, Shell, and Terminal questions are best asked in the Mac OS X Technologies Unix forum.
    <http://discussions.apple.com/forum.jspa?forumID=735>
    In the mean time:
    while read dir
    do
    mkdir -p "$dir"
    done <filecontaining_list_ofdirectories

  • Spa5xx phones does not update timezone via xml files- firmware 7.4.9a

    I am unable to update the time zone uisng a xml file that is downloaded from the Broadsoft  platform. When   When i extract the SPACFG.xml file from the phone the timezone field displays thsi error:  "<Time_Zone group="Regional/Miscellaneous">[LABEL NOT FOUND]</Time_Zone>.
    Attached is the SPACFG.xm  phone configuration file and the   509system.xml that the phone downloads form the server during auto configuration process.  

    Can be a notation error in your xml. Try to change this:
      GMT+02:00
      GMT+02:00
    with:
      GMT+02:00
    Regards.

  • PA30-create new PERNR via batch upload

    Hi Gurus
    Need your advice.
    have done the recording for PA30 and coded the program for batch upload. However encountered problem with uploading infotype 185 and 186.
    During dialog processing, the NRIC field in infotype 185 is populated to the CPF field in infotype 186. How do I code my batch upload to simulate this? Not able to do so now because the PERNR is not known at the start of the batch session.
    Please advise.
    Thanks.

    Hi Hui,
    In the single program only you can do this. If you are using the CALL TRANSACTIONS then you have MESSAGES INTO itab option where you get back all the messages from the BDC(error or success messages) you can look into that table in the program to get the PERNR generated and now in the program use the same PERNR.
    Regards,
    Atish

  • Need help deploying batch file to WINXP and WIN7 computers

    Hello all and thanks for your time and expertise.
    I'm trying to deploy a batch file to unregister vgx.dll in response to the zero day flaw.  Symantec provided the batch file and it works but now I have to get it deployed.  I was trying to use Group Policy Preferences/Scheduled Tasks and Immediate
    Task for both a WINXP deployment and a WIN7 Deployment.  There are immediate task options for XP and WIN7.
    I have the vgx.bat file at c:\ of my DC.  The rest of the settings are as follows:
    RUN:  c:\vgx.bat
    Arguments:  blank
    Start in: blank
    And then Item Level targeting is set to deploy to Windows XP and Windows 7 respectively.  I'm deploying tasks to the respective operating systems in the same GPO.
    On my test systems - the GPO say it was applied but vgx.dll is still showing in the registry.  Basically once you unregister this file it won't show in the registry under HKEY_CLASSES_ROOT subkey CLSID. I tested this on another system manually. Additionally
    I get no error message in event viewer.
    Anyway, your help and recommendation on this matter would be greatly appreciated.

    Hello Pendal,
    Actually I deployed the workaround for this vulnerability yesterday via batch file and it was successful. What I did was to create a batch file and apply it as
    start up script since it is unlikely for vgx.dll to become unregistered using logon script.
    "%SystemRoot%\System32\regsvr32.exe" -u "%CommonProgramFiles%\Microsoft Shared\VGX\vgx.dll"
    There are other options for you to patch these Zeroday including preventing Active-X and Active Script to run using GPO. Another option would be to Deny access to the mentioned dll file.
    Regards.
    Mahdi Tehrani   |  
      |  
    www.mahditehrani.ir
    Please click on Propose As Answer or to mark this post as
    and helpful for other people.
    This posting is provided AS-IS with no warranties, and confers no rights.
    How to query members of 'Local Administrators' group in all computers?

  • In batch file i want to execute sql commands

    in x.bat file i write the following
    sqlplus user/pass@host @c:\a.sql
    @c:\b.sql
    when i execute this batch file it is connected to the databse
    and the table of a.sql is created in the database.
    but b.sql is not created.
    it is creating only one table
    i want ot create more no of tables with different .sql files
    like @c:b.sql
    @c:c.sql
    @c:d.sql
    please any body help

    The problem you are running into is that SQL Plus only recognizes the first command you have written in the batch file.
    sqlplus user/pass@host
    SPOOL c:\master.log
    @c:\a.sql
    @c:\b.sql
    SPOOL OFF
    SQLPlus will recognize the spool and first sql command, but the batch file gets command back after the first sql command executes and doesn't recognize @c:\b.sql or know what to do with it. To run multiple SQL commands you have to create an external SQL file with all the sql commands in it with the Spool files you want created, then in the batch file you only call the one SQL script.
    Create a master file like so:
    -- Script Name : AllFiles.sql
    SPOOL c:\master.log
    @c:\a.sql
    @c:\b.sql
    SPOOL OFF
    In x.bat
    CALL SQLPlus user/password@database @AllFiles.sql
    This should get you your required results.

  • Starting/Stopping 9iAS Infrastructures with batch files

    I created the following two batch files to start and stop my iAS Infrastructure. I found that if I used the services settings of automatic, all did not go well.
    start.bat:
    @ECHO OFF
    cls
    ECHO About to start the listener
    net start Oracle9ias_InfraTNSListener
    ECHO About to start the database
    net start OracleServiceIASDB
    ECHO About to start the OID monitor
    e:\ora9iasinfra\bin\oidmon start
    ECHO About to start the OID server
    e:\ora9iasinfra\bin\oidctl server=oidldapd configset=0 instance=1 start
    ECHO About to start the website
    net start Oracle9ias_infraEMWebsite
    ECHO About to start opmn and OC4j
    e:\ora9iasinfra\dcm\bin\dcmctl start -ct ohs
    e:\ora9iasinfra\dcm\bin\dcmctl start -co OC4J_DAS
    stop.bat:
    @echo off
    cls
    ECHO About to stop the website
    net stop Oracle9ias_infraEMWebsite
    ECHO About to stop opmn and OC4j
    e:\ora9iasinfra\dcm\bin\dcmctl shutdown
    ECHO About to stop the OID server
    e:\ora9iasinfra\bin\oidctl server=oidldapd configset=0 instance=1 stop
    ECHO About to stop the OID monitor
    e:\ora9iasinfra\bin\oidmon stop
    ECHO About to stop the database
    net stop OracleServiceIASDB
    ECHO About to stop the listener
    net stop Oracle9ias_InfraTNSListener
    When I execute the batch files sometimes they work and sometimes they don't, for example after starting, occasionally the Apache process has not been created, and sometimes processes won't stop.
    However if I enter each command seperatly all works OK. Can anyone suggest a reason for this, maybe ordering is significant or a time delay may be required between certain actions?. Also after starting the website manager the process managers for both the infra and ias instances are started (I have installed both the iAS and the Infrastucture on the same machine - this all works fine when started as a series of individual commands but not when through batch files).
    Also If I try to use:
    SQLPLUS /NOLOG
    SQL>CONNECT sys/password@iasdb as sysdba
    SQL>Start
    I also get an 'unable to create a dedicated server' error. I can start/stop the database through the enterprise manager in either standalone or management server configuration without any errors. Can anyone shed any light on this?. I have set both TNS_ADMIN and ORACLE_SID correctly.
    Terry Bennett

    Thanks, I had read that and it was very informative. I did however solve my problem using a few other threads that have been posted about the runtime.runtime().exec commands. Thanks for you help.

  • Grade Batch File Uploads

    The University of Utah uses peoplesoft as its grade management system. As presently implemented at UU faculty must enter the grade individually (via radio buttons) for each student. Is it possible to enter grades into peoplesoft via batch files that have student names, id's, and an associated grade?

    Hi Dhiravia,
    If you want to convert the month format, please refer to the batch script below:
    SET Month=%DATE:~4,2%
     if %Month%==01 set Month=JAN
     if %Month%==02 set Month=FEB
     if %Month%==03 set Month=MAR
     if %Month%==04 set Month=APR
     if %Month%==05 set Month=MAY
     if %Month%==06 set Month=JUN
     if %Month%==07 set Month=JUL
     if %Month%==08 set Month=AUG
     if %Month%==09 set Month=SEP
     if %Month%==10 set Month=OCT
     if %Month%==11 set Month=NOV
     if %Month%==12 set Month=DEC
     echo %Month%
    To convert the date format via cmd, please also check this article:
    http://myblog4fun.com/archive/2012/01/06/getting-the-current-date-and-time-from-bat-files.aspx
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Execute java class from a batch file called from runtime.exec

    Hi.
    I don´t know if this question fits here.
    I wan´t to execute a batch file (on Win XP) with runtime.exec. That batch file will execute another java program.
    I have the following code:
    Resolutor.java
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    public class Resolutor {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              Runtime r = Runtime.getRuntime();
              //String[] command = { "cmd.exe", "/C",".\\lanzar.bat .\\ .\\ 001.res:001.dtt" };
              String[] command = { "cmd.exe", "/C",".\\tarea\\lanzar.bat " + args[0] + " " + args[1] + " " + args[2]};
              try {
                   //Process proceso = Runtime.getRuntime().exec("lanzar.bat");
                   Process proceso = Runtime.getRuntime().exec(command);
                   InputStream stderr = proceso.getErrorStream();
                InputStreamReader isr = new InputStreamReader(stderr);
                BufferedReader br = new BufferedReader(isr);
                String line = null;
                System.out.println("<ERROR>");
                while ( (line = br.readLine()) != null)
                    System.out.println(line);
                System.out.println("</ERROR>");
                   int exitVal = proceso.waitFor();
                   System.out.println("EXITVAL: " + exitVal);
              } catch (IOException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              } catch (InterruptedException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    }lanzar.bat
    java Lanzador %1 %2 %3Lanzador.java
    import java.util.Vector;
    public class Lanzador {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              Repetitiva rpt=new Repetitiva();
              String rutaFicheros=args[0];
              String rutaResultado=args[1];
              String[] ficheros=args[2].split(":");
              Vector<String> ficheroDatos=new Vector<String>();
              for(int i=0;i<ficheros.length;i++){
                   ficheroDatos.add(ficheros);
                   System.out.println(ficheros[i]);
              System.out.println("RUTA DE FICHEROS: " + rutaFicheros);
              System.out.println("RUTA DE RESULTADOS: " + rutaResultado);
              System.out.println("CALCULAR");
              rpt.setRepetitiva(ficheroDatos, rutaFicheros, rutaResultado);
              rpt.calcular();
    }I´ve got Resolutor.class in /res and the other two files (and the rest of the files for running) in /res/tarea.
    If I execute /res/tarea/lanzar.bat from the command line everything works fine, it calls java and runs lanzador without problem.
    The problem comes when I try to execute the batch file via Resolutor.class. It executes the batch file without problem, but it throws a *java.lang.NoClassDefFoundError: Lanzador* when launching the new java application.
    Any ideas of how can I solve that problem. (It must do it via batch file).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Well, I tried putting in the bat file java -classpath .\tarea Lanzador %1 %2 %3 and didn´t work.
    I ve tried the bat modification, and the directory in x.txt is k:\res instead of k:\res\tarea.
    I´ve tried to modifiy it to java .\tarea\Lanzador and didn´t work so I have put a cd like the following and it appears to work.
    cd tarea
    java Lanzador %1 %2 %3Thanks for the replies.

  • WCS: AP / MSE Authorization Controller Template via CSV file???

    hello experts we are required to create a large number of "AP / MSE Authorization Controller Templates" on a WCS 7.0.172.0 system. ideally we would like to create these templates via CSV file to make the import as easy as possible. when the import is done via csv file the name of the template is automatically being set to the mac address of the access point. this because there is not way (at least not in the documented example) on how to specify the template name in the CSV file. so the question is, if anybody knows how we can specifiy the template name during the csv templated based creation in order to make sure we have the APs hostname set as the name of the template. further usage will be much more easy when the template has the AP hostname. any suggestion is highly welcome many thanks

    Stephen,
    debug mac add  00:19:55:5f:cc:fa is empty and
    (Cisco Controller) >show interface summary
    Interface Name                   Port Vlan Id  IP Address      Type    Ap Mgr Guest
    ap-manager                       1    2        10.148.0.4      Static  Yes    No
    management                       1    untagged 10.148.0.3      Static  No     No
    virtual                          N/A  N/A      1.1.1.1         Static  No     No
    (Cisco Controller) >
    (Cisco Controller) >
    (Cisco Controller) >
    (Cisco Controller) >show interface detailed management
    Interface Name................................... management
    MAC Address...................................... 64:00:f1:91:4f:80
    IP Address....................................... 10.148.0.3
    IP Netmask....................................... 255.255.255.192
    IP Gateway....................................... 10.148.0.1
    VLAN............................................. untagged
    Quarantine-vlan.................................. 0
    Physical Port.................................... 1
    Primary DHCP Server.............................. 10.16.16.225
    Secondary DHCP Server............................ Unconfigured
    DHCP Option 82................................... Disabled
    ACL.............................................. Unconfigured
    AP Manager....................................... No
    Guest Interface.................................. No
    (Cisco Controller) >

Maybe you are looking for

  • Why do the same tabs open every time I boot up and open FF

    I shut down my laptop every night. Use to when I rebooted and opened FF the browser would ask if I wanted to open the previous days tabs or start a new session. FF does not do that any more it just starts up with the same tabs I looked at a week ago.

  • PDF Printer stopped prompting for output filename

    I use the Adobe Acrobat PDF Printer to create PDFs from a variety of applications. My version of Acrobat Pro is 10.1.6. The printer is configured to prompt me for the output filename, but never does. It used to work, but I can't figure out what has c

  • Need Help with Spry Data Sets

    Reference: Converting Database Queries to XML Reference Link: Labs Example I have converted various database queries (i.e.standard queries and JOINED Tables) to XML however as I filter the DB Query to pass/receive a URL Parameter from (i.e projectsID

  • N96 update

    Hi, this is my first post. hopefully someone out there can help me. ive noticed that some of you have had some success updating from firmware ver. 10.065 on handsets with the product code 0573802, unfortunately i have not. is there anyone currently o

  • IMP: Cisco AIR-CAP1602 &1532 not joining 2504 Controller issue

    Dear Team, We have Cisco wireless implementation in clients premises. We have 8 indoor AP (AIR-CAP1602E-AK9) and 2 Outdoor AP (AIR-CAP1532I-AK9) . Seven indoor APs are able to join the 2504 controller, but 1 indoor AIR-CAP1602E AP is not joining and