LMS 4.2.2. Standard vs Custom Discovery - Custom not really working ...

Hello Forum,
I did a new install on VM-ware, via LMS4.2.0 OVA file, updated to 4.2.2 and applied latest deviceupdates etc, like MDF and all.
In general it runs good, but, I have a huge problem with CSDiscovery.
My discovery only works in when I choose standard discovery.
Allthough it takes AGES, due to 1000's of Lightwieght AP's hence I need to filter them out.
Only problem with standard discovery is that I cannot get the routers to be managed via Loopback interface, as this option is only configureable in Custom Discovery, also the CDPID Filters for the AP ONLY applies in Custom Discovery, to make Discover faster.
So I need Custom Discovery badly ...
BUT when I run Custom Discovery, with the exact same setting, as in Std Discovery, the discovery skids over seed devices and marks then unreachable !
It like runs way to fast all over the devices !
I then enabled debugging on and looked into ngdiscovery.log in /var/adm/CSCOpx/log
Here I see entries like SNMP timeout on device etc, but this is simply not true, as I can run the same setting when doing std discovery !
I am deeply puzzled - So I copied the backed up system-config.xml file hence restoring the default settings, and restarted LMS.
same problem ... std dis work, cust discovery skids over the seed-devices - ie never gets around to discover anything...
I am so fortunate to have access to a LMS 4.2.1 installation, on OVA too, and I edited the system-config.xml there and added CDPID filtrers for LAP's and ran Cust dis WITH NO PROBLEMS and super fast !
So I know the settings are right in the xml file ...
I can reproduce this in my installation - Std works - Cust runs haywire !
everytime ...
I am actuall surprised that the CDPID filters are NOT aplied to std dis, via the XML file !
Only reads XLM file  when doing Cust dis.
This i can also verify in the Job-specific files in /opt/CSCOpx/objects/csdiscovery/JOBID
Are there any bugs related to Custom Discovery vs Std in 4.2.2 ??
I am on the leap to start all over and NOT go to patch 2, staying on 4.2.1 ...
But my time is running and I am on the clock here ...
Please advice, aswell as give you feedback on your experience with cust disc in 4.2.2 on OVA (SoftAppliance)
regrads
Martin

Hi Karel,
Below are the supprted ,  windows OS ,please check if you are installing it on one of them.
LMS 4.2 supports the following Windows systems:
•Windows 2008 Standard Edition Release 1 with SP1 and SP2
•Windows 2008 Enterprise Edition Release 1 with SP1 and SP2
Note Only 64-bit Operating Systems is supported on the above versions.
•Windows Server 2008 R2 Standard Edition with SP1
•Windows Server 2008 R2 Enterprise Edition with SP1
Note Only 64-bit Operating Systems are supported on the above versions.
If above is correct then share the Installation.log , it will be under c:/  drive
Thanks-
Afroz
[Do rate the useful post]
****Ratings Encourages Contributors ****

