Get question id's and its corresponding answer id for given Doc id's

Hi,
I am trying to write a program which gets the  Equality values (Questionaire - Erecruiting) like :
1) Gender
2) Care Resp
3) Care Type
4) Ethnic Origin
5) Religion
6) Disability
7) Sexual Orientation
8) Age Range
And move it to an internal table which has each Equality as a field.
I referred to the following tables in order to get the question id's and its corresponding answer id's for questionaire.
1) hrp5141
2) hrp5125
3)T77RCF_INFDAT
And i tried to fetch the equality data using the class CL_HRRCF_QA_BL. This class returns the values from hrp5141. It also returns the object id, answer id and answer text. CL_HRRCF_QA_BL class also intern calls the function module HRHAP_DOCUMENT_GET_DETAIL, which gets the set of questions and its answers. But this question id's and answer's differ for document id's (QA_DOC_GUID).
Here the problem is the object id for Doc id's (QA_DOC_GUID) are differing.
Example 1: I have taken first QA_DOC_GUID - BF2C554821CFBFF180C5DKDINGKGNSKE as input to check its question and answer using CL_HRRCF_QA_BL class.
The question id is here I am assuming is 20366558 and the corresponding answer id is 20368559 for Gender.
Example 2: I randomly picked one more QA_DOC_GUID - BAS06AE4533374F1B3CF0018F346808A. The question id here is 50368915 and answer id is 50368918 for gender which is different from the first example.
I am not able to decide on other fields as the answers for it could be generic viz., YES, NOT, Prefer not to answer etc. Whereas Gender holds the value of either Male, Female or Prefer not to answer, Religion holds Religion name or Prefer not to answer value and similarly Age holds the age range or Prefer not to answer value.
Can anybody suggest on how to get the equalities values (the question id's and its corresponding answer id's).
Appreciate quick response.
Thanks in Advance.
Thanks and Regards,
Rashmi

Hello RichR,
To setup an iCloud account, you don't need an existing email address. Take a look at this article which contains more information about iCloud email:
iCloud: Mail overview
When you set up iCloud with a new Apple ID that doesn’t use an existing email address, your new Apple ID ends with @icloud.com and is the email address for your free iCloud Mail account. If your Apple ID doesn’t end with @icloud.com, @me.com, or @mac.com, you must set up an @icloud.com email address before you can use iCloud Mail. 
If you already use iCloud Mail with an @mac.com or @me.com email address, you also have an @icloud.com email address. You have an @icloud.com equivalent for every active @me.com or @mac.com email address or alias that you have as part of your account. 
After you set up your iCloud Mail account, you can sign in to icloud.com/#mail and start using iCloud Mail on the web right away. To use iCloud Mail on your devices, you must set it up on each device. For more information, see Set up iCloud Mail on your devices.
Thank you for contributing to Apple Support Communities.
Take Care,
BobbyD

