VSM 6.3.X add new Camera Type

Hi,
I am unable to add a new camera type in VSM 6.3.1. I updated the axis driver pack to dp_axis-1.3-919d from the VSMS but the supported IP Cameras are not showing when I try to add IP Camera.
Can anyone support me on this? Is there a procedure that I am not following?
Thank you.

This driver pack did not come with VSM 6.3.1 rather it is an upgrade driver pack. One of my customer is already running this pack successfully in their other sites with VSM 6.3.1.
Now, I am trying to install this driver pack with VSM 6.3.1 in one of the new site deployment but it is not showing up in Camera Type. You can check the attached snapshots for the sites showing the driver and the other sites in which even after the installation the driver is not available.
If you can guide towards upgrading driver pack in VSM 6.3.1 that would be great as I can't seem to find where am I going wrong.
Thanks.

Similar Messages

  • How to add new data type

    I need to add new data type like SDO_GEOMETRY in spatial Oracle.
    I don't mean the User-Defined Datatype but new datatype imbed in the database.
    It might be written in C++ or Java but I do not know how.
    Any hints and help will be appreciated. Thanks,

    > It is not simply defining new VARCHAR3.
    I will compare embedded new built-in data type and UDT as part of my research.
    What I really meant was what do you want from your new type that a user-defined object can't give you? (Apart from the obvious shortcomings of Oracle object types being addressed, but that could take a while.) You specifically said "I don't mean the User-Defined Datatype but new datatype imbedded in the database" and I wondered what you meant by that.

  • 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

  • To add new file type in SharePoint

    Hi,
    I am trying to add new file type for sharepoint site like MSWord, PDF etc.,
    Are there any ways to create new file types in SharePoint? My requirement is to create a file type for AutoCAD drawings (.dwg format).
    Please note, we are using SharePoint 2007 version!
    Thanks

    Browse to the Central Admin site
    Select the Operations tab
    Under the Security Configuration section, click the link for
    Blocked file types
    Select the Web Application that you would like to modify from the drop down list
    Each blocked file extension displayed in the list is blocked by SharePoint.  To enable the blocked file extension, simply remove it from the list.
    Check with your type and if its there unblock it.
    Regards, Dharnendra Shah "strong belief is the only way to success"

  • Add new font types to SAP GUI

    Hi,
    I'm trying to add new font types to SAP GUI to be available to edit smartforms and mail forms, but, after I do the upload in SAP system (by SE73 transaction)of ARIAL font, when I associate it to a smartstyle, what really appears with ARIAL name is a Times New Roman font example.
    Greetings,
    Nuno Moreira

    Hi Nuno,
      Maybe this question isnt corresponding with this forum. But I have a thread with the answer... look at
    Re: Adding a new font for SAPscript/SMARTFORM output
    Regards.
    Manuel

  • Add New File type to Symbian os 9.1 ?

    Hi all
    I wanna Know is there any way to add new file type (for example AVI Filetype) in S60v3
    - I know that Y-Task (Filetype) can modify File Association (But only for Known file types by Symbian os & cant add New file type)
    Is there another app or trick?
    Thanks in advance

    I don't think there is any trick yet available. But there are 2-3 applications that play AVI media files.

  • Possible? To add new file types to Bridge?

    When a file isn't listed in the file type list in the preferences, then Bridge (in Vista) doesn't allow me any changes for the "open with" function. It seems that I MUST live with Bridge's own handling for this file, even when it is false. (e.g. I already posted that Bridge falsely opens MindManager files using Safari)
    From other management software I know that it is sometimes possible, to manually add new file types to the preferences, e.g. editing an ASCII/txt file where they are listed. This is less elegant, but I would do it, if no other choice. Is there such a file in Bridge? Or do you know an other way to add new file types?
    Thanks, Michael

    Hi,
    You can not extend Oracle Data Mining to have your own algorithm.
    However, you can integrate mining implementations within the DB via SQL, PL/SQL among others.
    Thanks, Mark

  • 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.

  • Add new movement types

    Hi experts,
    We have new three movent types in r3.
    I think we only have to create this new movement types in bcs in order to avoid errors in the data charge from r3. But I supose there are more than this problem.
    Do somebody Know what are all the impacts on the BCS system?
    Regards.

    Hi,
    please specify a little more what you do.
    I guess you have a method with "load from datastream" and the source is one or maybe more R/3 system. If not, please correct me. More details please.
    If you use the same movement types from R/3 also in SEM-BCS I would say the concept is not really good... but nvm ; )
    Actually you just have to add those movement types in SEM-BCS. I also guess you use some mapping from R/3-movement types to SEM-BCS movement types. Don't forget that one.
    There are a lot of smaller impacts:
    - master data is updated, so you have to check all selections in the SEM-BCS,
    think of data update methods, layouts, flex uploads, etc etc etc. that is a lot
    - check all reports (BEx etc.), they have to be updated too
    BR

  • How to add new Object Type In Mass

    Hi Expert,
    We have to required change Payment term of Customer (ZTERM) in scheduled Agreement,
    we have gone through Mass, but presently no object type available to change in scheduled Agreement, So can we add the new object in Mass? & How? Please help.
    Regards
    BK GAIKWAD

    Hi,
    Presently no standard object type avaialble for Sch. agr.(Sales)
    Go for BDC for updation of your field (try with LSMW also)
    Thanks
    Chidambaram

  • How to add new browser type in visual studio 2010 performance test?

    Hi All,
           Currently we have various list of browsers in browser type drop down,Suppose if i want to add browsers like Internet Explorer 9 (or) 10,Firefox 33 (or) later version.How to add?

    Thanks for Adrian's help.
    Hi Balaji,
    Based on your issue, I agree with Adrian's suggestion. Therefore, I suggest you can try Adrian's suggestion to refer the link of Cybermaxs' reply check your issue.
    In addition, I suggest you can use fiddler to check the header definition.
    For more information, I suggest you can refer the Shiv_P's reply in the following link.
    Reference:
    https://social.msdn.microsoft.com/Forums/en-US/9bb37eec-3467-4fcb-8537-648d04e91e2f/how-to-add-latest-chrome-browser-plugin-in-visual-studio-2010-ultimate-for-performance-testing?forum=vstest
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Config Error 'Not Assign 5' -add new warranty type for warranty master BGM1

    hi
    i do config to add warranty type in BGM1, follow the sap link :-
    - plant maintenance  and customer service -> master data in plant  maintenance and customer service
    -> basic settings -> warranties -> define warranty types :-
    5     Guarantor (customer)     BLM-SAGA
    but, in below link show 'Not Assigned 5' :-
    - plant maintenance  and customer service -> master data in plant  maintenance and customer service
    -> basic settings -> warranties -> define number ranges for warranty type
    I dont know how to assign this number ranges for warranty type. Can anybody guide me to config this..
    thanks

    Hello,
    You have to assign the warranty Type : 5 to your numberrange.
    -> Define Number Ranges for Warranty Types
    -> Click on change groups button
    --> Click the Curser on warranty type :5
    --> Click on Element / group push button.
    --> Click on Customer Warranty
    --> Click on select button.
    These are steps.
    Sanjeev Dhavan

  • Can you add new camera and lenses to lens correction profile module

    I refer to Lightroom version 3.6.  I have purchased a panasonic-gx1 plus 14-42mm & 45-175mm lenses and would like to add the lens profiles to the lens correction module.  Appreciate if someone could let me know if this possible?

    The GX1 is supported on 3.6.
    If the lens profiles you need are not available in 3.6 use can use the downloader to check for availability or create by yourself.
    Read here: http://labs.adobe.com/technologies/lensprofile_creator/

  • How to add new file type in the xmp allowed files list

    I have to embed metadatas in files that are not listed in the xmp compatible format ( 3D files like dae or obj).
    Is it possible to describe metadatas in  a "sidecar" .xmp files and ask Bridge to embed this metadatas when uploading the files to a Dam ( e.g. Adobe CQ) like what is possible with Digital Photography raw formats, and is handled by Lightroom ?
    Thanks

    Hi,
    In general it is not possible to use Bridge to embed sidecar XMP information into files like Lightroom is doing it. And Bridge only supports metadata read/write in those formats and in those ways as are defined in the XMP specification.
    But you can use the latest XMP SDK to write your own handlers for file formats that are currently not supported. Those file handlers can then be used in either your own application that uses the XMP SDK or any Adobe Video application like Premiere or After Effects to read/write sidecar files or embed XMP metadata into the files. Currently it is not possible to use those file handler plug-ins in other Adobe image applications like Bridge or Photoshop.
    Please see the XMPFiles Custom File-Handler Plug-in SDK for more information.
    Please note that other applications (like CQ) might probably not automatically pick up the metadata you wrote into the file or in a sidecar file, as the other application might probably not have the "knowledge" or technical means to handle metadata in such file formats where you wrote the metadata in a custom way.
    Regards
    Jörg
    Adobe XMP

  • How to add a new output type in sales order header via ABAP program

    Hi All,
    I have to add new output type (ex Z001) in sales order header via an ABAP program. please let me know how to do this.
    Thank you all in advance.

    Hi,
    You can use the FM ..RV_MESSAGE_UPDATE..
    Thanks
    Naren

Maybe you are looking for

  • No Garage Band Loops are installing

    Hope you guys can help me. I have installed iLife and have been attempting to use Garageband. Certain looping elements seem to work - but the Drum, Piano, Bass and Guitar loops do not seem to install. I have done multiple reinstalls and the Loops jus

  • How to display the values in JSpinner in format  day:HH:mm

    Hi All, I want to know how can I display the values inside a JSpinner in the format day:HH:mm. Here the value of 'day' can be anything say from 0 to 365 and HH stand for hour and mm stands for minutes. I tried to implement it using mSpinner.setEditor

  • How to find out a screen exit

    hi seniors can any one tell me abt screen exit n thier search. pls hurry points will be rewarded offer valid for today only. Sameer

  • Reconfigure in stored procedure

    Hi, I'm trying let my users reconfigure my server via a script, but get this error when trying to run as the end user: Msg 15247, Level 16, State 1, Procedure sp_configure, Line 94 User does not have permission to perform this action. Msg 5812, Level

  • Stupid question, but i NEED an answer

    can the ipod touch get internet anywhere (like the iphone) or only wi-fi please answer cause im thinking about buying one