How to add a new property security question in atg profile?

Hi All,
I want to add a new field in registration.jsp named as Security Questions; it has 3 questions and it should be ordered and cannot contain duplicate values.
For this I have created
1) a customUserProfile.xml under /MyModule/config/atg/userprofiling/customUserProfile.xml with the following content-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE gsa-template PUBLIC "-//Art Technology Group, Inc.//DTD General SQL Adapter//EN"
        "http://www.atg.com/dtds/gsa/gsa_1.0.dtd">
<gsa-template>
    <header>
        <name>Registration</name>
        <author></author>
    </header>
    <item-descriptor name="securityquestions">
  <table name="security_questions" id-column-names="securequestions_id">
    <property name="securityquestions" data-type="enumerated">
    <attribute name="useCodeForValue" value="false"/>
      <option value="what is your birth place" code="0"/>
  <option value="what is your favourite colour" code="1"/>
  <option value="what is your pet name" code="2"/>
    </property>
  </table>
</item-descriptor>   
2) a definition file under named as /MyModule/config/atg/userprofiling/customUserProfile.properties-
$class=atg.adapter.gsa.GSARepository
$scope=global
repositoryName=customUserProfile
# database access- for making repositry as versioned, use SwitchingDataSource else use JTDataSource
dataSource=/atg/dynamo/service/jdbc/SwitchingDataSource
transactionManager=/atg/dynamo/transaction/TransactionManager
# our XML definitionFile
definitionFiles=/atg/userprofiling/customUserProfile.xml
# XML parsing
XMLToolsFactory=/atg/dynamo/service/xml/XMLToolsFactory
# id generation
idGenerator=/atg/dynamo/service/IdGenerator
</gsa-template>
3) a droplet names as /MyModule/src/com/pa/SecurityQuestionLogin.java
4) a registration jsp with the following code snippet for security questions-
<dsp:droplet name="SecurityQuestionLogin">
<dsp:select bean="SecurityQuestionLogin.securityQuestions">
    <dsp:droplet name="PossibleValues">
      <dsp:param name="itemDescriptorName" value="securityquestions"/>
      <dsp:param name="propertyName" value="type"/>
      <dsp:oparam name="output">
        <dsp:droplet name="ForEach">
          <dsp:param name="array" param="values"/>
          <dsp:oparam name="output">
            <dsp:option param="element"/>
            <dsp:valueof param="element"/>
          </dsp:oparam>
        </dsp:droplet>
But I don't know what logic can I implement in java class for this requirement.
Is the above structure is right for this purpose,please help!
Regards,
Vikas

Hi Nitin,
extend ATG userProfile.xml and add properties there in user item-descriptor
I created userProfile.xml under C:\ATG\ATG10.0.3\MyModule\config\atg\userprofiling with following contents-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE gsa-template
        PUBLIC "-//Art Technology Group, Inc.//DTD General SQL Adapter//EN"
        "http://www.atg.com/dtds/gsa/gsa_1.0.dtd">
<gsa-template>
  <item-descriptor name="user" cache-mode="simple" xml-combine="append">
<table name="security_questions" type="auxiliary" id-column-name="securequestions_id">
<property name="securityquestions" column-name="securityquestions" data-type="enumerated">
<attribute name="useCodeForValue" value="false"/>
      <option value="what is your birth place" code="0"/>
  <option value="what is your favourite colour" code="1"/>
  <option value="what is your pet name" code="2"/>
  </property>
