In App Purchase showing "Service Not available" Message box with error code 805a01f4

Hi all ,
        I am developing a windows phone silverlight 8.1 application .When i trying to buy my public app product using credit card i am getting message Service not available ."The store isn't available at the moment.Please check back
in a bit . This error code may be helpful : 805a01f4 ." 
Please tell me how to resolve .
Thank you

Thanks for your response .
I try it many times . reboot the device and try again . . but still showing the same message . . but when i buy using "IDEA" .downloaded it without showing any error message . After  few seconds got a message on my number that "Dear customer,
thank you for downloading Awsome from MICROSOFT .You have been charged RS.55. Your balance is Rs.xxx " . Then, what is the problem with credit cards ? Why it showing the Service not available message ? 

Similar Messages

  • CIMC on C210 server throws Error 2001: Service not available message

    I am trying to configure vmware on a brand new C210 server for the first time and the directions say to access the CIMC and load the vmware media. Sounds easy enough except every time I go to the CIMC webpage I recieve an " error 2001: Service not available"  message on every page I go to and none of the server info fields are populated. If I try to make any changes and save my settings the same message pops up and no changes are saved. Almost like the CIMC doesn't recognize the server or hardware. I ran the host update utility just now and upgraded the firmware for everything to the latest version but still no progress. Anyone have this happen or know how I can fix this?
    Thanks in advance!
    Jess

    I got it working on one of the servers, and havent tried the same solutions on any other server.
    What i did was manually adding an IP adress to the management IP, then save the config before rebooting. After rebooting i put it back to get IP from DHCP, and saved the config. After a secound reboot i was able to use the mangement interface without the 2001 error.
    I'm not sure if it will work on the rest of the servers, but it's worth a try
    Regards
    Alex

  • The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.

    I am experiencing this error with one of our cluster environment. Can anyone help me in this issue.
    The Cluster Service function call 'ClusterResourceControl' failed with error code '1008(An attempt was made to reference a token that does not exist.)' while verifying the file path. Verify that your failover cluster is configured properly.
    Thanks,
    Venu S.
    Venugopal S ----------------------------------------------------------- Please click the Mark as Answer button if a post solves your problem!

    Hi Venu S,
    Based on my research, you might encounter a known issue, please try the hotfix in this KB:
    http://support.microsoft.com/kb/928385
    Meanwhile since there is less information about this issue, before further investigation, please provide us the following information:
    The version of Windows Server you are using
    The result of SELECT @@VERSION
    The scenario when you get this error
    If anything is unclear, please let me know.
    Regards,
    Tom Li

  • Windows Server 2008 R2 Service Pack 1 installation failed with error code 0x800f0a12

    Hello,
    I'm facing problem to install windows server 2008 R2 SP1. I cannot install SP1. In this server have running Exchange 2010 server. to update Win2008 R2 SP1 facing the following error:
    1. Service Pack installation failed with error code 0x800f0a12.
    2. Installation Failure: Windows failed to install the following update with error 0x80070643: Windows Server 2008 R2 Service Pack 1 for x64-based Systems (KB976932).
    Please suggest

    Please run the system update readiness tool.
    http://windows.microsoft.com/en-us/windows7/What-is-the-System-Update-Readiness-Tool?SignedIn=1
    Then post the complete contents of;
    %SYSTEMROOT%\Logs\CBS\CheckSUR.log
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • ORA-29278: SMTP transient error: 421 Service not available

    Hi all,
    I'm using Oracle 10g working on Windows XP Home.
    I'm trying to send a basic mail from my stored procedure.
    When I tried to run the code, I get ORA-29278: SMTP transient error: 421 Service not available.
    Below is the code I'm trying.
    CREATE OR REPLACE PROCEDURE SEND_MAIL (
    msg_to varchar2,
    msg_subject varchar2,
    msg_text varchar2 )
    IS
    c utl_smtp.connection;
    rc integer;
    msg_from varchar2(50) := 'Oracle9.2';
    mailhost VARCHAR2(30) := '127.0.0.1'; -- local database host
    BEGIN
    c := utl_smtp.open_connection(mailhost, 25); -- SMTP on port 25
    dbms_output.put_line('ok');
    utl_smtp.helo(c, mailhost);
    utl_smtp.mail(c, msg_from);
    utl_smtp.rcpt(c, msg_to);
    utl_smtp.data(c,'From: Oracle Database' || utl_tcp.crlf ||
    'To: ' || msg_to || utl_tcp.crlf ||
    'Subject: ' || msg_subject ||
    utl_tcp.crlf || msg_text);
    utl_smtp.quit(c);
    EXCEPTION
    WHEN UTL_SMTP.INVALID_OPERATION THEN
    dbms_output.put_line(' Invalid Operation in Mail attempt using UTL_SMTP.');
    WHEN UTL_SMTP.TRANSIENT_ERROR THEN
    dbms_output.put_line(' Temporary e-mail issue - try again');
    dbms_output.put_line (sqlerrm);
    WHEN UTL_SMTP.PERMANENT_ERROR THEN
    dbms_output.put_line(' Permanent Error Encountered.');
    END;
    Below are the possibilites I tried..
    I tried to ping localhost.. This is the output I get
    C:\Documents and Settings\Me>ping localhost
    Pinging polasa [127.0.0.1] with 32 bytes of data:
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Ping statistics for 127.0.0.1:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    In one of the thread, a user suggested to do the following
    Go to Control Panel->Add or Remove Programs->Click on
    Add/Remove Wndows Components
    Check IIS check box.
    Select Internet Information Service (IIS) option and click on Details button
    Check whether SMTP Service is checked or not.
    If not selected then select SMTP check box.
    This process should be done on server.
    It will help out from ORA-29278: SMTP transient error: 421 Service not available
    problem.
    There is no IIS in my Windows Components..
    Any suggestions? Thanks in advance

    It sounds like you don't have an SMTP server running on your local machine.
    Even if you install IIS (or some other SMTP server), that is probably not enough to send email outside of your machine because your machine is unlikely to be trusted by the downstream mail servers. If you are running this in a company, you'll need to talk to your company's mail admin to determine where the corporate SMTP server is running. If you running this at home, you'll need to find out from your ISP what SMTP servers are available to you.
    Justin

  • Central Administration not Available, STSADM password reset errors "job-admin-apppool-change" already exists

    Hi Everyone,
    I think I've shot myself in the foot by not properly following set up instructions.
    I have a two-fold problem.  Firstly, my Sharepoint Central Administration V4 site is showing
    Service Not Available.  This seems to be related to the credentials the
    Central Administration V4 Application Pool - hitting Test Settings within
    IIS Manager for the site shows an Authentication and Authorization error for the credentials due to a bad password.
    My reading indicates that I should run something to the effect of:
    %STSADM -o updatefarmcredentials -userlogin DOMAIN\username -password <new password as set via AD>
    This runs into the following Error message
    Error deploying administration application pool credentials. Another deployment may be active. An object of the type Microsoft.SharePoint.Administration.SPAdminAppPoolCredentialDeploymentJobDefinition named "job-admin-apppool-change" already exists
    under the parent Microsoft.SharePoint.Administration.SPTimerService named "SPTimerV4".  Rename your object or delete the existing object.
    I've tried searching out a solution but as yet have been unable to find a mechanism to resolve this error.  I have had a look through http://social.technet.microsoft.com/forums/en-US/sharepointadmin/thread/b7c17dac-1cd1-4f75-a031-e28e4fbfd2f7 but
    it doesn't seem to relate to the same problems - as far as I know the account from which the command is being run is a farm administrator and the problem seems to be the existing job rather than permissions errors.
    Your help will be much appreciated.
    Stuart

    Hi Stuart Weaver,
    Firstly, please check if the SharePoint 2010 timer service is running. If not, please start it manually, then check the effect. In addition to this, you can try to
    run SharePoint configuration wizard, then check the effect.
    Note: when you start the SharePoint 2010 timer service, make sure you input the latest password. The steps are as follows:
    Open services.msc, locate the SharePoint 2010 timer service, double click it, then click log on tab, input the updated password, then click apply.
    Hope this helps.
    Rock Wang
    Regards, Rock Wang Microsoft Online Community Support

  • Error code 805a01f4 when purchasing.

    Since last week I have started getting emails from some users about an error they are getting when trying to complete an in-app purchase of a durable product. 
    “The Store isn’t available at the moment. Please try check again later.
    This error code may be helpful: 805a01f4”
    I've had it reported in Australian and UK markets places.
    It's a long established product to which I have made no changes.  I know this error has been reported before on the forums but there does not seem to have been any confirmed identification of the cause of the problem that may apply to my apps circumstances.
    Is anyone else getting this at the moment?
    Thanks,
    Kevin

    Hi Joe,
    I am still getting users reporting this.  Here's the account of one of them.
    "Since one month I am trying to install the in-app purchase but it fails.
    The message “store is not available” with “error code 805a01f4″  appears. Tried with Paypal and with Windows giftcard, but both do not work. Spend one hour on the phone with Microsoft NL and one hour chatting with Microsoft UK, but problem is not solved.
    Can buy other apps, but not this one. I can send the transcript of the chat if you are interested in the actions taken as part of the investigation.
    At Microsoft a problem in with your app is expected, but they promised to investigate further. Are you waiting for them, or do you have a remedy to solve the error?
    I really appreciate a solution soon."
    How can it be a problem with my app if many other users are successfully downloading the in-app purchase but just some cannot?

  • HT1338 The Mac App Store shows an update available for iMovie but when I click "update" it gives me this message, "The product distribution file could not be verified. It may be damaged or was not signed." What can I do to update this program?

    The Mac App Store shows an update available for iMovie but when I click "update" it gives me this message, "The product distribution file could not be verified. It may be damaged or was not signed." What can I do to update this program?

    http://www.apple.com/support/mac/app-store/contact.html?form=account

  • I'm trying to re-install an earlier version of a third party app I bought from App Store, version is not available anymore. The problem, 3rd party does not recognize my purchase ID, since I got it from App Store.

    I'm trying to re-install an earlier version of a third party app I bought from App Store, version is not available anymore. The problem, 3rd party does not recognize my purchase ID, since I got it from App Store. My Mac Air Book is limited to update up to OS 10.6.8, unaware of updating the new version of Mac Cleanse I bought from App Store, this new version does not support my OS 10.6. How can the App Store provide me with an earlier version of Mc Cleanse?
    Thanks,
    jerson

    It can't. That app is now lost to you.

  • I am trying to make an in-app purchase.  I get a message that in-app purchases are not allowed.  Help!

    I am trying to make an in-app purchase.  I get a message that in-app purchases are not allowed.  Help!

    In-app purchase
    http://support.apple.com/kb/ht4009

  • Apps menu shows 5 updates available, but when I go to download them it says none are available

    apps menu shows 5 updates available, but when I go to download them it says none are available.  How do I remove that number?

    Get some apps from someone else, perhaps? You can check by doing a "Get Info" on your apps; that will show the account under which they were purchased.
    Oh, and just to clarify so I'm not barking up the wrong tree, what exactly is iTunes saying? Is it showing the number in the icon indicating that there are five apps to be updated but showing the screen that says "No updates are currently available"? Or is it giving an error message somethign like "the item you requested is not available in the iTunes Store"?
    Message was edited by: varjak paw

  • Service Not Available error with SSAS cube

    Hi,
    We imported Microsoft Analysis Services (SSAS) Cube into RPD using XMLA.  While using the drill down feature in BI answers using presentation hierarchies, OBIEE is generating the following error
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: URL: http://<server>/<app name>/msmdpump.dll. The http return status is 503.< html><head><title>Service Not Available</title></head><body>Service Not Available</body></html>
    However, drill down feature is working fine with attribute columns. Also the report is working fine up to certain level of drill down. In the log it is evident that OBIEE is generating multiple physical queries (with clause) to pull the data from the cube.
    Is there any limit on the size of the mdx or number of mdx queries that msmdpump.dll can process?  Is there any configuration that needs to be modified while working with SSAS cubes?
    OBIEE version: 11.1.1.6.2 BP1
    Much appreciate your time.

    Hi Dhar,
    Thanks for your reply.
    Yes, your observation is correct. Changing the type of the hierarchies has some effect on the issue. I'm able to drill down to few more levels as the MDX generated by OBIEE in this less complex. But ultimately I'm facing the same issue after certain stage. I can only think of, the number of physical queries generated by OBIEE, as one of the possible reason for this. What is your opinion?
    Interestingly, I tested the same RPD in 11.1.1.6.5 and I'm unable to reproduce in the issue so far in my testing . Is it a bug in 11.1.1.6.2?! However, upgrading to 11.1.1.6.5 is not an option for us at this stage.
    Were you able to resolve the issue completely by only changing the hierarchy type? What version you have used in you project?
    Thanks.

  • SMTP service not available

    Hi,
    How to send mail through the following code ?
    CREATE OR REPLACE PROCEDURE send_mail (p_to IN VARCHAR2,
    p_from IN VARCHAR2,
    p_message IN VARCHAR2,
    p_smtp_host IN VARCHAR2,
    p_smtp_port IN NUMBER DEFAULT 25)
    AS
    l_mail_conn sys.UTL_SMTP.connection;
    BEGIN
    l_mail_conn := sys.UTL_SMTP.open_connection(p_smtp_host, p_smtp_port);
    sys.UTL_SMTP.helo(l_mail_conn, p_smtp_host);
    sys.UTL_SMTP.mail(l_mail_conn, p_from);
    sys.UTL_SMTP.rcpt(l_mail_conn, p_to);
    sys.UTL_SMTP.data(l_mail_conn, p_message || UTL_TCP.crlf || UTL_TCP.crlf);
    sys.UTL_SMTP.quit(l_mail_conn);
    END;
    BEGIN
    send_mail(p_to => '[email protected]',
    p_from => '[email protected]',
    p_message => 'This is a test message.',
    p_smtp_host => 'mail.google.com');
    END;
    ERROR:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 20
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 138
    ORA-06512: at "APPS.SEND_MAIL", line 9
    ORA-06512: at line 2
    Please help me to get through the error.
    Thanks in advance ,
    Pradeep
    Edited by: user11165897 on Dec 7, 2012 2:27 AM

    Hi,
    here all the input values are wrong.
    By providing correct host, email, port it is working fine now..
    pradeep

  • 503 Service not available

    Hi.
    Could you help me ....
    I modified a bsp to display a PDF file into a new popup window, and I tested into my quality server using SE80 transaction and with my portal application after and evething was OK but when a released the new BSP into production server the BSP crashed.
    This is the error message that throws:
    503 Service not Available
    Erro 6
    Version 6040
    MOdule http_j2ee_mt.c
    Line  795
    Server EMKIOAIX103_CRP_00
    Details Cannot reach external application server on localhost:50000
    I explain you my program does it:
    1.-  the user chooses the a record into a Inbox
    2.-  IC display its data with BSP IRecReason
    3.- the user chooses a Action link
    4.- IC display a action PRINT PDF
    5.- the user selects a print pdf
    This is my code to EH_ONGO than create the PDF spool
    METHOD EH_ONGO .
      DATA: function_name TYPE rs38l_fnam,
            dummy(254)        TYPE c,
            ls_archive_index  TYPE toa_dara,
            ls_orderadm_h     TYPE crmt_output_orderadm_h_com,
            ls_activity_h     TYPE crmt_output_activity_h_com,
            ls_lead_h         TYPE crmt_output_lead_h_com,
            ls_opport_h       TYPE crmt_output_opport_h_com,
            ls_orgman_h       TYPE crmt_output_orgman_h_com,
            lt_partner_h      TYPE crmt_output_partner_h_comt,
            ls_pricingdata_h  TYPE crmt_output_pricingdata_h_com,
            ls_sales_h        TYPE crmt_output_sales_h_com,
            ls_shipping_h     TYPE crmt_output_shipping_h_com,
            lt_payplan_d_h    TYPE crmt_output_payplan_d_h_comt,
            ls_customer_h     TYPE crmt_output_customer_h_com,
            ls_cumulat_h     TYPE crmt_output_cumulat_h_com,
            lt_billing_h     TYPE   crmt_output_billing_h_comt,
            lt_cancel_h      TYPE   crmt_output_cancel_h_comt,
            lt_appointment_h TYPE   crmt_output_appointment_h_comt,
            lt_billplan_d_h  TYPE   crmt_output_billplan_d_h_comt,
            lt_billplan_h    TYPE   crmt_output_billplan_h_comt,
            lt_status_d_h    TYPE   crmt_output_status_d_h_comt,
            lt_status_h      TYPE   crmt_output_status_h_comt,
            lt_srv_subject_h TYPE   crmt_output_srv_subject_h_comt,
            lt_srv_reason_h  TYPE   crmt_output_srv_reason_h_comt,
            lt_srv_result_h  TYPE   crmt_output_srv_result_h_comt,
            ls_acs_h         TYPE   crmt_acs_h_com,
            lt_orderadm_i    TYPE   crmt_output_orderadm_i_comt,
            lt_orgman_i      TYPE   crmt_output_orgman_i_comt,
            lt_pricingdata_i TYPE   crmt_output_pricingdata_i_comt,
            lt_pricing_i     TYPE   crmt_output_pricing_i_comt,
            lt_product_i     TYPE   crmt_output_product_i_comt,
            lt_sales_i       TYPE   crmt_output_sales_i_comt,
            lt_shipping_i    TYPE   crmt_output_shipping_i_comt,
            lt_schedlin_i    TYPE   crmt_output_schedlin_i_comt,
            lt_customer_i    TYPE   crmt_output_customer_i_comt,
            lt_partner_i     TYPE   crmt_output_partner_i_comt,
            lt_item_cstics_i TYPE   crmt_item_cstics_tab,
            lt_billing_i     TYPE   crmt_output_billing_i_comt,
            lt_cancel_i      TYPE   crmt_output_cancel_i_comt,
            lt_finprod_i     TYPE   crmt_output_finprod_i_comt,
            lt_ordprp_i      TYPE   crmt_output_ordprp_i_comt,
            lt_appointment_i TYPE   crmt_output_appointment_i_comt,
            lt_billplan_d_i  TYPE   crmt_output_billplan_d_i_comt,
            lt_billplan_i    TYPE   crmt_output_billplan_i_comt,
            lt_orderadm_i_qt TYPE   crmt_output_orderadm_i_qt_comt,
            lt_orderadm_i_in TYPE   crmt_output_orderadm_i_in_comt,
            lt_schedlin_i_cf TYPE   crmt_output_schedlin_i_cf_comt,
            lt_status_i      TYPE   crmt_output_status_i_comt,
            lt_working_set_e_s_bbp TYPE /1cn/working_set_e_s_bbp_t,
            lv_language LIKE  sy-langu,
            lo_order TYPE REF TO cl_doc_crm_order,
            lv_object_guid TYPE crmt_object_guid,
            lv_object_kind TYPE crmt_object_kind,
            lv_status TYPE jstat,
            lt_status TYPE TABLE OF jstat,
            lv_error_tab_wrk TYPE ssferror,
            ls_output_options TYPE ssfcompop.
    DATA: IP_SMART_FORM  Type     TDSFNAME,
          IO_APPL_OBJECT Type Ref To OBJECT,
         IO_APPL_OBJECT Type Ref to CL_DOC_CRM_ORDER_H,
          IO_PARTNER Type Ref to CL_PARTNER_PPF,
          IS_ARCHIVE_INDEX  Type TOA_DARA,
          CT_ARCHIVE_INDEX_TAB Type TSFDARA,
          IS_ARCHIVE_PARAMETERS  Type ARC_PARAMS,
          control_parameters TYPE ssfctrlop,
          IS_MAIL_APPL_OBJ  Type SWOTOBJID,
          IS_MAIL_RECIPIENT  Type SWOTOBJID,
          IS_MAIL_SENDER  Type SWOTOBJID,
          IP_USER_SETTINGS type TDBOOL,
          ES_DOCUMENT_OUTPUT_INFO type SSFCRESPD,
          ES_JOB_OUTPUT_INFO type SSFCRESCL,
          ES_JOB_OUTPUT_OPTIONS type SSFCRESOP.
    Resultado generado: Formato PDF
    data: l_pdf_xstring  type xstring,
          lt_lines       type table of tline,
          ls_line        type tline,
          l_pdf_len      type i,
          lv_exist       type n,
          output_data    type ssfcrescl,
          lp_proc_stat TYPE ppfdtstat.
    Explanation: this method executes the action,
    gets the medium, gets the log, reads the messages from
    the log and gets the spool id from the messages.     JLARIN 27/DIC/06
    DATA: lv_event TYPE REF TO cl_htmlb_event_tableview,
          lv_index TYPE int4,
          wa_action TYPE LINE OF crmt_action_table_tab,
          ls_action_obj TYPE REF TO if_action_ppf,
          lr_action TYPE REF TO cl_trigger_ppf,
          lr_medium type Ref to     if_medium_ppf,
         ls_action TYPE zcrmt_action,
          lv_spoolid TYPE symsgv.
    DATA:
         grid   type ref to cl_crm_ic_gridlayout,
         GLOBAL_EVENT     type string.
    data: lo_trigger type ref to CL_TRIGGER_PPF,
          lo_sfprint type ref to CL_SF_PRINT_PPF,
          lo_typed_context type ref to CL_CRM_IC_IRECACTIONPLAN_CTXT,
          lt_all_data type PPFSINPRRU.
    data: lo_rp_rc type i.
    DATA: lv_head_guid      TYPE crmt_object_guid.
      DATA: adminh     TYPE REF TO cl_crm_ic_irecactionplan_cn02,
            guidstring TYPE string,
            guid       TYPE crmt_object_guid,
            action_obj   TYPE crmt_action_obj_tab,
            lv_object_id TYPE crmt_object_id.
       DATA: request_event TYPE REF TO cl_htmlb_event.
       DATA: event_data    TYPE REF TO if_htmlb_data.
       DATA: event_value  type string.
        event_data = cl_htmlb_manager=>get_event_ex( request ).
        if event_data is bound.
          try.
              request_event ?= event_data.
            catch cx_sy_move_cast_error.
              clear request_event.
          endtry.
          event_value = event_data->event_id.
          translate event_value to lower case.             "#EC TRANSLANG
       endif.
       if event_value <> 'x1_x3_x17_x21_actionitems'.
          return.
       endif.
    TRY.
    create object lo_sfprint.
    create object lo_trigger.
        lv_exist = 1.
      Get the header GUID
        adminh = typed_context->btadminh.
        guidstring = adminh->get_actionitem( 'GUID' ).
        If guidstring is initial.
           return.
        endif.
        lv_head_guid = guidstring.
        CALL FUNCTION 'CRM_ORDERADM_H_READ_OW'
          EXPORTING
            iv_orderadm_h_guid     = lv_head_guid
          IMPORTING
            ev_object_id           = lv_object_id
          EXCEPTIONS
            admin_header_not_found = 1
            OTHERS                 = 2.
           CALL FUNCTION 'CRM_ACTION_GET_TOOLBAR_IL'
          EXPORTING
            iv_ref_guid     = lv_head_guid
            iv_ref_kind     = 'A'
          IMPORTING
            et_action_obj   = action_obj
            et_action_fld   = action_fld
          EXCEPTIONS
            parameter_error = 1
            error_occurred  = 2
            error_message   = 3
            OTHERS          = 4.
        IF sy-subrc EQ 0.
          LOOP AT action_fld INTO wa_action where applkey = lv_object_id.
          ENDLOOP.
          IF sy-subrc EQ 0.
             ls_action_obj = wa_action-action.
             lv_exist = 0.
          ENDIF.
        ENDIF.
        if lv_exist is initial.
        CALL METHOD ls_action_obj->get_processing
         IMPORTING
           ei_processing = lr_medium.
        CALL METHOD lo_trigger->get_appl
          RECEIVING
            result = io_appl_object.
          call function 'CRM_ACTION_GET_APPL_OBJECT'
            exporting
              iv_ref_guid          = lv_head_guid
              iv_ref_kind          = 'A'
            IMPORTING
              EV_APPL_OBJECT       = io_appl_object.
        CALL METHOD lr_medium->execute
          EXPORTING
            io_appl_ref       = io_appl_object   "lo_appl_ref
          RECEIVING
            rp_status         = lp_proc_stat
          EXCEPTIONS
            missing_arguments = 1
            OTHERS            = 2.
      ip_smart_form =  lr_medium->get_smartform( ).
        ip_smart_form = 'ZIMPR_ORDEN_RASTREO'.
      get the function name for this smart form
        CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
          EXPORTING
            formname           = ip_smart_form
          IMPORTING
            fm_name            = function_name
          EXCEPTIONS
            no_form            = 1
            no_function_module = 2
            OTHERS             = 3.
    determine the tables of the application
      CALL FUNCTION 'CRM_OUTPUT_SINGLE_READ'
        EXPORTING
          iv_object                 = io_appl_object
          iv_smart_form             = ip_smart_form
          ir_partner                = io_partner
        IMPORTING
          es_output_orderadm_h      = ls_orderadm_h
          es_output_activity_h      = ls_activity_h
          es_output_lead_h          = ls_lead_h
          es_output_opport_h        = ls_opport_h
          es_output_orgman_h        = ls_orgman_h
          es_output_pricingdata_h   = ls_pricingdata_h
          es_output_sales_h         = ls_sales_h
          es_output_shipping_h      = ls_shipping_h
          et_output_partner_h       = lt_partner_h
          et_output_payplan_d_h     = lt_payplan_d_h
          es_output_customer_h      = ls_customer_h
          es_output_cumulat_h       = ls_cumulat_h
          et_output_billing_h       = lt_billing_h
          et_output_cancel_h        = lt_cancel_h
          et_output_appointment_h   = lt_appointment_h
          et_output_billplan_d_h    = lt_billplan_d_h
          et_output_billplan_h      = lt_billplan_h
          et_output_status_d_h      = lt_status_d_h
          et_output_status_h        = lt_status_h
          et_output_srv_subject_h   = lt_srv_subject_h
          et_output_srv_reason_h    = lt_srv_reason_h
          et_output_srv_result_h    = lt_srv_result_h
          es_output_acs_h           = ls_acs_h
          et_output_orderadm_i      = lt_orderadm_i
          et_output_orgman_i        = lt_orgman_i
          et_output_pricingdata_i   = lt_pricingdata_i
          et_output_pricing_i       = lt_pricing_i
          et_output_product_i       = lt_product_i
          et_output_sales_i         = lt_sales_i
          et_output_shipping_i      = lt_shipping_i
          et_output_schedlin_i      = lt_schedlin_i
          et_output_partner_i       = lt_partner_i
          et_item_cstics_i          = lt_item_cstics_i
          et_output_customer_i      = lt_customer_i
          et_output_billing_i       = lt_billing_i
          et_output_cancel_i        = lt_cancel_i
          et_output_finprod_i       = lt_finprod_i
          et_output_ordprp_i        = lt_ordprp_i
          et_output_appointment_i   = lt_appointment_i
          et_output_billplan_d_i    = lt_billplan_d_i
          et_output_billplan_i      = lt_billplan_i
          et_output_orderadm_i_qt   = lt_orderadm_i_qt
          et_output_orderadm_i_in   = lt_orderadm_i_in
          et_output_schedlin_i_cf   = lt_schedlin_i_cf
          et_output_status_i        = lt_status_i
          et_output_wrk_set_e_s_bbp = lt_working_set_e_s_bbp
          ev_language               = lv_language.
      control_parameters-langu = sy-langu.
      control_parameters-no_dialog = 'X'.
      control_parameters-getotf    = 'X'.
    call function to process smart form
      CALL FUNCTION function_name
        EXPORTING
          archive_index        = is_archive_index
          archive_index_tab    = ct_archive_index_tab
          archive_parameters   = is_archive_parameters
          control_parameters   = control_parameters
          mail_appl_obj        = is_mail_appl_obj
          mail_recipient       = is_mail_recipient
          mail_sender          = is_mail_sender
          output_options       = ls_output_options
          user_settings        = ip_user_settings
          orderadm_h           = ls_orderadm_h
          activity_h           = ls_activity_h
          lead_h               = ls_lead_h
          opport_h             = ls_opport_h
          orgman_h             = ls_orgman_h
          partner_h            = lt_partner_h
          pricingdata_h        = ls_pricingdata_h
          sales_h              = ls_sales_h
          shipping_h           = ls_shipping_h
          payplan_d_h          = lt_payplan_d_h
          cumulat_h            = ls_cumulat_h
          customer_h           = ls_customer_h
          acs_h                = ls_acs_h
          billing_h            = lt_billing_h
          cancel_h             = lt_cancel_h
          appointment_h        = lt_appointment_h
          billplan_d_h         = lt_billplan_d_h
          billplan_h           = lt_billplan_h
          status_d_h           = lt_status_d_h
          status_h             = lt_status_h
          srv_subject_h        = lt_srv_subject_h
          srv_reason_h         = lt_srv_reason_h
          srv_result_h         = lt_srv_result_h
          orderadm_i           = lt_orderadm_i
          orderadm_i_qt        = lt_orderadm_i_qt
          orderadm_i_in        = lt_orderadm_i_in
          orgman_i             = lt_orgman_i
          pricingdata_i        = lt_pricingdata_i
          pricing_i            = lt_pricing_i
          product_i            = lt_product_i
          sales_i              = lt_sales_i
          schedlin_i           = lt_schedlin_i
          schedlin_i_cf        = lt_schedlin_i_cf
          shipping_i           = lt_shipping_i
          partner_i            = lt_partner_i
          item_cstics_i        = lt_item_cstics_i
          customer_i           = lt_customer_i
          billing_i            = lt_billing_i
          cancel_i             = lt_cancel_i
          finprod_i            = lt_finprod_i
          ordprp_i             = lt_ordprp_i
          appointment_i        = lt_appointment_i
          billplan_d_i         = lt_billplan_d_i
          billplan_i           = lt_billplan_i
          status_i             = lt_status_i
          working_set_e_s_bbp  = lt_working_set_e_s_bbp
          language             = lv_language
        IMPORTING
          document_output_info = es_document_output_info
          job_output_info      = output_data
          job_output_options   = es_job_output_options
        EXCEPTIONS
          output_canceled      = 1
          parameter_error      = 2
          OTHERS               = 3.
        call function 'CONVERT_OTF'
          EXPORTING
            format                = 'PDF'
          IMPORTING
            bin_filesize          = l_pdf_len
            bin_file              = l_pdf_xstring
          TABLES
            OTF                   = OUTPUT_DATA-OTFDATA
            LINES                 = LT_LINES
          EXCEPTIONS
            err_max_linewidth     = 1
            err_format            = 2
            err_conv_not_possible = 3
            err_bad_otf           = 4
            others                = 5.
          IF SY-SUBRC = 0.
            DATA: lv_string TYPE string,
                  lv_numguid(10) TYPE N.
            lv_string = lv_spoolid.
            lv_numguid = lv_object_id.
           CALL METHOD op_previewspool( iv_spoolid = lv_string ).
            me->op_previewspool( iv_spoolid     = lv_string
                                 lv_pdf_xstring = l_pdf_xstring
                                 lv_guid        = lv_numguid ).
          ENDIF.
        endif.
        CATCH cx_sy_move_cast_error.
      ENDTRY.
    ENDMETHOD.
    <b>This part send the result to a new windows and refresh a main page, but thow a error 503 ...</b>
    method OP_PREVIEWSPOOL .
    *{   INSERT         CRDK902447                                        1
      DATA: lv_url TYPE string.
    DATA: cached_response TYPE REF TO if_http_response,
          new_navegator   TYPE REF TO CL_WB_NAVIGATOR_NEW_WINDOW,
          new_navigation   TYPE REF TO CL_BSP_NAVIGATION.
    DATA: guid TYPE guid_32.
    Resultado generado: Formato PDF
      data: l_pdf_xstring  type xstring,
            display_url    type string,
            pagina_url    type string,
            display_pag    type string,
            V_TARGET_URL   TYPE STRING,
            W_APP_NAME     TYPE STRING,
            l_pdf_len      type i.
    DATA:  out TYPE REF TO IF_BSP_WRITER,
            lv_out TYPE REF TO cl_BSP_WRITER,
            lv_context Type Ref to IF_BSP_PAGE_CONTEXT,
            lv_body type string,
            lv_body2 type string,
            lv_guidmem(10) type n,
            lv_doscmd(200),
            lv_pag   type xstring,
            lv_back(2) type n.
    IF not lv_pdf_xstring is initial.
        CREATE OBJECT cached_response TYPE CL_HTTP_RESPONSE EXPORTING add_c_msg = 1.
        l_pdf_len = xstrlen( lv_pdf_xstring ).
        cached_response->set_data( data   = lv_pdf_xstring
                              length = l_pdf_len ).
        cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                           value = 'application/pdf' ).
         cached_response->set_header_field(
                            name  = 'content-disposition'
                            value = 'attachment; filename = test.pdf' ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        CALL FUNCTION 'GUID_CREATE'
          IMPORTING
            ev_guid_32 = guid.
    DATA:
        LV_HOST     TYPE STRING,     "Host name
        LV_PORT     TYPE STRING,     "Port Number
        LV_LOCAL_URL     TYPE STRING,     "URL (Relative to the Current Server)
        LV_ABS_URL     TYPE STRING,     "URL (Absolute, incl. Protocol, Host, Port)
        LV_PROTOCOL     TYPE STRING,     "Available Protocol
        LV_servidor     TYPE STRING.     "Available Protocol
    Construct the Target URL
          CALL METHOD RUNTIME->CONSTRUCT_BSP_URL
            EXPORTING
              IN_PROTOCOL       = 'http'
              IN_APPLICATION_NS = RUNTIME->APPLICATION_NAMESPACE
              IN_APPLICATION    = 'crm_ic'
              IN_PAGE           = '**/crm_ic'
            IMPORTING
              OUT_ABS_URL       = V_TARGET_URL
              OUT_HOST          = LV_HOST
              OUT_PORT          = LV_PORT
              OUT_LOCAL_URL     = LV_LOCAL_URL
              OUT_PROTOCOL      = LV_PROTOCOL.
            CONCATENATE 'crm_ic' '/**/' INTO W_APP_NAME.
          REPLACE W_APP_NAME IN V_TARGET_URL WITH SPACE.
        CONCATENATE V_TARGET_URL '/' guid '.pdf' INTO display_url.
        cl_http_server=>server_cache_upload( url      = display_url
                                             response = cached_response ).
        lv_url = adapter->if_bsp_page~get_page_url( ).
        if LV_PORT is initial.
           concatenate 'http://' LV_HOST lv_url+0(61) 'default.do' into lv_url.
        else.
           concatenate 'http://' LV_HOST ':' LV_PORT lv_url+0(61) 'default.do' into lv_url.
        endif.
          lv_body2 = '<html><head><script language=JavaScript>'.
          concatenate lv_body2 'window.open("' display_url '"); ' INTO lv_body2.
          concatenate lv_body2 ' location.href = "' lv_url '";  </script></head>' INTO lv_body2.
          concatenate lv_body2 '<body></body></html>' INTO lv_body2.
         concatenate lv_body2 ' function back(){ history.back( ); } </script></head>' INTO lv_body2.
         concatenate lv_body2 '<body><a href="javascript:back();">regresar</a></body></html>' INTO lv_body2.
          response->append_cdata( data = lv_body2 ) .
          response->set_header_field( name  = 'content-type'
                                      value = 'text/html' ). "#EC NOTEXT
          response->set_header_field( name = 'cache-control' value = 'max-age=0' ). "#EC NOTEXT
         response->set_header_field( name = 'Expires' value = '0' ). "#EC NOTEXT
          navigation->response_complete( ).
    return.
    ENDIF.
    endmethod.

    Using the search bar, it seems it's a proxy issue, but finding a simple solution did not seem apparent.  Have you tried a reboot?  To reboot, hold the power and home buttons at the same time for at least 10 seconds (hold past the swipe to shut down bar, should it appear) until the Apple Logo appears, then let go fo both buttons and your iPad will restart.  Hopefully, this will solve the problem......

  • 503 Service not available error while testing web service in SOAMANAGER

    Hi guys,
    We have created a web service in ABAP and want to test it in soamanager.
    When trying to test it using the    "Open Web Service navigator for selected binding" link in web service administration page    we get the error page--
    503 Service not available
    Error: -6
    Version: 7000
    Component: J2EE Server
    Date/Time: Thu Jul 30 10:40:50 2009 
    Module: http_j2ee.c
    Line: 820
    Server: cmphr_HRC_10
    Error Tag:
    Detail: Cannot reach external Application Server on localhost:51000
    we have enabled the wsdl service in SICF and also the APP SOA MANAGER service.
    Can anyone please help.
    Thanks in advance.
    Regards
    Prince

    Hi,
    Detail: Cannot reach external Application Server on localhost:51000
    51000 is the port when the j2ee engine runs. As you dont have java stack am afraid this would not work.
    Regards,
    Vamshi.

Maybe you are looking for