Using OLE Objects in Forms 6i

Hi
I need to use OLE object (VSFlexGrid) in my forms 6i. can anybody help with some code by which I can achieve this.
Warm Regards
Vivek Bajaj

Hi Shay,
Thanks for the reply but i was unable to register to metalink. they need some support agreement code which i do not have. Can you please give me some more information on how to use that.
waiting for an early reply.
Warm Regards
Vivek Bajaj

Similar Messages

  • Attention!!-don't use OLE object in Reports

    If you are planning to use or is currently using OLE objects in Reports-please don't use it as the object maynot reload in future and your report may not even open in Report Builder.I got this message when opening the report containing OLE object:
    REP-4004: Error occurred while restoring OLE object
    and it refused to open up crashing my days of work.
    The pity is I can't open my report even to remove the OLE object.

    I know that is weird.I placed the object in the same directory-but in vain.Afterall, what's the logic of putting it in the same directory after embedding it?

  • Opening Linked Excel OLE Objects in Forms 6i

    Hi,
    I have a linked Excel OLE object which is populating properly into an OLE container. However, I cannot open the file to save a local copy, as I would a non-linked Excel OLE object. If I right-click on the linked OLE object choose copy, I can paste the data into a spreadsheet, but it appears as an image, rather than as regular tabulated data. Is there anyway to open the file normally?
    Thanks in advance.

    Hi Shay,
    Thanks for the reply but i was unable to register to metalink. they need some support agreement code which i do not have. Can you please give me some more information on how to use that.
    waiting for an early reply.
    Warm Regards
    Vivek Bajaj

  • How to use OLE object in Forms6i on web

    Hi,
    I am migratiing 4.5 forms to 6i on web, in 4.5 there is ole to invoke WINWORD, is it possible in 6i on web to invoke WINWORD form the client machine??
    null

    Hello GopalY,
    In my experience its not possible to call OLE object in Webui. Maybe customer 3 party application will be supply some web service to handle credit card payments. I think this is the simple way to access 3party application.
    Regards,
    Zafer,

  • How to use request Object on form submit

    Hai all,
    i have a JSF page having simple form, username, password field and submit button, so on submit the form i want to get the data from the request object in next page without using a bean.
    How can i get it? I am looking for this problem for quite a long time, so can anyone help me...

    i have a JSF page having simple form, username,
    password field and submit button, so on submit the
    form i want to get the data from the request object
    in next page without using a bean.Why are you using JSF?

  • OLE object storage and retrieval FORMS 6.0

    Hello All,
    Iam using forms 6.0 and iam using OLE object to store the data object into the database, using the block wizard i created the object and from the
    action->Save iam saving the ole object to the database....
    Now i want to retrive the ole object from the database....
    my sql is
    declare
    ol long raw;
    begin
    select ole_object into ol from drawing_files where draw_no=1;
    drawing_files.ole_object:=ol;
    end;
    Its showing error in "Bad bind variable"
    How to solve the error
    and if possible i need the sql coding for storage and retreival of OLE object data..
    Thanks......

    I have re-applied the patch and the problem has vanished??
    Everything appears to function properly.

  • Use of Webutil in forms 6i on web

    hi,
    How can i use OLE objects on web for forms 6i only?
    Thanks.
    Thivan.

    You can backport webutil to Forms 6i. You need to change the code in a few places. I have seen articles on how to do it in magazines. Try Google for an online document.
    Also this thread:
    Converting to Webutil? 6i and 9i equivalents.

  • ABAP OLE Objects

    Hi ,
      I have used OLE Objects to move data from  5 internal tables to 5 sheets in a single XL file , but i am not able to get 4th and 5th sheet newly created , instead they are getting over writed in the third sheet itself.
    so how to resolve this.
    help reg this.

    Hi,
      I think  you have given the third  sheet name  for fourth and fifth.
    call method of application 'Worksheets' = sheet
          exporting
          #1 = 1.
          set property of sheet 'Name' = sheet_name.
          call method of sheet 'Activate'.
    OR
    you might have missed to add sheet.
    CALL METHOD OF application 'Sheets' = sheets.
       CALL METHOD OF sheets 'Add'.
    Run my program:
    REPORT ZP_EXCEL .
    *& Report ZP_EXCEL *
    include ole2incl.
    data: application type ole2_object,
    workbook type ole2_object,
    sheet type ole2_object,
    cells type ole2_object,
    sheets TYPE ole2_object.
    constants: row_max type i value 256.
    data index type i.
    data : det type ref to CL_ABAP_structDESCR,
           wa like line of det->components.
    data: begin of i_finaltab occurs 0,
           Col1 type i,
           col2 type i,
           col3 type i,
           col4 type i,
          end of i_finaltab.
    data : count type i,
            v_excel_count(3), " type i value 1,
            sheet_name(15)  .
    *START-OF-SELECTION
    start-of-selection.
    do 100 times.
      count =  count + 1.
      i_finaltab-col2 = 5 * count.
      i_finaltab-col3 = 10 * count.
      i_finaltab-col4 = 20 * count.
      move : count to i_finaltab-col1.
      append  i_finaltab.
      clear i_finaltab.
    enddo.
    clear count.
    create object application 'excel.application'.
    set property of application 'visible' = 1.
    call method of application 'Workbooks' = workbook.
    call method of workbook 'Add'.
    Create first Excel Sheet
    call method of application 'Worksheets' = sheet
    exporting
    #1 = 1.
      call method of sheet 'Activate'.
      set property of sheet 'Name' = 'EXCEL0'.
         count = 1.
         index = row_max * ( count - 1 ) + 1.
         perform header_details.
    DATA FNAME(60) VALUE '/data/sapdata/mk112.xls'.
    OPEN DATASET FNAME FOR OUTPUT.
    loop at i_finaltab.
       count = count + 1.
      if count LE 6.
        index = row_max * ( count - 1 ) + 1. " 1 - column name
        call method of sheet 'Cells' = cells
        exporting
         #1 = index.
        set property of cells 'Value' = i_finaltab-col1.
         index =  index + 1.
        call method of sheet 'Cells' = cells
        exporting
         #1 = index.
        set property of cells 'Value' = i_finaltab-col2.
        index =  index + 1.
        call method of sheet 'Cells' = cells
        exporting
         #1 = index.
        set property of cells 'Value' = i_finaltab-col3.
        index =  index + 1.
        call method of sheet 'Cells' = cells
        exporting
         #1 = index.
        set property of cells 'Value' = i_finaltab-col4.
      else.
        v_excel_count =  v_excel_count + 1.
       CALL METHOD OF application 'Sheets' = sheets.
       CALL METHOD OF sheets 'Add'.
       concatenate 'EXCEL' v_excel_count into sheet_name.
         clear count.
         count =  count + 1.
         call method of application 'Worksheets' = sheet
          exporting
          #1 = 1.
          set property of sheet 'Name' = sheet_name.
          call method of sheet 'Activate'.
          index = row_max * ( count - 1 ) + 1.
          perform header_details.
          count =  count + 1.
          index = row_max * ( count - 1 ) + 1. " 1 - column name
          call method of sheet 'Cells' = cells
          exporting
           #1 = index.
         set property of cells 'Value' = i_finaltab-col1.
          index =  index + 1.
          call method of sheet 'Cells' = cells
          exporting
           #1 = index.
          set property of cells 'Value' = i_finaltab-col2.
        index =  index + 1.
        call method of sheet 'Cells' = cells
        exporting
         #1 = index.
        set property of cells 'Value' = i_finaltab-col3.
        index =  index + 1.
        call method of sheet 'Cells' = cells
        exporting
         #1 = index.
        set property of cells 'Value' = i_finaltab-col4.
       endif.
    endloop.
    *&      Form  header_details
          text
    -->  p1        text
    <--  p2        text
    form header_details.
    det ?= cl_abap_typedescr=>describe_by_DATA( i_finaltab ).
    loop at det->components into wa.
      call method of sheet 'Cells' = cells
      exporting
      #1 = index.
      set property of cells 'Value' = wa-name.
      index = index + 1.
    endloop.
    endform.                    " header_details

  • Display byte array image or ole object in Section through dynamic code?

    To Start I am a Complete Newbe to Crystal Reports. I have taken over a project originally written in VS2003 asp.net using SQL Server 2005 and older version of Crytal Reports. I have moved project to VS2010 and Cryatal Reports 10 still using SQL Server 2005. Have multiple reports (14 to be exact) that display data currently being pulled from database suing a dataset, each report has from 4 to 14 Sections. I have modified database table with two new fields. Field1 contains string data with full path to a scanned document (pdf or jpeg). Field2 holds a byte array of the actual image of the scanned document. I have tested the database and it does infact contain the byte array and can display the image via VB.net code. I can make the report display the scanned image using ole object.
    Now my real question: I need to add a new Section and it should display either the byte array of the scanned image or the actual scanned image (pdf or jpeg) . How can I have it do either of these options via code dynamicly while application is running?

    First; only CRVS2010 is supported on VS2010. You can download CRVS2010 from here;
    SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads
    Developer Help files are here:
    Report Application Server .NET API Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/xi4_rassdk_net_api_en.zip
    Report Application Server .NET SDK Developer Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/xi4_rassdk_net_dg_en.zip
    SAP Crystal Reports .NET API Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_api_2010_en.zip
    SAP Crystal Reports .NET SDK Developer Guide http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip
    To add the images, you have a number of options re. how to. You even have two SDKs that y ou can use (RAS and CR).
    Perhaps the best place to start is with KB [1296803 - How to add an image to a report using the Crystal Reports .NET InProc RAS SDK|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233393336333833303333%7D.do]. The KB describes how to add images to a report using the InProc RAS SDK, but also references other KBs that use CR SDK.
    Also, don't forget to use the search box in the top right corner of this web page.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Ole objects,background and open dataset

    Hi,
    I want to read ms access files on background using ole objects. Is it possible to apply open dataset operation for mdb files? As known, text files can be get into application server using open dataset. But I need to get mdb file to application server.
    On the other way I can simulate my problem as, is it possible to read excel files(for example) using <b>ole object</b> in background? If I can get an aswer, maybe I can simulate it as reading mdb files.
    Thanks.

    OPEN DATASET is meant for the flat text files, you won't be able to open an mdb file with it. Once I've tried using OLE objects to obtain the file modification date and, even though it worked great in foreground, it didn't work in the background mode.
    This thread on reading MS Access files in SAP might be helpful:
    Re: download table from ms-access

  • Updating or Modifying using OLE

    Hi experts,
            I have a requirement where i need to modify the existing word/excel template with some values. I know this can be done by uploading, modifying and then downloading the document. But i want to know how to achieve this using OLE concepts ?
    Regards,
    Vijayalakshmi

    HI,
    another question,
    will the template be available from SAP DMS, or will it be on presentation/application server?
    If it is in SAP DMS, then using CVAPI_DOC_VIEW you can create a replica of it in the SAP working directory, use OLE objects to read/update values in the cell and SAVE it as a new copy ata given location.
    If the file is on the presentation server then you can make a copy of it in SAp working directory, again make use of SAP OLE objects to read/update values in the cell and SAVE it as a new copy ata given location.
    Sample code
    * START THE EXCEL APPLICATION
      CREATE OBJECT excel 'EXCEL.APPLICATION'.
      CALL METHOD OF excel 'WORKBOOKS' = workbooks.
      SET PROPERTY OF excel  'VISIBLE' = 0.
      CALL METHOD OF workbooks 'OPEN' EXPORTING
                #1 = filep.
      CALL METHOD OF excel 'Worksheets' = sheet
       EXPORTING #1 = 1.
      CALL METHOD OF sheet 'Activate'.
    *  FREE  OBJECT sheet.
    * Fill the requried cells
      CALL METHOD OF excel 'CELLS' = cells EXPORTING #1 = 1 #2 = 31.
      SET PROPERTY OF cells 'VALUE' = l_sign_path.
      FREE OBJECT cells.
      GET PROPERTY OF excel 'ACTIVESHEET' = sheet.
      CALL METHOD OF sheet 'SAVEAS' EXPORTING
           #1 = g_file_dest
           #2 = 1.
      CALL METHOD OF workbooks 'CLOSE'.
      CALL METHOD OF excel 'QUIT'.
      FREE OBJECT excel.
    Hope this helps.

  • OLE Objects - Visio drawings?

    Post Author: sarmour
    CA Forum: Crystal Reports
    I've managed to get a bitmap image in my report by inserting an OLE object, and then in the Format Editor, under the Picture tab, I've entered a formula for the Graphic location.  The formula is simply: + '\' +
    What I really want to do is get a Visio drawing inserted in my report by pointing to the file location in a similar manner -- is this possible?
    Thanks.

    OPEN DATASET is meant for the flat text files, you won't be able to open an mdb file with it. Once I've tried using OLE objects to obtain the file modification date and, even though it worked great in foreground, it didn't work in the background mode.
    This thread on reading MS Access files in SAP might be helpful:
    Re: download table from ms-access

  • OLE objects and OO methods - Error using OLE automation

    Hi,
    I'm developing an class to read/write excel sheets and i'm getting an error on the OLE method that is:
    on this instruction
    call method of l_obj_excel 'WORKBOOKS' = l_workb_col.
    i got a dump that give me the following error UC_OBJECTS_NOT_CONVERTIBLE
    The strange is that i've got the same code running on reports and it works fine only when passing it to a oo method i get that dump.
    Thzs in advanced to all
    Best regards
    Jaime

    hi check this..
    Report ZMULTICOLOR_TEST no standard page heading.
    this report demonstrates how to send some ABAP data to an
    EXCEL sheet using OLE automation.
    include ole2incl.
    handles for OLE objects
    data: h_excel type ole2_object,        " Excel object
          h_mapl type ole2_object,         " list of workbooks
          h_map type ole2_object,          " workbook
          h_zl type ole2_object,           " cell
          h_f type ole2_object,            " font
          h_c type ole2_object.            " color
    DATA: FILENAME LIKE RLGRAP-FILENAME.
    tables: spfli.
    data  h type i.
    table of flights
    data: it_spfli like spfli occurs 10 with header line.
    *&   Event START-OF-SELECTION
    start-of-selection.
    read flights
      select * from spfli into table it_spfli.
    display header
      uline (61).
      write: /     sy-vline no-gap,
              (3)  'Flg'(001) color col_heading no-gap, sy-vline no-gap,
              (4)  'Nr'(002) color col_heading no-gap, sy-vline no-gap,
              (20) 'Von'(003) color col_heading no-gap, sy-vline no-gap,
              (20) 'Nach'(004) color col_heading no-gap, sy-vline no-gap,
              (8)  'Zeit'(005) color col_heading no-gap, sy-vline no-gap.
      uline /(61).
    display flights
      loop at it_spfli.
        write: / sy-vline no-gap,
                 it_spfli-carrid color col_key no-gap, sy-vline no-gap,
                 it_spfli-connid color col_normal no-gap, sy-vline no-gap,
                 it_spfli-cityfrom color col_normal no-gap, sy-vline no-gap,
                 it_spfli-cityto color col_normal no-gap, sy-vline no-gap,
                 it_spfli-deptime color col_normal no-gap, sy-vline no-gap.
      endloop.
      uline /(61).
    tell user what is going on
      call function 'SAPGUI_PROGRESS_INDICATOR'
         exporting
              PERCENTAGE = 0
               text       = text-007
           exceptions
                others     = 1.
    start Excel
      create object h_excel 'EXCEL.APPLICATION'.
    PERFORM ERR_HDL.
      set property of h_excel  'Visible' = 1.
    CALL METHOD OF H_EXCEL 'FILESAVEAS' EXPORTING #1 = 'c:\kis_excel.xls'  .
    PERFORM ERR_HDL.
    tell user what is going on
      call function 'SAPGUI_PROGRESS_INDICATOR'
         exporting
              PERCENTAGE = 0
               text       = text-008
           exceptions
                others     = 1.
    get list of workbooks, initially empty
      call method of h_excel 'Workbooks' = h_mapl.
      perform err_hdl.
    add a new workbook
      call method of h_mapl 'Add' = h_map.
      perform err_hdl.
    tell user what is going on
      call function 'SAPGUI_PROGRESS_INDICATOR'
         exporting
              PERCENTAGE = 0
               text       = text-009
           exceptions
                others     = 1.
    output column headings to active Excel sheet
      perform fill_cell using 1 1 1 200 'Carrier id'(001).
      perform fill_cell using 1 2 1 200 'Connection id'(002).
      perform fill_cell using 1 3 1 200 'City from'(003).
      perform fill_cell using 1 4 1 200 'City to'(004).
      perform fill_cell using 1 5 1 200 'Dep. Time'(005).
      loop at it_spfli.
    copy flights to active EXCEL sheet
        h = sy-tabix + 1.
        if it_spfli-carrid cs 'AA'.
          perform fill_cell using h 1 0 000255000 it_spfli-carrid.
        elseif it_spfli-carrid cs 'AZ'.
          perform fill_cell using h 1 0 168000000 it_spfli-carrid.
        elseif it_spfli-carrid cs 'JL'.
          perform fill_cell using h 1 0 168168000 it_spfli-carrid.
        elseif it_spfli-carrid cs 'LH'.
          perform fill_cell using h 1 0 111111111 it_spfli-carrid.
        elseif it_spfli-carrid cs 'SQ'.
          perform fill_cell using h 1 0 100100100 it_spfli-carrid.
        else.
          perform fill_cell using h 1 0 000145000 it_spfli-carrid.
        endif.
        if it_spfli-connid lt 400.
          perform fill_cell using h 2 0 255000255 it_spfli-connid.
        elseif it_spfli-connid lt 800.
          perform fill_cell using h 2 0 077099088 it_spfli-connid.
        else.
          perform fill_cell using h 2 0 246156138 it_spfli-connid.
        endif.
        if it_spfli-cityfrom cp 'S*'.
          perform fill_cell using h 3 0 155155155 it_spfli-cityfrom.
        elseif it_spfli-cityfrom cp 'N*'.
          perform fill_cell using h 3 0 189111222 it_spfli-cityfrom.
        else.
          perform fill_cell using h 3 0 111230222 it_spfli-cityfrom.
        endif.
        if it_spfli-cityto cp 'S*'.
          perform fill_cell using h 4 0 200200200 it_spfli-cityto.
        elseif it_spfli-cityto cp 'N*'.
          perform fill_cell using h 4 0 000111222 it_spfli-cityto.
        else.
          perform fill_cell using h 4 0 130230230 it_spfli-cityto.
        endif.
        if it_spfli-deptime lt '020000'.
          perform fill_cell using h 5 0 145145145 it_spfli-deptime.
        elseif it_spfli-deptime lt '120000' .
          perform fill_cell using h 5 0 015215205 it_spfli-deptime.
        elseif it_spfli-deptime lt '180000' .
          perform fill_cell using h 5 0 000215205 it_spfli-deptime.
        else.
          perform fill_cell using h 5 0 115115105 it_spfli-deptime.
        endif.
      endloop.
    EXCEL FILENAME
      CONCATENATE SY-REPID '_' SY-DATUM6(2) '_' SY-DATUM4(2) '_'
                  SY-DATUM(4) '_' SY-UZEIT '.XLS' INTO FILENAME.
      CALL METHOD OF H_MAP 'SAVEAS' EXPORTING #1 = FILENAME.
      free object h_excel.
      perform err_hdl.
          FORM FILL_CELL                                                *
          sets cell at coordinates i,j to value val boldtype bold       *
    form fill_cell using i j bold col val.
      call method of h_excel 'Cells' = h_zl
        exporting
          #1 = i
          #2 = j.
      perform err_hdl.
      set property of h_zl 'Value' = val .
      perform err_hdl.
      get property of h_zl 'Font' = h_f.
      perform err_hdl.
      set property of h_f 'Bold' = bold .
      perform err_hdl.
      set property of h_f 'Color' = col.
      perform err_hdl.
    endform.                    "FILL_CELL
    *&      Form  ERR_HDL
          outputs OLE error if any                                       *
    -->  p1        text
    <--  p2        text
    form err_hdl.
      if sy-subrc <> 0.
        write: / 'OLE-Automation Error:'(010), sy-subrc.
        stop.
      endif.
    endform.                    " ERR_HDL
    regards,
    venkat

  • OLE Objects - Can I open a browser object within my forms

    Hi There! My company use forms on the web. Now i'm trying to open, using OLE, a browser object in the same window of the forms so that users can navigate at the same time that they use the forms without changing the window/application. Has any one tried this ? Any help,ideas,documents,etc would be great ! Thanks in advance!

    Uninstall the '''''Ask Toolbar'''''. It can cause problems opening new tabs.
    *http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    *http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on
    *http://kb.mozillazine.org/Uninstalling_toolbars
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Display data on OLE object (form) in Crystal Report

    Hi All,
    I m using Crystal Reports 2008. We have Business Objects XI 3.1 SP3 environment.
    I have a crystal report with OLE object embedded in it. The OLE Object is a form on which the database fields and the formula fields are supposed to be displayed. The OLE Object form has multiple lines (rows) and sections. I have a formula field that sometimes brings multiple records and I want to be able to display those records as rows (one below the other) on the same page until all rows on the form are filled. I have 2 problems:
    1. When the formula field brings more than 1 record, only one record is displayed on one page and the next record goes and prints on the next page i.e. the records are not being displayed below each other.
    2. How do I make sure that the records display on the next page of the report once all empty lines/rows on the OLE object form are filled?
    Your replies are much appreciated.
    Thank you.

    Hi,
    if I understand correctly, your OLE object is a form and your data needs to display on it.
    What you can do is, inserting the OLE object on page header and then in the section expert, click "Underlay the following section".
    Note that the structure of Crystal report is RH, PH, GH, Details.
    So, if you insert OLE object in Page Header (PH) and you have a group, underlaying the OLE means displaying the object underlay Group Header (GH).
    So, it is a bit of twisting to do and your OLE object needs to fit well as in A4 (or the paper size you need) consistently.

