How to program the FPGA with compact flash without using IMPACT

hi;
I want to load my download.bit generated by the EDK tool in the compact flash to program the FPGA (spartan 3a for dsp),
please anyone help me to program my FPGA (spartan 3a for dsp) using the compact flash without using IMPACT

check if the following link helps
http://www.xilinx.com/products/intellectual-property/xps_sysace.html

Similar Messages

  • How to display the fields in ALV Output without using Field catalog?

    How to display the fields in ALV Output without using Field catalog?
    Could you pls tell me the coding?
    Akshitha.

    Hi,
    u mean without building field catalog. is it? I that case, we can use the FM REUSE_ALV_FIELDCATALOG_MERGE.
    data: itab type table of mara.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
    i_program_name = sy-repid
    i_structure_name = itab
    CHANGING
    ct_fieldcat = lt_fieldcat[]
    EXCEPTIONS
    inconsistent_interface = 1
    program_error = 2
    OTHERS = 3.
    *Pass that field catalog into the fillowing FM
    call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                i_callback_program      = gd_repid
                i_grid_title            = 'REPORTING'
                is_layout              = gt_layout
                it_fieldcat             = lt_fieldcat[]
           tables
                t_outtab                = itab.

  • How to store the result with a time are using?

    Hi,
    I'm using the adobe captivate 5.5 to create the Visual Aid Project.
    What i want to ask in captivate 5.5 is :
    Q1. How to record and store the time are using in each slide. ( Record down how long need to take by user to complete one slide)
    Q2. How to create the file above (Q1), and save it in computer. ( For review purpose)
    The purpose for this project is record down how long(time) are need to complete for each Slide. Besides, this project will store the result in computer hardisk and for review purpose.
    Example :
    Slide
    Time Used (in sec)
    Slide 1
    10 sec
    Slide 2
    5 sec
    Slide 3
    20 sec
    Slide 4
    5 sec
    Slide 5
    30 sec
    Total Time
    70 sec
    Thanks,
    Regards,
    Shen

    Hello,
    It is possible to store the time in user variables. How to export those variables depends on the deployment of the file.
    Some information about showing elapsed time can perhaps give you a start:
    Display Time Information
    Lilybiri

  • How to print a plot with two colors Without using two plots

    Hello everybody,
    Escuse my English (poor Frenchies....)
    I'm working with VB6 and I will need to print a plot with two colors (Some values greater than a trigger for example, ...)
    I was looking for some help to discover if that thing is possible without using another plot, this is what I'm already doing, and it do not satisfy me (and my boss....)..
    Thank for your Help.
    Julien

    Hi Julien,
    I have found on the different link to make that you want.
    This first link is on National Instrument site, the first is general, and second provided information about : How Can I Programmatically Print Out a ComponentWorks Graph Object?.
    http://digital.ni.com/public.nsf/websearch/81D87CB2A5BF6C11862569E4008240FE?OpenDocument
    http://digital.ni.com/public.nsf/websearch/dc3430165bc916c586256317006f8cc9
    Links below are on the web, and explain how do you can print a graph on Visual Basic. (the first is French link  )
    http://khany.developpez.com/tutoriel/mschart/
    http://www.programmersheaven.com/zone1/cat378/18546.htm
    Regards,
    Message Edité par Christophe S. le 12-27-2005 01:51 PM
    Christophe S.
    FSE East of France І Certified LabVIEW Associate Developer І National Instruments France

  • HOW TO PROGRAM THE ERRORS IN POSTING A DOCU USING BAPI_ACC_DCOCUMENT_POST

    MY INTERNAL TABLES ARE :
    TABLE FOR INTERNAL CUSTOMER.
    DATA:   BEGIN OF T_ICUSTOMER OCCURS 0,
               BUKRS   LIKE BKPF-BUKRS, "COMPANY
               BELNR   LIKE BKPF-BELNR, "ACC.DOCUMENT NUMBER
               GJAHR   LIKE BKPF-GJAHR, "FISCAL YEAR
               MONAT   LIKE BKPF-MONAT, "FISCAL PERIOD
               EBELN   LIKE EKKO-EBELN, "DOCUMENT NUMBER
             KUNNR   LIKE LIKP-KUNNR,"DEALER
               KUNNR   LIKE EKPO-KUNNR, "INTERNL DEALER NUMBER
               HKONT   LIKE BSEG-HKONT, "G/L ACCOUT NUMBER
               KOSTL   LIKE BSEG-KOSTL, "COST CENTRE NUMBER
           END OF T_ICUSTOMER.
    table to pass data to bapi header
    DATA:  BEGIN OF STR_BAPI_HDR,
              TCODE        LIKE  SY-TCODE,  " VALUE 'RFBU'
              USERNAME     LIKE  SY-UNAME,
              BUKRS        LIKE  BSEG-BUKRS,
              DOC_DATE     LIKE  SY-DATUM ,
              PSTNG_DATE   LIKE  SY-DATUM,
              YEAR         LIKE  BSEG-GJAHR,
              DOCTYPE      LIKE  BKPF-BLART, " VALUE 'ZZ',
              BELNR        LIKE  BKPF-BELNR,
           END OF STR_BAPI_HDR.
    table for debit/credit data of a dealer
    DATA:  BEGIN OF T_ITEM_DATA OCCURS 0,
              BELNR   LIKE BSEG-BELNR," DOCUMENT NUMBER
              BSCHL   LIKE BSEG-BSCHL," POSTING KEY
              SHKZG   LIKE BSEG-SHKZG," DEBIT/CREDIT INDICATOR
              WRBTR   LIKE BSEG-WRBTR," AMOUNT
              PSWSL   LIKE BSEG-PSWSL," CURRENCY
              HKONT   LIKE BSEG-HKONT," G/L ACCOUNT
              KUNNR   LIKE BSEG-KUNNR," DEALER
              PRCTR   LIKE BSEG-PRCTR," PROFIT CENTRE
           END OF T_ITEM_DATA.
    table to pass data to bapiacgl09
    DATA: T_ACCOUNTGL   TYPE STANDARD TABLE OF BAPIACGL09,
          WA_ACCOUNTGL  TYPE                   BAPIACGL09.
    *table to pass data to bapiaccr09
    DATA: T_CURRENCYAMOUNT    TYPE STANDARD TABLE OF BAPIACCR09,
          WA_CURRENCYAMOUNT   TYPE                   BAPIACCR09.
    NOW I NEED TO PASS DATA TO BAPI 'BAPI_ACC_DOCUMENT_POST".
    SO I CONSTRUCTED THE STRUCTURE AND TABLES TO PASS TO THE BAPI AS FOLLOWS:
    LOOP AT T_ICUSTOMER.
    SELECTING HEADER DATA VALUES TO PASS TO STRUCTURE BAPIACHE09
         CLEAR STR_BAPI_HDR.
         STR_BAPI_HDR-TCODE        = 'RFBU'.
         STR_BAPI_HDR-USERNAME     =  SY-UNAME.
         STR_BAPI_HDR-BUKRS        =  T_ICUSTOMER-BUKRS.
         STR_BAPI_HDR-DOC_DATE     =  SY-DATUM.
         STR_BAPI_HDR-PSTNG_DATE   =  SY-DATUM.
         STR_BAPI_HDR-YEAR         =  T_ICUSTOMER-GJAHR.
         STR_BAPI_HDR-DOCTYPE      =  'ZZ'.
         STR_BAPI_HDR-BELNR        =  T_ICUSTOMER-BELNR.
    SELCETING DATA  FROM BSEG
            CLEAR T_ITEM_DATA.
            REFRESH T_ITEM_DATA.
         SELECT BELNR
                BSCHL
                SHKZG
                WRBTR
                PSWSL
                HKONT
                KUNNR
                PRCTR
                FROM BSEG
                INTO CORRESPONDING FIELDS OF TABLE T_ITEM_DATA
                WHERE BELNR = T_ICUSTOMER-BELNR.
          ITEMNO_ACC = 1.
          LOOP AT T_ITEM_DATA.
    *declare a variable here to pass to item tab..
              IF  T_ITEM_DATA-BSCHL  = '31' AND
                  T_ITEM_DATA-SHKZG  = 'H'.     " IF CREDITING THE INVENTORY
                    CONCATENATE TEXT T_ICUSTOMER-EBELN  INTO ITEM_TEXT.
                        WA_ACCOUNTGL-ITEMNO_ACC         = ITEMNO_ACC.
                        WA_ACCOUNTGL-GL_ACCOUNT         = T_ICUSTOMER-HKONT.
                        WA_ACCOUNTGL-ITEM_TEXT          = ITEM_TEXT.
                        WA_ACCOUNTGL-COSTCENTER         = T_ICUSTOMER-KOSTL.
                        WA_ACCOUNTGL-DE_CRE_IND         = 's'.
                        WA_CURRENCYAMOUNT-ITEMNO_ACC  = ITEMNO_ACC.
                        WA_CURRENCYAMOUNT-CURRENCY    = T_ITEM_DATA-PSWSL.
                       WA_CURRENCYAMOUNT-CURRENCY_ISO = T_ITEM_DATA-PSWSL.
                        WA_CURRENCYAMOUNT-AMT_DOCCUR   = T_ITEM_DATA-WRBTR.
                        APPEND WA_ACCOUNTGL TO T_ACCOUNTGL.
                        APPEND WA_CURRENCYAMOUNT TO T_CURRENCYAMOUNT.
                        CLEAR: WA_ACCOUNTGL,WA_CURRENCYAMOUNT.
             ELSEIF T_ITEM_DATA-BSCHL   = '99' AND
                    T_ITEM_DATA-SHKZG  = 'S'.
                        WA_ACCOUNTGL-ITEMNO_ACC       =  ITEMNO_ACC.
                        WA_ACCOUNTGL-GL_ACCOUNT       =  T_ITEM_DATA-HKONT.
                        WA_ACCOUNTGL-PROFIT_CTR       =  T_ITEM_DATA-PRCTR.
                        WA_ACCOUNTGL-DE_CRE_IND       =  'H'.
                        WA_CURRENCYAMOUNT-ITEMNO_ACC  = ITEMNO_ACC.
                        WA_CURRENCYAMOUNT-CURRENCY    = T_ITEM_DATA-PSWSL.
                       WA_CURRENCYAMOUNT-CURRENCY_ISO = T_ITEM_DATA-PSWSL.
                       WA_CURRENCYAMOUNT-AMT_DOCCUR   = T_ITEM_DATA-WRBTR.
                       APPEND WA_ACCOUNTGL TO T_ACCOUNTGL.
                       APPEND WA_CURRENCYAMOUNT TO T_CURRENCYAMOUNT.
                       CLEAR: WA_ACCOUNTGL,WA_CURRENCYAMOUNT.
             ENDIF.
               ITEMNO_ACC = ITEMNO_ACC + 1.
    ENDLOOP.
    NOW I CALL THE BAPI AND PASS THESE STRUCTURE AND TABLE:
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
      EXPORTING
        documentheader          = STR_BAPI_HDR
      CUSTOMERCPD             =
      CONTRACTHEADER          =
    IMPORTING
      OBJ_TYPE                =
      OBJ_KEY                 =
      OBJ_SYS                 =
      tables
        ACCOUNTGL               =  T_ACCOUNTGL
      ACCOUNTRECEIVABLE       =
      ACCOUNTPAYABLE          =
      ACCOUNTTAX              =
        currencyamount          = T_CURRENCYAMOUNT
      CRITERIA                =
      VALUEFIELD              =
      EXTENSION1              =
       return                 =
      PAYMENTCARD             =
      CONTRACTITEM            =
    NOW I WANT TO CHECK IF THE DOCUMENT IS POSTED OR NOT.SO I NEED TO CONSTRUCT THE TABLE RETURN....
    CAN ANY ONE HELP ME IN CONSTRUCTING THE TABLE AND HOW TO CHECK IF IT IS SUCCESSFULL OR NOTAND DO THE NECESSARY POST PROCESSING..I.E. CALL THE REURN VALUE INTO
    THE PROGRAM AND DO THE POST PROCESSING..
    ENDLOOP.

    I guess this is what you want:
    DATA: BEGIN OF return OCCURS 0.
            INCLUDE STRUCTURE bapiret2.
    DATA: END   OF return.
    DATA: do_commit.
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
      EXPORTING
        documentheader = str_bapi_hdr
      TABLES
        accountgl      = t_accountgl
        currencyamount = t_currencyamount
        return         = return.
    CLEAR do_commit.
    LOOP AT return..
      WRITE: /001 return-message.
      IF  return-type = 'S'.
        do_commit = 'X'.
      ENDIF.
    ENDLOOP.
    IF NOT do_commit IS INITIAL.
      CLEAR   return.
      REFRESH return.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait   = 'X'
        IMPORTING
          return = return.
    ENDIF.
    Rob

  • How to edit the cube with new fields without changing historical  in BI 7.0

    HI,
    I have requirment that need to edit cube with new fields and without changing historical data on it.
    Please some one can advise me abt the above scenario.
    Note:I am using BI7.0

    hi Krish,
    In BI 7.0,
    we cannot add a characteristic to an existing dimension if the data is not deleted from the cube.
    It can go to a new dimension and that will not change the existing structure of the cube tables, but will just add to it (as another dim table).  or use remodeling.
    for more details, please seach threads.....
    with hopes
    ARS

  • How to delete the records from database table without using work area

    Hi all,
    The purpose of the down program is to delete the entire contents from all the tables. The deletion of the table should be in sorted manner. Is there any other way to write the code more efficiently,
    TABLES: ZFFMCTL_AP, ZFFMHDR_AP, ZFFM_CHANGE_LOG, ZFFMDTL_AR, ZFFMHDR_AR, ZFFMDTL_JV, ZFFMHDR_JV, ZFFMDTL_SKF,ZFFMHDR_SKF,ZFINVOICE_DETAIL, ZFFMMASTER, ZFFMLOGREAD_CLUS, ZFFMCTL.
    DELETE ZFFMCTL_AP.
    IF SY-SUBRC = 0.
    DELETE ZFFMMHDR_AP.
    IF SY-SUBRC = 0.
    DELETE ZFFM_CHANGE_LOG.
    IF SY-SUBRC = 0.
    DELETE ZFFMDTL_AR.
    IF SY-SUBRC = 0.
    DELETE ZFFMHDR_AR.
    IF SY-SUBRC = 0.
    DELETE ZFFMDTL_JV.
    IF SY-SUBRC = 0.
    DELETE ZFFMHDR_JV.
    IF SY-SUBRC = 0.
    DELETE ZFFMDTL_SKF.
    IF SY-SUBRC = 0.
    DELETE ZFFMHDR_SKF.
    IF SY-SUBRC = 0.
    DELETE ZFINVOICE_DETAIL.
    IF SY-SUBRC = 0.
    DELETE ZFFMMASTER.
    IF SY-SUBRC = 0.
    DELETE ZFFMLOGREAD_CLUS.
    IF SY-SUBRC = 0.
    DELETE ZFFMCTL.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    Waiting for response,
    Thanks in advance
    John

    Write this way....
    TABLES: ZFFMCTL_AP, ZFFMHDR_AP, ZFFM_CHANGE_LOG, ZFFMDTL_AR, ZFFMHDR_AR, ZFFMDTL_JV, ZFFMHDR_JV, ZFFMDTL_SKF,ZFFMHDR_SKF,ZFINVOICE_DETAIL, ZFFMMASTER, ZFFMLOGREAD_CLUS, ZFFMCTL.
    DELETE ZFFMCTL_AP.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMMHDR_AP.
    CHECK SY_SUBRC = 0.
    DELETE ZFFM_CHANGE_LOG.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMDTL_AR.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMHDR_AR.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMDTL_JV.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMHDR_JV.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMDTL_SKF.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMHDR_SKF.
    CHECK SY_SUBRC = 0.
    DELETE ZFINVOICE_DETAIL.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMMASTER.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMLOGREAD_CLUS.
    CHECK SY_SUBRC = 0.
    DELETE ZFFMCTL.

  • How to program a midi foot controller on Mainstage? Does anyone knows how to program the foot controller with exclusive solo channel in order not to dance "tip tap" while from clean guitar I go to crunch or solo? How to do this programming on Mainstage?

    How to program a midi foot controller on Mainstage? Does anyone knows how to program the foot controller with exclusive solo channel in order not to dance "tip tap" while from clean guitar I go to crunch or solo? How to do this programming on Mainstage?
    I basically managed to learn how to invert parameters which allows me to be as default in the clean guitar channel and if I switch the first button on the midi foot controller I switch to crunch, but at this point I tryied so hard to programm the second and third button to switch, only through a button in one step, to a third channel for distorsion or a 4th channel for solo guitar but I couldn't figured out how this work can be done!
    I would appreciate if anyone could help or share this experience with others who are experiencing the same problem.
    Cheers.
    F.

    I cannot seem to get mainstage to recognize my FCB either. I am using IFCB. Anyone figure this out?
    Thanks,
    Eric

  • How to get the last version of flash in MSI format automatically?

    How to get the last version of flash in MSI format automatically?
    Roberto Neigenfind
    Bravo Tecnologia
    www.bravotecnologia.com.br

    Hi Barbara,
    Flash Professional CS5.5 is a 32-bit application which can be installed on computers with either 32-bit or 64-bit operating systems.
    You can purchase this by Adobe's backward Licensing policy :
    " Adobe allows program members to order a current-version license but use a prior version. These members can contact Adobe Customer Service to request a serial number for the earlier version if they do not already have one. Prior-version software is available via ESD and can be purchased through standard resellers. The program member must follow all guidelines of the current-version EULA. "
    Please check the doc : http://www.adobe.com/volume-licensing/policies.html

  • WHEN or HOW to fix the problem with Thunderbolt/Side screen problems

    WHEN or HOW to fix the problem with Thunderbolt/Side screen problems (Cinema screen). Keeps blinking on & off then eventually completely off. Would have thought Apple would have fixed the problem by now as it is apparently to do with the Thunderbolt connector!.

    Hello, might it be Video card related?
    See if yours is on the recall list...
    iMac (27in): AMD Radeon 6970M Video Card Replacement Program (del 'mid 2011')
    http://xlr8yourmac.com/
    http://support.apple.com/kb/TS5167?

  • How to do the lsmw with bapi?

    hi
    while upload the vendor master data using (xk01) from nonsap to sap
    how to do the lsmw with bapi? pls could u give the steps with scren shot to me.
    regards
    eswar.

    Hi
    BAPI - BAPIs (Business Application Programming Interfaces) are the standard SAP interfaces. They play an important role in the technical integration and in the exchange of business data between SAP components, and between SAP and non-SAP components. BAPIs enable you to integrate these components and are therefore an important part of developing integration scenarios where multiple components are connected to each other, either on a local network or on the Internet.
    BAPIs allow integration at the business level, not the technical level. This provides for greater stability of the linkage and independence from the underlying communication technology.
    LSMW- No ABAP effort are required for the SAP data migration. However, effort are required to map the data into the structure according to the pre-determined format as specified by the pre-written ABAP upload program of the LSMW.
    The Legacy System Migration Workbench (LSMW) is a tool recommended by SAP that you can use to transfer data once only or periodically from legacy systems into an R/3 System.
    More and more medium-sized firms are implementing SAP solutions, and many of them have their legacy data in desktop programs. In this case, the data is exported in a format that can be read by PC spreadsheet systems. As a result, the data transfer is mere child's play: Simply enter the field names in the first line of the table, and the LSM Workbench's import routine automatically generates the input file for your conversion program.
    The LSM Workbench lets you check the data for migration against the current settings of your customizing. The check is performed after the data migration, but before the update in your database.
    So although it was designed for uploading of legacy data it is not restricted to this use.
    We use it for mass changes, i.e. uploading new/replacement data and it is great, but there are limits on its functionality, depending on the complexity of the transaction you are trying to replicate.
    The SAP transaction code is 'LSMW' for SAP version 4.6x.
    Check your procedure using this Links.
    BAPI with LSMW
    http://esnips.com/doc/ef04c89f-f3a2-473c-beee-6db5bb3dbb0e/LSMW-with-BAPI
    For document on using BAPI with LSMW, I suggest you to visit:
    http://www.****************/Tutorials/LSMW/BAPIinLSMW/BL1.htm
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • I have a PowerMac G4 running ProTools that no longer boots up.  All I get is a file folder on the screen with a flashing question mark in it.  Ran the Utility disk and all systems passed.  Any ideas?

    I have a PowerMac G4 running ProTools that no longer boots up.  All I get is a file folder on the screen with a flashing question mark in it.  Ran the Utility disk and all systems passed.  Any ideas?

    You need to use the computer's install disks to repair the hard drive or install a new OS.
    (58033)

  • How to delete the file with space in name

    Hi
    I want to delete the file "test ex.txt" file.
    i run the following command in command prompt.i can delete the file successfully.
    /bin/rm -f /mnt/"test ex.txt"
    I want to run the command from java.So i am using the following code
    String cmd = "/bin/rm -f /mnt/\"test ex.txt\"";
         Runtime rt = Runtime.getRuntime();
    process = rt.exec(cmd);
    The file was not deleted.
    How to delete the file with space in name?
    Help me

    Use the form of exec that takes an array of command + args.
    arr[0] = "/bin/rm"
    arr[1] = "-f"
    arr[2] = "/home/me/some directory with spaces";Or use ProcessBuilder, which is the preferred replacement for Runtime.exec, and which Runtime.exec calls.

  • A friend created 3 accounts on his iPhone 5 but forgot the passwords. He can't reset the password as yahoo address is no longer valid. Erasing the phone doesn't solve the issue. How to register the phone with Apple?

    A computer illiterate friend created 3 accounts on his iPhone 5 but forgot the passwords. He can't reset the password as his yahoo address is no longer valid. Erasing the phone doesn't solve the issue as the Apple server identifies the hardware as registered. How to register the phone with Apple?
    I helped him create a new email address and new iCloud account on my Mac but when we try to register the phone with Apple it says: Maximim accounts limit reached for this device. How can he register the phone? I read different threads and found out that only Apple care can do that. We're in Romania and don't know where to call. Any suggestions on how we fix this?

    When I checked the support site for Romania, you apparently don't have an Apple Care contact center.  You "may" try calling the US Apple care number to verify the account and have the password reset sent to a different email address.  800-694-7466

  • I have a problem with mail.  the spelling and grammer check box before sending the messege is no longer there.  I did everything but cannot get it back.  is ther anyone who knows how to get the box with spelling and grammer checks before sending

    i have a problem with mail.  the spelling and grammer check box before sending the messege is no longer there.  I did everything but cannot get it back.  is ther anyone who knows how to get the box with spelling and grammer checks before sending the mail.
    Also the mail is acting very funny by not getting the rules work in a proper method.  Is ther a software to repair mail.

    i did both of them, but still the while sending the mail the diolog box is not showing up and also the spelling and grammer does not do the spelling check. 
    This problem just started for about 3 to 4 days now.  earlier it was working normally.

