File validation for duplication

Hello All,
            I am looking for the best solution for validation of duplicate file being read in xi pipeline.
1. a file will come to FTP folder...
2. XI will pick the file...and in the adapter module we just need to check whether a file with the same name arrived/processed earlier or not.
3. If it has been then generate the error flag and in the receiver determination it will be put on to the error directory
4. If it has not been processed earlier then it will go and do the work its supposed to do.
How do i check if the file has been earlier read/process by xi pipeline?
Any ideas?
Regards,
Anirban

If filename is the only way you can determine if the data is unique and you want to do this validation in XI only then one approach can be this:
As the filenames after each processing of the file are not available in XI for validation, we will have to store them in a external table in XI which will only store the filename. you can use a synchronous RFC/Proxy to insert the filename into the table and at the same time write the logic in this RFC/Proxy to return the status if the file has already been processed and the name is present in the table. you will have to use a BPM and once you receive a msg then you can  map it this RFC data type and then call this RFC receiver. based on the response of the RFC/Proxy you can decide whether you want to proceed further or not.
if you want to do it in the adapter module then you can create a separate table on the same  database on which XI is installed and then use the normal java JDBC connection code to connect to the table and insert the filename and check if the name is already present.
If you are comfortable with java then the 2nd approach will be better according to me as you are avoiding the BPM as well as you are figuring out at the 1st step itself if the file has to be processed or not and you can avoid creating the other data types..etc. But then in the module error handling and monitoring might be a little difficult.
Cheer's

