Problem when post G/L Document via BAPI_ACC_GL_POSTING_POST

What I am doing is to post new G/L Accounting Document on each successfully paid transaction, each successfully reversed transaction, each rejected transaction for bank XXX, and each payment transaction for bank YYY in 3 Events respectively. And I am using the BAPI BAPI_ACC_GL_POSTING_POST to post.
but in the return table there are error messages, the sample code is as follows:
*& Get the OBJ_KEY of DOCUMENTHEADER *
get the current fiscal year
   l_fiscyear = sy-datum(4).
select the Number Range NO. out from T003
   select single numkr
      from t003
       into l_numkr
    where blart = 'SY'.
  if sy-subrc <> 0.
    message .
  endif.
call FM to get the Accounting Doc. No.
  call function 'NUMBER_GET_NEXT'
    exporting
       nr_range_nr = l_numkr
           object      = ‘RF_BELEG’
      subobject      = ‘HKHK’
          toyear      = l_fiscyear
      importing
          number = p_belnr
      exceptions
        interval_not_found = 1
        number_range_not_intern = 2
        object_not_found = 3
        quantity_is_0 = 4
        quantity_is_not_1 = 5
        interval_overflow = 6
        buffer_overflow = 7
        others = 8.
if sy-subrc <> 0.
message
endif.
concatenate the Accountint Doc. No, the company code and the
fiscal year together as the OBJ_KEY
concatenate p_belnr ‘HKHK' l_fiscyear into lx_docheader-obj_key.
&--Get OBJ_KEY end--
get the OBJ_SYS
  select single logsys
              from t000
              into lx_docheader-obj_sys
            where mandt = sy-mandt.
if sy-subrc <> 0.
message
endif.
fill the structure parameter DOCUMENTHEADER of the BAPI
lx_docheader-obj_type = 'BKPFF'.
lx_docheader-username = sy-uname.
lx_docheader-comp_code = 'HKHK'.
lx_docheader-ac_doc_no = p_belnr.
lx_docheader-fisc_year = l_fiscyear.
lx_docheader-doc_date = p_doc_date.
lx_docheader-pstng_date = p_post_date.
lx_docheader-doc_type = ‘SY’.
fill the table parameter ACCOUNTGL of the BAPI
lwa_tabaccgl-itemno_acc = 1.
lwa_tabaccgl-gl_account = ‘0000050107’ .
lwa_tabaccgl-comp_code = ‘HKHK’.
lwa_tabaccgl-pstng_date = p_post_date.
lwa_tabaccgl-doc_type = ‘SY’.
lwa_tabaccgl-ac_doc_no = p_belnr.
lwa_tabaccgl-fisc_year = l_fiscyear.
append lwa_tabaccgl to li_tabaccgl.
clear lwa_tabaccgl.
lwa_tabaccgl-itemno_acc = 2.
lwa_tabaccgl-gl_account = ‘0000082910’.
lwa_tabaccgl-comp_code = ‘HKHK’.
lwa_tabaccgl-pstng_date = p_post_date.
lwa_tabaccgl-doc_type = ‘SY’.
lwa_tabaccgl-ac_doc_no = p_belnr.
lwa_tabaccgl-fisc_year = l_fiscyear.
lwa_tabaccgl-costcenter = ‘0000011401’.
append lwa_tabaccgl to li_tabaccgl.
clear lwa_tabaccgl.
fill the table parameter CURRENCYAMOUNT of the BAPI
lwa_tabcurramt-itemno_acc = 1.
lwa_tabcurramt-currency = ‘HKD’.
lwa_tabcurramt-amt_doccur = ‘1.5-’.
append lwa_tabcurramt to li_tabcurramt.
clear lwa_tabcurramt.
lwa_tabcurramt-itemno_acc = 2.
lwa_tabcurramt-currency = ‘HKD’.
lwa_tabcurramt-amt_doccur = ‘1.5’.
append lwa_tabcurramt to li_tabcurramt.
clear lwa_tabcurramt.
Call BAPI to post the FI-GL Document
  call function 'BAPI_ACC_GL_POSTING_POST'
      exporting
      documentheader = lx_docheader
      tables
      accountgl = li_tabaccgl
      currencyamount = li_tabcurramt
      return = li_tabreturn.