</table>
</item-descriptor>
</gsa-template>
and created userProfile.properties file with following content-
$class=atg.adapter.gsa.GSARepository
$scope=global
repositoryName=userProfile
# database access- for making repositry as versioned, use SwitchingDataSource else use JTDataSource
dataSource=/atg/dynamo/service/jdbc/SwitchingDataSource
transactionManager=/atg/dynamo/transaction/TransactionManager
# our XML definitionFile
definitionFiles=/atg/userprofiling/userProfile.xml
# XML parsing
XMLToolsFactory=/atg/dynamo/service/xml/XMLToolsFactory
# id generation
idGenerator=/atg/dynamo/service/IdGenerator
and change the jsp code as-
<dsp:select bean="/atg/userProfiling/Profile.securityQuestions">
    <dsp:droplet name="PossibleValues">
      <dsp:param name="itemDescriptorName" value="securityquestions"/>
      <dsp:param name="propertyName" value="type"/>
      <dsp:oparam name="output">
        <dsp:droplet name="ForEach">
          <dsp:param name="array" param="values"/>
          <dsp:oparam name="output">
            <dsp:option param="element"/>
            <dsp:valueof param="element"/>
          </dsp:oparam>
        </dsp:droplet>
      </dsp:oparam>
    </dsp:droplet>
  </dsp:select>
  </dsp:droplet>
Have I done right?
And what else I need to do,should I run the startsqlrepository script to create the table structure for this property?
Thanks & Regards,
Vikas