Similar Messages

  • When i try to install iPlanet App Server on NT, I do not get screen to enter license key valid for evaluation. --- " cache File Read error"

    When i try to install iPlanet App Server on NT, I do not get screen to enter license key valid for evaluation.
    Also during installation screens an error window is displayed saying "cache File Read error -- Could not read ProductKey entry from the cache file "

    Hi,
    I also get the following message:
    "Could not read ProductKey entry from the cache file"
    I have no idea how to provide the installation software with the key. I also tried "keycheck.exe"
    Do you have a solution for this problem? Did you finish the installation?
    Christian

  • TS1717 when trying to import cd the following message appears "the current encoder settings for bit rate and sample rate are not valid for this file"?

    Trying to import cd when this message appears "the current encoder settings for bit rate and sample rate are not valid for this file".  Any suggestions?

    Thanks so very much.  I chose MP3 and Download and it is working beautifully.  Have a wonderful day and it is so nice of you to get right back to me.  I'm trying to cut a DVD for my grandson's grad party and I got most of the photos and didn't have any music since I lost everything in a clean install.  Could hug you!

  • DRM-79819: Encryption error: Config file encryption is not valid for this m

    Hi ALL,
    Suddenly we got this error while running an export via batch utility. any ideas?
    Error: DRM-79819: Encryption error: Config file encryption is not valid for this machine.

    This could be an issue with your drm-config.xml file, the file that stores the DRM configuration information defined in the DRM Console. If a drm-config.xml was restored from an old backup or copied from another machine, this could well be the issue.
    In this case, you can run the DRM Console to update the file and correct it. You may see a one-time error reported when the DRM Console starts up, but the Console app should correct the file automatically after reporting the error to the user.
    If this does not resolve your issue, review the Windows App Event Log, to determine which DRM Server process(es) are also reporting this error (to narrow down any other potential issues with a config file for one of the DRM Server executables). I am guessing this error was observed in just the DRM Batch client, but related Event Log should also be present in the App Event Log.
    HTH.
    *** An additional note, if your issue proves to be the one above, you may need re-enter passwords on your defined Database Connections for defined DRM Apps. Try just re-running the DRM Console and re-saving the config initially, but be aware this may be a required additional step, re-entering the DB passwords after the updated encryption has been applied to the stored drm-config.xml file.
    Edited by: 680314 on Jan 19, 2013 11:52 AM

  • Excel 2007 throws "this action is valid for the products which are currently installed" while i try to open .txt file format.

    Hello,
    We have Windows 2008 r2 TS, on which we have MS office 2007 Standard installed. There are almost 50 users on this particular machine.
    The problem is we get an error message when we try to open a .txt file in Excel (Right click on .txt file--> Open with --> Excel). Error message is as follows  "this action is valid for the products which are currently installed".
    Previously this was faced by all users so we completely reinstalled it, which worked, except for 1 user.  Currently i have recreated the profile for that particular user but that also didn't helped.
    A drag-drop approach works but user don't want it that way.  
    Now am clueless in terms of where should i look into. Any help would really be helpful.
    Thanks,
    Amol S

    Hi Amol S,
    As per the description, I understand that you are trying to register .dll files in your computer now.
    I suggest you to go through the following article to know more about registering .dll file.
    Refer to the Link:
    https://support2.microsoft.com/kb/844592?wa=wsignin1.0
    Unregister or Register DLL or OCX files:
    The Regsvr32 tool is a command-line utility that can be used for registering and un-registering OLE controls like DLL and ActiveX (OCX) controls in the Windows operating system. If you find
    that some of your Windows functions are note working properly, you may need to register your
    dll files.
    Register dll file
    To register a dll or
    ocx file, open a command prompt windows as an administrator, type the following and hit Enter:
    regsvr32 “path & filename of dllor
    ocx
    Unregister dll file
    To un-register a dll or
    ocx file, open a command prompt windows as an administrator, type the following and hit Enter:
    regsvr32 /u “path & filename of dllor
    ocx“
    Note: This will register or unregister the
    dll file.
    Hope this information is helpful. Please do let us know if you need further assistance, I’ll be glad to assist you.
    Regard,

  • DTD and XSD Validation for xml file

    hi kindly reply to this mail guru'ssss
    i am facing a problem in parising a xml file against dtd and xsd.
    i have the dtd which contains only enitities that can be present in the xml file and the xsd file for validation against elements and attribute.
    when DTD is present then it is throwing errors like the elements should be declared.
    when i take out the doctype line and validate against schema its throwing the error that particular entity is not found or declared.
      public Vector validateSchema(String SchemaUrl, String XmlDocumentUrl)  
          SAXParser parser =new SAXParser();
         try{
             //parser.setNamespaceAware (true);     
             //parser.s
             parser.setFeature("http://xml.org/sax/features/validation",true);
             parser.setFeature("http://apache.org/xml/features/validation/schema",true);
             parser.setFeature("http://apache.org/xml/features/validation/schema-full-checking", true);
            // parser.setProperty("http://xml.org/sax/properties/declaration-handler", new DTDHandl());
             parser.setProperty("http://apache.org/xml/properties/schema/external-noNamespaceSchemaLocation",SchemaUrl);
            // parser.setFeature("http://xml.org/sax/features/namespace-prefixes", true);
            // System.out.println(parser.getDTDHandler());
            // UnparsedCache cache = new UnparsedCache();
           //  parser.setDTDHandler(cache);
             InputSource inputSource =new InputSource(new java.io.FileInputStream(new java.io.File(XmlDocumentUrl)));
           //  parser.setDTDHandler(new myDTDHandler());
             //parser.setEntityResolver(new CustomResolver());
         //  parser.setContentHandler(this);
             Validator handler=new Validator();
             parser.setErrorHandler(handler); 
             parser.parse(inputSource);
             if(handler.validationError==true)
               System.out.println("XML Document is not valid");
             else                  
               System.out.println("XML Document is valid");
             for(int i=0;i<ErrorLines.size();i++){
                 System.out.println(ErrorLines.elementAt(i));
       }catch(java.io.IOException ioe){  
         System.out.println("IOException"+ioe.getMessage());   
       }catch (SAXParseException e) {
         System.out.println("SAXParseException "+e.getMessage());   
      }catch (SAXException e) {
         System.out.println("SAXException"+e.getMessage());   
         return ErrorLines;
    what could be soln to this.

    Hi
    Venky_Ferrari.
    Based on your description, your case related to XMLXSD, SO I will move your thread to
    Data Platform Development > XML, System.Xml, MSXML and XmlLite      
    forum for better support.
    Best regards,
    Kristin
    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.

  • Office 2013 - Excel 2013 - "This action is only valid for products that are currently installed."

    I had Office 2010 starter and Outlook 2010 installed.  I recently purchased the Office 2013 click to run version (paid monthly subscription) and installed Office 2013.  After installing 2013 I noticed that when I opened up Excel files they would
    still open in Office 2010.  I uninstalled Office Starter 2010 and uninstalled Outlook 2010.
    I then manually fixed the file associations for Word, PowerPoint, Publisher and such, however I could not manually fix the Excel file association. 
    Excel documents show the correct icon however when I double click on them the following error appears "This action is only valid for products that are currently installed."
    I have used the Office 2013 repair process, I have uninstalled and reinstalled Office 2013, I have manually uninstalled office 2013 using KB 2739501 (
    http://support.microsoft.com/kb/2739501/en-us ) and I still can not open Excel documents. 
    Recently I found that I can not do mail merges either using Excel documents as the data source and I believe the two items are related.
    Any suggestions?

    Hi,
    Please try to turn off compatibility mode and then check the issue again. To do this, please follow:
    1. Open this folder location:
    For Windows 32-bit: C:\Program Files\Microsoft Office\Office15
    For Windows 64-bit: C:\Program Files (x86)\Microsoft Office\Office15
    2. Find Excel.exe, right-click it, and choose Properties.
    3. Click on the Compatibility tab and ensure that all of the boxes are
    un-checked.
    For more information, please refer to this:
    http://support.microsoft.com/kb/2674519/en-us
    Thanks,
    Steve Fan
    TechNet Community Support

  • ERROR: "key not valid for use in specified state" when updating to Lightroom 5.6 in Win8.1

    While doing a routine update from Lightroom 5.5 to v5.6 in Win 8.1, the installation halted at the start of the installation with the vague error message, "key not valid for use in specified state".  Although v5.5 was working just fine, the install routine deleted the v5.5 application files.  I rolled back to the previous system restore point (set just prior to the install) and recovered the executable files.  However, now the 5.5 files won't open the default catalog, none of the backups, or even create a new catalog.
    As v5.x was purchased as an update to v4.x, I've tried to reinstall the original Lightroom v4.x app from the factory disk.  I get the same error.
    Suggestions?
    Thanks. Dan

    I have a similar problem to Dan. while doing a routine upgrade from Lightroom 5.5 to 5.6 I got the
    : "key not valid for use in specified state"
    error and now Lightroom has completely disappeared. I've tried to uninstall, but there is nothing to uninstall. Going back to try to install the original 5.4 just results in the same error.
    A problem may have been that I closed Lightroom when the upgrade started to download. It then re-opened again when the install was halfway through., I assumed that was an error and closed it. just after that the error first appeared in the installer.
    I still had an older version of lightroom 4 installed. I've uninstalled it, and that didn't make any difference.
    I've also tried removing anything in the registry left over from the old installs and that didn't help either.
    Any suggestions?
    CHeers, Angus

  • While Executing a Javascript got RuntimeException - org.mozilla.javascript.EvaluatorException: uSetContextVar: Only valid for Provisioning jobs at line

    Hello Experts,
    I am receiving an error whenever i am executing a java script file. I am calling the script in the below fashion.
    MSKEYVALUE  - $FUNCTION.DP_getMskeyValueForUser(%ABCD01%)$$
    function DP_getMskeyValueForUser(Par){
    ---- Here we have written logic---
           var result = uSelect(query);
          result = DP_generateId("CREATE");// calling another script
        return result;
    function DP_generateId(Par){
    --------------Here Code Logic ----------------------
    --------At ending setting the output value and storing it in the context variable
        uSetContextVar("new_mskeyvalue", newMskeyValue);
        return newMskeyValue;
    While executing i am getting an error message at the above highlighted part stating that got RuntimeException - org.mozilla.javascript.EvaluatorException: uSetContextVar: Only valid for Provisioning jobs at the line
    Can you kindly please help me with this error.
    Regards,
    DP

    Hi DP,
    Hope this helps.
    context var is used if you want to pass values between tasks. If you are using in a job and you want to use values between passes, then you could use a job variable. Or if you want to calculate and use the values in same pass in the job, you can use a Hashmap.
    Kind regards,
    Jai

  • P6 user name is not valid for connecting to the reporting database

    No data is available because your P6 user name is not valid for connecting to the reporting database
    I am getting above error in the following environment:
    P6 running on wls instance 1.
    BI Publisger running on wls instance 2
    MS SQL server 2005
    Note that the error appears when I clink on the 'Reports' tab in P6. My admin user on P6 has access to report/analyser modules.
    To connect P6 to BI Publisher I am using 'PxRptUser' in the P6 configuration for Bi Publisher. I know as well that the WSDL URL is correct and I can test this in SoapUI tool.
    In BI publisher I have created the PMDB data source using PxRprUser, and the test of this connection works.
    (Because the report samples come with Oracle flavoured SQL that SQL server does not like, I have configured BI Publisher so I have just a single report left that sources it data from an xml file. This works in BI Publisher. It also helps me in that I do not need to add 'WHERE' clauses and parameters required for SQL server?)
    Furthermore, using a DB tool, I can connect to my SQL server using PxRPTUser.
    So why do I get the error above?
    I picked up somewhere that I should not be adding users to BI Publisher. Funny enough, testing the 'login' method the BI Publisher exposes through its WSDL (as above) I noticed I HAD to create the user PxRptUser in BI publisher application itself (on top of PxRptUser in database) for the login web service to work with PxRptUser
    That did not solve the connection between P6 and BI Publisher though. What am I missing ...
    Edited by: user3674522 on 10/11/2011 20:16

    Thought I found something but can't repliacte, som issue is still there:
    Had a look at the wls instance logs where BI publisher is running, and the error I get is:
    111111_023646955][][ERROR] javax.naming.NamingException: Unresolved naming: cn=admin, dc=user, dc=users, dc=principals at [cn=admin]
    That user, admin, is the one I have used to access P6. Why is this passed on to BI Publisher? I thought the idea was that the PxRptUser set in BI Publisher configurations in P6 would be used?
    Edited by: user3674522 on 10/11/2011 20:17

  • ITunes 7.0.2 Error - ""This action is only valid for products..." message

    Hi,
    I see other folk are having problems upgrading to iTunes 7.0.2 but I've had a read of some recent posts and can't find a problem quite like mine...
    OK, so I decided to say yes to the "upgrade to iTunes 7.0.2?" prompt when I turned iTunes 7 on this afternoon. I followed all the prompts correctly and allowed the computer to re-start when installation was complete.
    My iTunes "i" icon has disappeared from the QuickLaunch bar, and has been replaced by a Windows application blue and white square-window icon. When I click on it to run iTunes I get an error message prompt:
    "This action is only valid for products that are currently installed."
    I click "OK" and then nothing happens, iTunes (niether 7 nor 7.0.2) does not load and there is no way to get into iTunes. Going through the menu bar results in the same error message.
    I am not sure what to do. I don't want to wipe iTunes and start again because I have quite a few purchased tracks that may be lost, and I doubt I would be able to get them back.
    Does anybody have any advice?
    Many thanks.
    (I have tried playing a QuickTime movie file and that works fine).
    QuickTime 7.1.3 seems to be working fine.

    Remove the shortcut that is in the QuickLaunch bar.
    Go to C:\Program Files\iTunes\ and make a new shortcut for iTunes.exe and put it in the QuickLaunch bar.
    That should resolve the issue.
    Hope this helps,
    Nathan C.

  • The security validation for this page is invalid – Infopath 2010

    Hello Experts,
    I have created browser enabled Infopath form and written a custom code (infopath 2010). I have a “Save” button on a form that submits the data into multiple relational sharepoint list. While debugging through VSTA everything goes well and successfully submits
    the data, but after publishing a form(browser enabled) I am not able to save a data to sharepoint list. When I Clicked on save button, it just refreshing a page, even the same was getting after
     made it to full trust and approved by Admin.
    Before this I was using “Submit” button to submit a form, that time I was getting a popup with the message “There has been an error while processing the form”. And in log files it was showing error message as “The security validation
    for this page is invalid”.
    I referred many blogs regarding validation error and tried almost everything in every way, some of shortly mentioned below,
    Formdigest (It not works for me)
    Security Validation (It works perfectly)
    The second option is working for me.  (But this is not a good practice and also not recommended)
    Just want to know “Without making Security Validation Off” how can I resolved this validation issue from infopath 2010 form.
    Please share your thoughts on this. Any help is appreciated.
    Regards,
    Uday

    Hi Uday,
    Have you tried SPWebapplication.FormDigestSettings.Enabled = false to turn off the digest setting property for the web application? See this blog for the details.
    http://ktskumar.wordpress.com/2009/03/09/the-security-validation-for-this-page-is-invalid-click-back-in-your-web-browser-refresh-the-page-and-try-your-operation-again/
    Thanks & Regards,
    Emir
    Emir Liu
    TechNet Community Support

  • Reporting Service Integration mode and Key not valid for use in specified state

    I had to uninstall SharePoint Foundation 2013 and reinstall it.
    What I have done:
    I uninstalled SharePoint and after that I removed all databases.
    I reinstalled SharePoint Foundation 2013 and it completed without errors.
    Everything else is working, except SSRS in Sharepoint Integrated Mode.
    If I check Central Administration - Manage services on server, I can found out that SQL Server Reporting Service Service is
    "Started". But if I try to create new service application (SQL Server Reporting Services Service Application), it gives me an error message:
    "Key not valid for use in specified state. (Exception from HRESULT: 0x8009000B)"
    I uninstalled SSRS in Sharepoint Integrated Mode and I reinstalled it but problems exists.
    It seems that "Encryption Keys" cause this problem.
    https://support.microsoft.com/kb/955757
    https://msdn.microsoft.com/en-us/library/ms156010%28v=sql.110%29.aspx
    I tried to Re-create Encryption Keys and Delete keys, but its not working either. It gives me only error message that:
    "Unable to locate the Reporting Server Windows service for instance MSSQLSERVER."
    I don't have any reporting server databases, because I removed all
    databases when I uninstalled SharePoint. Also I don't have Encryption
    Keys backups.
    I have found several similar question but no answer, example here:
    https://social.technet.microsoft.com/Forums/ie/en-US/df02dc05-5ce8-499d-9ba3-ab392a5fc3af/sharepoint-2013-ssrs-application-error-key-not-valid-for-use-in-specified-state-exception?forum=sharepointdevelopment
    Any ideas how I can fix this problem?

    Hi,
    From the Reporting Server Configuration Manager you have to restore the encryption key.
    Please try to delete databases(reportserver & reportservertempdb) and delete the reportserver and reports site on IIS. Then you have to start over the configuration again.
    If the issue still exists, Please check ULS log to see if anything unexpected occurred.
    For SharePoint 2013, by default, ULS log locates in
    "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS"
    More information about SQL Reporting services Installation with SharePoint 2013 for your reference:
    http://expertsharepoint.blogspot.de/2014/03/sql-reporting-services-installation.html
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Lucreate - „Cannot make file systems for boot environment“

    Hello!
    I'm trying to use LiveUpgrade to upgrade one "my" Sparc servers from Solaris 10 U5 to Solaris 10 U6. To do that, I first installed the patches listed on [Infodoc 72099|http://sunsolve.sun.com/search/document.do?assetkey=1-9-72099-1] and then installed SUNWlucfg, SUNWlur and SUNWluufrom the S10U6 sparc DVD iso. I then did:
    --($ ~)-- time sudo env LC_ALL=C LANG=C PATH=/usr/bin:/bin:/sbin:/usr/sbin:$PATH lucreate -n S10U6_20081207  -m /:/dev/md/dsk/d200:ufs
    Discovering physical storage devices
    Discovering logical storage devices
    Cross referencing storage devices with boot environment configurations
    Determining types of file systems supported
    Validating file system requests
    Preparing logical storage devices
    Preparing physical storage devices
    Configuring physical storage devices
    Configuring logical storage devices
    Analyzing system configuration.
    Comparing source boot environment <d100> file systems with the file
    system(s) you specified for the new boot environment. Determining which
    file systems should be in the new boot environment.
    Updating boot environment description database on all BEs.
    Searching /dev for possible boot environment filesystem devices
    Updating system configuration files.
    The device </dev/dsk/c1t1d0s0> is not a root device for any boot environment; cannot get BE ID.
    Creating configuration for boot environment <S10U6_20081207>.
    Source boot environment is <d100>.
    Creating boot environment <S10U6_20081207>.
    Creating file systems on boot environment <S10U6_20081207>.
    Creating <ufs> file system for </> in zone <global> on </dev/md/dsk/d200>.
    Mounting file systems for boot environment <S10U6_20081207>.
    Calculating required sizes of file systems              for boot environment <S10U6_20081207>.
    ERROR: Cannot make file systems for boot environment <S10U6_20081207>.So the problem is:
    ERROR: Cannot make file systems for boot environment <S10U6_20081207>.
    Well - why's that?
    I can do a "newfs /dev/md/dsk/d200" just fine.
    When I try to remove the incomplete S10U6_20081207 BE, I get yet another error :(
    /bin/nawk: can't open file /etc/lu/ICF.2
    Quellcodezeilennummer 1
    Boot environment <S10U6_20081207> deleted.I get this error consistently (I ran the lucreate many times now).
    lucreate used to work fine, "once upon a time", when I brought the system from S10U4 to S10U5.
    Would anyone maybe have an idea about what's broken there?
    --($ ~)-- LC_ALL=C metastat
    d200: Mirror
        Submirror 0: d20
          State: Okay        
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 31458321 blocks (15 GB)
    d20: Submirror of d200
        State: Okay        
        Size: 31458321 blocks (15 GB)
        Stripe 0:
            Device     Start Block  Dbase        State Reloc Hot Spare
            c1t1d0s0          0     No            Okay   Yes
    d100: Mirror
        Submirror 0: d10
          State: Okay        
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 31458321 blocks (15 GB)
    d10: Submirror of d100
        State: Okay        
        Size: 31458321 blocks (15 GB)
        Stripe 0:
            Device     Start Block  Dbase        State Reloc Hot Spare
            c1t0d0s0          0     No            Okay   Yes
    d201: Mirror
        Submirror 0: d21
          State: Okay        
        Submirror 1: d11
          State: Okay        
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 2097414 blocks (1.0 GB)
    d21: Submirror of d201
        State: Okay        
        Size: 2097414 blocks (1.0 GB)
        Stripe 0:
            Device     Start Block  Dbase        State Reloc Hot Spare
            c1t1d0s1          0     No            Okay   Yes
    d11: Submirror of d201
        State: Okay        
        Size: 2097414 blocks (1.0 GB)
        Stripe 0:
            Device     Start Block  Dbase        State Reloc Hot Spare
            c1t0d0s1          0     No            Okay   Yes
    hsp001: is empty
    Device Relocation Information:
    Device   Reloc  Device ID
    c1t1d0   Yes    id1,sd@THITACHI_DK32EJ-36NC_____434N5641
    c1t0d0   Yes    id1,sd@SSEAGATE_ST336607LSUN36G_3JA659W600007412LQFN
    --($ ~)-- /bin/df -k | grep md
    /dev/md/dsk/d100     15490539 10772770 4562864    71%    /Thanks,
    Michael

    Hello.
    (sys01)root# devfsadm -Cv
    (sys01)root# To be on the safe side, I even rebooted after having run devfsadm.
    --($ ~)-- sudo env LC_ALL=C LANG=C lustatus
    Boot Environment           Is       Active Active    Can    Copy     
    Name                       Complete Now    On Reboot Delete Status   
    d100                       yes      yes    yes       no     -        
    --($ ~)-- sudo env LC_ALL=C LANG=C lufslist d100
                   boot environment name: d100
                   This boot environment is currently active.
                   This boot environment will be active on next system boot.
    Filesystem              fstype    device size Mounted on          Mount Options
    /dev/md/dsk/d100        ufs       16106660352 /                   logging
    /dev/md/dsk/d201        swap       1073875968 -                   -In the rebooted system, I re-did the original lucreate:
    <code>--($ ~)-- time sudo env LC_ALL=C LANG=C PATH=/usr/bin:/bin:/sbin:/usr/sbin:$PATH lucreate -n S10U6_20081207 -m /:/dev/md/dsk/d200:ufs</code>
    Copying.
    *{color:#ff0000}Excellent! It now works!{color}*
    Thanks a lot,
    Michael

  • Error "The serial number is not valid for this product" | Creative Suite

    HI together,
    I'm very annoyed about the fact that I payed for Adobe Creative Suite Production Premium 5 (EDU version) and now I'm not able to use it on my new Mac. The Support team (Chat) from Adobe told me several times that the product/serial or whatever was canceled but this doesn't help me to get the product working and I won't pay again for this software. So what's the reason for cancellation? I can't see reasons for this and I don't understand why Support team can't help me. Already found Error "The serial number is not valid for this product" | Creative Suite but this doesn't helped me.
    Regards
    René

    Maybe this is also useful... They told me I canceld this by myself which is not the truth. I had a Windows machine and used Creative Cloud as well but I only canceld the Cloud, not my Serial Number for Production Premium...
    So who is able to reactivate my Serial Number so that I'm able to use my product?
    info: Thank you for your patience.
    While you wait, you can try our community forums where experts are available 24 hours a day, 7 days a week.
      info:  We are still assisting other customers, thank you for your patience. You can also try our community forums, available 24 hours a day, 7 days a week.
      info:  We are still assisting other customers, thank you for your patience. You can also try our community forums, available 24 hours a day, 7 days a week.
      info:  We are still assisting other customers, thank you for your patience. You can also try our community forums, available 24 hours a day, 7 days a week.
      info:  We are still assisting other customers, thank you for your patience. You can also try our community forums, available 24 hours a day, 7 days a week.
      info:  We are still assisting other customers, thank you for your patience. You can also try our community forums, available 24 hours a day, 7 days a week.
      info:  We are still assisting other customers, thank you for your patience. You can also try our community forums, available 24 hours a day, 7 days a week.
      info: You are now chatting with Richa.
      Richa: Hello! Welcome to Adobe Customer Service.
      Richa: Sorry for any inconvenience this has caused
      Richa: May I get the serial number?
      Richa: Are we still connected?
      Richa: We have not heard from you for some time.  Do you wish to continue to chat?
      Richa: Are we still connected?
      Rene Pardon: hi
      Rene Pardon: for sure
      Rene Pardon: sorry, i took so much time for your answer that i decided to do anything else at this time
      Rene Pardon: <Deleted >
      Rene Pardon: i registered for the education version of production premium 5
      info: Your chat transcript will be sent to r*@*.de at the end of your chat.
      Richa: ok let me check
      Richa: please wait
      Richa: Thanks for your patinece
      Rene Pardon: do you also need my "authorization code" for this product?
      Richa: I need to transfer the chat to
      Richa: tech rteam
      Richa: please wait
      Rene Pardon: ok
      Richa: I am sorry
      Richa: But I will not be able to transfer the chat
      Rene Pardon: is there a phone number i can call?
      Richa: As the serial number is canceldd
      Richa: and we do apologise
      Rene Pardon: why was it canceled?
      Richa: but there is no phone support for this product
      Rene Pardon: i don't understand because i payed a lot for this
      Richa: Its showing canceled
      Rene Pardon: so what are the options?
      Rene Pardon: i need this product right now and i payed for it so why can't i use it?
      Rene Pardon: Your file '2015-03-30_Personalausweis_*.pdf' was successfully uploaded.
      Rene Pardon: as you can see, i'm the person who payed for this software
      Richa: I am sorry I just checked it
      Richa: it is canceled thats why you are getting invalid error
      Rene Pardon: yeah, that's what i see but i dont understan. why was it canceled? who is responsible for this mistake? it doesn't help me to tell me what i already see i need a solution to use the product
      Richa: I am sorry Rene
      Richa: But its showing canceld
      Richa: so cant help you with that
      Richa: I wish I could help you, but my hands are tied
      Rene Pardon: that's what you told me several times so who can help me?
      Rene Pardon: i'm very annoyed about this fact that i can't use the software i payed for and noone is able to help me getting this working
      Rene Pardon: so please tell me who is able to help me
      Richa: You need to place a new order?
      Rene Pardon: no, i won't pay AGAIN for this software i want a solution to use my already payed product
      Rene Pardon: please get someone in your team who can help me
      Richa: I am sorry Rene..
      Richa: But unfortunately my team can not help you on this.. as the sersil is expired
      Richa: I mean canceled
      Richa: Sorry but we can not help Rene..
      Rene Pardon: BUT WHY CAN'T YOU TELL ME WHY IT WAS CANCELED?
      Rene Pardon: Help me understanding...
      Rene Pardon: You're wasting my time!
      Richa: I am sorry
      Richa: I found the reason for cacnellation
      Richa: and its canceldd
      Richa: because you requested to cancel.  in year 2013
      Richa: On 30th april 2013
      Rene Pardon: but i only canceled the creative cloud, not my creative suite
      Richa: so we have refund and canceled it
      Richa: Its showing for this oserial?
      Rene Pardon: one moment
      Rene Pardon: i log into my account
      Rene Pardon: Your file 'Bildschirmfoto 2015-04-09 um 13.31.53.png' was successfully uploaded.
      Rene Pardon: As you can see the product is displayed as "non-canceled"
      Rene Pardon: I also bought the Createive Cloud during my time I had a Windows machine and this was the one i canceled - or I expected only this to get canceled
      Richa: I am sorry but the refund was given and requested for this
      Rene Pardon: There was only a refund for the Creative Cloud but not for the Creative Suite i bought
      Rene Pardon: And why should I need a serial number for the Creative Cloud?
      Rene Pardon: Please reactivate my Serial Number so that I'm able to use my product
      Richa: I can not do that?
      Rene Pardon: But i guess someone in your Team can
    Richa: can not help you

Maybe you are looking for

  • Shared photo stream wrong / strange date

    When adding photo's to a shared photo stream sometimes strange dates appear. The problem happens with scanned negatives. In my libarary I sort all photo's on date, so I have changed the date of all these scanned negatives and applied them to the orig

  • HT1349 How do I get iTunes to play in my Windows Media Player ?

    I cannot play my iTunes Music I have purchased, with Windows Media Player.  Any suggestions they may help ???

  • BrowserKeystore$JSSPasswordCallbackInvocationHandler behaviour

    Hi all, excuse me if this isn�t the correct forum. i've configured jss in firefox and deployed a small applet that uses JSS classes. I've implemented a PasswordCallback following http://www.mozilla.org/projects/security/pki/jss/javadoc/org/mozilla/js

  • Workflow script help

    I am trying to write a couple of workflows in CRM OnDemand that will do the following: 1. Have the "Probability" automatically set itself to the proper percentage upon the creation of a new Account. 2. Have the "Probability" update itself as the reco

  • Script or GREP search line for missing quotation marks (opening or closing)

    Hi there, I've being trying to figure out a GREP search that will help me find quotations that haven't been opened or closed properly. Does anyone know if there exists a script that will mark/help me find the quotation marks that incorrectly stand al