Maybe you are looking for

  • Publishing office 2013 on app-v server

    Hi, I'm trying to publish an office 2013 package that I have created using the ODT. The technet guide (http://technet.microsoft.com/en-gb/library/dn817830.aspx) I am using is telling me to use this command 'Add-AppvClientPackage <Path_to_AppV_Package

  • Partner profile of output type equal LS (To a delivery)

    Hi, I want to generate an idoc every time that a delivery is created on the basis of the condition (Shipping point=xxx,delivery type = yyy, loading point = zzz) So I'm trying to define a logical system (One logical system by default) as partner profi

  • Enquiry about administration of SAP B1 8.8 PL10

    I have some enquiry about SAP B1 PL10 which are 1  Can it be integrated with IBM Tivoli software for Application monitoring. 2  Can it be integrated with Active Directory for authorization. 3. Profiles of SAP users can be stored in Accrss Contril Lis

  • HT5815 After update, i have problems with wifi

    after update, i have problem with wifi wifi always falls I get no internet access I have to reboot the system to return

  • Problem with exclusive gateway in multi-instance subprocess

    Hi, I've recently developed a BPM process with 11gPS4 FP, the idea is simple: 1. The initiator select a set of "StakeHolders" from LDAP, each "StakeHolder" has an BOOLEAN attribute "isApprover" 2. There is a multi-instance subprocess, I used Parallel