RFC works but web service for that RFC does not work..weird??

hi all,
I created an RFC enabled function module to create a Sales Order in SAP CRM for both for Varinat Configurable and Normal Materials.
The RFC Works well...if i test it..it creates an order and if i go and check the sales order in CRM GUI. i find that sales order is perfect with the configuration data for the configurable items..
Now i created a Web service for this RFC by calling the Web service creation wizard.
Now i am testing the Web service in SOAMANGER T-code and the sales order is created and weird thing the configuration data is missing for Varinat configurable item..
But i dont encounter this problem if i am testing the RFC directly
What could be wrong...why is my web service behaving weird?
I am dying to find this out..did any body enocunter this situation befor ..please help

Sure Oliver..
I put a break point using external debugger and when i was testing the Web service in SOAMANAGER..
i could then land into ABAP debugger.
There in my RFC i put a logic such that i diffenetiate between VC and Non-VC items and fill the Charateristic Values only if it is aVC item.
I saw that the IF condition was not executing as they suddenly changed the material structure in ECC and it reflected in CRM.
SO i am inputting 18 digits of material no like '000000000000000001' for '1'...but the if condition was checking against 1 =1 so that loop never executed and chara values are not getting filled.
But if i test RFC in se37 ..it works as i am inputting 1...
Since Web service works with XML (WSDL) need to be very careful with the format in which data is inputted and the format in which the logic we wrote in RFC works.
Once again ..thanks to all people who helped me with the answers...
Regards,
Jessica Sam

