How to determine employee type (management vs nonmanagement) in WebDynpro

Hi,
I am running SP14.
In my WebDynpro application, I need to hide/show a link based on if the employee is management or nonmanagement.
What is the easiest way to determine the type of employee in a WebDynpro?  Is the management/non-management attribute already exposed and available to the WebDynpro?  Or do I need to invoke a BAPI/RFC to retrieve that information from SAP (eg Employee Group or Personnel Area)?
Thanks for any help you can provide.
Kevin

You only need to call this RFC once and share the results with other views via context binding!
In my applications I follow the Floorplan manager architecture and have one web dynpro component for all the frontend logic e.g. FcAddress
In the component controller of FcAddress I setup model nodes for the RFC e.g.
Address_Input (mapped to input RFC model class with all the import parameters of the RFC)
Address_Output (mapped to either the output RFC model class with all the export parameters of the RFC or it includes another model node for Address_Records which is mapped to the export table parameter.)
Address_Messages (mapped to the return parameter of the RFC (BAPIRET2).
All other views with their component controllers are mapped to those model nodes to allow access to the RFC data.
You can pass the userid to the RFC and then the RFC will get the related employee number via IT105/ST10. You just need to have the userid defined as an import parameter in the RFC.

Similar Messages

  • How to determine IE type(32 bit or 64 bit) in a task sequence while updating Java

    How to determine IE type(32 bit or 64 bit) in a task sequence
    Hi,
    Currently i have to update new version of Java after removing all the previous existing version of Java by using TS in SCCM 2007.
    we have both 32 bit and 64 bit browser in the environment. I am stucked in determining whether the browser is of 32 bit or 64 bit.
    How to determine IE type(32 bit or 64 bit) in a task sequence so that respective java can be installed for that IE browser.
    will highly appreciate quick response.
    Thanks in advance.
    Daya

    But you also need to install JRE x86 on x64 systems, since most people actually use the 32bit browsers on x64 systems.
    The detection logic is actually pretty simple -- just check the right registry hive to find the installation location of the BIN\JAVA.DLL. Both pathnames are stored in HKLM\Software\JavaSoft\Java Runtime Environment\1.7 in the registry value "JavaHome",
    but the x86 path is stored in the 32-bit hive and the x64 path is stored in the 64-bit hive.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • How to determine the type of the jobject... similar to instanceof

    hi,
    I would like to know how to determine the jobject reference of an instance is of which class.
    this is something similar to instanceof we use in java.
    is there any thing like 'instanceof' in JNI. if there how to use it?
    i got this as objective question for which answers were(i do not remember exactly)
    1.instanceof
    2.assignedto
    i could nt het much help in googling.
    thanks in advance

    Hi
    The JNI provides a native version to the java instanceof operator, this function takes two arguments
    an object refrence and a class refrence and reports JNI_TRUE.
    jclass myclass = env->FindClass("your class name");
    if(env->IsInstanceOf(obj,myclass) == JNI_TRUE)
    // obj is of type myclass
    }Regards
    pradish

  • How to determine itab type at run time

    I need to write a subroutine that organizes data in internal tables for presentation by a smartform. There are a few similarly structured internal tables all with the same field name ("recipe_type") by which the data is sorted. My problem is that how I can determine the type of the itab inside my subroutine at run time? Is it ever possible in ABAP?
    The subroutine code is attached below. Thanks for any help.
    FORM beautify_itab    TABLES itab_in TYPE table
                                     USING v_type TYPE any
                                     CHANGING itab_out TYPE table.
    Data declaration
      DATA: v_data_row LIKE LINE OF itab_in,                " THIS WON'T COMPILE!
                 v_blank_row LIKE LINE OF itab_in.              " blank row
    Organize the display of the table data
      LOOP AT itab_in INTO v_data_row.
        IF v_type <> itab_in-recipe_type.                     " 'recipe_type' is the sort key for the incoming itabs
          v_type = itab_in-recipe_type.
          IF sy-tabix > 1.
            APPEND v_blank_row TO itab_out.
          ENDIF.
          APPEND v_data_row TO itab_out.
        ELSE.
          CLEAR v_data_row-recipe_type.
          APPEND v_data_row TO itab_out.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    "beautify_itab

    The following code does what I want, but only if the input itab structure is declared first in the program. It won't work if the itab is declared as itab_in TYPE TABLE OF sflight. This is because the function 'GET_COMPONENTS_LIST'  only can load the structure of a field declared explicitly in the program.  Does anybody know of any method to load the structure of an itab based off a dtab? 
    Thanks you guys for answers. Points have been rewarded.
    *& Report  Z_GET_ITAB_TYPE_AT_RUN_TIME
    REPORT  z_get_itab_type_at_run_time.
    DATA: BEGIN OF itab_in OCCURS 0,
             seatsocc_b LIKE sflight-seatsocc,
             fldate LIKE sflight-fldate,
          END OF itab_in,
          itab_out TYPE TABLE OF string,
          wa_itab_out TYPE string.
    SELECT seatsocc_b fldate
    INTO TABLE itab_in
    FROM sflight
    WHERE carrid = 'AA' AND
          connid = '0017'
    ORDER BY seatsocc_b.
    PERFORM beautify_itab
                TABLES
                   itab_in
                USING
                   sy-repid
                   'itab_in'
                   'SEATSOCC_B'
                CHANGING
                   itab_out.
    LOOP AT itab_out INTO wa_itab_out.
      WRITE: / wa_itab_out.
    ENDLOOP.
    *&      Form  beautify_itab
          text
         -->ITAB_IN    text
         -->V_KET_FIELD   text
         -->ITAB_OUT   text
    FORM beautify_itab TABLES itab_in TYPE table
                       USING  v_prog_name LIKE sy-repid
                              v_itab_in_name TYPE any
                              v_key_field_name TYPE rstrucinfo-compname
                       CHANGING  itab_out TYPE table.
      DATA: itab_fields TYPE TABLE OF rstrucinfo,
            v_field_name LIKE rstrucinfo-compname,
            v_old_key TYPE string,
            v_field_value TYPE string,
            v_data_line TYPE string,
            v_tabix LIKE sy-tabix,
            c_blank_row TYPE string VALUE ''.
      FIELD-SYMBOLS: <fs_field>,
                     <fs_data_line>,
                     <fs_field_list> TYPE  rstrucinfo.
    gets all of the components of a structure
      CALL FUNCTION 'GET_COMPONENT_LIST'
        EXPORTING
          program    = v_prog_name
          fieldname  = v_itab_in_name
        TABLES
          components = itab_fields.
      LOOP AT itab_in ASSIGNING <fs_data_line>.
        v_tabix = sy-tabix.
        LOOP AT itab_fields ASSIGNING <fs_field_list>.
          v_field_name =  <fs_field_list>-compname.
          ASSIGN COMPONENT v_field_name OF STRUCTURE
                        <fs_data_line> TO <fs_field>.
          v_field_value = <fs_field>.
          IF v_key_field_name = v_field_name.
            IF v_old_key <> v_field_value.
              v_old_key = v_field_value.
              IF v_tabix > 1.
                APPEND c_blank_row TO itab_out.
              ENDIF.
            ELSE.
              CLEAR v_field_value.
            ENDIF.
          ENDIF.
          CONCATENATE v_data_line v_field_value INTO v_data_line
                      SEPARATED BY space.
        ENDLOOP.
        APPEND v_data_line TO itab_out.
        CLEAR v_data_line.
      ENDLOOP.
    ENDFORM.                    "beautify_itab

  • How to determine the type of an existing iView

    Hi,
    While creating an iView using wizard there is a big list of type of iViews. But after creation of iView, how do I determine the type of iView. Which attribute or property of iView holds this information?
    -Lave Kulshreshtha

    You can copy and paste the existing Iview changing the name and ID if u want to replicate the same.
    Also, when you create a new iView from a template, you get a list of them e.g SAP BSP iView etc.
    Now what you see in the code link is much similar to what you see as a list of templates when u create iViews. So its pretty simple.
    I hope this helped you.

  • How to determine Charge types in forwarding order ?

    Hi Experts,
    I am new to SAP TM, I am configuring the charge management.
    Please provide step by step configurations to determine charge types automatically in forwarding order ASAP.
    Thanks,
    Shakti

    Following SAP Notes to be referred for Service Tax:
    1.     778976 u2013 Service Tax and Ecess on Service Tax
    2.     1032265 - SEcess on Service Tax
    Regards
    AK

  • How ti find employee's manager name

    Hi All,
    I tried in SDN but i am not able to find suitable thread. Anybody can tell me which function module i should use to get employee's manager name.
    Thanks,
    Maheedhar

    Maybe this could be achieved by RH_STRUC_GET but you need to provide proper ACT_WEGID . The custom way however would be like this
    DATA lt_p1001 TYPE TABLE OF p1001.
        DATA lt_manager TYPE TABLE OF p1001.
        DATA l_pernr    TYPE persno.
        DATA l_objid    TYPE HROBJID.
        FIELD-SYMBOLS: <wa_p1001>   LIKE LINE OF lt_p1001,
                       <wa_manager> LIKE LINE OF lt_manager.
    "get manager of EE's org unit
        CALL FUNCTION 'RH_READ_INFTY_1001'
          EXPORTING
            plvar            = '01'
            otype            = 'O'
            objid            = "EE org unit here
            begda            = sy-datum
            endda            = sy-datum
            subty            = 'B012'   "is managed by
          TABLES
            i1001            = lt_p1001
          EXCEPTIONS
            nothing_found    = 1
            wrong_condition  = 2
            wrong_parameters = 3
            OTHERS           = 4.
        LOOP AT lt_p1001 ASSIGNING <wa_p1001>
                         WHERE sclas = 'S'.  "position
          l_objid = <wa_p1001>-sobid.
    "get person for this position
          CALL FUNCTION 'RH_READ_INFTY_1001'
            EXPORTING
              plvar            = '01'
              otype            = 'S'
              objid            = l_objid
              begda            = sy-datum
              endda            = sy-datum
              subty            = 'A008'   "holds
            TABLES
              i1001            = lt_manager
            EXCEPTIONS
              nothing_found    = 1
              wrong_condition  = 2
              wrong_parameters = 3
              OTHERS           = 4.
          LOOP AT lt_manager ASSIGNING <wa_manager> WHERE sclas = 'P'.
            l_pernr = <wa_manager>-sobid.       
            EXIT.
          ENDLOOP.
        ENDLOOP.
    Manager -> l_pernr
    Manager name -> get from IT0002 for l_pernr
    Regards
    Marcin
    Juest checked FM HRCM_ORGUNIT_MANAGER_GET which is working too. On input you can either provide EE's position or org unit.
    Edited by: Marcin Pciak on Oct 28, 2010 9:12 AM

  • FM to determine employee's Manager using Employee partner number 4m OrgUNIT

    Hello All,
    my requirement is, i have Employee responsible information with me like parnternumber and user name, now i want to determine who is his manager at  Organisation Unit level.i need manager's partner number from Org unit.
    I did following to achieve the same, but i could reach upto knowing the manager position but not the BP assigned to that position.
    report 1.
    *1. get Employee's position
    data: objektid type objektid.
    call function 'BBPU_GET_ORGSTRUCTURE_OF_USER'
    exporting
       username                = sy-uname
    importing
       position_id             = objektid
    exceptions
       no_org_data_found       = 1
       others                  = 2
    *2.find leading position            (pass Employee position)
    *RH_GET_LEADING_POSITION            (get leading position)
    data: hrobject type table of hrobject,
          wa_hrobject type hrobject,
          sobid type hrsobid-sobid.
    move objektid to sobid.
    call function 'RH_GET_LEADING_POSITION'
      exporting
        plvar                   = '01'
        otype                   = 'S'
        sobid                   = sobid
      tables
        leading_pos             = hrobject
    exceptions
       no_lead_pos_found       = 1
       others                  = 2
    *3. get the manager number           (pass leading position)
    *RH_READ_INFTY_1001                 (get manager number)
    *data:   lt_itab1001   type table of p1001.
    *call function 'RH_READ_INFTY_1001'
    exporting
       authority        = ' '
       with_stru_auth   = ' '
       subty            = 'A008'
       begda            = sy-datum
       endda            = sy-datum
    tables
       i1001            = lt_itab1001
       objects          = hrobject
    exceptions
       nothing_found    = 1
       wrong_condition  = 2
       wrong_parameters = 3
       others           = 4.
    *if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *endif.
    read table hrobject into wa_hrobject index 1.
    DATA lt_result_tab TYPE TABLE OF swhactor.
    CALL FUNCTION 'RH_STRUC_GET'
               EXPORTING
                    act_otype      = wa_hrobject-otype
                    act_objid      = wa_hrobject-objid
                    act_wegid      = 'SAP_TAGT'
               TABLES
                    result_tab     = lt_result_tab[]
               EXCEPTIONS
                    no_plvar_found = 01
                    no_entry_found = 02
                    OTHERS         = 99.
    write 'hi'.
    ======================
    I tried using FMs 'RH_READ_INFTY_1001 and 'RH_STRUC_GET'
    both are retrieving some unrelated data which i dont understand like
    1     CP     00305880
    I dont understand what is 00305880,manager's partner number is 50145725
    please help me how do i get manager partner number using his position, is there any FM or table to get this?
    Thanks
    seema

    Hi All,
    I got the solution
    report 1.
    data: objektid type objektid.
    call function 'BBPU_GET_ORGSTRUCTURE_OF_USER'
    exporting
       username                = sy-uname
    importing
       position_id             = objektid
    exceptions
       no_org_data_found       = 1
       others                  = 2
    if sy-subrc <> 0.
    endif.
    data: hrobject type table of hrobject,
          wa_hrobject type hrobject,
          sobid type hrsobid-sobid.
    move objektid to sobid.
    call function 'RH_GET_LEADING_POSITION'
      exporting
        plvar                   = '01'
        otype                   = 'S'
        sobid                   = sobid
      tables
        leading_pos             = hrobject
    exceptions
       no_lead_pos_found       = 1
       others                  = 2
    if sy-subrc <> 0.
    endif.
    data:   lt_itab1001   type table of p1001,
            wa_p1001 type p1001.
    CALL FUNCTION 'RH_READ_INFTY_1001'
      EXPORTING
        authority              = 'DISP'
        with_stru_auth         = 'X'
        plvar                  = '01'
        OTYPE                  = wa_hrobject-otype
        OBJID                  = wa_hrobject-objid
        istat                  = ' '
        extend                 = 'X'
        subty                  = 'A008'
        begda                  = sy-datum
        endda                  = sy-datum
        condition              = '00000'
        sort                   = 'X'
        with_ev                = ' '
        adata                  = 'X'
        auth_sobid             = ' '
      TABLES
        i1001                  = lt_itab1001
      EXCEPTIONS
        nothing_found          = 1
        wrong_condition        = 2
        wrong_parameters       = 3
        OTHERS                 = 4.
    read table lt_itab1001 into wa_p1001 index 1.
    clear: wa_p1001-otype, wa_p1001-objid.
    move wa_p1001-SCLAS to wa_p1001-otype.
    condense wa_p1001-SOBID.
    move wa_p1001-SOBID to wa_p1001-objid.
    clear lt_itab1001[].
    CALL FUNCTION 'RH_READ_INFTY_1001'
      EXPORTING
        authority              = 'DISP'
        with_stru_auth         = 'X'
        plvar                  = '01'
        OTYPE                  = wa_p1001-otype
        OBJID                  = wa_p1001-objid
        istat                  = ' '
        extend                 = 'X'
        subty                  = 'B207'
        begda                  = sy-datum
        endda                  = sy-datum
        condition              = '00000'
        sort                   = 'X'
        with_ev                = ' '
        adata                  = 'X'
        auth_sobid             = ' '
      TABLES
        i1001                  = lt_itab1001
       objects                = hrobject
      EXCEPTIONS
        nothing_found          = 1
        wrong_condition        = 2
        wrong_parameters       = 3
        OTHERS                 = 4.
    write 'hi'.

  • T410 how to determine graphics type

    I need a new fan for my T410 (2516-CTO), however there are two types - integrated graphics and discrete graphics.
    How do I determine which version I have without disassembly?
    Solved!
    Go to Solution.

    Easiest is to look at device manager.
    T520 Model 4239 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz
    Intel Sandy Bridge & Nvidia NVS 4200M graphics Intel N 6300 Wi-Fi adapter
    Windows 7 Home Prem - 64bit w/8GB DDR3

  • How to determine data type of cell in Excel file

    I have a company standard Excel file that needs to be read to determine what tests to run.  I have no control over its format.  I need to be able to tell what the data type is in order to read it using the LabView sample code.  It is a hodge poge of numbers and strings.  Some of the numeric fields are formated as hex while some are floating point.  There does not appear to be a vi that I can call to determine info about the cell formating.  As I remember it, the Windows Active X control for accessing Excel support that.  I really was hoping to avoid dealing with the Active X control for Excel directly.
    Any help/ideas?
    Outputting it in CSV or similar is not an option.
    Solved!
    Go to Solution.

    If you have to deal with Excel directly, I don't see how you're going to get around using Active X.
    MSDN page on using ActiveX

  • Financial Analytics How to determine dimension types

    How can we determine what ypes of dimensions are built by Oracle as part of OBIA? I am interested in understanding the dimension types (Type I, Type II and which one is slowly changing dimension and what columns are used for dates to maintain history in these dimension tables) for all out of box supplied dimensions.
    Any pointers on this is highly appreciated.
    Thanks in advance
    Kris
    Edited by: user566193 on May 14, 2011 10:59 PM

    Easiest way to check what are enables as SCD Type 2 are those that have a "SCDUpdate" mapping associates with them. To check exactly which fields are enabled for Type 2 Changes..you will have to dig into the SIL Mappings. Here is an excerpt from the BI Apps guide that explains this:
    The logic that tracks Category 2 changes is contained in exposed objects in each SIL dimension mapping that supports Category 2 changes.
    There is a lookup between the Source Qualifier and the Filter. This lookup is used to determine if the record already exists in the target and, therefore, needs to be updated in addition to other system columns. Columns that track Category 2 changes are returned in this lookup and passed to the next expression. The columns returned by the lookup are compared with the columns passed from the staging table. If any of these columns are different, the record is flagged for a Category 2 change.
    This expression contains a variable port named 'TYPE2_COLS_DIFF'. If this port is flagged as 'Y' then a Category 2 change will be triggered. If it is flagged as 'N' then a Category 1 change will be triggered.
    To change the columns used to determine a Category 2 change, modify the lookup to pass any additional columns you want to be evaluated for Category 2 changes. Then, modify the variable port 'TYPE2_COLS_DIFF' to include this column when being evaluated.
    hope this helps...

  • How do determine data type?

     I am trying to write my own binary file saver and I need to list the data type in the custom header. How do you do this in labview?

    kameronrausch wrote:
    The data acquistion spits out data in several different formats so a priori, I do not know the data type. It can be either a 32-unsigned int, 16-bit unsigned int, 8-bit unsigned int or the signed version of each one of these. To make the program general purpose however, I would like to incorporate floating point data points as well.
    At some point you have to know what the data type is before start collecting data. If all you have is a stream of bits there is no way to determine what the data type is. What controls how the data acquistion is getting its data? If it is test specific you could use an external configuration file to store this and use that to determine how the data should be interpreted. If you have arrays of specificdata types you could use a polymorphic VI for your data writes. Based on teh wire type of the input the appropriate VI would be called. How is your data being passed from your data acquistion to the VI that will write it to a file?
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • 9i - How to Determine If Oracle Management Server Has Been Configured ?

    hi all,
    I'm using 9.2 on a Windows 2000 server - but I'm new to this server and don't know what has been done in the past.
    I'm getting the VTK-1000 error when I try to connect in Oracle Management Server mode.
    To determine the problem, I need to know how I can determine whether the Oracle Management Server has been created/configured. Also, how can I know that the Repository has been created?
    This is what I've tried:
    -Tried logging in as sysman with a password of oem_temp
    - checked the Windows services - none exist as OracleManage... which causes me to think OMS was never configured
    But I dont want to destroy something that may already exist. That's why I want to confirm first.
    Sorry for the lame question - I'm new to Oracle.
    Thanks, John

    Well, then you don't have the SYSMAN password. Here you have two options, the first one, is to try to recover that repository or the second option, to get rid of this repository and create a brand new one.
    If you are willing to use the existing repository, then you will have to reset sysman's password, the procedure to perform this task is as follows:
    Connect by means of SQLPlus to the repository, you should open a session with the OEM repository database owner. In case you don't have this password (most probably) you will have to temporarily reset this password, as outlined on the bottom procedure.
    Open a session to the database as the OEM repoistory owner, let's say OEM_REP or whatever is the actual repository.
    sqlplus <OEMRepositoryOwner>/<OEMRepositoryOwnerPassword>@<OEMRepository>
    At the SQL prompt issue the command:
    execute smp_maintenance.reset_sysman();
    Your sysman password will be reset to OEM_TEMP, then you can enter if the repository is up and running, and you can issue commands to check status and shutdown it.
    Temporarily resetting a db user password:
    1. Connect to the database as sysdba:
    sqlplus / as sysdba
    2. At the sqlplus prompt query the dba_users table to get the password:
    select username, password from dba_users where username='<OEMRepositoryOwner>';
    Copy the current password in a safe place.
    3. Set a new password, let's say 'X'.
    Alter user <OEMRepositoryOwner> identified by X;
    4. Once you are done with the previous reset sysman procedure, then you can restore the user password:
    alter user <OEMRepositoryOwner> identified by values '<PreviouslyEncodedSavedPassword>';
    Then you are done.
    ~ Madrid
    http://hrivera99.blogspot.com/
    .

  • How to determine mime type of multi-part message uploaded to rest api?

    I have a rest api that is used to upload data from different types of clients and serves as a proxy to write data to Azure blob storage. For testing, I'm using Fiddler on a PC.
    The code in my rest api that writes to blob storage looks like this:
    try
    await blockBlob.UploadFromStreamAsync(requestMessage.Content.ReadAsStreamAsync().Result);
    catch (Exception ex)
    HttpResponseMessage _hrm = new HttpResponseMessage(HttpStatusCode.InternalServerError);
    _hrm.ReasonPhrase = ex.Message;
    throw new HttpResponseException(_hrm);
    1 - How can I access the form-data that is included in the POST that has the original file name and the content-tyipe?
    2 - How can this info be passed to the blob when I write it out?  Currently, it is written out as a type of application/octet-stream instead of video/mp4.

    I think I found a solution using some other threads.  I'm not sure if it's the most performant or best but I'm able to get to the content-disposition and the content-type of the stream to get the details:
    Dictionary<string, string> lstLines = new Dictionary<string, string>();
    string[] _tmp;
    TextReader textReader = new StreamReader(requestMessage.Content.ReadAsStreamAsync().Result);
    string sLine = textReader.ReadLine();
    Regex regex = new Regex("(^content-type)|(^content-disposition)", RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.Singleline);
    while (sLine != ""
    && sLine != null)
    if (regex.Match(sLine).Success)
    _tmp = sLine.Split(':');
    lstLines.Add(_tmp[0], _tmp[1]);
    sLine = textReader.ReadLine();

  • How to determine the types of interactive form fields

    Hello:
    I have written a utility that traverses through the objects in a PDF file, and finds the ones of Type "Annot", Subtype "Widget". I need to go one step down the hierarchy and determine which kind of widget (text, radio button, check mark, press button) is the one under scrutiny.
    I have looked at the innards of PDF files, and found that the widgets of type "text" are internally identified by the FT=Tx dictionary entry. So far, so good.
    Here is where the beauty and consistency stops. It turns out that all the other (non-text) types are ambiguously identified by FT=Btn dictionary entry.
    So: Every field which is not text, is a button.
    Where should I look?
    TIA,
    -RFH

    Digging a little deeper, I found that the 4 types of fields (as generated by default) have different keys, as follows:
    Text: [F, FT, MK, P, Rect, Subtype, T, Type]
    Check Box: [AP, AS, F, FT, MK, P, Rect, Subtype, T, Type]
    Radio Button: [AP, AS, BS, F, FT, Ff, MK, P, Rect, Subtype, T, Type]
    Button: [AP, DA, F, FT, Ff, MK, P, Rect, Subtype, T, Type]
    Is that the correct approach to determine the kind of fields, by querying for the keys, which somehow instantiate a fingerprint?
    TIA,
    -RFH