The return table says:
Error in document: BKPFF 1200000068HKCG2007 UD1CLNT120
Field Value date is a required field for G/L account HKCG 50107
would you experts please tell me what's the problem is?? it's emergency, thanks in a million advance.

Hi
U haven't to transfer the reference data to the BAPI, the document number is picked up automatically:
* fill the structure parameter DOCUMENTHEADER of the BAPI
*    LX_DOCHEADER-OBJ_TYPE = 'BKPFF'.
    LX_DOCHEADER-USERNAME = SY-UNAME.
    LX_DOCHEADER-COMP_CODE = 'HKHK'.
*    LX_DOCHEADER-AC_DOC_NO = P_BELNR.
*    LX_DOCHEADER-FISC_YEAR = L_FISCYEAR.
    LX_DOCHEADER-DOC_DATE = P_DOC_DATE.
    LX_DOCHEADER-PSTNG_DATE = P_POST_DATE.
    LX_DOCHEADER-DOC_TYPE = ‘SY’.
* fill the table parameter ACCOUNTGL of the BAPI
    LWA_TABACCGL-ITEMNO_ACC = 1.
    LWA_TABACCGL-GL_ACCOUNT = ‘0000050107’ .
    LWA_TABACCGL-COMP_CODE = ‘HKHK’.
    LWA_TABACCGL-PSTNG_DATE = P_POST_DATE.
    LWA_TABACCGL-DOC_TYPE = ‘SY’.
*    LWA_TABACCGL-AC_DOC_NO = P_BELNR.
*    LWA_TABACCGL-FISC_YEAR = L_FISCYEAR.
    APPEND LWA_TABACCGL TO LI_TABACCGL.
    CLEAR LWA_TABACCGL.
    LWA_TABACCGL-ITEMNO_ACC = 2.
    LWA_TABACCGL-GL_ACCOUNT = ‘0000082910’.
    LWA_TABACCGL-COMP_CODE = ‘HKHK’.
    LWA_TABACCGL-PSTNG_DATE = P_POST_DATE.
    LWA_TABACCGL-DOC_TYPE = ‘SY’.
*    LWA_TABACCGL-AC_DOC_NO = P_BELNR.
*    LWA_TABACCGL-FISC_YEAR = L_FISCYEAR.
    LWA_TABACCGL-COSTCENTER = ‘0000011401’.
    APPEND LWA_TABACCGL TO LI_TABACCGL.
    CLEAR LWA_TABACCGL.
Max

