Be our December TechNet SSIS Guru. Give the gift of code!

It's that time of the year again!
It's Giving time!
A time to think of those less awesome than you.
A time to give something back to the community.
Think of those happy faces you will make, as they open that article!
Remember, "A TechNet Wiki article is not just for Christmas, it's for eternity"!!!
A TechNet article is the gift that keeps on giving!
If you have some spare over this upcoming festive month, please give the gift of code.
So please wrap up some code with plenty of explanation and pop it under our TechNet tree!
All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white
paper, or just something you had to solve for your own day's work today.
Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!
This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!
HOW TO WIN
1) Please copy over your Microsoft technical solutions and revelations to
TechNet Wiki.
2) Add a link to it on
THIS WIKI COMPETITION PAGE (so we know you've contributed)
3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.
If you win, we will sing your praises in blogs and forums, similar to the
weekly contributor awards. Once "on our radar" and making your mark, you will probably be
interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!
Winning this award in your favoured technology will help us learn the active members in each community.
Feel free to ask any questions below.
More about TechNet Guru Awards
Thanks in advance!
Pete Laker
#PEJL
Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to the one and only
TechNet Wiki, for future generations to benefit from! You'll never get archived again!
If you are a member of any user groups, please make sure you list them in the
Microsoft User Groups Portal. Microsoft are trying to help promote your groups, and collating them here is the first step.

I have added an SSIS WIKI, but the code format is removed when saving the WIKI (IE11), which makes it unreadable.
http://social.technet.microsoft.com/wiki/contents/articles/21978.execute-ssis-2012-package-with-parameters-via-net.aspx
C# code
// Connection to the database server where the packages are located
SqlConnection ssisConnection = new SqlConnection(@"Data Source=.\SQL2012;Initial Catalog=master;Integrated Security=SSPI;");
// SSIS server object with connection
IntegrationServices ssisServer = new IntegrationServices(ssisConnection);
// The reference to the package which you want to execute
PackageInfo ssisPackage = ssisServer.Catalogs["SSISDB"].Folders["SSISJOOST"].Projects["MyProject"].Packages["MyPackage.dtsx"];
// Add a parameter collection for 'system' paramers (ObjectType = 50), package parameters (ObjectType = 30) and project parameters (ObjectType = 20)
Collection<PackageInfo.ExecutionValueParameterSet> executionParameter = new Collection<PackageInfo.ExecutionValueParameterSet>();
// Add execution parameter (value) to override the default asynchronized execution. If you leave this out the package is executed asynchronized
executionParameter.Add(new PackageInfo.ExecutionValueParameterSet { ObjectType = 50, ParameterName = "SYNCHRONIZED", ParameterValue = 1 });
// Add execution parameter (value) to override the default logging level (0=None, 1=Basic, 2=Performance, 3=Verbose)
executionParameter.Add(new PackageInfo.ExecutionValueParameterSet { ObjectType = 50, ParameterName = "LOGGING_LEVEL", ParameterValue = 3 });
// Add a project parameter (value) to fill a project parameter
executionParameter.Add(new PackageInfo.ExecutionValueParameterSet { ObjectType = 20, ParameterName = "MyProjectParameter", ParameterValue = "some value" });
// Add a project package (value) to fill a package parameter
executionParameter.Add(new PackageInfo.ExecutionValueParameterSet { ObjectType = 30, ParameterName = "MyPackageParameter", ParameterValue = "some value" });
// Get the identifier of the execution to get the log
long executionIdentifier = ssisPackage.Execute(false, null, executionParameter);
// Loop through the log and do something with it like adding to a listbox
foreach (OperationMessage message in ssisServer.Catalogs["SSISDB"].Executions[executionIdentifier].Messages)
SSISMessagesListBox.Items.Add(message.MessageType.ToString() + ": " + message.Message);
VB.Net code
' Connection to the database server where the packages are located
Dim ssisConnection As New SqlConnection("Data Source=.\SQL2012;Initial Catalog=master;Integrated Security=SSPI;")
' SSIS server object with connection
Dim ssisServer As New IntegrationServices(ssisConnection)
' The reference to the package which you want to execute
Dim ssisPackage As PackageInfo = ssisServer.Catalogs("SSISDB").Folders("SSISJOOST").Projects("MyProject").Packages("MyPackage.dtsx")
' Add a parameter collection for 'system' paramers (ObjectType = 50), package parameters (ObjectType = 30) and project parameters (ObjectType = 20)
Dim executionParameters As New Collection(Of PackageInfo.ExecutionValueParameterSet)
' Add execution parameter to override the default asynchronized execution. If you leave this out the package is executed asynchronized
Dim executionParameter1 As New PackageInfo.ExecutionValueParameterSet
executionParameter1.ObjectType = 50
executionParameter1.ParameterName = "SYNCHRONIZED"
executionParameter1.ParameterValue = 1
executionParameters.Add(executionParameter1)
' Add execution parameter (value) to override the default logging level (0=None, 1=Basic, 2=Performance, 3=Verbose)
Dim executionParameter2 As New PackageInfo.ExecutionValueParameterSet
executionParameter2.ObjectType = 50
executionParameter2.ParameterName = "LOGGING_LEVEL"
executionParameter2.ParameterValue = 3
executionParameters.Add(executionParameter2)
' Add a project parameter (value) to fill a project parameter
Dim executionParameter3 As New PackageInfo.ExecutionValueParameterSet
executionParameter3.ObjectType = 20
executionParameter3.ParameterName = "MyProjectParameter"
executionParameter3.ParameterValue = "some value1"
executionParameters.Add(executionParameter3)
' Add a project package (value) to fill a package parameter
Dim executionParameter4 As New PackageInfo.ExecutionValueParameterSet
executionParameter4.ObjectType = 30
executionParameter4.ParameterName = "MyPackageParameter"
executionParameter4.ParameterValue = "some value2"
executionParameters.Add(executionParameter4)
' Get the identifier of the execution to get the log
Dim executionIdentifier As Long = ssisPackage.Execute(False, Nothing, executionParameters)
' Loop through the log and do something with it like adding to a listbox
For Each message As OperationMessage In ssisServer.Catalogs("SSISDB").Executions(executionIdentifier).Messages
SSISMessagesListBox.Items.Add(message.MessageType.ToString() + ": " + message.Message)
Next
Please mark the post as answered if it answers your question | My SSIS Blog:
http://microsoft-ssis.blogspot.com |
Twitter

Similar Messages

  • Be our December TechNet SSAS Guru. Give the gift of code!

    It's that time of the year again!
    It's Giving time!
    A time to think of those less awesome than you.
    A time to give something back to the community.
    Think of those happy faces you will make, as they open that article!
    Remember, "A TechNet Wiki article is not just for Christmas, it's for eternity"!!!
    A TechNet article is the gift that keeps on giving!
    If you have some spare over this upcoming festive month, please give the gift of code.
    So please wrap up some code with plenty of explanation and pop it under our TechNet tree!
    All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white
    paper, or just something you had to solve for your own day's work today.
    Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!
    This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!
    HOW TO WIN
    1) Please copy over your Microsoft technical solutions and revelations to
    TechNet Wiki.
    2) Add a link to it on
    THIS WIKI COMPETITION PAGE (so we know you've contributed)
    3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.
    If you win, we will sing your praises in blogs and forums, similar to the
    weekly contributor awards. Once "on our radar" and making your mark, you will probably be
    interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!
    Winning this award in your favoured technology will help us learn the active members in each community.
    Feel free to ask any questions below.
    More about TechNet Guru Awards
    Thanks in advance!
    Pete Laker
    #PEJL
    Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to the one and only
    TechNet Wiki, for future generations to benefit from! You'll never get archived again!
    If you are a member of any user groups, please make sure you list them in the
    Microsoft User Groups Portal. Microsoft are trying to help promote your groups, and collating them here is the first step.

    We're now up to 5 articles:
    Populate Excel table with custom MDX query & PivotTable filters by
    Christian Wade
    Functional Reports: Making a Report Into a Management Tool by
    Tim Pacl
    Using a Date Picker for an Analysis Data Query Parameter by
    Tim Pacl
    Execute SSIS 2012 package with parameters via .Net
    by SSISJoost
    SSAS time dimension with semi-additive measures; dynamic set; calculated members
    by
    Minnie Shi
    And 12 days to go!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Be our December TechNet SSRS Guru. Give the gift of code!

    It's that time of the year again!
    It's Giving time!
    A time to think of those less awesome than you.
    A time to give something back to the community.
    Think of those happy faces you will make, as they open that article!
    Remember, "A TechNet Wiki article is not just for Christmas, it's for eternity"!!!
    A TechNet article is the gift that keeps on giving!
    If you have some spare over this upcoming festive month, please give the gift of code.
    So please wrap up some code with plenty of explanation and pop it under our TechNet tree!
    All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white
    paper, or just something you had to solve for your own day's work today.
    Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!
    This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!
    HOW TO WIN
    1) Please copy over your Microsoft technical solutions and revelations to
    TechNet Wiki.
    2) Add a link to it on
    THIS WIKI COMPETITION PAGE (so we know you've contributed)
    3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.
    If you win, we will sing your praises in blogs and forums, similar to the
    weekly contributor awards. Once "on our radar" and making your mark, you will probably be
    interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!
    Winning this award in your favoured technology will help us learn the active members in each community.
    Feel free to ask any questions below.
    More about TechNet Guru Awards
    Thanks in advance!
    Pete Laker
    #PEJL
    Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to the one and only
    TechNet Wiki, for future generations to benefit from! You'll never get archived again!
    If you are a member of any user groups, please make sure you list them in the
    Microsoft User Groups Portal. Microsoft are trying to help promote your groups, and collating them here is the first step.

    We're now up to 5 articles:
    Populate Excel table with custom MDX query & PivotTable filters by
    Christian Wade
    Functional Reports: Making a Report Into a Management Tool by
    Tim Pacl
    Using a Date Picker for an Analysis Data Query Parameter by
    Tim Pacl
    Execute SSIS 2012 package with parameters via .Net
    by SSISJoost
    SSAS time dimension with semi-additive measures; dynamic set; calculated members
    by
    Minnie Shi
    And 12 days to go!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Be our December TechNet Guru. Give the gift of code!

    It's that time of the year again!
    It's Giving time!
    A time to think of those less awesome than you.
    A time to give something back to the community.
    Think of those happy faces you will make, as they open that article!
    Remember, "A TechNet Wiki article is not just for Christmas, it's for eternity"!!!
    A TechNet article is the gift that keeps on giving!
    If you have some spare over this upcoming festive month, please give the gift of code.
    So please wrap up some code with plenty of explanation and pop it under our TechNet tree!
    All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white
    paper, or just something you had to solve for your own day's work today.
    Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!
    This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!
    HOW TO WIN
    1) Please copy over your Microsoft technical solutions and revelations to
    TechNet Wiki.
    2) Add a link to it on
    THIS WIKI COMPETITION PAGE (so we know you've contributed)
    3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.
    If you win, we will sing your praises in blogs and forums, similar to the
    weekly contributor awards. Once "on our radar" and making your mark, you will probably be
    interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!
    Winning this award in your favoured technology will help us learn the active members in each community.
    Feel free to ask any questions below.
    More about TechNet Guru Awards
    Thanks in advance!
    Pete Laker
    #PEJL
    Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to the one and only
    TechNet Wiki, for future generations to benefit from! You'll never get archived again!
    If you are a member of any user groups, please make sure you list them in the
    Microsoft User Groups Portal. Microsoft are trying to help promote your groups, and collating them here is the first step.

    We're now up to 5 articles:
    Populate Excel table with custom MDX query & PivotTable filters by
    Christian Wade
    Functional Reports: Making a Report Into a Management Tool by
    Tim Pacl
    Using a Date Picker for an Analysis Data Query Parameter by
    Tim Pacl
    Execute SSIS 2012 package with parameters via .Net
    by SSISJoost
    SSAS time dimension with semi-additive measures; dynamic set; calculated members
    by
    Minnie Shi
    And 12 days to go!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Be our December TechNet SQL DBE Guru. Give the gift of code!

    It's that time of the year again!
    It's Giving time!
    A time to think of those less awesome than you.
    A time to give something back to the community.
    Think of those happy faces you will make, as they open that article!
    Remember, "A TechNet Wiki article is not just for Christmas, it's for eternity"!!!
    A TechNet article is the gift that keeps on giving!
    If you have some spare over this upcoming festive month, please give the gift of code.
    So please wrap up some code with plenty of explanation and pop it under our TechNet tree!
    All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white
    paper, or just something you had to solve for your own day's work today.
    Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!
    This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!
    HOW TO WIN
    1) Please copy over your Microsoft technical solutions and revelations to
    TechNet Wiki.
    2) Add a link to it on
    THIS WIKI COMPETITION PAGE (so we know you've contributed)
    3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.
    If you win, we will sing your praises in blogs and forums, similar to the
    weekly contributor awards. Once "on our radar" and making your mark, you will probably be
    interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!
    Winning this award in your favoured technology will help us learn the active members in each community.
    Feel free to ask any questions below.
    More about TechNet Guru Awards
    Thanks in advance!
    Pete Laker
    #PEJL
    Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to the one and only
    TechNet Wiki, for future generations to benefit from! You'll never get archived again!
    If you are a member of any user groups, please make sure you list them in the
    Microsoft User Groups Portal. Microsoft are trying to help promote your groups, and collating them here is the first step.

    We have 3 articles so far:
    How does SQL Server allocate space in a heap by
    Uwe Ricken
    Log Shipping false error message - 14420 by Praveen
    D'sa   
    Find Windows and SQL Server Last Restart time by Praveen
    D'sa
    And 12 days to go!
    Shanky, you miss Wiki.Bit? Okay, thanks Shanky!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!
    Ed,
    I said I miss wiki ....bit busy ...I dont miss it a bit  but a lot..:)
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Be our December BizTalk TechNet Guru. Give the gift of code!

    It's that time of the year again!
    It's Giving time!
    A time to think of those less awesome than you.
    A time to give something back to the community.
    Think of those happy faces you will make, as they open that article!
    Remember, "A TechNet Wiki article is not just for Christmas, it's for eternity"!!!
    A TechNet article is the gift that keeps on giving!
    If you have some spare over this upcoming festive month, please give the gift of code.
    So please wrap up some code with plenty of explanation and pop it under our TechNet tree!
    All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white
    paper, or just something you had to solve for your own day's work today.
    Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!
    This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!
    HOW TO WIN
    1) Please copy over your Microsoft technical solutions and revelations to
    TechNet Wiki.
    2) Add a link to it on
    THIS WIKI COMPETITION PAGE (so we know you've contributed)
    3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.
    If you win, we will sing your praises in blogs and forums, similar to the
    weekly contributor awards. Once "on our radar" and making your mark, you will probably be
    interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!
    Winning this award in your favoured technology will help us learn the active members in each community.
    Feel free to ask any questions below.
    More about TechNet Guru Awards
    Thanks in advance!
    Pete Laker
    #PEJL
    Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to the one and only
    TechNet Wiki, for future generations to benefit from! You'll never get archived again!
    If you are a member of any user groups, please make sure you list them in the
    Microsoft User Groups Portal. Microsoft are trying to help promote your groups, and collating them here is the first step.

    5 articles so far:
    Sysprep BizTalk Server by
    Colin Meade
    Managing Windows Azure BizTalk Services with REST API by
    Steef-Jan Wiggers
    Creating a MessageBox On-Ramp in the ESB Toolkit by
    Tomasso Groenendijk
    BizTalk Server 2013: Creating Custom Adapter Provider in ESB
    Toolkit SFTP As an Example by Suleiman Shakhtour
    Creating a Custom Itinerary Orchestration Service for the Recipient List pattern by
    Tomasso Groenendijk
    12 days to go!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Be our December FIM TechNet Guru. Give the gift of code!

    It's that time of the year again!
    It's Giving time!
    A time to think of those less awesome than you.
    A time to give something back to the community.
    Think of those happy faces you will make, as they open that article!
    Remember, "A TechNet Wiki article is not just for Christmas, it's for eternity"!!!
    A TechNet article is the gift that keeps on giving!
    If you have some spare over this upcoming festive month, please give the gift of code.
    So please wrap up some code with plenty of explanation and pop it under our TechNet tree!
    All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white
    paper, or just something you had to solve for your own day's work today.
    Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!
    This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!
    HOW TO WIN
    1) Please copy over your Microsoft technical solutions and revelations to
    TechNet Wiki.
    2) Add a link to it on
    THIS WIKI COMPETITION PAGE (so we know you've contributed)
    3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.
    If you win, we will sing your praises in blogs and forums, similar to the
    weekly contributor awards. Once "on our radar" and making your mark, you will probably be
    interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!
    Winning this award in your favoured technology will help us learn the active members in each community.
    Feel free to ask any questions below.
    More about TechNet Guru Awards
    Thanks in advance!
    Pete Laker
    #PEJL
    Got any nice code? If you invest time in coding an elegant, novel or impressive answer on MSDN forums, why not copy it over to the one and only
    TechNet Wiki, for future generations to benefit from! You'll never get archived again!
    If you are a member of any user groups, please make sure you list them in the
    Microsoft User Groups Portal. Microsoft are trying to help promote your groups, and collating them here is the first step.

    No FIM articles yet! Anybody going to take the first plunge?
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Be our December TechNet SQL Server Guru. Give the gift of code!

    It's that time of the year again!
    It's Giving time!
    A time to think of those less awesome than you.
    A time to give something back to the community.
    Think of those happy faces you will make, as they open that article!
    Remember, "A TechNet Wiki article is not just for Christmas, it's for eternity"!!!
    A TechNet article is the gift that keeps on giving!
    If you have some spare over this upcoming festive month, please give the gift of code.
    So please wrap up some code with plenty of explanation and pop it under our TechNet tree!
    All you have to do is add an article to TechNet Wiki from your own specialist field. Something that fits into one of the categories listed on the submissions page. Copy in your own blog posts, a forum solution, a white
    paper, or just something you had to solve for your own day's work today.
    Drop us some nifty knowledge, or superb snippets, and become MICROSOFT TECHNOLOGY GURU OF THE MONTH!
    This is an official Microsoft TechNet recognition, where people such as yourselves can truly get noticed!
    HOW TO WIN
    1) Please copy over your Microsoft technical solutions and revelations to
    TechNet Wiki.
    2) Add a link to it on
    THIS WIKI COMPETITION PAGE (so we know you've contributed)
    3) Every month, we will highlight your contributions, and select a "Guru of the Month" in each technology.
    If you win, we will sing your praises in blogs and forums, similar to the
    weekly contributor awards. Once "on our radar" and making your mark, you will probably be
    interviewed for your greatness, and maybe eventually even invited into other inner TechNet/MSDN circles!
    Winning this award in your favoured technology will help us learn the active members in each community.
    Feel free to ask any questions below.
    More about TechNet Guru Awards
    Thanks in advance!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

    We have 3 articles so far:
    How does SQL Server allocate space in a heap by
    Uwe Ricken
    Log Shipping false error message - 14420 by Praveen
    D'sa   
    Find Windows and SQL Server Last Restart time by Praveen
    D'sa
    And 12 days to go!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • The gift certificate code you entered has not been properly activated.what to do now????

    the gift certificate code you entered has not been properly activated.what to do now???
    how to fix it

    Ask the people at the store the gift card came from or the iTunes Store staff for assistance.
    (119425)

  • HT1918 My visa card was stolen and now I cannot download anything new using my account because it is wanting the old access code but I can't remember it. I have been trying to reset my billing card and it keeps saying give the three digit code on the back

    My visa card was stolen and now I cannot buy anything using my account. It is asking for the old three digit access code and I cannot remember it. I have tried to reset my new billing information and it keeps going back to please put in the pass code. Grrr help help!!!!

    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • I can't update CS6 on CC and gives the U44M1P7 error code

    Please help asap

    Hi,
    Please follow the steps mentioned in the followling link
    http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html
    Thanks
    Kapil

  • Every site I try to access gives the warning (Error code: sec_error_unknown_issuer)

    this affects my computer profile only(windows 8) , and only on Firefox. I have disabled SSL on AVG as the help pages suggest, and have tried reinstalling, both with no effect. Anyone know how to solve this?

    That's the issue resolved, had to import the Microsoft family safety certificate manually, thank you for sending me down the right path.

  • The gift of music: burning a disc for friends

    I wonder if anyone can advise me here.
    I want to burn a music CD and give it as a gift to my friend.
    Can anyone advise me on where I stand, legally, in the following cases:
    1. I own the music, my friend does not.
    2. I own the music, my friend also owns the music.
    3. My friend owns the music, I do not.
    The first two are quite straightforward. The last is a little more complicated.
    Say, for example, my friend wanted a CD of their own music burned. Is there a way they could grant me access to those files to burn it for them - I would never listen to the files myself, and they would own the disc.
    This started as a practical idea, but now I am just interested in where DRM and the law stands with this sort of thing, in theory.
    Any thoughts or references appreciated!

    Do you have any idea where I'd need to look to attempt to verify that? Which Terms and conditions I'd be having to dig up, for example. I assume its a little outside the scope of iTunes T&Cs.
    You would have to consult UK copyright law, or a copyright lawyer, since it's primarily a legal issue rather than a contractual one. I doubt that it will be worth your time and effort (and certainly not the expense of consulting a lawyer). As long as you don't keep the tracks yourself in any way and don't give the burned CD or copies of the tracks to anyone else other than the friend who owns them (or worst of all make them available via a web site or P2P network), no one will bother you about the issue.
    Also, since you appear to have some knowledge of the area... do you have any thoughts on giving MP3s as gifts? Is it possible for me to purchase an mp3, with the intention of giving ownership of it to another party? Or buy it on their behalf, for instance.
    In most cases no, the terms of use of the download store do not allow that. The terminology usually says that the purchase "is for your personal use only" and do not provide for any transfer of ownership. Some stores, such as the iTunes Store, allow you to give someone a track or album - they get a code which they can redeem and download the track themselves - so that is usually the best option. Note that the iTunes Store does not sell tracks in MP3 format; it probably won't be a problem, though, unless the person you wish to give the gift cannot for some reason use iTunes (in which case they couldn't redeem the gift anyway).

  • Custom Function Module for the New Process Codes

    I want to distribute the custom table data . For that i have written the program using MASTER_IDOC_DISTRIBUTE. I have created the custom message & idoc types along with their assignments.
    I got struck up at the process code. I have to assign the function module for that process code. Can anyone kindly help me in writting the code at that function module ?

    Hi Friends,
    My requirement is , i need to transfer the table records. For that i have created the Message/Idoc Types and also created the Partner profile and the Distribution model view .....all alll i have done.
    My doubt is , in the we20, at the outbound parameters , i can give the Message/Idoc types that i have created. Ok thats fine
    But at the inbound parameters, i have to give the inbound process code. So i have created the Inbound process code. As we know that for every process code a function module is attached, now i have to create the function module which posts the records in receiver side.
    so 1. Does the Function module need to be RFC Enabled ?
         2. Do we need to create Object type in SWO1 once i
                  create and release the function module ?

  • HT201209 I have tried to redeem a gift card but I get the message "the gift certificate or card you have entered has already been redeemed". I haven't redeemed it, please help.

    Hi.
    I recently bought a £15 ituens gift card for my partner. Since she is not too savvy with itunes, I went on to her account to redeem it for her. I scratched off the panel and entered the code into the correct box on itunes and was told "the gift certificate or card you have entered has already been redeemed".
    I took the card back to Morrisons Supermarket in Guiseley where I had bought it and was told that since Morrisons only sell gift cards on behalf of iTunes and receive a commission, that they could do nothing and I had to take the problem up with iTunes.
    Well, dealing with iTunes is no easy thing. I finally found what I thought was the right area on the website and was directed to send an email. I did this, but the chap I got through to seemed to think I had a problem with my iTunes software or that I didn't know how to redeem the card. I tried my best - over several emails - to get through to him that the problem was with the gift card code and that they may have been hacked. It would be very easy for them to find out that a) I wasn't the one who had redeemed the code and b) who the culprit was due to the fact they would know whose iTunes account the code had been credited to. I got nowhere, the chap sent me a link to "account security" and told me to phone them even though it was not possible to get a phone number from the link he sent me.
    So, I got back in touch with Morrisons customer complaints and basicaaly told them that as far as I was concerned they were selling faulty goods on behalf of another company and that they should at least try and help me out with iTunes. I have since received an email from Morrisons asking for all the details of the card so they can look into it. iTunes - meanwhile - have stopped replying to my emails and I am now being completely ignored by them.
    Has anyone else had this problem or does anyone know where I stand and how I can either get my money back or get the funds put on to my partners iTunes account?
    Many thanks
    Damian

    Not likely you'll get a "history" but Apple should be able to resolve the problem.
      You can report issues with your iTunes Store purchases directly through the iTunes Store:
    http://support.apple.com/kb/HT1933