Maybe you are looking for

  • How do I install musical fonts?

    I need to have musical fonts show up in "Special Characters". Specifically for chord charts I'm preparing in ireal b, but would like to have them available in any program (text, pages). Macrumours forum says if I have a program like Logic (which I do

  • Is there an easy way to program a PIC16F77 via LabVIEW 7.1 and a DAQ?

    I am a student working on a senior design project that requires us to program a PIC16F77.  I have no experience with PIC programming, and was hoping for an easy way to do this in LabVIEW.  If anyone has done this before I would appreciate a few point

  • Will a Yamaha p-85 work with thelessons in garageband?

    Im looking at getting a Yahama P85 digital piano and was wondering since it only has midi if I used a midi to usb I could use it for the learn how to play lessons in GarageBand.

  • How can i recover skype account without hotmail co...

    Hi, i wanted to ask about my skype account.I guess before 5-6 years ago i have opened hotmail account called " [Mod edit: Please do not include personal/private information when making a public post. Thanks!] ". So this account doesnt exist anymore c

  • Serial number you provided is valid, but a qualifying could not be found on this computer

    I want to install Encore from the Adobe CS6 Production Premium that I own but when I enter my password, it says "Serial number you provided is valid, but a qualifying could not be found on this computer". Another user had this problem but it was reso