Similar Messages

  • Custom flash player (not flv) working with custom flash content

    I am working on a custom player of swf content. Some of the
    content the player loads and plays is custom Flash content (swf
    files) such as games.
    Depending on how the external content is built, sometimes the
    pause button for the player will not pause everything in the loaded
    content swf.
    Does anyone know of a standard approach to such a problem?
    Thank you.

    Windows 7, and I have tried it on chrome, firefox, and IE
    Date: Wed, 12 Feb 2014 06:38:40 -0800
    From: [email protected]
    To: [email protected]
    Subject: Flash player not always working
        Re: Flash player not always working
        created by Mike M in Using Flash Player - View the full discussion
    What OS?
    http://mmonlinedesigns.com/images/os.png
    What browser?
    http://mmonlinedesigns.com/images/browsers.png
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6113122#6113122
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6113122#6113122
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6113122#6113122. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Using Flash Player at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Custom converter - parameters not always work

    Hi,
    I have a web page, which part looks like this:
    <a4j:repeat value="#{list}" var="art">
        <h:outputText escape="false" value="#{art.content}">
            <my:substring length="125" />
        </h:outputText>
    </a4j:repeat><my:substring /> is my custom converter, with parameter length (it has setLength, getLength methods).
    Content of #{list} depends on parameter set in page bean. There are also links on the page, which change this parameter and refresh the page:
    <h:commandLink value="#{paginator.currentPage + 2} ">
        <f:setPropertyActionListener target="#{paginator.currentPage}" value="#{paginator.currentPage + 2}"/>
    </h:commandLink>After clicking link, page content changes as it should, but converter works with its default "length" parameter. My setting (length="125") is not used. There is new converter instance created, but setLength method is not called (I checked it by debug).
    Anybody knows how to solve this problem?
    Best regards
    Pawel Stawicki

    This article might provide an interesting read: [http://balusc.blogspot.com/2007/09/objects-in-hselectonemenu.html]

  • Grant execute to all custom stored procedures, not quite working

    I would like to grant execute permissions on all custom stored procedures to a group and have tried using this:
    USE myDB
    select 'GRANT EXECUTE ON ['+name+'] TO [mydomain\mydb] '  from sys.objects  where type ='P' and is_ms_shipped = 0
    It seems to execute without error, I see the full list of stored procedures I've created listed like this:
    GRANT EXECUTE ON [procUserInsert] TO [mydomain\mydb]
    However the stored procedure I added earlier, which didn't have any explicit rights set for it, does not show that the execute permission has been granted. Other stored procedures, where I had already granted execute to the group, remain as they were (which
    is expected). I'm viewing permissions via ssms, selecting the new stored procedure, then properties, permissions. If the grant failed there ought to be an error message...I don't get it. This is sql server 2005.

    It seems like you were only printing the statement (SELECT), but it is unclear if you executed them.
    You could try granting EXECUTE permission at either the DB scope or SCHEMA scope. That would grant EXECUTE on all modules (i.e. SPs, UDFs, etc.) at the chosen scope, including modules created in the future. For example:
    -- Grant EXECUTE permission on all DB
    GRANT EXECUTE TO [myDomain\mydbGroup1]
    go
    -- Grant EXECUTE permission on schema mySchema
    GRANT EXECUTE ON SCHEMA::[mySchema] TO [myDomain\mydbGroup2]
    go
    I hope this helps.
    BTW. The way you were creating the dynamic SQL for granting permissions to SPs individually is subject to 2<sup>nd</sup> order injection attacks. You should use quotename(name) in order to escape object names.
    -Raul Garcia
     SQL Server Security
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Can we enter data in any standard table directly through custom form??

    Dear All,
    Can we enter data in any standard table directly through custom form??
    I have create custom form in R.12. I want to insert data in quality standard table directly through custom form. Need experts guideline.
    Awaiting regards,

    Hi,
    Can we enter data in any standard table directly through custom form??
    I have create custom form in R.12. I want to insert data in quality standard table directly through custom form. Need experts guideline.
    Awaiting regards,
    I would not recommend touching the standard tables at all unless you are being guided by the SR. For a record to be in the standard table it should go through series of validations based on the what operation you are performing and some times datas are dependent upon the other tables, and also some times the same records are hit to so many other tables simultaneously.
    Therefore I would not recommend this brother.
    Thanks &
    Best Regards,

  • Standard program to print Customer Invoice with G/L lines

    Hello All,
    Requirement is as follows : -
    1) We are trying to print the FI customer invoice through correspondence (Transaction Code F.61)
    Standard driver program RFKORD50 and SAPscript F140_DOCU_EXC_01 are provided for the invoice printing.
    2) Standard driver program currently prints either the customer line items / the vendor line items in the invoice.
    3) Requirement is that we need to print the G/L line items on the form, instead of customer or vendor line item.
    4) Client wants to go ahead with standard program only and is not ready for custom driver program or enhancments in the system.
    5) So is there any standard driver program and script which prints the G/L line items in the customer invoice.
    Thanks in advance.
    Regards,
    Rinkesh Doshi

    Hi,
    I don't know standard script for G/L line items,but your client requirement is not to change the standard one.My suggestion is to create a standard text.By Using subroutine pool ,save  the  line items data(internal table ) into standard text after that include the standard text into your sap script form.
    just go through this <link to blocked site removed by moderator>
    Thanks and regards
    Naresh Bammidi
    Edited by: Thomas Zloch on Dec 15, 2011 9:16 PM

  • How can I display error log of a standard program in my custom program?

    Hello Experts,
    I have a requirement where I submit a standard program from my custom module pool program as a background job. I use the TO SAP-SPOOL and thus the log is available when I go to SM37 and check the spool list. I have a requirement that I display this log in a tab within my module pool after the completion of the program. I am unable to fins a proper solution to this. I have both the spool number & the log number but I am unable to find function modules which will help me print them within my program. I found many ways to display it but as full screen and not with in my program.
    Could someone please help me with this.
    Thank You

    Hi,
    FM to read a spool request is "RSPO_RETURN_ABAP_SPOOLJOB".
    If the error log is displayed as a list output in the standard program, you can also use the syntax SUBMIT Program... and RETURN with export to memory addition.
    Then you will be able to read the list output from memory.
    Regards,
    Munesh.

  • Error while calling standard OAF page from custom Oracle Form

    Hi,
    I am calling standard OAF page from custom oracle form using the following code.
    FND_FUNCTION.EXECUTE(FUNCTION_NAME=>'FUN_TRX_ENTRY_OUT_VIEW_BATCH',
    OPEN_FLAG =>'Y',
    SESSION_FLAG =>'N' ,
    OTHER_PARAMS =>'&ViewBatchID = "' || NAME_IN('FUN_AGIS_LINE_D.BATCH_ID') ||
                        '&CallingFunction = "' || 'MANEXPINQ' ||'"');
    But I am getting this error.
    oracle.apps.fnd.framework.OAException: This request was not processed as the request URL %2FOA_HTML%2FOA.jsp%3Fpage%3D%2Foracle%2Fapps%2Ffun%2Ftransaction%2Fentry%2Fwebui%2FViewOutBatchPG%26OAPB%3DFUN_PRODUCT_BRAND%26OAHP%3DFUN_SSWA_MENU%26OASF%3DFUN_TRX_ENTRY_OUT_SEARCH%26_ti%3D1217029204%26language_code%3DUS%26%26ViewBatchID%20%3D%20%22203148%26CallingFunction%20%3D%20%22MANEXPINQ%22%26CallFromForm%3D%27Y%27%26oas%3DqZqg3tmdEdUNyw_HtskVow.. contained potentially illegal or un-encoded characters. Please try again by submitting a valid URL or contact your systems administrator for assistance.
    Please let me know any thing I missed out here.
    Any suggestion will highly appreciated.
    Thanks & Regards,
    Sunita

    I am using FND_FUNCTION.EXECUTE to call a OAF page from PLSQL in R12. I am getting following error"Error(9,23): PLS-00302: component 'EXECUTE' must be declared"

  • How to use standard function keys as custom keys

    how to use standard function keys as custom keys.
    i have encountered that problem while developing a screen, there i'm supposed to use standard function key F2 ( which actually meant for choose) for clearing the screen fields where the cursor is present and f1 for saving data that entered in screen fields, etc...
    kindly help me out.

    Hi ,
    Solution to use SAP reserve function keys F1 .. F4 (mostly this requirement comes up for RF screens) can be acheived by assigning your new Function code using the Menu path Utilities --> F key Consistency in the Menu Painter (SE41) . Once you assign your cutom function code to the standard Fn keys the only remaining step is to make sure that you set a curson on any of the field on sceen by using the Key Word "SET CURSOR" .
    If you dont use the key word SET CURSOR in the PBO of the screen then you might not see any response for F4.
    Thanks

  • Link Of a Standard Form to a Custom  Form --- Urgent !!

    We are in apps version 11.5.10.2. The Client has custom payslip form suited to their requirement. Now they want a little enhancement feature in the Custom Form.
    The custom pay slip form can be queried by employee number. From then you can get the appropriate payperiod where you can navigate to any of the pay periods and view the payslip for that period.
    Now they want to add a button to the custom form so that on the click of the button the element entries form for the respective pay period is opened. Now we have added a button and gave the reference to the standard form. We do not know exactly how to reference the exact period entries and for the same employee number. Currently it is poping a find window asking the employee number.
    Form gurus...please throw ur light on this ...awaiting ur replies and suggestions.

    do they want to see the element entry form (so Read Only), or do they want to kick off transactions into that element entry form?
    When Read Only, you can use also the Element History folder, or a custom subform, based on the element entries view.
    If not, you have to rework your original custom form, so that she is TaskFlow compatible, and then inheritance should take place by itself.

  • Can we modify the standard AOL Message with custom Message in Seeded Page?

    Hi,
    I have a requirement to change AOL Message with custom Message in Seeded Page.
    In a seeded OAF page when a user clicks on a submit button a standard AOL Processing Message is populated.
    I Need to change the Standard Message and call Custom Message.
    Did controller extension and found that both the messages are populating.
    called the code after super and tried to call before super also.
    Did any one face this issue and resolved it. Kindly provide the solution.
    Regards
    Chaitanya

    Hi Gyan,
    I have tried by extending a sample custom controller.
    Below is the code of TestCO calling create message
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
          OAApplicationModule am = pageContext.getApplicationModule(webBean);
          if (pageContext.getParameter("Test") != null)
              OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_CREATE_CONFIRM",    null,
              OAException.CONFIRMATION, null);
              pageContext.putDialogMessage(confirmMessage);
      }Then I extending the TestCO to XXTestCO and it is calling Update Message
        public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
          super.processFormRequest(pageContext, webBean);
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            if (pageContext.getParameter("Test") != null)
                OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_UPDATE_CONFIRM",    null,
                OAException.CONFIRMATION, null);
                pageContext.putDialogMessage(confirmMessage);
        }got below Confirmation
    Confirmation
    Employee &EMP_NAME with the number &EMP_NUMBER has been created.
    Employee (&EMP_NAME) has been updated.
    Tried below approach also calling the message before super class
        public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            if (pageContext.getParameter("Test") != null)
                OAException confirmMessage = new OAException("AK", "FWK_TBX_T_EMP_UPDATE_CONFIRM",    null,
                OAException.CONFIRMATION, null);
                pageContext.putDialogMessage(confirmMessage);
          super.processFormRequest(pageContext, webBean);
        }got below Confirmation
    Confirmation
    Employee (&EMP_NAME) has been updated.
    Employee &EMP_NAME with the number &EMP_NUMBER has been created.
    My requirement is to print only the message which I have kept in Extended controller i.e. Update message
    Regards,
    chaitanya

  • Standard tool bar for custom Dialog program

    Hi,
       I need to have a standard tool bar functionality like (Search & Print) for my screen 9000. Could you please let me know how can i get it. And i have a ALV in that screen, if i print the data will all the lines will be printed or only displayed lines will be printed, could you please let me know how to get all the lines of ALV. Basically i have some fields & ALV... everything should be printed out.
    Thanks

    my question is when you create a custom screen like 9000, pf-status also need to created. If i need to printing functionality what needs to be done. If i need all the standard functions in my custom screen...what i need to do.
    In that custom screen i have normal fields and one ALV. if i have print button in the standard tool bar and if i use it will it print all the lines of alv along with other fields. {please note that i am not talking about the alv print icon, i am talking about that standard tool bar print icon}.
    Thanks

  • FBV1 - missing standard field and adding customer field

    Hi there,
    I am in a process of developing a batch input program based on RFBIBL00 to upload preliminary posted documents.
    The problem is some fields are not there. A standard field BKPF-REINDAT is missing. Also there is a requirement to add a customer field from BSEG (on vendor screen).
    I have searched SAP notes for possible solutions, most of them include modifying screens by hand and adding the required fields there (i.e. Note 1347046 - VATDATE: Field missing in batch input parking (FBV1)).
    This is quite a serious modification, requiring access key to change SAP objects. Before I decide to change SAP standard objects I kindly ask whether anyone tried that ? REINDAT might work, as it's a standard field, but I'm note sure about customer fields.
    Has anyone tried modifying FBV1 or any of FI posting screens by hand and can provide some input on this ?
    Thanks,
    Bart

    Dear Bart ,
    as You know the field in question is  intended only for US-Federal customers.
    The field is not availble into the standard system using the parking transaction; therefore You should run se51 at Your own responsability and do the changes.
    If You need to be completely sure about the impact on the customer System, please kindly open a message on the marketplace.
    I hope this can help.
    Mauri

  • Calling standard report to my custom report

    Hi ALL,
    i need to call a standard report into my custom report
    for example :
    i am having a report with all PR related data
    now i am having nearly 20000 purchase requisitons and there related data .
    now i will get all the Source of supply for each PR
    using bapi BAPI_SOURCEDETERMINE_GETSOS.
    now i am having all the PR's and source of supply
    then i need to assign source of supply .
    using the standard report RM06BZ00.
    then how to call this report and assign source of supply .
    Will be there any performance considerations for calling this report in a loop (20000)
    and how to catch the result
    if source of supply  was assigned ok
    if not how.
    Thanks in advance .
    siva

    Hi Prabhu,
    Use the Submit Statement for calling the standard report u can use the options available with the submit statement for passing any parameters ,
    for reference u can refer following code....
    MOVE: 'S_LIFNR' TO seltab_wa-selname,
            'S'      TO seltab_wa-kind,      " SELECT-OPTION
            'I'      TO seltab_wa-sign,
            'EQ'     TO seltab_wa-option,
            ct1_key-lifnr TO seltab_wa-low.
      APPEND seltab_wa TO seltab.
      CLEAR seltab_wa.
      MOVE: 'S_DOCNO' TO seltab_wa-selname,
            'S'      TO seltab_wa-kind,      " SELECT-OPTION
            'I'      TO seltab_wa-sign,
            'EQ'     TO seltab_wa-option,
            ct1_key-docno TO seltab_wa-low.
      APPEND seltab_wa TO seltab.
      CLEAR seltab_wa.
      MOVE: 'S_DOCTYP' TO seltab_wa-selname,
            'S'      TO seltab_wa-kind,      " SELECT-OPTION
            'I'      TO seltab_wa-sign,
            'EQ'     TO seltab_wa-option,
            ct1_key-doctyp TO seltab_wa-low.
      APPEND seltab_wa TO seltab.
      CLEAR seltab_wa.
      MOVE: 'P_CT1' TO seltab_wa-selname,
            'P'      TO seltab_wa-kind,      " SELECT-OPTION
            'I'      TO seltab_wa-sign,
            'EQ'     TO seltab_wa-option,
            'X' TO seltab_wa-low.
      APPEND seltab_wa TO seltab.
      CLEAR seltab_wa.
      SUBMIT zexc_ct1_prg
       via selection-screen
          WITH  SELECTION-TABLE seltab.

  • Standard Oracle Messages in Custom forms

    Hi,
    We have created cutsom oracle forms in our EBS setup and we want to show standard oracle messages in our custom forms, but somehow we are not able to show those messages. Is there any setting that we need to do to enable this?
    Thanks,

    Hi,
    Please see "Oracle Applications Developer Guide", Chapter 27 - Customization Standards.
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    You may also review these documents.
    Note: 1019036.6 - How do you Create Custom Messages?
    Note: 189441.1 - How to Change the Text for a Standard Message
    Regards,
    Hussein

Maybe you are looking for