Maybe you are looking for

  • Facetime Audio Difficulty

    I was using facetime once on my macbook pro and used headphones during it. Before this I had no audio problems at all. Now whenever I use facetime on my macbook pro I need to use headphones or I cannot hear the people I am talking to and they cannot

  • Payment to Unconfirmed Vendor

    Hi, I created a Vendor master and still it is not confirmed.But i tried making payment through F-53(Payment without cheque printing), the system allows to make clearance.But its doesn't allow me for F-58 & F110, its throwing an error message. Please

  • Why are errors for password validation in struts 1.2.4 not being displayed

    I have the following in my validation.xml file <field property="passwordconfirm" depends="required"> <arg0 key="registration.passwordconfirm"/> </field> In my jsp I have the following Password Confirm<html:password property="passwordconfirm" size="10

  • Best image format to ensure compatibility

    Hi folks, here's my big question. -I've been using jpeg format for our logo on email to ensure compatibility with other mail app. Is this still the rule? That brings me to my other question: Is there a way to put an higher resolution image and force

  • Compare Strings using JSTL

    How can I compare strings with JSTL? One string is a stored date and the other is a generated date. My goal is to set the correct date in a dropdown menu with date values (yyyy-MM-dd) by comparing the current date with the stored. Code <% Calendar ca