ABAP OO Dropdownlist

Hey Gurus,
Basically I have search through all but I could not find any examples on ABAP OO dropdown list. Is that possible? I have found a lot of examples where it attached to ALV Grid which its not what I want.
Currently I'm referring to this example:
http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbabe435c111d1829f0000e829fbfe/frameset.htm
Just wondering if this can also be achieved via OO.
Regards,
JC.

Hi,
I am sending you the code for displaying drop down.
CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
EXPORTING
  I_BUFFER_ACTIVE              =
   I_STRUCTURE_NAME             = 'ZDROP_CL'
  I_CLIENT_NEVER_DISPLAY       = 'X'
  I_BYPASSING_BUFFER           =
  I_INTERNAL_TABNAME           =
  CHANGING
    CT_FIELDCAT                  = P_T_FCAT
EXCEPTIONS
  INCONSISTENT_INTERFACE       = 1
  PROGRAM_ERROR                = 2
  OTHERS                       = 3
LOOP AT P_T_FCAT INTO S_FCAT.
  IF S_FCAT-FIELDNAME = 'LAND1'.
     S_FCAT-EDIT = 'X'.
     S_FCAT-DRDN_FIELD = 'DROP_DOWN_LIST'.
   MODIFY P_T_FCAT FROM S_FCAT.
   ENDIF.
   ENDLOOP.
ENDFORM.                    " BUILD_FCAT
*&      Form  DROP_DOWN
      text
-->  p1        text
<--  p2        text
FORM DROP_DOWN .
  S_DROP-HANDLE = 1.
  S_DROP-VALUE = 'US'.
APPEND S_DROP TO T_DROP.
   S_DROP-HANDLE = 1.
  S_DROP-VALUE = 'DS'.
APPEND S_DROP TO T_DROP.
   S_DROP-HANDLE = 1.
  S_DROP-VALUE = 'FR'.
APPEND S_DROP TO T_DROP.
CALL METHOD GRID->SET_DROP_DOWN_TABLE
   EXPORTING
     IT_DROP_DOWN       = T_DROP
    IT_DROP_DOWN_ALIAS =
ENDFORM.                    " DROP_DOWN
*&      Form  BUILD_DATA
      text
     <--P_GT_OUTTAB  text
FORM BUILD_DATA  CHANGING P_GT_OUTTAB TYPE STANDARD TABLE.
DATA: S_TYPE TYPE ZDROP_CL,
      T_TYPE TYPE STANDARD TABLE OF ZDROP_CL.
DATA: T_OUTTAB TYPE TY_KNA1.
SELECT KUNNR LAND1 NAME1 FROM KNA1 INTO TABLE T_TYPE
  WHERE KUNNR IN CUSTOMER.
  LOOP AT T_TYPE INTO S_TYPE.
    MOVE-CORRESPONDING S_TYPE TO T_OUTTAB.
    T_OUTTAB-DROP_DOWN_LIST = 1.
    append T_OUTTAB  to P_GT_OUTTAB.
   MODIFY P_GT_OUTTAB FROM T_OUTTAB transporting DROP_DOWN_LIST.
    clear T_OUTTAB.
    clear S_TYPE.
    ENDLOOP.
ENDFORM.                    " BUILD_DATA
Warm Regards,
PavanKumar.G