Maybe you are looking for

  • Connect older vhs to 50L1350U

    I recently purchased a 50L1350U and I'm having trouble watching vhs tapes using an older (10+/- years) dvd/vhs player, SONY slvd530P. I found another thread that refers specifically to different devices, but it may give a hint to my problem: http://f

  • Error when executing workitem in UWL.

    Hi all, we are getting a workitem in the inbox  with text "Error when generating idoc from MC doc " . when I am trying to execute a workitem in UWL its giving error that "workitem is reserved for a different agent ". Regards, Naval Bhatt

  • CS6 Media Browser Problem

    When using the Media Browser in Premiere Pro to view files in a folder that contains many files (100+), the browser keeps jumping back to the beginning after viewing a few of dozen files.  I then have to scroll back down to the last place I was and t

  • TACACS auth and RADIUS accounting with ACS

    I am having RADIUS accounting issues with an ASA 5520 that uses TACACS for authentication. Both are hosted on the same ACS server. I can send RADIUS info to my Microsoft IAS box but get Syslog ID 113022 errors when trying to send to the ACS RADIUS. A

  • Interface BC-ATT

    I would like to integrate and certified my software that performs functional testing with SAP. Our product that interact with SAP UI and perform functional testing is not script base and store all test assets in SQL database. From the list of all SAP