Similar Messages

  • Adobe photoshop elements 12 organizer works, but adobe photoshop elements 12 editor does not work--it thinks it is a trial version

    adobe photoshop elements 12 organizer works, but adobe photoshop elements 12 editor does not work--it thinks it is a trial version.HELP
    If I try to register 4 boxes circle endlessly.Why should I have to register editor separately from organizer?

    jaroFocb'15 wrote:
    This is almost the same as the problem I had. I'm my case the Editor installed but not the Organizer! Adobe chat told me they no longer have chat or any other services for Elements 12. I guess they want people to buy their new Elements 13, but that leaves us in a bad place and doesn't say much for how Adobe cares about their customers After it moves on to their next version. I posted a message like yours over a week ago, and only got one email from an Adobe staff person, asking me to answer a couple of clarifying questions, but he never followed up on my response, so my problem is still unresolved. If you are luckier and are given a solution please let me know what it is -- it might work for me too, and I'd be very grateful!  My email:  [email protected]  
    Good luck.
    Have you checked whether you have folder for PSE Organizer?  It is normally at this location in Windows 7 and Windows 8/8.1:
    <C:\Program Files (x86)\Adobe\Elements 12 Organizer>
    If the folder is there then try double-clicking on the file called:  PhotoshopElementsOrganizer.exe
    If the folder isn't there at all then you need to re-install the package again using your original disks or from download from Adobe website.  <Download Photoshop Elements products | 13, 12, 11, 10>
    Hope this helps.

  • Consuming Web Services in 11.2 does not work ??

    Hello,
    Did anyone manage to call a Web Service from Oracle 11.2 database?
    We wanted to call a web service from Oracle, so for example if I execute:
    SELECT add_numbers(1, 5) FROM dual;
    from my database, I get the result 6.
    Cool thing is that the add_numbers function is not in my database, but in a database somewhere in the cloud, and I access the function as a web service.
    Oracle provides step-by-step documentation how to do it, but we couldn't make it working by following the docs. It was done on a clean Oracle 11.2 database install.
    We followed the instructions from: http://www.oracle.com/technology/sample_code/tech/java/jsp/callout_users_guide.htm
    The main part of the job is to:
    1) Load the java classes into the Oracle database by issuing the following command: % loadjava -u sys\<password> -r -v -f -genmissing dbwsclientws.jar dbwsclientdb11.jar
    2) Install the UTL_DBWS package into the database (it is not installed by default in 11g):
    SQL> @?/sqlj/lib/utl_dbws_decl.sql
    SQL> @?/sqlj/lib/utl_dbws_body.sql
    We loaded the classes into the SYS user and installed the UTL_DBWS package into the SYS user as well.
    3) Create a function that uses UTL_DBWS package to call a web service: http://www.oracle-base.com/articles/10g/utl_dbws10g.php
    However, when we tried to run the add_numbers function, it returned an error from the UTL_DBWS package, from the create_service function (line 190), the function returned that the java class that it calls does not exist:
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.IllegalAccessException: java.lang.NoClassDefFoundError
    ORA-06512: at "SYS.UTL_DBWS", line 193
    ORA-06512: at "SYS.UTL_DBWS", line 190
    ORA-06512: at "SYS.ADD_NUMBERS", line 25
    Line 193 in UTL_DBWS package goes like this:
    function create_service_proxy(wsdl_Document_Location VARCHAR2, service_Name VARCHAR2) return SERVICE
    as language java
    name 'oracle.jpub.runtime.dbws.DbwsProxy.createService(java.lang.String,java.lang.String) return long';
    However, this makes no sense because the class is loaded:
    select dbms_java.longname(object_name), status, object_type from all_objects where
    object_name like '%DbwsProxy%'
    and object_type = 'JAVA CLASS'
    Output:
    oracle/jpub/runtime/dbws/DbwsProxy$1;VALID;JAVA CLASS
    oracle/jpub/runtime/dbws/DbwsProxy$CallProxy;VALID;JAVA CLASS
    oracle/jpub/runtime/dbws/DbwsProxy$ServiceProxy;VALID;JAVA CLASS
    oracle/jpub/runtime/dbws/DbwsProxy;VALID;JAVA CLASS
    Anyone knows the cause of the exception?
    Edited by: user8938058 on Feb 1, 2011 2:08 AM

    I had the same problem. For me below code works:
    CREATE OR REPLACE FUNCTION SYS.add_numbers (p_int_1 IN NUMBER,
    p_int_2 IN NUMBER)
    RETURN NUMBER
    AS
    l_service UTL_DBWS.service;
    l_call UTL_DBWS.call;
    l_wsdl_url VARCHAR2(32767);
    l_namespace VARCHAR2(32767);
    l_service_qname UTL_DBWS.qname;
    l_port_qname UTL_DBWS.qname;
    l_operation_qname UTL_DBWS.qname;
    l_xmltype_in SYS.XMLTYPE;
    l_xmltype_out SYS.XMLTYPE;
    l_return NUMBER;
    BEGIN
    l_wsdl_url := 'http://www.oracle-base.com/webservices/server.php?wsdl';
    l_namespace := 'http://www.oracle-base.com/webservices/';
    l_service_qname := UTL_DBWS.to_qname(l_namespace, 'Calculator');
    l_port_qname := UTL_DBWS.to_qname(l_namespace, 'CalculatorPort');
    l_operation_qname := UTL_DBWS.to_qname(l_namespace, 'ws_add');
    l_service := UTL_DBWS.create_service (
    service_name => l_service_qname);
    l_call := UTL_DBWS.create_call (
    service_handle => l_service);
    utl_dbws.set_target_endpoint_address(l_call, 'http://www.oracle-base.com/webservices/server.php');
    utl_dbws.set_property( l_call, 'OPERATION_STYLE', 'rpc');
    l_xmltype_in := SYS.XMLTYPE('<?xml version="1.0" encoding="utf-8"?>
    <ws_add xmlns="' || l_namespace || '">
    <int1>' || p_int_1 || '</int1>
    <int2>' || p_int_2 || '</int2>
    </ws_add>');
    l_xmltype_out := UTL_DBWS.invoke(call_Handle => l_call,
    request => l_xmltype_in);
    UTL_DBWS.release_call (call_handle => l_call);
    UTL_DBWS.release_service (service_handle => l_service);
    l_return := l_xmltype_out.extract('//return/text()').getNumberVal();
    RETURN l_return;
    END;
    It seems that the problem is with class oracle.jpub.runtime.dbws.DbwsProxy.createService(java.lang.String,java.lang.String) return long
    I rewrite your example that it uses oracle.jpub.runtime.dbws.DbwsProxy.createService(java.lang.String) return long
    In the database log I get this stacktrace:
    *** 2011-06-03 11:22:37.390
    ServiceFacotory: oracle.j2ee.ws.client.ServiceFactoryImpl@3b689a27
    WSDL: http://www.oracle-base.com/webservices/server.php?wsdl
    ERROR: java.lang.ExceptionInInitializerError
    java.lang.ExceptionInInitializerError
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readDocument(WSDLReaderImpl.java:309)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:275)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:462)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:440)
         at oracle.j2ee.ws.common.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLModeler.java:161)
         at oracle.j2ee.ws.common.processor.config.ModelInfo.buildModel(ModelInfo.java:167)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:196)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:181)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:114)
         at oracle.j2ee.ws.client.dii.ConfiguredService.<init>(ConfiguredService.java:54)
         at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:43)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    Caused by: java.util.MissingResourceException: Can't find oracle.j2ee.ws.wsdl.ORAWSDLMessageBundle bundle
         at java.util.logging.Logger.setupResourceInfo(Logger.java:1285)
         at java.util.logging.Logger.<init>(Logger.java:203)
         at java.util.logging.Logger.getLogger(Logger.java:271)
         at oracle.j2ee.ws.wsdl.ORAWSDLMessages.<clinit>(ORAWSDLMessages.java:14)
         ... 14 more
    java.lang.IllegalAccessException: java.lang.ExceptionInInitializerError
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    ServiceFacotory: oracle.j2ee.ws.client.ServiceFactoryImpl@3b689a27
    WSDL: http://www.oracle-base.com/webservices/server.php?wsdl
    ERROR: java.lang.NoClassDefFoundError
    java.lang.NoClassDefFoundError
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readDocument(WSDLReaderImpl.java:309)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:275)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:462)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:440)
         at oracle.j2ee.ws.common.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLModeler.java:161)
         at oracle.j2ee.ws.common.processor.config.ModelInfo.buildModel(ModelInfo.java:167)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:196)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:181)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:114)
         at oracle.j2ee.ws.client.dii.ConfiguredService.<init>(ConfiguredService.java:54)
         at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:43)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    java.lang.IllegalAccessException: java.lang.NoClassDefFoundError
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    Maybe somebody explain why if I use function create_service(wsdl_Document_Location URITYPE, service_Name QNAME)
    RETURN SERVICE it throws ORA-29532: Java call terminated by uncaught Java exception: java.lang.IllegalAccessException: java.lang.NoClassDefFoundError
    and when I use function create_service(service_Name QNAME) RETURN SERVICE it works ?
    Please help
    Edited by: user10200937 on 2011-06-03 03:14

  • Consuming Web Services in 11.2 does not work (UTL_DBWS)

    Hello
    i read some documents for consuming web services on the internet , but i get an error when i call add_numbers function as follows:
    i connected on WSUSER , then
    SQL> select add_numbers(1,3) from dual;
    The Error message is:
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.IllegalAccessException: java.lang.ExceptionInInitializerError
    ORA-06512: at "WSUSER.UTL_DBWS", line 193
    ORA-06512: at "WSUSER.UTL_DBWS", line 190
    ORA-06512: at "WSUSER.ADD_NUMBERS", line 25"
    I use the following steps to setup the UTL_DBWS :
    1-     Create new user 'WSUSER'
    2-     Run the UTL_DBWS scripts ( utl_dbws_decl.sql , utl_dbws_body.sql) on WSUSER.
    3-     Execute this command
    loadjava -u scott/tiger -r -v -f -genmissing dbwsclientws.jar dbwsclientdb11.jar
    4-     Log in as sys and grant these privileges to our new user:
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','http.proxySet','write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','http.proxyHost', 'write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','http.proxyPort', 'write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission', 'accessClassInPackage.sun.util.calendar','');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission','getClassLoader','');
    execute dbms_java.grant_permission('WSUSER','SYS:java.net.SocketPermission','*','connect,resolve');
    execute dbms_java.grant_permission('WSUSER','SYS:java.util.PropertyPermission','*','read,write');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission','setFactory','');
    execute dbms_java.grant_permission('WSUSER','SYS:java.lang.RuntimePermission', 'createClassLoader', '' )
    5-     Create add_numbers function on wsuser to test utl_dbws:
    CREATE OR REPLACE FUNCTION add_numbers (p_int_1 IN NUMBER,
    p_int_2 IN NUMBER)
    RETURN NUMBER
    AS
    l_service UTL_DBWS.service;
    l_call UTL_DBWS.call;
    l_wsdl_url VARCHAR2(32767);
    l_namespace VARCHAR2(32767);
    l_service_qname UTL_DBWS.qname;
    l_port_qname UTL_DBWS.qname;
    l_operation_qname UTL_DBWS.qname;
    l_xmltype_in SYS.XMLTYPE;
    l_xmltype_out SYS.XMLTYPE;
    l_return NUMBER;
    BEGIN
    l_wsdl_url := 'http://www.oracle-base.com/webservices/server.php?wsdl';
    l_namespace := 'http://www.oracle-base.com/webservices/';
    l_service_qname := UTL_DBWS.to_qname(l_namespace, 'Calculator');
    l_port_qname := UTL_DBWS.to_qname(l_namespace, 'CalculatorPort');
    l_operation_qname := UTL_DBWS.to_qname(l_namespace, 'ws_add');
    l_service := UTL_DBWS.create_service (
    wsdl_document_location => URIFACTORY.getURI(l_wsdl_url),
    service_name => l_service_qname);
    l_call := UTL_DBWS.create_call (
    service_handle => l_service,
    port_name => l_port_qname,
    operation_name => l_operation_qname);
    l_xmltype_in := SYS.XMLTYPE('<?xml version="1.0" encoding="utf-8"?>
    <ws_add xmlns="' || l_namespace || '">
    <int1>' || p_int_1 || '</int1>
    <int2>' || p_int_2 || '</int2>
    </ws_add>');
    l_xmltype_out := UTL_DBWS.invoke(call_Handle => l_call,
    request => l_xmltype_in);
    UTL_DBWS.release_call (call_handle => l_call);
    UTL_DBWS.release_service (service_handle => l_service);
    l_return := l_xmltype_out.extract('//return/text()').getNumberVal();
    RETURN l_return;
    END;
    6-     Test the function
    Select add_numbers(1,2) from dual
    on the test i get the error message :
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.IllegalAccessException: java.lang.ExceptionInInitializerError
    ORA-06512: at "WSUSER.UTL_DBWS", line 193
    ORA-06512: at "WSUSER.UTL_DBWS", line 190
    ORA-06512: at "WSUSER.ADD_NUMBERS", line 25
    anyone have an idea to resolve this error .
    thanks alot

    Hi.
    Looking at the code, it seems it is my article you are asking about.
    http://www.oracle-base.com/articles/10g/utl_dbws10g.php
    I've just run through it on an 11.2 instance and it works fine for me.
    Make sure your server has access to the Internet and make sure the java classes are loaded successfully.
    Cheers
    Tim...

  • Web Service Test in SE80 does not work with internal Table

    Hello,
    I have created a web server based on a function module. It works fine when the server is invoked from outside (.Net or SOAPUI).
    However, when I test it in SE80, (open the Server and then F8), it shows error message:
         Access to the table ref. node 'Y02VSI_CAE_CONDITIONITEM' outside a loop
    (Germany Zugriff auf den Tabellen-Ref-Node 'Y02VSI_CAE_CONDITIONITEM' außerhalb einer Schleife )
    The test xml is generated from SAP, I just fill the data as following:
    This XML is absolute correct. Why item ('Y02VSI_CAE_CONDITIONITEM) is outside a loop?
    Is it a bug from SAP?
    Thanks in advance!
    Regards
    Dianlong

    Hi Dianlong,
    Please check if SAP note 1132501 is relevant for your ECC release. If you apply the note, you may have to re-generate the web service from the function module.
    Regards, Trevor

  • What can I do for the following situation: I think my insert slot for the headphones does not work; when I put in any cable that should and can go in all I hear is low frequent static sounds.

    What can I do for the following situation: I think my insert slot for the headphones does not work; when I put in any cable that should and can go in all I hear is low frequent static sounds.

    You might try talking to the Apple store manager and see if you don't get more help...you might also contact Apple.com/support and see if they can give you a contact with the Apple Italy offices.
    Sounds like you have two levels of failure, the first shop that did the repair and broke a wire, and the second that has disabled something else and isn't helping.
    Apple officially refurbished equipment is usually good quality.  Surprising this has happened but you need to press on with complaints and try for resolution.

  • HT1267 IPhone4..Model MC603C/Ser#850441XGXA4S: I have update to 5.1.1. I am not alerted to my emails unless I tap on the mail app. Then the alert/banner appears. When I start up, the alert sounds but after that it does not work. Whats wrong?

    Ever since I updating my IPhone 4 to 5.1.1. my alert/banner does not work with my mail app. Initial startup it works but after that, it does
    not work. The only way I know there is a message by tapping on the mail app and then I hear the alert and the banner shows up. Prior
    to updating, it always worked. Is there a 'bug' in the system or is there something I am missing here.

    Yeah this was my first time connecting my phone to the computer since I went to iOS 5.0 and iCloud, so I wasn't familiar with the fact that it did not automatically create a backup on iTunes during the Sync process.  Should have right-clicked on the phone device and did a manual backup.
    But still, after restoring the backup from iCloud, I don't understand why data from certain apps got hosed (anything before October 2011, which was my last iTunes backup), while other apps' data appears to be fully intact.

  • Logfile monitoring for MSSQL ERRORLOG does not work with sapccmsr

    Hi
    We are running MSSQL2005 and wants to monitor the ERRORLOG for certain patterns, using the logfile monitoring feature of SAPCCMSR.
    We are using logfile monitoring with sapccmsr for a lot of other logfiles without problems, but for ERRORLOG is does not work!
    To be more precise: The agent does not report alerts for the text patterns specified. The agent runs fine and in RZ20 we can see that the logfile are checked every minute (but without finding the patterns).
    The strange thing is that:
    - It works for all other logfiles
    - If we do a "type ERRORLOG >> <new file>" and runs the same monitoring on this "copy" of the ERRORLOG then it works
    Any ideas?
    Best regards
    Tom Bo

    Hi,
    Please look at SAP note 1013331 https://service.sap.com/sap/support/notes/1013331.
    In special the changes after patch collection 2007/5.
    Practical you have to use a unicode CCMS Agent to monitor the ERRORLOG file of SQL2005, and add the "ENCODING=UTF-16" parameter in the template file....
    hope this helps..
    Regards
    Rolf

  • My dvd slot for imac10,1 does not work. It rejects the disc. Problem after reinstall of backup from hdd.

    My dvd slot for imac10,1 does not work. I had a new harddrive installed in November and the MacStore installed my backups from an external harddrive. I do not use it other than to upload programs, so I have not tried using it until tax season, but it rejects the disc. The ata file indicates no dvd firmware, but the serial-ata does indicate firmware for a dvdrw. What might I do about this to bring the dvd back, least expensive to most?

    Yesterday I started having the same problem. Can read disc (play movies and music) but blank disk are ejected or idvd cannot see the blank disk. I have a almost 12 month old 27" i7 imac.

  • Front page opens works shortly freezes. only yellow green buttons work. I click yellow to minimize normal top bar menu appears I choose new page, opens works normally. The restart saved tabs does not work on that first page.

    front page opens works shortly freezes.
    only yellow green buttons work. I click yellow to minimize normal top bar menu appears I choose new page, opens works normally.
    The restart saved tabs does not work on that first page.

    Hi @prdstudio3 ,
    Thank you for visiting the HP Support Forums. The Serial Number needed to be removed from your Post. This is From our Rules of Participation:
    Protect privacy - yours and others'. Don't share anything about yourself that you would not want to see on a road-side billboard. Don't post contact or other personal information-your own or anyone else's-or any content that you receive in one-to-one communications without the author's consent. For example, don’t post your computer’s serial # or contact information publicly, and do not allow someone you don’t know to remotely take control of your computer.
    If you need people to contact you directly, either ask them to send you a private message or subscribe to the thread so you will be notified when there are replies. You may also click on your name anywhere in the forum and you will be taken to your profile page, where you can find a list of threads you have participated in.
    Sharing personal email addresses, telephone numbers, and last names is not allowed for your safety. If you have any questions feel free to send me a private message in reply.
    Thank you
    George
    I work for HP

  • I cannot update or install updates on itunes. It says that the location for that file does not exist. I cant even uninstall itunes as the same error message comes up.

    I cannot update or install updates on itunes. It says that the location for that file does not exist. I cant even uninstall itunes as the same error message comes up.

    Hi vindog60,
    Thank you for using Apple Support Communities.
    To troubleshoot this issue where you get an installation error with iTunes on your Windows PC, please follow the steps in the article linked to below.
    Issues installing iTunes for Windows - Apple Support
    Cheers,
    Alex H.

  • Can't get to settings to turn on wifi because "sign in to icloud" pops up and asks for pw which does not work because i can't get to wifi  ?p

    can't get to settings to turn on wifi because "sign in to icloud" pops up and asks for pw which does not work because i can't get to wifi  ?

    The problem is I cannot turn on wireless setting.  The "sign in to icloud  -- enter appleid password" popup will not go away. when i enter the pw and click ok, the same balloon pops up again.  If I click "cancel" it pops again. Since I am not on the internet (because I cannot turn the ipad wireless on) the sign in to icloud obviously will not work.  Vicious circle.

  • HT1688 why do i have to reauthorize a computer that was already authorized, the computer i purchased some songs on does not exist anymore, and the email for that account does not exist anymore.

    why do i have to reauthorize a computer that was already authorized, the computer i purchased some songs on does not exist anymore, and the email for that account does not exist anymore. i can reset password because i doent know what the old one was

    Hi lgmmo,
    I think your best best to get this resolved is to contact Adobe Customer Care. Here's the contact info: Contact Customer Care.
    A quick Chat session should get you fixed up.
    Please let us know if you have additional questions.
    Best,
    Sara

  • [svn:fx-trunk] 7473: Fix for 'ant asdoc' does not work.

    Revision: 7473
    Author:   [email protected]
    Date:     2009-06-01 12:09:26 -0700 (Mon, 01 Jun 2009)
    Log Message:
    Fix for 'ant asdoc' does not work.
    It should now work from both svn and package zip.
    Bugs: SDK-15306
    QE Notes: None.
    Doc Notes: None.
    tests: checkintests
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-15306
    Modified Paths:
        flex/sdk/trunk/asdoc/build.xml
        flex/sdk/trunk/build.xml

  • So that airdrop does not work my? , not even it appears to me the configuration of this application.

    so that airdrop does not work my? , not even it appears to me the configuration of this application.

    Hi, as the forum topic title says: iOS: Troubleshooting applications purchased from the App Store, I guess this the right place to ask !!!
    Anyway I already tried to contact the developer. Page's link does not bring anywhere. no site, no contact mail :(:( it seems Apple bought a App from some... Ghost. And,  worst, now the App disappeared from ITunes Store and.... Apple support (at least by email) just mistalk about it giving no solution at all. I really guess who reply mails is a f...g computer trying analyzing the question and trying give solution. Coz their emails are always confusing or talking about sth else than my troubleshooting.
    Anyway... Ok... I just hope have at least my money back.
    Bye

Maybe you are looking for

  • Doubt in using SO_NEW_DOCUMENT_ATT_SEND_API1

    Im haveing a problem in this same FM. I want to send via e.mail the file attach of service object . I use the fm SO_DOCUMENT_READ_API1 to to read file. The problem is that I can not get the FM, I think I wrong to set some information, since sending i

  • Audio book download from iTunes

    I tried to download an audio book to my 2 week old, IPOD Classic....and it won't download and I get a message "The book was not copied to IPOD because it cannot be played on this IPOD.....I don't understand, are there different audiobooks for differe

  • Inserting data into custom infotype

    Hi, I`m trying to enter an employee record into a custom infotype (which basically belongs to PA ).   I`m using the FM 'HR_INFOTYPE_OPERATION' and usage of FM is as below. But the infotype is not getting updated with the values. IF NOT I_9111 IS INIT

  • Nable to install Mountain Lion because i havent purchased it.

    Hi to everyone. I just bought this Macbook Pro off a friend of mine and i whipped the hard drive clean only leaving the boot. I got a Mountain Lion system file and tried to reinstall it as it was but with a clean hard drive but it wont let me because

  • EDI in XML format

    HI all, I would like to know if EDI's could be in XML format? If yes, how can the edi's in xml can be pulled into SAP system, Are there any Functional Modules available.? Please comment.