Similar Messages

  • When I receive word documents via my yahoo on my mac, the format always come up as a TEXTEDIT doc.  This is causing me serious problems.  How do I enable my documents to open in the original format it was sent?

    when I receive word documents via my yahoo on my mac, the format always come up as a TEXTEDIT doc.  This is causing me serious problems.  How do I enable my documents to open in the original format it was sent?

    Do you have Microsoft Word installed on your Mac? If so, you can reassign all .doc files to Word by selecting the file in Finder and choosing "File > Get Info" from the menu. In the window that opens look for "Open with" and change the entry to "Microsoft Word".

  • Error ki280 when posting a billing document

    I am running into a ki280 error message when posting a billing document. This happens to be for a situation that includes a customer down payment, the error message is not encoutered when posting a billing document without the down payment interestingly enough.
    The error message is below.  Account 410000 is a revenue account, so is it looking for a type 11 cost element to be created?
    Any information appreciated.
    Create account 410000 for 02/11/2009 as a cost element in controlling area
    HEES
        Message no. KI280
    Diagnosis
        Account 410000 is a profit and loss account. You assigned it to an
        object in cost accounting (for example, a cost center, order, or
        project).
    System Response
        Account 410000 in the determined controlling area HEES must exist as a
        cost element on the posting date 02/11/2009.
    Procedure
        o   Create account 410000 as a cost element and then repeat your
            posting.

    Hi,
    Use T.Code FS00.  Choose the account to be created as cost element and click for display. Now click the edit cost element tab. Screen will open for the GL account to be created as a cost element. Enter from and to dates like 01.01.2008 to 31.03.9999 and click master data. Choose category 11 after giving the text of the cost element and save. If you want that this revenue to be posted to a cost center you can enter in the default account assignment tab.  Try to post the invoice again.  If you have further problem revert back.
    Regards,
    Sadashivan

  • I downloaded the 09 version without deleting the 0, and now I am having some problems : when I open a document, it opens with 09, and then when I try to re-open it with 08 it is not possible !

    I downloaded the 09 version without deleting the 08 (didn't know), and now I am having some problems : when I open a document, it opens with 09, and then when I try to re-open it with 08 it is not possible ! I have a message saying tha "the fichier index xml is absent" (my computer is in French. I want to work with pages 08 until I get familiar with the 09 version. What shall I do ? What does this happen?

    Once you open the files in the new version you can't open them in the old version. Pick one version to use (have to be 9 now as you already have converted files)

  • ECS Calculation when Posting ARE 1 Document

    Dear all,
    During the creation of ARE1 document, the ecs values flows correctly, when more than two items is used.
    THE PROBLEM IS when the created document is POSTED SEPERATELY, then the ecs value for the first item is getting copied to all the other items.
    Request your soultions Please.
    Regards,
    K.P.Ganesh

    S Note 982644
    Symptom
    While posting an ARE1 document, through transaction J1IA101, containing more than one line item, ECS from first line is copied to all other lines.
    Other terms
    ARE1, J1IEX, J1IA101, Export under bond, ECS, ECESS, Education cess.
    Reason and Prerequisites
    Legal requirement.
    In the export scenario, you create an ARE1 document through this tranaction, the ECS values are updated correctly for all lines. But, while posting the document, ECS from the first line is copied to all the other lines.
    Solution
    Make the following screen change.
    Go to transaction SE80 and enter function group 'J1IEX'.
    Go to the layout of screen 200 in change mode.
    Click on the button 'Dictionary/Program fields' or press F6. Enter the fieldname as 'J_1IEXITEM-ECS'. Select the field and press enter. Drag it to the end of the table control 'tv_exitem' so that a new column by name 'Edu cess' appears at the end of the table beside the column 'Basic Duty'. In the attributes of the new column check 'fixed font'.
    Apply the code corrections.
    Save and activate the function group.
    Header Data
    Release Status: Released for Customer
    Released on: 25.09.2006  08:20:49
    Priority: Correction with medium priority
    Category: Correction of Legal Function
    Primary Component: XX-CSC-IN-SD Sales and Distribution
    Secondary Components: SD-SLS Sales
    Releases
    Software
    Component Release From
    Release To
    Release And
    subsequent
    SAP_APPL 470 470 470  
    SAP_APPL 500 500 500  
    SAP_APPL 600 600 600  
    Highest Implemented Support Package
    Support
    Packages Release Package
    Name
    SAP_APPL 470 SAPKH47028
    SAP_APPL 500 SAPKH50015
    SAP_APPL 600 SAPKH60007
    Corrections Instructions
    Correction
    Instruction Valid
    from Valid
    to Software
    Component Type *) Ref.
    Correction Last
    Modifcation
    496168 500 500 SAP_APPL C P6DK089822 25.09.2006  07:59:08
    496169 600 600 SAP_APPL C P7DK051198 25.09.2006  08:01:38
    496170 470 470 SAP_APPL C P6BK237053 25.09.2006  08:00:24
    *) C Korrektur, B Vorarbeit, A Nacharbeit, M noch nicht bestimmte Arbeit
    Attributes
    Attribute Value
    weitere Komponenten SD-SLS

  • Problems in Posting an Accounting Document using BAPI_ACC_DOCUMENT_POST

    Hi All,
    I am facing a problem when I try to post an accounting document using the BAPI "BAPI_ACC_DOCUMENT_POST".
    While passing data to the structure "ACCOUNTTAX", I get the errors "Required field AMT_BASE was not transferred in parameter CURRENCYAMOUNT" and "Required field TAX_CODE was not transferred in parameter ACCOUNTTAX".
    Till now I was not passing the ACCOUNTTAX structure to the BAPI and posting was happening fine.
    Any pointers / solutions in this direction will be most helpful.
    Thanks in advance.
    Regards,
    Keerthi

    Hi
      As u told earlier it was fine , so it may there is some config. change done by func. so this error is coming.
      For minimum required fields fo BAPI , u can go to SE37 and click on Function Module Documentation on Application tool bar.
    here u will find good help.
    Regards
    Sachin

  • Currency exchange rate problem when posting to CO-PA

    Hi Experts,
    we get error when posting a credit memo saying that there is a missing exchange rate between MXN and USD. The document currency is MXN (Mexican peso), company code currency is EUR and operating concern currency is USD. The document posts to CO-PA.
    We have exchange rates for MXN/EUR and EUR/USD but not for MXN/USD.
    How the system recalculates the currencies?
    Do we just have to enter the MXN/USD rate or is there any other customizing we should check?
    In country global parameters for Mexico in fields 'index-based currency' and 'hard currency' is entered USD. Does this matters to this problem? 
    Thank you,
    Michal

    Hi Michal,
    concerning your quastion pls consider follwing:
    Usually the foreign currency will be the  transaction currency of the sender document in case you are dealing with
    billing documents.
    However it's also possible that the amount in operating concern currency is translated based on company code curreny.
    In  this case the PA line item will then contain the company code currency  as foreign currency.
    This translation logic is described in the  note 429517.
    I hope, it could you help to understand translation logic.
    Regards, Andrea

  • Forcing Local Currency amounts when posting Foreign Currency documents

    When posting entries in a foreign currency (FC), it is possible and often used to force through a local currency (LC) amount that differs from what SAP would have posted using the current For Ex rate.  This is used in cases where a payment is made in FC a couple months later and someone would like to see the LC of the originally posted invoice match the LC of the payment.  Although SAP allows you to override the For Ex rate in such a manner, what are the effects of these types of postings?  Does the difference ever get recognized, and, if so, where? 
    Thanks in advance for any explanations.

    Hi,
    Suppose at the time of invoice the exchange rate was 40 and the amount shoule be as below:-
    Document currency = 100
    Local Currency = 4000
    But you have entered the invoice at exchange rate of 45 which was applicable at the payment date
    Document currency = 100
    Local Currency = 4500
    And the payment document line item is posted with the
    Document currency = 100
    Local Currency = 4500
    In this case, system will not do any foreign exchange rate difference provided there is no month end revaluation happening between the invoice posting date and paymentt posting date.
    Regards,
    Gaurav

  • PRoblem when posting more than one document

    Hi all,
    I'm using BAPI    BAPI_GOODSMOVEMENT_CREATE to post the documents for PO_GR.when i post one document through text file it is done succesfuully. when i'm posting more than one document it is giving error "posting not possible".
    My code is as follows:
    loop at i_data.
    concatenate '0'   i_data-stor_loc  into i_data-stor_loc.
    concatenate '00'  i_data-plant     into i_data-plant.
        i_item-po_number  = i_data-po_no.
        i_item-po_item    = i_data-po_item.
        i_item-move_type  = i_data-mvt_type.
        i_head-doc_date   = doc_date.
        i_head-pstng_date = post_date.
        i_head-ref_doc_no = i_data-del_note.
        i_item-entry_qnt  = i_data-entry_qty.
        i_item-stge_loc   = i_data-stor_loc.
        i_item-plant      = i_data-plant.
        i_item-stck_type  = i_data-stk_type.
        i_item-batch      = i_data-batch.
    I_ITEM-move_val_type      = i_data-move_batch.
        APPEND: i_item,i_head.
        CLEAR:i_item.
      ENDLOOP.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
       EXPORTING
         goodsmvt_header             = i_head
         goodsmvt_code               = i_code
       TESTRUN                     = ' '
      IMPORTING
      GOODSMVT_HEADRET            =
        MATERIALDOCUMENT            = matdoc
       MATDOCUMENTYEAR             =
       tables
         goodsmvt_item               = i_item
       GOODSMVT_SERIALNUMBER       =
         return                      = return
      IF return IS INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      ENDIF.
      LOOP AT return.
        WRITE: return-message.
      ENDLOOP.
      WRITE: matdoc.
    PLease specify where i'm going wrong.
    Regards,
    SImha.

    Hi,
    I had used the same FM to post multiple documents, but never faced this error.
    *- Header
      MOVE: sy-datum TO bapigm_head-pstng_date,
            sy-datum TO bapigm_head-doc_date,
            sy-uname TO bapigm_head-pr_uname,
            v_mblnr  TO bapigm_head-ref_doc_no,
            con_bfwms_bestand TO bapigm_head-ext_wms.
    *- Item
    *- Populate item data
      LOOP AT i_items_trans.
        CLEAR ibapigm_item.
    *- Convert the matnr backto 18 char form (External)
        CALL FUNCTION 'CONVERSION_EXIT_MATN2_INPUT'
          EXPORTING
            input            = i_items_trans-matnr
          IMPORTING
            output           = i_items_trans-matnr
          EXCEPTIONS
            number_not_found = 1
            length_error     = 2
            OTHERS           = 3.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        ibapigm_item-material   = i_items_trans-matnr.
        ibapigm_item-plant      = i_items_trans-werks.
        ibapigm_item-stge_loc   = i_items_trans-lgort.
        ibapigm_item-move_type  = '101'.   "Goods Receipt
        ibapigm_item-mvt_ind    = 'B'.     "Goods Movement for PO
        ibapigm_item-po_number  = i_items_trans-ebeln.
        ibapigm_item-po_item    = i_items_trans-ebelp.
        ibapigm_item-entry_qnt  = i_items_trans-ktmng.
        ibapigm_item-entry_uom  = i_items_trans-meins.
        APPEND ibapigm_item.
      ENDLOOP.
    *-Call FM
      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          goodsmvt_header  = bapigm_head
          goodsmvt_code    = bapigm_code
        IMPORTING
          goodsmvt_headret = bapigm_headret
        TABLES
          goodsmvt_item    = ibapigm_item
          return           = ibapigm_ret.
    *- Commit on Success
      IF NOT bapigm_headret-mat_doc IS INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    Regards,
    Raj

  • File attachment problem when posting the email

    Hi all,
    I have some problems here with the email posting. When i send the email with text attachment and I view in the SOST is correct. But after i sent it through the SCOT, the attachment that receives by receiver becomes PDF. Can somebody tell me what the problem?
    Thanks a lot..
    Best regards,
    Hongster

    Hi weihong,
    1. This automatic conversion
       text---> pdf
      is done by scot settings.
    2. We can modify that setting. Pls consult ur basis team for that.
    3. after that, the text file will go as it is.
    regards,
    amit m.

  • Error occures when posting a Billing Document to alt Reconciliation Account

    Dear All,
    When i try to post a Invoice, for a alternative reconciliation account, an error occures saying,
    Reconciliation account 50300022 or short key 00 is not permitted
    Message no. F5788
    Diagnosis
    The system checked the entry to see whether a reconciliation account exists with the number 50300022 and whether it can be entered here, or whether the first two characters of your entry '00' form a permitted short key. Neither of these options is applicable to your entry.
    System response
    Error message
    Procedure
    Enter either a permitted G/L account number or a permitted short key.
    Please help me to sort the above.
    Thank U
    Yasanga

    Check in OBYR configuration.
    For reconciliation account xxxx you have given special GL recon account for example 22222
    Now you must see that the recon account xxxx has been assigned with a GL account 22222 or some other special GL recon. account as per your requirement.
    If you change recon. account in master record , you are required to run F.5D.
    Just my observation likes...
    Edited by: balashowry raju on Sep 9, 2010 8:51 AM

  • Display problem when connecting laptop to TV via HDMI

    I have a Satellite L500-19X and when I connect the laptop to my Sony Bravia TV, the display is constantly choppy.
    I've tried changing the refresh rate but that hasn't helped. The HDMI cable shouldn't be the problem because it works fine with my Xbox. The problem is there during both duplicate display and extend display options.
    Anyone else experiencing the same problem and have found a fix?
    Thanks

    > The problem is there during both duplicate display and extend display options.
    And when you see desktop on TV only?

  • Problem when posting GR for Inboun Delivery through MIGO

    Hi All,
          I am trying to post a GR for an Inbound Delivery by using the Function Module 'BAPI_GOODSMVT_CREATE'. The problem is that after the GR has been posted successfully through the report I am still able to post GR through MIGO. This happens only for few Inbound Deliveries and not for all. What could be the reason for this? Also are there any user exits for MIGO using which I can stop the multiple posting of GR for a single Inbound Delivery.
    Thanks in Advance,
    Regards,
    Sowmya.

    Hi !
    Try setting the parameter NO_MORE_GR in the cases you don't wand any more GRs.
    This could also be set automatically - wich has to be customized in MM-PUR customizing.
    Also you shuld check the overdelivieries tolerances of the purchases ! They may be "unlimited" ....
    Regards
    Rainer
    Some points would be nice if that helped.

  • Problem when using with native document as cdf

    Hay all,
    I am trying to use native document as cdf in the simple way without define any converters.
    I have a placeholder in my page that has been asigned to native document.
    My goal his to display a native documant(like word) as web view html.
    My problem his that i got this error:
    " Caused by: oracle.stellent.ridc.protocol.ServiceException: Unable to download 'ERANTEST'. Failed to export document 'ERANTEST' using template '(null)' and layout '(null)'. Export process: 'hcexport' "
    Can anyone have an idea for this problem?
    Note: i have another application that running in a different enviornment that work fine except hebrew problem.
    Thanks,
    Eran z

    Hi Eran ,
    Root cause for this issue :
    In a windows based cluster environment intradoc.cfg had weblayout and vault pointing to the UNC path of the shared file system . This is a known bug / issue with the cluster environment where in indexer would fail .
    Here too the same issue was causing the issue where in the files being checked in are failing to get indexed due to the UNC path set for weblayoutdir and vaultdir values in intradoc.cfg .
    Solution :
    Map the shared file system to a drive letter like Y:/weblayout and Y:/vault .
    Use these values in weblayoutdir and vaultdir in intradoc.cfg and restart the server.
    After the re-index the entire collection to resolve the issue .
    Thanks
    Srinath

  • Problem of reading source HTML document  via URL object?

    Hi, Friends,
    why the following simple program can't work correctly?
    import java.net.*;
    import java.io.*;
    public class URLReader {
    public static void main(String[] args) throws Exception {
         URL ieee = new URL("http://www.ieee.com/");
         BufferedReader in = new BufferedReader(
                        new InputStreamReader(
                        yahoo.openStream()));
         String inputLine;
         while ((inputLine = in.readLine()) != null)
         System.out.println(inputLine);
         in.close();
    you know, when we use http://www.ieee.com/ to visit the ieee website via browser, it works well, only the adress is reset to http://ieee.com/portal/site/iportals/ , why the browser can do that, while the URL object can't?

    A URL is simply a reference to a "file" location.
    To do I/O on that object requires some sort of protocol. HTTP (a "web server"), will allow you to do this, but uses the HttpURLConnection object.
    The Java Tutorials shows you CAN read/write to a URL, but requires the underlying HTTP protocol client implementation.
    I think you are using this code from the Sun site: http://java.sun.com/docs/books/tutorial/networking/urls/readingURL.html
    Which may be why you create 'ieee' but reference 'yahoo' in your code.
    Were you getting an error message when trying to compile your program?
    You may wish to look further into the tutorial pages at: http://java.sun.com/docs/books/tutorial/networking/urls/readingWriting.html
    But I still would refer you in the end to HttpURLConnection which is much more in-depth.

Maybe you are looking for

  • Reg: display the warning message in alv out put

    Hi All,           i am uloading the flat file data ,display in the alv grid in the edit mode. when i am trying to change the output data in grid, for which are having the blank (no value for the field) , i want to display warning message the selected

  • I have music on one computer but need to move to another

    I am sure this has been asked several times but I have not been able to find a concrete answer. I have two laptops. The original one has tons of songs that have not been purchased through itunes but instead downloaded from CD's and an Itunes account

  • How can I format my Signature on Mac in Outlook emails?

    When I try to insert a Signature into the Outlook it appears with extra lines between each line, even though it is correct looking in the Signature block when I set it up.  For example: Joe Smith National Manager 562-222-3666 Appears in the signature

  • Client closed connection before receiving the entire response

    Hi I am using URLFilePromise to download a zip file from my server to desktop using an air app. The zip file is about 200MB, but after it reaches downloading about 7 MB , urlFilePromise is dispatching complete event. I could see the following error m

  • Bubble under the screen(original iPhone

    I just noticed today that a bubble under the screen has appeared. At first I thought that it was on top of the screen so I try to clean it. My question is I bought it back in Feb 2008, checked the website and it is still under the limited warranty, d