Similar Messages

  • How do I get new apple security questions?

    I need to reset or get new security questions.

    If you do not have a rescue email address (different from alternate email address) set up on the account, you will need to contact iTunes Support online:
    http://apple.com/emea/support/itunes/contact.html (select Account Security as your help topic)
    or by phone: Apple Support Numbers
    If you do have rescue email address set up:
    Go to http://appleid.apple.com. Underneath where it says “Already have an Apple ID?," click Manage your Account. You will then need to sign in. If you forgot your Apple ID or password, click on the appropriate "Forgot..." link below either of these fields.
    After you sign in, click on "Passwords and Security" on the left.
    You will be asked to answer the security questions, but you should also notice a link below the second "Answer" field offering to send reset instructions to your rescue email address that you provided.
    Check the Inbox of your rescue email address. The email should appear within a minute or two. If it does not, be sure to check Spam. If it is not there either, you can repeat the above process to resend. Once you get the email, following the link will take you to a page where you must sign in again. After doing so, you will have the option to choose three new security questions and answers, which you may want to write down
    After you fill in the required information and continue, you should be taken to a confirmation screen stating "Your password and security information has been saved," and then you are done.
    The "Forgot your answers?" link will not appear if you do not have a rescue email address set up.

  • How to add entire new row at the top of table in pdf report from c# windows forms using iTextSharp

    Hi for past 3 days i was thinking and breaking my head on how to add entire new at top table created in pdf report from c# windows forms with iTextSharp.
    First: I was able to create/export sql server data in form of table in pdf report from c# windows forms. Given below is the code in c#.
    using System;
    using System.Collections.Generic;
    using System.Configuration;
    using System.Text;
    using System.Data;
    using System.IO;
    using System.Data.SqlClient;
    using System.Windows.Forms;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    namespace DRRS_CSharp
    public partial class frmPDFTechnician : Form
    public frmPDFTechnician()
    InitializeComponent();
    private void btnExport_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer= PdfWriter.GetInstance(doc, new FileStream("Technician22.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(7);
    table.TotalWidth=585f;
    table.LockedWidth = true;
    PdfPTable inner = new PdfPTable(1);
    inner.WidthPercentage = 115;
    PdfPCell celt=new PdfPCell(new Phrase(new Paragraph("Institute/Hospital:AIIMS,NEW DELHI",FontFactory.GetFont("Arial",14,iTextSharp.text.Font.BOLD,BaseColor.BLACK))));
    inner.AddCell(celt);
    Paragraph para = new Paragraph("DCS Clinical Report-Technician wise", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK));
    para.Alignment = iTextSharp.text.Element.TITLE;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(95f, 95f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn=new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select t.technician_id,td.Technician_first_name,td.Technician_middle_name,td.Technician_last_name,t.technician_dob,t.technician_sex,td.technician_type from Techniciandetail td,Technician t where td.technician_id=t.technician_id and td.status=1", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("ID");
    table.AddCell("First Name");
    table.AddCell("Middle Name");
    table.AddCell("Last Name");
    table.AddCell("DOB" );
    table.AddCell("Gender");
    table.AddCell("Designation");
    while (dr.Read())
    table.AddCell(dr[0].ToString());
    table.AddCell(dr[1].ToString());
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString());
    table.AddCell(dr[4].ToString());
    table.AddCell(dr[5].ToString());
    table.AddCell(dr[6].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(inner);
    doc.Add(table);
    doc.Close();
    The code executes well with no problem and get all datas from tables into table in PDF report from c# windows forms.
    But here is my problem how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    As the problem i am facing is my title or Header(DCS Clinical Report-Technician wise) is at top of my image named:logo5.png and not coming to it's center position of my image.
    Second the problem i am facing is how to add new entire row to top of existing table in pdf report from c# windows form using iTextSharp?.
    given in below is the row and it's data . So how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    as you can see how i create my columns in table in pdf report and populate it with sql server data. Given the code below:
    Document doc = new Document(PageSize.A4.Rotate());
    var writer= PdfWriter.GetInstance(doc, new FileStream("Technician22.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(7);
    table.TotalWidth=585f;
    table.LockedWidth = true;
    Paragraph para = new Paragraph("DCS Clinical Report-Technician wise", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK));
    para.Alignment = iTextSharp.text.Element.TITLE;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(95f, 95f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn=new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select t.technician_id,td.Technician_first_name,td.Technician_middle_name,td.Technician_last_name,t.technician_dob,t.technician_sex,td.technician_type from Techniciandetail td,Technician t where td.technician_id=t.technician_id and td.status=1", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("ID");
    table.AddCell("First Name");
    table.AddCell("Middle Name");
    table.AddCell("Last Name");
    table.AddCell("DOB" );
    table.AddCell("Gender");
    table.AddCell("Designation");
    while (dr.Read())
    table.AddCell(dr[0].ToString());
    table.AddCell(dr[1].ToString());
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString());
    table.AddCell(dr[4].ToString());
    table.AddCell(dr[5].ToString());
    table.AddCell(dr[6].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    So my question is how to make my column headers in bold?
    So these are my questions.
    1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?
    I know that i have to do some modifications to my code but i dont know how to do it. Can anyone help me please.
    Any help or guidance in solving this problem would be greatly appreciated.
    vishal

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SQL Server Distributed Partitioning Views how to add a new node online

    We are using distributed partitioning views in SQL Server 2012 Enterprise Edition for scaling out our data across more than one servers. Now we faced to question how to add a new node (server) into the scale outed db servers system without sending the servers
    down, so our users will be able to use them during the process as well.
    For example we have 4 servers with scaled out data. When we add the new empty server, the CHECKINGs for the partitioning columns should be reorganized. But during the process the partitioning views are not working.
    The High Availability, Always On or Failover Cluster approaches seem are not resolve the problems.
    So my question is how to add new node online?
    KH

    Thank you Erland for the reply.
    Yes, it's sounds as possible solution but has some not resolvable nuance in it. Let's say we copied some data from Node5 to new added Node6. Let's assume in Node5 we had data in Table1 with partitioning column's values 100,101,102,103,104,105,106.  Now
    we want to copy part of the rows with partitioning column's values 103,104,105,106 from Node5.Table1 into Node6.Table1. With this Node5 will contain less data and will work more quickly (less IO, less CPU usage etc), and the rest data will be contained on
    Node6. But because of Node5 is already in use, the Node5.Table1 contains CHECK CONSTRAINT = ParttionColumn should be from 100 up to 106. This is check for Node5. The Distributed Partitioning Views are already using the CHECKs to identify what server should
    be used to get data from.
    Now when we copied part of the Node5.Table1 rows to Node6.Table1 the views are still using the 103-106 rows from Node5.Table1 because the CHECK points there. Then we include the newest Node6.Table1 in the distributed partitioning views. OK, but we should
    set some CHECK on new Node6.Table1 which will be used by views. We can't set intersecting checking like Node5 has CHECK 100-106 and Node6 has CHECK 103-106. We also can't edit Node5 check and set it 100-102 untill the data will be removed in it. But this means
    that the data will not be available during the execution. 
    So, any ideas ?
    KH

  • How to add a new character set encoding?

    Hello,
    can anybody please explain to me, how to add a new character set encoding to Mac OS Tiger?
    I have two Mac laptops, a new one with Snow Leopard and an older one with Tiger, and on the old one i cannot use or enable anywhere the "Russian (DOS)" character set encoding, which i need to be able to use some old text files.
    On the Snow Leopard, this encoding is present in the list of available encodings of TextWrangler, but not in TIger.
    If i have understood correctly, this is not a problem of TextWrangler, and the same encodings are available systemwide.
    So, the question is: how to add new encodings to Tiger (or to Mac OS in general)?
    Thanks.

    I think possibly that's in the Get Info window of Finder?
    I don't think either that or the input menu have any effect on available encoding choices. Adding languages to system prefs/international/languages can do that, but once you have added Russian there, I don't know of any way to add an additional Russian encoding (there are quite a number of them).

  • Urgent - How to add a new control instead of tabs in JTabbedPane

    Hi,
    Please give me an idea or a sample program for how to add a new control
    in JTabbedpane instead of tabs that means overlay any Java controls or pane
    in the tabpane empty place next to tabs

    "Urgent" is not relevant to the question. Your question is no more important than anybody elses.
    My answer in this posting show a limited solution:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=636289
    Otherwise I suggest you try using a layered pane approach:
    http://java.sun.com/docs/books/tutorial/uiswing/components/layeredpane.html

  • How to add a new universe in population for Predictive Analysis

    Post Author: izhar
    CA Forum: Performance Management and Dashboards
    Hi all members I am working on BOXI R2, SP2 I have to ask that, How to add a new universe in population for "Predictive Analysis". Currently i can only view universe of "Direct Customers and Direct Products"
    Any member please help me hereRegards Izhar

    Hi Anne,
    It really depends on how your portal is set up. And there are 101 ways this could have been done.
    I've used the Home Page Framework as an easy to define and extend framework to show applications. I've used it both for ESS and MSS, Using the HPF requires that an application has an iView in the portal.
    The main point to be made here is that this is not a Web Dynpro ABAP specific question - but rather one about MSS portal implementation - you would probably be better posting a question in either one of the ESS/MSS or Portal forums.
    As it is not a WDA specific question, I'd ask that you kindly close this thread and reopen in another forum.
    Thanks for your understanding, it would be nice to be able to answer all questions in all forums (perhaps with some sort of tagging system) but currently forum rules are that questions must be specific to the forum posted.
    Thanks,
    Chris

  • How to add a new schedule line?

    Hi folks,
    Please help to tell me is there any user exit can be used for adding a new schedule line? I want to keep the old first date data, add new shedule line with new updated schedule line date. Pls. help to advise how to do it in VA01/VA02 ?
    If i simply use the following update statement in MV45AFZZ, then the first date will be updated by the new Schedule line date, which is not what i want. (Since new order always the First line "0001" will get updated)
    xvbep-edatu = t_temp-edatu .
           modify xvbep TRANSPORTING edatu "UPDKZ
                         where posnr = t_temp-posnr
                           and ETENR = '0002'.
            if SY-SUBRC <> 0.
               modify xvbep TRANSPORTING edatu "UPDKZ
                            where posnr = t_temp-posnr.
            endif.
    Tks,
    Jenny
    Message was edited by:
            Jenny Zhuang

    Hi Ferry,
    Many thanks for the reply. But i still have the question, seems the user exit 'USEREXIT_CHECK_VBEP' in 'MV45AFZB' is used for addtional checks on the schedule line, my questions is how to add a new schedule line? It maybe very difficult. so is it possible to change the configurable Sales order's Finish Date for it's production order, and force it to generate a new schedule line?
    Tks,
    Jenny

  • HT201303 How to find out my forgotton security questions answer

    How to find out my forgotton security questions answers

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
      1. Go to: Apple Express Lane;
      2. Under Product Categories choose iTunes;
      3. Then choose iTunes Store;
      4. Then choose Account Management;
      5. Now choose iTunes Store Security and answer the bullet questions, then click
          Continue;
      6. Sign in with your Apple ID and press Continue;
      7. Under Contact Options fill out the information and advise iTunes that you would
          like your security/challenge questions reset;
      8. Click Send/Continue.
    You should get a response within 24 hours by email.
    In the event you are unsuccessful then contact AppleCare - Contacting Apple for support and service.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
      a. on the device that is asking you for the security questions go to "settings", > "store" >
          tap the Apple ID and choose view"Apple ID" and sign in.
      b. Tap on payment information and add a credit/debit card of your preference then select
          "done", in the upper right corner
      c. sign out and back into iTunes on the device by going to "settings"> "store" > tap the
          Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you
          should be asked to verify your security code for the credit /debit card and NOT the
          security questions.
      d. At this time you can remove the card by going back in to edit the payment info and
          selecting "none" as the card type then saving the changes by selecting "done". You
          should now be able to use your iTunes store credit without answering the security
          questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

  • How to  add a new System status?

    Hi,
    I am working on the Bid invitation process. When we process the Bid submitted, we have 'approve' , 'reject' buttons which when clicked wil set the system status to 'I1014' & I1013' respectively.these r maintained in TJ02.
      I have added one more button called 'Interim approval' for the bid. I want to set a system status whn this button is clicked.
    My question is how to add a new system status to the  existing list?
    Plz help me in solving this...
    Thanks,
    Sivagami.R

    Hi Sivagami,
    Why you want to add a new system status,what is the business need.
    I will ask you to look a sdn thread on this issue
    Selection of approvers for Bid
    and standard workflow behavior on this process.
    http://help.sap.com/saphelp_srm30/helpdata/en/33/16533d6dd60610e10000000a114084/content.htm
    regards,nishant
    Please reward points if this helps.

  • Add a new Property Set

    Hi,
    My question is:
    I want add a new property set , so I create a new .usr file in workshop,
    then build a ear file and deploy .
    but i can't found this property set in adminportal, Why?
    If I do not use the ear file, under the workshop to deploy, all is ok.

    Hi,
    I used this code to autoformat my columns! Hope this was what you were looking for!
    Optimize width of columns --------------------------------------*
          DATA: column      TYPE ole2_object.
          CALL METHOD OF h_excel 'Columns' = column NO FLUSH.
          FREE OBJECT h_excel NO FLUSH.
          CALL METHOD OF column 'Autofit' NO FLUSH.
          FREE OBJECT column NO FLUSH.

  • How to add a new custome tabs in 11.5.10 to Home Page

    Hi All
    can any one tell me how to add a new custom tab(top level menu tab) along with an exsiting standard tabs in 11.5.10 home page.
    Thanks in Advance
    Vikram

    Query for your responsibility in Oracle Apps., and grab the Menu attached to it.
    Query for this menu in Oracle Apps, can view its sub-menus and page functions attached. You can also view the hierarchy tree.
    Now in this tree, position your new menu (that you want to create). Query to the parent menu (to which you want this new menu to be a child of) and create the new menu into it. Attach the page function/sub-menu to your new menu.
    For a better understanding, look into the section "Implementing the View" (Menus and Page Security part) of the Dev. Guide.

  • How to add a new password policy

    This must be simple, but appearantly nobady has conceeded:
    "how does one add a NEW password policy to the OID?"
    I need this functionality, because I want to enforce the following rules in my SSO application:
    - 99% of the users may have passwords that never expire
    - 1% (say 5 or 6) users must have passwords that do expire, because they are super users and we want to minimize the risk of their passwords getting in the wrong hands.
    I feel almost embarrased to post this question, but I really cannot find any example or documentation that shows me how to add a new password policy.
    Is their any way to do this in OID?

    Hi,
    Can you please provide exact steps those were used to create password policies for users.
    I opened a Tar with metalink on this , and they told me that this way is not supported by Oracle.
    So if you can please help me with this it will be great. See the details about the Tar as below:
    11-AUG-05 21:41:42 GMT
    QUESTION
    =========
    How to create or add a password policy for users in OID according to forum 833683 ?
    RESEARCH
    =========
    - Re: How to add a new password policy
    - Oracle Internet Directory Administrator’s Guide Release 9.2 Chapter 17 "Password Policies"
    ANSWER
    =======
    Oracle Technical Support does not support to create password policies for specific users. Orac
    le Internet Directory provides a Password Policy for each subscriber created (al
    so known as Realm) or for the entire DIT.
    eos (end of section)
    I talked with the customer and she agreed to close this TAR.
    Best Regards,
    Hector Viveros
    Oracle Identity Management
    @HCL
    .

  • How can I restore the 2 Security question for iTunes account

    How can I restore the 2 security questions at the iTunes account in case I forgot my original answers?

    Even though I have a credit card I manage my iTunes account use gift cards. I prefer to keep the credit card for emergency purposes only since it's too easy for me to get carried away with it and run up the balance.
    The problem here is in the Canadian iTunes Store you _can not_ use store credits for software or game purchase. According to this post - http://forums.ilounge.com/showthread.php?t=231967 - it is apparently against Canadian tax laws and commerce restrictions to purchase these with store credits or gift cards. Also as suggested in other posts here using PayPal to add credits to your iTunes account will not work since they are credits.
    I don't really understand the issue here. I pay cash for my store credits and I pay cash to pay off my credit card. My gift cards were probably bought with a credit card. This will restrict sales in Canada since I would guess the majority of iPod owners are too young to obtain a credit card.

  • HT201303 how do i reset my two security questions ive forgotten them.

    how do i reset my two security questions ive forgotten them.

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
      1. Go to: Apple Express Lane;
      2. Under Product Categories choose iTunes;
      3. Then choose iTunes Store;
      4. Then choose Account Management;
      5. Now choose iTunes Store Security and answer the bullet questions, then click
          Continue;
      6. Sign in with your Apple ID and press Continue;
      7. Under Contact Options fill out the information and advise iTunes that you would
          like your security/challenge questions reset;
      8. Click Send/Continue.
    You should get a response within 24 hours by email.
    In the event you are unsuccessful then contact AppleCare - Contacting Apple for support and service.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
      a. on the device that is asking you for the security questions go to "settings", > "store" >
          tap the Apple ID and choose view"Apple ID" and sign in.
      b. Tap on payment information and add a credit/debit card of your preference then select
          "done", in the upper right corner
      c. sign out and back into iTunes on the device by going to "settings"> "store" > tap the
          Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you
          should be asked to verify your security code for the credit /debit card and NOT the
          security questions.
      d. At this time you can remove the card by going back in to edit the payment info and
          selecting "none" as the card type then saving the changes by selecting "done". You
          should now be able to use your iTunes store credit without answering the security
          questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

Maybe you are looking for

  • Adobe Extension Manager CS6 update could not be applied

    I have been trying to update my Adobe Extension Manager in CS6 to version 6.0.6 and when I do I receive the error: "update could not be applied ". The only option then is the close. How can this problem be corrected? Note: I'm using Adobe Creative Su

  • MIRO Emptry rows for Material Costs in PO reference tab

    Hi I have done GR and Its Reversal against Purchase Order. Then, agai, I did the GR. During execution of MIRO for Invoice Verification, I can see one empty row before the each Material Costs in PO reference tab. why it is so? is there a way to suppre

  • Files appear to be unsupported or damaged

    when trying to import my photos in lightroom 2 I keep getting this message.  Some import opperations were not performed.  Files appear to be unsupported or damaged.  Items 1 -100 Item 101-176.  Please help!!!! Raw files shot with a  canon T1i. 

  • How do you create Marketing hierarchies in your company?

    Hello, What procedure you follow to create Marketing plans, elements and campaigns in your company? Is it not painful to create each element  manually with so many fields. And  this activity usually  is repeated every fiscal. Want to get ideas on the

  • [solved]gnutls: requires readline =6.0

    So I take it I can't update the 9 new packages on my system because it is requiring something from testing. [root@NAVI ~]# pacman -Syyu :: Synchronizing package databases... core 33.2K 231.9K/s 00:00:00 [----------------------------------------------