Similar Messages

  • Remove duplicate entries from dropdownlist in web dynpro abap

    How to remove duplicate entries from dropdownlist in web dynpro abap? Can someone please help me
    I have maintained the data in the z table wherein the records of particular fields are repeated but when i show that record in the Web Dynpro application dropdown list, the user should only be able to view the unique data for selection of that particular field.

    Hi,
    try this code in init method.
    use the
    Delete adjacent duplicates.
    <set the table>
    select <f1>  from <table> into TABLE <Itab> whre <condition>.
       DELETE ADJACENT DUPLICATES FROM <Itab> COMPARING <f1>.
         lo_nd_vbap->bind_table( new_items = <itab> set_initial_elements = abap_true ).

  • How can I create a dynamic Dropdownlist

    Hi Experts,
    I am new in the adobe forms and I have this problem.
    I am working on a Dropdownlist in Adobe Interactive Form. In my case, my form will be used in Offline-ABAP system without any web dynpro application.
    I have an internal table containing some values like this (number of rows depend on what is store on the database dynamic)
    A0  Dropdownlist1
    A1    Dropdownlist2
    A2    Dropdownlist2
    B0 Dropdownlist1
    B1    Dropdownlist2
    B2    Dropdownlist2
    B3    Dropdownlist2
    B4    Dropdownlist2
    C0  Dropdownlist1
    C5    Dropdownlist2
    C6    Dropdownlist2
    C7    Dropdownlist2
    I would like to create 2 dropdownlist. to be as follows:
    The first dropdownlist must have for example the values A0, B0, C0 .
    When the user select for example B0 from the Dropdownlist1, then dropdownlist2 must have only the value B1, B2, B3 and B4.
    How can i do that as I have seen the example in the purchase order (country and state).
    My requirement is that, the value must be dynamic, that means i must select the value from the SAP-Database into internal table and bind it to my dropdownlist.
    Thanks and Regards.
    mishak

    See the following program, it builds a dynamic internal table based on the company codes from the select option. 
    report zrich_0001 .
    type-pools: slis.
    field-symbols: <dyn_table> type standard table,
                   <dyn_wa>.
    data: alv_fldcat type slis_t_fieldcat_alv,
          it_fldcat type lvc_t_fcat.
    data: it001 type table of t001 with header line.
    selection-screen begin of block b1 with frame title text-001.
    select-options: s_bukrs for it001-bukrs.
    selection-screen end of block b1.
    start-of-selection.
      select * into table it001 from t001
                     where bukrs in s_bukrs.
      perform build_dyn_itab.
    *  Build_dyn_itab
    form build_dyn_itab.
      data: index(3) type c.
      data: new_table type ref to data,
            new_line  type ref to data,
            wa_it_fldcat type lvc_s_fcat.
      clear wa_it_fldcat.
      wa_it_fldcat-fieldname = 'PERIOD' .
      wa_it_fldcat-datatype = 'CHAR'.
      wa_it_fldcat-intlen = 6.
      append wa_it_fldcat to it_fldcat .
      loop at it001.
        clear wa_it_fldcat.
        wa_it_fldcat-fieldname = it001-bukrs .
        wa_it_fldcat-datatype = 'CHAR'.
        wa_it_fldcat-intlen = 4.
        append wa_it_fldcat to it_fldcat .
      endloop.
    * Create dynamic internal table and assign to FS
      call method cl_alv_table_create=>create_dynamic_table
                   exporting
                      it_fieldcatalog = it_fldcat
                   importing
                      ep_table        = new_table.
      assign new_table->* to <dyn_table>.
    * Create dynamic work area and assign to FS
      create data new_line like line of <dyn_table>.
      assign new_line->* to <dyn_wa>.
    endform.
    Regards,
    Rich Heilman

  • Dropdown list in WebDynpro for ABAP

    Hello,
    I develop programs by using WebDynopro for ABAP and Interactive Forms.
    I'd llike to use Drop-downs UI elements on Interactive Forms.
    SAP material says
    "The WebDynpro Drop downs UI elements in the LiveCycle designer do not work in ABAP WD"
    see followings ( page 21)
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20029530-54ef-2910-1b93-c41608ae0c90
    I don't know what to do.
    Does any one give me alternatives ?
    Best regards.
    Koji.

    Can you please let me know the scenario you are looking for?
    Is it static dropdownlist or you want to get the data from bacend?
    Cheers
    Satya

  • Dropdown list in WD-ABAP.

    hi gurus,
                I'm doing WD for ABAP and I'm trying to get contents into a dropdown list. I'm using DropDownListByKey. The contents come from a customizing table. I'm not sure where exactly I should add my coding: does it go into a supply function for my context attribute? Or in the method WDDOINIT? Basically, if you could point me towards some sample code, it would very user
    Thanks in Advance,
    Regards,
    Ravi.

    Hi,
         As per your suggestion,i implemented the following code in the doinit Method,
    but there is no value is populated in my dropdownlist box.
    I check the code by debugging, <b><i>i am not getting  any value in the following area
    ( ls_valueset-value = wa_kna1-kunnr.
       ls_valueset-text = wa_kna1-kunnr. )</i>   </b>
        kindly check the following code. 
           data: lt_valueset  type standard table of wdr_context_attr_value,
                   ls_valueset  type wdr_context_attr_value,
                 lr_node_info type ref to if_wd_context_node_info,
                 lr_node type ref to if_wd_context_node,
                 wa_kna1 type kna1,
                 lt_kna1 like table of wa_kna1.
          lr_node = wd_context->get_child_node( 'NODE_KNA1MOD' ).
          lr_node_info = lr_node->get_node_info( ).
          loop at lt_kna1 into wa_kna1.
             ls_valueset-value = wa_kna1-kunnr. "this will be the selected value
             ls_valueset-text = wa_kna1-kunnr.   "this will be the displayed value in the UI
              append ls_valueset to lt_valueset.
          endloop.
        lr_node_info->set_attribute_value_set(
                                exporting
                                  name       = 'KUNNR'
                                  value_set  = lt_valueset ).
    In the LAYOUT: i binded the selected key properties as kunnr.
       properties
             selectedkey = kunnr.
            kindly give me some suggestion,to come out of this problem.
    Thanks in advance,
    Regards,
    Ravi.

  • Dropdownlist dynamic entry list

    hi all;
    I have a problem with dropdown list dynamic entry list... I m using BI System as a data service. My characteristic has a hierarchy in bw system but i cant dynamic entry list with my characterictic in vc. In input value i use my characgteristic name( eg @Company). and in output value i use @key and @text. But when i deploy it dropdown list always empty...
      What can i do about this?? Can anyone help me?

    Hi Ozan,
    you want to display a hierachy in a dropdownlist? This is not easy, but should be possible, because the H-Table for hierchies have always the same data structure, so you have to write a function module which creates an internal table like the hierchy. I think the problem is the display in the dropdown, so that the user notice the nodes and the childnodes and so on, maybe you can add 2 spaces for every childnode so that it looks like a tree. I hope your hierachy hasn't a lot of levels.
    To the H-table:
    the field tlevel is equivalent to the hierchy level so the nodes under the root are 01 child nodes of these nodes have the value 02 and so on.
    Via the fileds parentID, ChildId and NextID you have all the information for building your tree in a internal table, which has a key and a text.
    The text can be read via the information about the infoObject and the inode is the value, so that you can read the texts from the texttables.
    This should be possible for an average abap developer. Looping over H-table and append the values to the internal table...
    Maybe I have the time in february to write an prototype then I will write a blog.
    Best Regards,
    Marcel

  • Access ABAP Bapi_Flight_Getlist function

    Hi,
    I am trying to access Bapi_Flight_Getlist function in my web dynpro application. I want to put DropdownList in the deparcher and arrival field as a in put field.
    I have done all the settings but the dropdownlist is not showing any fields in that. I have set the property selectedKey  of drop down list to the context Destination_from and destination_to .
    What might be the problem.?
    Regards,
    H.V.Swathi

    Hi,
    i think you following the  below example available in sdn
    Accessing ABAP Functions in Web Dynpro Java
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a00f7103-6790-2a10-ac9c-fcac7c5b18a3
    the Destination_From and Destination_To are nodes which have some attributes like city etc.
    in Search view
    Departure City is bind with city attribute which is under the Destination_From node
    Arival City is bind with city attribute which is under the Destination_To node
    these attributes accepts input from the end user .
    you cann't bind these attributes to DropDownByIndex element because these are returning no values that is the reason you are not getting any values in DropDownByIndex .
    Hope it helps you,
    Regards,
    ramesh

  • Fill dropdownlist

    hi:
    in crm icwc 5.0 i have created my bsp application and copied the BuPaSearchB2B view, so the requirement is thah i have to add a dropdownlist and fill it with the following values,
    '1', 'Titular'
    '2', 'Compareciente'
    son when it triggers an event depending on the selection, my problem is that i'm new in icwc so i don't know how to fill the dropdownlist with those values, so does anyone can give me a little example on this, or how to do it.
    Thanks & regards

    Here is the code. I modifed & tested. It works fine now.
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="crmic" %>
    <crmic:content design="design2003" >
      <crmic:page title=" " >
        <crmic:form>
          <%
      DATA:
      selection  TYPE STRING,
      contactInfoType type string.
      data:i_formfields       TYPE tihttpnvp,
      wa_formfields      TYPE ihttpnvp.
      CALL METHOD request->get_form_fields
      CHANGING
      fields = i_formfields.
      READ TABLE i_formfields INTO wa_formfields WITH KEY name = 'contactinfotype'.
      contactInfoType = wa_formfields-value.
          %>
          <crmic:gridLayout id          = "mygrid"
                            rowSize     = "2"
                            columnSize  = "6"
                            cellSpacing = "1"
                            cellPadding = "1" >
            <crmic:gridLayoutCell columnIndex = "4"
                                  rowIndex    = "1"
                                  colSpan     = "3" >
              <crmic:dropdownListBox id        = "contactInfoType"
                                     selection = "<%= contactInfoType %>"
                                     onSelect  = "mySelectHandler" >
                <crmic:listBoxItem key   = "1"
                                   value = "Titular" />
                <crmic:listBoxItem key   = "2"
                                   value = "Compareciente" />
              </crmic:dropdownListBox>
            </crmic:gridLayoutCell>
            <%
      if contactInfoType = '1'. " titular
            %>
            <crmic:gridLayoutCell columnIndex = "1"
                                  rowIndex    = "2"
                                  colSpan     = "3" >
              <crmic:label design = "label"
                           for    = " "
                           text   = "Titular" />
            </crmic:gridLayoutCell>
            <%
      else.
            %>
            <crmic:gridLayoutCell columnIndex = "1"
                                  rowIndex    = "2"
                                  colSpan     = "3" >
              <crmic:label design = "label"
                           for    = " "
                           text   = "Compareciente" />
            </crmic:gridLayoutCell>
            <%
      endif.
            %>
          </crmic:gridLayout>
        </crmic:form>
      </crmic:page>
    </crmic:content>
    Let me know if you have an issue.
    Raja T
    Message was edited by:
            Raja T

  • Dropdownlist selection value

    Hallo,
    I have placed a dropdownlistbox in a tableview. The dropdownlist is binded to another table than tableview table.
    How can I set the value of selection property of dropdownlist?.
    Greetings,
    abu

    Hi Abu
    What do you mean by "binded"?  If you mean a foreign-key relationship, you can define foreign-key relations in ABAP dictionary, using transaction code <b>"SE11"</b>. While you are viewing the table structure and the cursor is on the field for which the relation will be defined, press the button having a key figure on it. Follow next steps.
    If it is to update a field of another table, then you should also insert your code in the flow logic of the screen. However, I think, it is not a suitable way to insert such codes manually in these screens. Can't you add this field while designing the view?
    On screens, dropdown list values are filled at the PBO automatically if one of the following applies:
    1. A domain with fixed values
    2. A foreign-key relationship
    3. A POV coding for the field
    Or you can manually set its values at the PBO utiling "VRM_SET*" function module and modifying related property of the field in the screen painter to get values from the program.
    Anyway, it is possible that I have misunderstood at this time of night. If so, can you clarify the issue?
    *--Serdar

  • Issue in Creation of XML file from ABAP data

    Hi,
    I need to create a XML file, but am not facing some issues in creation of XML file, the in the required format.
    The required format is
    -<Header1 1st field= u201CValueu201D 2nd field= u201CValueu201D>
       - <Header2 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 10 fields>
              <Header3 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 6 fields/>
              <Header4  1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 4 fields/.>
               <Header5 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 6 fields/>
          </Header2>
       </Header1>
    Iu2019m using the call transformation to convert ABAP data to XML file.
    So please anybody can help how to define XML structure in transaction XSLT_TOOL.
    And one more thing, here I need to put the condition to display the Header 3, Header 4, Header 5 values. If there is no record for a particular line item in header 3, 4 & 5, I donu2019t want to display full line items; this is only for Header 3, 4 & 5.
    Please help me in this to get it resolved.

    Hello,
    you can use CALL TRANSFORMATION id, which will create a exact "print" of the ABAP data into the XML.
    If you need to change the structure of XML, you can alter your ABAP structure to match the requirements.
    Of course you can create your own XSLT but that is not that easy to describe and nobody will do that for you around here. If you would like to start with XSLT, you´d better start the search.
    Regards Otto

  • Logical command in ABAP.....Urgent

    Hi,
      i am pretty new using ABAP program so i neeed help urgently. i am trying to move a file on the application server from one directory to the other and i was using the open dataset function to do that. but the file i am trying to move is pretty big and because i am using internal table to store, it is causing problems with the space.
      i have consulted the basis guys and they have managed to create a logical file for copying from one directory to the other on the application server. to help you furthter. i am enclosing the mail sent to me.
    I have created a logical command which should copy the file from one location to the other but you need to pass it the source dir and file name and the destination dir and file name.
    The logical command is ZCOPY and uses cmd /c copy
    Copies one or more files to another location.
    COPY [/V] [/N] [/Y | /-Y] [/Z] [/A | /B ] source [/A | /B]
         [+ source [/A | /B] [+ ...]] [destination [/A | /B]]
      source       Specifies the file or files to be copied.
      /A           Indicates an ASCII text file.
      /B           Indicates a binary file.
      destination  Specifies the directory and/or filename for the new file(s).
      /V           Verifies that new files are written correctly.
      /N           Uses short filename, if available, when copying a file with a
                   non-8dot3 name.
      /Y           Suppresses prompting to confirm you want to overwrite an
                   existing destination file.
      /-Y          Causes prompting to confirm you want to overwrite an
                   existing destination file.
      /Z           Copies networked files in restartable mode.
    The switch /Y may be preset in the COPYCMD environment variable.
    This may be overridden with /-Y on the command line.  Default is
    to prompt on overwrites unless COPY command is being executed from
    within a batch script.
    the problem now is i have no idea about how to use the logical command. can any one help me.
    Thank you,
    Ravi.

    If memory is not an issue, then there should be no reason why this should not work.
    report zrich_0001.
    parameters: d1 type localfile default '/usr/sap/TST/SYS/Data1.txt',
                d2 type localfile default '/usr/sap/TST/SYS/Data2.txt'.
    data: itab type table of string with header line.
    start-of-selection.
    * Read old file
      open dataset d1 for input in text mode.
      if sy-subrc = 0.
        do.
          read dataset d1 into itab.
          if sy-subrc <> 0.
            exit.
          endif.
          append itab.
        enddo.
      endif.
      close dataset d1.
    * Write to new file
      open dataset d2 for output in text mode.
      loop at itab.
        transfer itab to d2.
      endloop.
      close dataset d2.
    * Delete the old file
      delete dataset d1.
    Regards,
    Rich Heilman

  • Logical Database in Abap Objects

    Hi to All
    I want do it a program report using a Logical Database.
    Is this possible ??? But when I make a GET <node>, occurs the following error:
             "" Statement "ENDMETHOD" missing.  ""
    I'm doing the following:
    CLASS MONFIN IMPLEMENTATION.
           METHOD TRAER_DATOS.
                   GET VBRK.
           ENDMETHOD.
    ENDCLASS.
    Please, somebody tell me how I use the logical database in Abap Objects.
    Thank you very much
    Regards
    Dario R.

    Hi there
    Logical databases whilst of "some use" are not really part of OO.
    If you want to use a logical database in an abap OO program I would create a special class which just does the get data from your DB and pass this either at record or table level.
    Techniques such as GET XXXX LATE aren't really part of any OO type of application since at Object Instantiation time you should be able to access ALL the attributes of that object.
    As far as OO is concerned Logical databases are a throwback to "Dinosaur Technology".
    Since however modules such as SD and FI are still heavily reliant on relational structures (i.e linked tables etc)  then there is still some limited life in this stuff but for OO try and solve it by another method.
    If you really must use this stuff in OO then do it via a FMOD call and save the data in a table which your method will pass back to your application program.
    You can't issue a GET command directly in a method.
    Cheers
    Jimbo

  • LOGICAL DATABASE IN HR ABAP PRPGRAMMING

    Hi Friends,
    what is use of LOGICAL DATABASE IN HR ABAP PROGRAMMING
    AND END-OF-SELECTION EVENT IN HR PROGRAMMING PROGRAMMING???
    regards,
    vijay.

    hi
    HR Logical Databases
    In Human Resources (HR), the following logical databases can be used as a data source for HR InfoSets:
    PNP (PNPCE)
    PAP
    PCH
    By selecting a logical database, you determine the HR data that can be reported on using an InfoSet.
    Logical Database PCH
    This logical database generally enables you to report on all HR infotypes. However, you are advised not to use this logical database unless you want to report on Personnel Planning data.
    Logical Database PNP (or PNPCE)
    Use logical database PNP to report on HR master data. It is possible to use logical database PCH to access this data, but PNP meets such reporting requirements more quickly because it is best suited to the task of selecting persons.
    Logical database PNP enables you to access HR master data and infotypes from Personnel Planning. For example, you have the following options:
    Reporting on the costs, number of attendees booked, and instructor for a business event on which an employee is booked
    Reporting on working time and planned compensation for a position that an employee occupies
    Reporting on the validity and proficiency of a qualification that an employee fulfils
    From a technical perspective, this means you can use PNP to report on all of the infotypes that exist for objects (infotype 1000) that have a direct relationship (infotype 1001) with the Person object.
    The ability to access infotypes from Personnel Planning using logical database PNP is a special feature that you can only use in the context of SAP Query and Ad Hoc Query. You cannot use this functionality for ABAP reports you programmed yourself.
    You can also use logical database PNP to report on data from Personnel Time Management (infotypes 2000 to 2999) and Payroll (special payroll infotypes for the USA and customer infotypes; for more information, access Customizing for the Human Resources Information System and see Payroll Results).
    Logical Database PAP
    Logical database PAP enables you to access data from Recruitment.
    regards
    navjot
    reward if helpfull

  • FileName in ABAP XSLT Mapping

    Dear SDN,
    In an integration scenario we are using sender File Adapter and a  ABAP XSLT Mapping.
    Is there any way to get the source FileName from such mapping.  Im trying to use the adapter-specific message attributes, but it doesn't work, and I didn´t find an example, probably I and doing somthing wrong.
    regards,
    GP

    Thank you for your help,
    I just try to access the adapter-specific attibutes using:
    <xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:key="java:com.sap.aii.mapping.api.DynamicConfigurationKey">
    <xsl:variable name="filename"  select="key:create('http://sap.com/xi/XI/System/File', 'Directory')" />
    </xsl:stylesheet>
    but the following error raised:
    <SAP:Stack>Error while calling mapping program YXSLT_TEST (type Abap-XSLT, kernel error ID CX_XSLT_RUNTIME_ERROR) Call of unknown function</SAP:Stack>
    have you had this situation?

  • ABAP-- diff between sy-sy-tabix and sy-index

    Hi Guru's,
    Pleae can anybody expalins me what is the difference between sy-tabix and sy-index(Loop Index) ?
    Because in one case i am Modifyimg the internal table inside the do loop by giving sy-index ((Index of Internal Tables)(MODIFY scarr_tab INDEX sy-index FROM scarr_wa TRANSPORTING currcode. )  in the syntax and in other case inside loop statement i am modifyng same record by giving sy-tabix MODIFY scarr_tab INDEX  sy-tabix FROM scarr_wa TRANSPORTING currcode.) in the syntax.
    in both cases its working fine but i am not getting which one i have to use  where to modify the internal table?
    regards
    SATYA

    Hi Henry,
    SY-INDEX is the value of the current iteration. It is applicable for the following programming constructs in ABAP -
    DO...ENDDO.
    WHILE...ENDWHILE.
    SY-TABIX (TABle IndeX) is applicable to internal tables. If you scroll down in the link which Eddie has given, you will find a more detailed explanation for sy-tabix and which statements affect its value.
    Regards,
    Anand Mandalika.

Maybe you are looking for

  • Find out the peaks and check them against a value

    Hi I am currently aquiring a bunch of signals (4 to be exact) through a 6120 card. This works as expected. Now I'd like to check all 4 signals if any value (up to 80 000 samples / waveform) has it's lowest level above -0,8 V and it's highest level be

  • I have Windows 7 and it is not detecting my second generation iTouch does not show

    I have Windows 7 and it is not detecting my second generation iPod Touch,  I have tried rebooting etc.

  • Chinese character problem in clob filed,repost,pls Help!

    Hi all, We are developing a web-based information system,on Oracle 9i database Release 2 on a AIX platform,the Character set is ZHS16GBK(UTF-8). And OC4J is the web server we are planning to use,but installed on another AIX machine,the web page retri

  • Blackberry 8520 wont sync previous dates in calander

    Hi there, It is the 23rd June as I post this. I dont know why an appointment I entered on the Blackberry last week  wont sync in the usual way to outlook. The appointment was on 21st June. Also an appointment I entered on Outlook calander last week,

  • Word Dictionary not working.

    The dictionary in Word isn't working with the new Maverick system (10.9.4) on my new macbook air. Didn't have problems before with my old macbook, but really starting to dislike this new system and the new macbook air. I can't even find the plist in