Similar Messages

  • I have a question about Lightroom 5... I used it last night, I go to get on it today and its will not open. I have an error msg "Lightroom encountered an error when reading from its preview cache and needs to quit" Lightroom will attempt to fix the proble

    I have a question about Lightroom 5... I used it last night, I go to get on it today and its will not open. I have an error msg "Lightroom encountered an error when reading from its preview cache and needs to quit" Lightroom will attempt to fix the problem when reopened

    https://forums.adobe.com/message/6219922#6219922
    See if the issue in the thread above helps you to solve your problem.

  • Getting list of versions of an object and its corresponding TR

    *Hi experts,*
                      *My  requirement is to get the list of all versions and its corresponding TR of an object.*
                     *Do we have any function module for doing the same.???*
                     *Any pointers will be appreciated.*
    *Thanking You*

    goto version management.
    there all the versions are listed with the TRs.
    in theMENU bar, use this
    UTLITIES>VERSIONS>VERSION MANAGEMENT.
    this thread will help
    Version management

  • From which table check 'cost element' and its corresponding GL account?

    Hi,
    May i know from which could i check the cost element field and its corresponding GL account field??
    Questions:
    "the getting cost element should check the corresponding GL account, but I canu2019t find the
    corresponding table which include these two fields. So, if you know the table in which cost element can check the corresponding GL account, please tell me ."
    Is below way correct:
    From table CSKA, i could get the chart of accounts related with the cost elements.
    Then from table SKA1, i could get the GL account according to chart of accounts field.
    Then i got an relation between Cost element with GL account??
    Thanks!!

    Hi
    Could not locate the table, but could find that, if you come to transaction KA02, click on Environment - Display General Ledger account - In Chart of Account/ In Company Code option, then you can display the GL account for individual cost elements.
    regards
    Parag Bhargava

  • How to get selection screen elements and its table reference of a report ?

    halo experts
    How can I get selection screen elements and its table reference of a report ? . I tried rs_refresh_from_select_options. But I am unable to get the table and field it is referring to
    For eg if my selection screen 1000 is
    parameters: p_carrid type spfli-carrid,
    select-options :s-_connid type sflight-connid.
    is there any Fm or method which gives me what are the screen elements( p_carrid and s_connid ) and what table( splfi and sflight ) and field ( carrid and conid )it is referring to ?

    The following code is an example of how you might dynamically determine all your PARAMETERS and SELECT-OPTIONS variables at run time.  The PARAMETERS and SELECT-OPTIONS only point to a dictionary element--not a specific table.  Even though you may say "spfli-carrid" or "sflight-connid", the data type really references the dictionary type and not a specific table/structure.
    REPORT  ZTEST_PROG.
    TABLES sflight.
    DATA:
           screen_tab TYPE STANDARD TABLE OF screen,
           wa_screen TYPE screen,
           scrn_nm TYPE string,
           scrn_leftover TYPE string,
           l_type TYPE REF TO cl_abap_typedescr,
           typ_nm TYPE string,
           typ_pre TYPE string.
    FIELD-SYMBOLS <fs_data> TYPE ANY.
    PARAMETERS p_carrid TYPE spfli-carrid.
    SELECT-OPTIONS s_connid FOR sflight-connid.
    INITIALIZATION.
      LOOP AT SCREEN.
        IF screen-group3 = 'PAR'
          OR screen-group3 = 'LOW'.
            APPEND screen TO screen_tab.
        ENDIF.
      ENDLOOP.
    START-OF-SELECTION.
      LOOP AT screen_tab INTO wa_screen.
        ASSIGN (wa_screen-name) TO <fs_data>.
        l_type = cl_abap_typedescr=>describe_by_data( <fs_data> ).
        IF wa_screen-group3 = 'LOW'.
          SPLIT wa_screen-name AT '-' INTO scrn_nm scrn_leftover.
          TRANSLATE scrn_nm TO UPPER CASE.
        ELSE.
          scrn_nm = wa_screen-name.
        ENDIF.
        SPLIT l_type->absolute_name AT '=' INTO typ_pre typ_nm.
        WRITE:
                 / 'Screen Name:  ', scrn_nm,
                 / 'DDIC Type:    ', typ_nm.
      ENDLOOP.
    When you get into defining internal tables you can determine those at run time with cl_abap_structdescr.  The following is an example of how you might do that.  You can loop through the "components_table" and evaluate each field of the structure in this way.
    DATA: structure_reference TYPE REF TO cl_abap_structdescr,
          components_table TYPE abap_compdescr_tab,
          components_structure LIKE LINE OF components_table.
    structure_reference ?= cl_abap_structdescr=>describe_by_data( any_structure ).
    components_table = structure_reference->components.
    I don't know if this answers any of your questions but I hope that some of it is useful.

  • I also have a .csv file with the name of a jpeg in one column and a text description of each jpeg in a second column. Is there a way to automatically insert one jpeg (photo) and its corresponding text, each pair on one page, into a Indesign document?

    I also have a .csv file with the name of a jpeg in one column and a text description of each jpeg in a second column. Is there a way to automatically insert one jpeg (photo) and its corresponding text, each pair on one page, into a Indesign document?

    I would also recommend to write the description into the meta data. This would allow to place a text frame above the image and it is possible to add meta information and file name automatically together with the image, when you place it or even in a prepared template.
    Meta data information can be written easily in Bridge in the Meta File Workspace.

  • I want to get increment only amount and its percentage of increment from HR

    Dear Sir,
    I want to get increment only amount and its percentage of increment can you plz help me how to get it
    please find below mentioned query.
    Regards
    select
    papf.employee_number as employee_number,
    papf.last_name as last_name,
    papf.middle_names as middle_name,
    papf.first_name as first_name,
    papf.known_as as preferred_name,
    ppt.user_person_type as employment_type,
    ppp.change_date as change_effective_date,
    cur.currency_code as currency,
    ppp.proposed_salary_n * per_saladmin_utility.get_annualization_factor(paaf.assignment_id , to_date(sysdate)) as current_salary_annual,ppp.proposed_salary_n,
    per_saladmin_utility.get_previous_salary(paaf.assignment_id,ppp.PAY_PROPOSAL_ID) PREVIOUS_SAL,
    ppp.proposal_reason as sal_proposla_resaon,
    ppp.attribute2 as performance,
    ppp.attribute3 as gandac,
    ppp.attribute4 as NINEBOXPOSITION,
    ppp.attribute1 as RPR
    from
    per_all_people_f papf,
    per_all_assignments_f paaf,
    per_pay_proposals ppp,
    per_pay_bases ppb ,
    pay_input_values_f piv,
    pay_element_types_f pet,
    fnd_currencies_tl cur,
    per_person_type_usages_f pptu,
    per_person_types ppt
    where 1=1
    and papf.employee_number in (127)
    --and ppp.change_date >= ’01-Jan-2005?
    and papf.current_employee_flag = 'Y'
    and sysdate between papf.effective_start_date and papf.effective_end_date
    and papf.person_id = paaf.person_id
    and sysdate between paaf.effective_start_date and paaf.effective_end_date
    and paaf.assignment_id = ppp.assignment_id
    and paaf.pay_basis_id = ppb.pay_basis_id
    and ppb.input_value_id = piv.input_value_id
    and piv.element_type_id = pet.element_type_id
    and pet.input_currency_code = cur.currency_code
    and papf.person_id = pptu.person_id
    and pptu.person_type_id = ppt.person_type_id
    order by papf.employee_number, ppp.change_date desc
    Edited by: user10941925 on Jan 20, 2012 2:37 AM

    Maybe (taking it literally)
    select proposed_salary_n - PREVIOUS_SAL increment,
           100 * (proposed_salary_n / PREVIOUS_SAL - 1) increment_percentage
      from (select papf.employee_number as employee_number,
                   papf.last_name as last_name,
                   papf.middle_names as middle_name,
                   papf.first_name as first_name,
                   papf.known_as as preferred_name,
                   ppt.user_person_type as employment_type,
                   ppp.change_date as change_effective_date,
                   cur.currency_code as currency,
                   ppp.proposed_salary_n * per_saladmin_utility.get_annualization_factor(paaf.assignment_id,to_date(sysdate)) as current_salary_annual,
                   ppp.proposed_salary_n,
                   per_saladmin_utility.get_previous_salary(paaf.assignment_id,ppp.PAY_PROPOSAL_ID) PREVIOUS_SAL,
                   ppp.proposal_reason as sal_proposla_resaon,
                   ppp.attribute2 as performance,
                   ppp.attribute3 as gandac,
                   ppp.attribute4 as NINEBOXPOSITION,
                   ppp.attribute1 as RPR
              from per_all_people_f papf,
                   per_all_assignments_f paaf,
                   per_pay_proposals ppp,
                   per_pay_bases ppb,
                   pay_input_values_f piv,
                   pay_element_types_f pet,
                   fnd_currencies_tl cur,
                   per_person_type_usages_f pptu,
                   per_person_types ppt
             where 1=1
               and papf.employee_number in (127)
    --         and ppp.change_date >= ’01-Jan-2005?
               and papf.current_employee_flag = 'Y'
               and sysdate between papf.effective_start_date and papf.effective_end_date
               and papf.person_id = paaf.person_id
               and sysdate between paaf.effective_start_date and paaf.effective_end_date
               and paaf.assignment_id = ppp.assignment_id
               and paaf.pay_basis_id = ppb.pay_basis_id
               and ppb.input_value_id = piv.input_value_id
               and piv.element_type_id = pet.element_type_id
               and pet.input_currency_code = cur.currency_code
               and papf.person_id = pptu.person_id
               and pptu.person_type_id = ppt.person_type_id
             order by papf.employee_number,ppp.change_date desc
    order by employee_number,change_effective_date descRegards
    Etbin

  • I have installed adobe pdf to get a document sent to me thru my employer and i put my password in and its still asking me for a document password do i need to set one up

    I have installed adobe pdf and put in my password and its still asking me for a document password in which I have no idea what it is

    So you put your password in when you installed it?
    If that's the case, that was just your administrator password used to allow the install. It has nothing to do with the document.
    If the document is asking for a password, you'll need to get that from the person that added a password to the pdf.
    If neither of the above helps, please give us more info on what you are attempting to do and what is going wrong. LEtting us know your version of Adobe Reader may also be helpful.

  • SQL Query to get All AD Groups and its users in Active Directory

    Hi,
       Is there any query to get all AD groups and its user in an instance of a SQL server?

    Check this blog.
    http://www.mikefal.net/2011/04/18/monday-scripts-%E2%80%93-xp_logininfo/
    It will give you more than what is required. If you dont want the extra information,then you can try this.. I took the query and removed the bits that you might not require.
    declare @winlogins table
    (acct_name sysname,
    acct_type varchar(10),
    act_priv varchar(10),
    login_name sysname,
    perm_path sysname)
    declare @group sysname
    declare recscan cursor for
    select name from sys.server_principals
    where type = 'G' and name not like 'NT%'
    open recscan
    fetch next from recscan into @group
    while @@FETCH_STATUS = 0
    begin
    insert into @winlogins
    exec xp_logininfo @group,'members'
    fetch next from recscan into @group
    end
    close recscan
    deallocate recscan
    select
    u.name,
    u.type_desc,
    wl.login_name,
    wl.acct_type
    from sys.server_principals u
    inner join @winlogins wl on u.name = wl.perm_path
    where u.type = 'G'
    order by u.name,wl.login_name
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • How to get Portal Login User and Its Related BP in CRM?

    Hi,
    An ABAP Webdynpro program is called in CRM from Portal user by a portal link. How to get the user ID and its related BP in CRM? Thanks!
    The portal is integrated with ECC, and all users and BPs are maintained in ECC then replicated to CRM.
    Best regards,
    Hao

    Hi,
    Try the below code
    IUserFactory userfact=UMFactory.getUserFactory();
    IUser user=userfact.getUserByUniqueName(request.getUser().getUserId());
    String usrid=user.getUniqueName();
    And also you can get the groups assigned to user by using the below code
    Iterator groups = user.getParentGroups(true);
    while (groups.hasNext()) {
         String groupstr = (String) groups.next();
         IGroup g = UMFactory.getGroupFactory().getGroup(groupstr);
         response.write("Group name "g.getUniqueName()"<br>");
    Regards
    Suresh

  • I just purchased harry potter and the deathly hallows digital copy but i just synced my ipod and its not there. i went back to get the copy again and its sasy the cose can only be used once. I dont have the movie and now i cant get it at all.

    I just purchased harry potter and the deathly hallows digital copy but i just synced my ipod and its not there. i went back to get the copy again and its says the code can only be used once. I dont have the movie and now i cant get it at all. i paid for it when i bought the movie but now i dont own it at all. i feel cheated, somebody please help!

    Not Charge
    - See:      
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar 

  • FM to get OA/SA history and its value

    hi guys,
    is there any FM that can be used to get OA/SA history and its follow-on documents value ..pls advice

    Hi Huang,
         i had a similar requirement and unfortunately i wasnt able to get any solution on this(probably there isnt).
    how to get Position of cursor and its cell value in webdynpro alv
    My requirement was to pick up the value from the cell and do a multi paste to all lead selected records of the same column.
    Sadly, i had to do a workaround to achieve the solution.
    1) user needs to click on "Enter" key with cursor on the cell
    2) lead select all the records where multipaste is required
    3) then click on button "Paste" on application bar to paste the values to multiple cell.
    Let me know if you get anything on this (for my education).
    Regards,
    Tashi

  • I AM A CREATIVE CLOUD MEMBER FOR SOMETIME BUT NOW WHEN I LOGIN WITH THE CORRECT PASSWORD I STILL GET SIGNED OUT MESSAGE AND THEN WHEN TRIED THE SOLUTION GIVEN BY HELP THAT IS TO DELETE OPM.DB FILE OR SECOND SOLUTION INSTALL A FRESH CREATIVE CLOUD FOR DESK

    I AM A CREATIVE CLOUD MEMBER FOR SOMETIME BUT NOW WHEN I LOGIN WITH THE CORRECT PASSWORD I STILL GET SIGNED OUT MESSAGE AND THEN WHEN TRIED THE SOLUTION GIVEN BY HELP THAT IS TO DELETE OPM.DB FILE OR SECOND SOLUTION INSTALL A FRESH CREATIVE CLOUD FOR DESKTOP APP OR EVEN SOLUTION OF RUN OF IMSLIBREPLACER  IM STIILL NOT ABLE TO LOGIN TO MY CREATIVE CLOUD FOR DEKTOP APP . PLEASE HELP ME AS I NEED TO GET IN AND EXPLORE MORE OF MY DOWNLOADED S/W
    I HAVE TRIED ALL POSSIBLE SOLUTION BUT AM AMAZED HOW THIS IS HAPPENING TO ME.
    PLEASE PLEASE HELP ME .Creative Cloud Connection

    Hi Alfred,
    I would like to know the exact error message when you sign in, in the meanwhile please try the following steps assuming its Windows, let me know if its a MAC:
    1) Go to Start button>> Control panel>> Uninstall a program.
    2) Check if you see Browser safeguard there, if yes then uninstall it.
    3) Open Internet explorer>> Tools>> Internet options>> Connections>> Lan Settings>> and it should be like this.
    -Ankit

  • My apps wont update! App store says I have 20 updates, when I click update all, they all go in to "Waiting" mode and its been like that for 24 hours now with no sign of updating. Do I have to delete them all and reinstall ?

    I updated my iOS system 2 Days ago. App store says I have 20 updates, when I click update all, they all go in to "Waiting" mode and its been like that for 24 hours now with no sign of updating. Do I have to delete them all and reinstall ? any help much apreciated.

    Snafujafo wrote:
    Dear ED3K:
        First:  I hope you don't work for Apple as you have some poor communication skills in assistance. That said, I would never in a million years pay you 45 dollars to help me. I think I would sleep with Satan first!!
    No one here works for Apple. This is a user-to-user technical support forum. Everyone here is a volunteer. You tend to get from this forum what you bring to it. If you come in ranting and raving and saying you're going to throw your iPhone out the window and that Apple is mean, people are not likely to respond to you with sweetness and light and puppies and kittens.
    If you really want help, I'd suggest you take a deep breath and then start a new thread in which you explain the problems you're having, the steps you've taken to resolve the problems, any error messages you've gotten. Stick to the facts. Check the attitude and emotion at the door. People will do their best to help you.
    Best of luck.

  • I already purchase a game and kind a deleted it when i finished playing the whole game. Now my problem is i'm trying to download it again and its asking to pay for it again. What should i do?

    I already purchase a game and kind a deleted it when i finished playing the whole game. Now my problem is i'm trying to download it again and its asking to pay for it again. What should i do?

    I did that already i can download the game but it still asking me to pay for every level even thou i pay already for the whole thing.

Maybe you are looking for

  • Can you use time machine to back up an external hard drive?

    I haven't used Time Machine so far and setting it up now. Because my retina MBP has the limited hard drive size of 500GB, I'll be using a 2TB G-Tech hard drive as external hard drive. I'll be partitioning it, 500 GB for the MBP as a time machine back

  • Java ME Platform SDK - S60 Emulator Problem

    Hi Everyone! I am new to S60 development. I searched the forum, and some other discussion forums but could not find any solution to my problem (If there is one in this forum, sorry about that). I installed Java ME Platform SDK 3.0 Early Access. I als

  • I need to use a plug in for an internet program, but it will not open in Adobe

    Its for a poker website and it keeps saying its not found in Adobe

  • Service Type HTTPS

    Hi, We have configured AccAD for our Enterprise Portal 7.0, In this we are able to access the Portal using default Service Type "NW Portal 7.0 from SPS13" on HTTP-50000 Port from a single Application Server Instance. ( http://portal.xyz.com:50000/irj

  • DEP (virus) problem

    When I close iTunes, my Windows Vista gets really busy for a couple minutes.  Then I get "Data Execution Prevention shut down iTunes".  So, why is the computer having to shut program down after I click on close?  NOTE:  I just downloaded the app yest