Runtime Error when Posting Invoice with text added (MIRO)

Hi Gurus,
We are getting a shortdump (runtime error) when we post certain invoices in MIRO. This happens when we input some text in the text field or add some text to the NOTE tab.
We are having exception ERROR_DP raised in the program c_textedit_control.
If the text field is blank and nothing is writing in the NOTE tab, the invoice gets posted with no problem.
Has anyone come accross this issue before and how did you solve it please.
Thanks.

are u processing thru BADI, then it is very easy there are interfaces and methods for handling texts. u sud not get any error and plz never write commit work in BADI.
May be i cud provide more help if u share more details but let me tell more but let me share one recent development that i did.
In ME59n when we do PR TO PO then texdts sud be copied to header text in PO and get reflected in PO. the coding is like below may be can give some clues wid ur MIRO stuff.
METHOD if_ex_me_process_po_cust~process_header.
*  Author        : Prasenjit Bist                                          *
*  ID            : PRBIST                                                  *
*  Date          : 04.08.2011                                              *
*  Changes       : New Devlopment                                          *
*  Change Request:                                                         *
*  Description: To copy LSP information in PO                               *
TYPES:
        BEGIN OF ty_text,
          auto_pr_po TYPE zman_auto_pr_po,
          plant TYPE zman_plant,
          vendor TYPE zman_vendor,
          lsp_vendor TYPE zman_lsp_name,
          contract_no_text TYPE zman_contract_no_text,
        END OF ty_text.
  TYPES:
       BEGIN OF ty_address,
         ort01      TYPE ort01_gp,  " city
         ort02      TYPE ort02_gp,  " district
         pfach      TYPE pfach,     " PO Box
         pstlz      TYPE pstlz,     " Postal code
         region     TYPE regio,     "Region (State, Province, County)
         telf1      TYPE telf1,     "1st telephone number
         telf2      TYPE telf2,     "2nd telephone number
         telfx      TYPE telfx,     "Fax number
         land1      TYPE land1,
       END OF ty_address.
  DATA:
   get the header level details
        ls_mepoheader TYPE mepoheader,
        lt_purchase_order_items TYPE purchase_order_items,
        ls_purchase_order_items LIKE LINE OF lt_purchase_order_items,
   get the line item details
        lt_mepoitem TYPE STANDARD TABLE OF mepoitem,
        ls_mepoitem TYPE mepoitem,
        lt_textlines TYPE mmpur_t_textlines,
        ls_textlines LIKE LINE OF lt_textlines,
TEXT TYPES
        lt_texttypes TYPE mmpur_t_texttypes,
        ls_texttypes LIKE LINE OF lt_texttypes.
  DATA: l_name TYPE thead-tdname,
        ls_header TYPE thead,
        lt_lines TYPE STANDARD TABLE OF tline,
        ls_lines TYPE tline,
        l_tdobject TYPE thead-tdobject,
        l_metafield TYPE mmpur_metafield.
  DATA: ls_text TYPE ty_text,
        l_text(50).
  DATA: l_continue(1).
  DATA: l_pass_vendor TYPE lifnr,
        l_pass_plant TYPE werks,
        l_name1(35).
fetch the address
  DATA: ls_address TYPE ty_address,
        l_landx    TYPE landx.
  CONSTANTS: lc_id TYPE thead-tdid     VALUE 'F01',
             lc_langu TYPE thead-tdspras  VALUE 'E',
             lc_object TYPE thead-tdobject VALUE 'EKKO'.
  CONSTANTS: lc_set(1) VALUE 'X',
             lc_vendor(11) VALUE 'Vendor:    ',
             lc_lsp_vendor(11) VALUE 'LSP Vendor:',
             lc_contract_no_text(14) VALUE 'Contract Text:'.
  CLEAR: l_continue.
  IF sy-uname EQ 'PRBIST'.
Read the header data
    ls_mepoheader = im_header->get_data( ).
read teh item level data.
   break prbist.
    lt_purchase_order_items = im_header->get_items( ).
    LOOP AT lt_purchase_order_items INTO ls_purchase_order_items.
The item attribute of the structure is reference to line item
      ls_mepoitem = ls_purchase_order_items-item->get_data( ).
      APPEND ls_mepoitem TO lt_mepoitem.
    ENDLOOP.
CHECK VENDOR IS THE ONE WE WANT.
    SELECT SINGLE name1 FROM lfa1 INTO l_name1 WHERE lifnr = ls_mepoheader-lifnr.
First read the vebdor name based on LIFNR.
    TRANSLATE l_name1 TO UPPER CASE.
    IF ( l_name1 EQ 'LSP1' ) OR ( l_name1 EQ 'LSP2' ).
      LOOP AT lt_mepoitem INTO ls_mepoitem.
        TRANSLATE ls_mepoitem-werks TO UPPER CASE.
        IF ls_mepoitem-werks EQ 'FI01'.
          l_continue = lc_set.
          l_pass_vendor = ls_mepoheader-lifnr.
          l_pass_plant = ls_mepoitem-werks.
          EXIT.
        ENDIF.
      ENDLOOP.
    ENDIF.
    IF l_continue EQ lc_set AND sy-tcode EQ 'ME21N'.
Call the POP UP screen to display LPS information.
      CALL FUNCTION 'ZMAN_LSP_POP_UP'
        EXPORTING
          im_vendor = l_pass_vendor
          im_plant  = l_pass_plant
        IMPORTING
          ex_text   = l_text.
GET Text Object (TTXOB)
      im_header->if_longtexts_mm~get_textobject(
                    IMPORTING ex_tdobject = l_tdobject
                              ex_metafield = l_metafield ).
GET TEXT IDS
      im_header->if_longtexts_mm~get_types(
                    IMPORTING ex_texttypes = lt_texttypes ).
CHECK TEXT TYPE 'F01' EXISTS.
      READ TABLE lt_texttypes INTO ls_texttypes WITH  KEY tdid = lc_id.
      IF sy-subrc EQ 0.
UPDATING ITEM TEXT.
        MOVE: l_tdobject TO ls_textlines-tdobject,
              ls_texttypes-tdid TO ls_textlines-tdid,
              '*' TO ls_textlines-tdformat.
     break prbist.
        ls_text = l_text.
     CONCATENATE l_text ls_texttypes-tdtext INTO ls_textlines-tdline.
       CONCATENATE ls_text-vendor
                   ls_text-plant
                   ls_text-lsp_vendor
                   ls_text-contract_no_text
                                           INTO ls_textlines-tdline SEPARATED BY space.
       APPEND ls_textlines TO lt_textlines.
      INSERT VENDOR
       CLEAR ls_textlines-tdline.
       CONCATENATE lc_vendor ls_text-vendor INTO ls_textlines-tdline SEPARATED BY space.
       APPEND ls_textlines TO lt_textlines.
      INSERT LSP VENDOR
        CLEAR ls_textlines-tdline.
        CONCATENATE lc_lsp_vendor ls_text-lsp_vendor INTO ls_textlines-tdline SEPARATED BY space.
        APPEND ls_textlines TO lt_textlines.
      INSERT CONTRACT TEXT.
        CLEAR ls_textlines-tdline.
        CONCATENATE lc_contract_no_text ls_text-contract_no_text INTO ls_textlines-tdline SEPARATED BY space.
        APPEND ls_textlines TO lt_textlines.
     INSERT A BLANK LINE.
        CLEAR ls_textlines-tdline.
        APPEND ls_textlines TO lt_textlines.
INSERT addreSS CAPTION.
        CLEAR ls_textlines-tdline.
        MOVE 'Address:' TO ls_textlines-tdline.
        APPEND ls_textlines TO lt_textlines.
        break prbist.
READ THE ADDRESS
        SELECT SINGLE   ort01      " city
                        ort02      " district
                        pfach      " PO Box
                        pstlz      " Postal code
                        regio      "Region (State, Province, County)
                        telf1      "1st telephone number
                        telf2      "2nd telephone number
                        telfx      "Fax number
                        land1      "COUNTRY
        FROM lfa1 INTO ls_address WHERE lifnr = ls_mepoheader-lifnr.
GET COUNTRY
        SELECT SINGLE landx FROM t005t INTO l_landx WHERE spras = 'E' AND land1 = ls_address-land1.
INSERT ADDRESS DETAILS.
        CLEAR ls_textlines-tdline.
        CONCATENATE ls_address-ort01 ls_address-ort01 INTO ls_textlines-tdline SEPARATED BY space.
        APPEND ls_textlines TO lt_textlines.
INSERT COUNTRY.
        CLEAR ls_textlines-tdline.
        MOVE l_landx TO ls_textlines-tdline.
        APPEND ls_textlines TO lt_textlines.
TELEPHONE DETAILS
        CLEAR ls_textlines-tdline.
        CONCATENATE 'Tel:' ls_address-telf1 '/' ls_address-telf2 INTO ls_textlines-tdline.
        APPEND ls_textlines TO lt_textlines.
FAX DETAILS.
        CLEAR ls_textlines-tdline.
        CONCATENATE 'Fax:' ls_address-telfx INTO ls_textlines-tdline.
        APPEND ls_textlines TO lt_textlines.
      SAVE THE HEADER LONG TEXT.
        im_header->if_longtexts_mm~set_text(
                      EXPORTING im_tdid = ls_texttypes-tdid
                                im_textlines = lt_textlines ).
      ENDIF.
    ELSEIF l_continue EQ lc_set AND sy-tcode EQ 'ME59N'.
No need to display POPUP simply read the values and show.
if not
    ENDIF. "(l_continue = 'X' and transaction code is ME21N or ME59N)
    CLEAR l_continue.
  ENDIF. "(sy-uname)
ENDMETHOD.
Edited by: Prasenjit Singh Bist on Aug 14, 2011 10:15 AM
Edited by: Prasenjit Singh Bist on Aug 14, 2011 10:21 AM

Similar Messages

  • Runtime error when syncing P1i with PC

    I get a runtime error when syncing my P1i to PC. The error is linked with this file, 'dxp syncml.exe', and the application is said to request the 'Runtime to terminate it in an unusual way'. How do you fix this?

    Thanks Joanne. Let me give you feedback on whats happening so far.
    After some doing, I discovered that my firewall is controlled by Norton Firewall Provider. (Bear in mind I am a novice in terms of managing these computer protocols). To modify the firewall settings, Norton calls this in their the control panel  'Smart firewall', I go to program control then configure. A list of programs came up with the options to add, modify, remove or rename. I searched the list and found that DXP SyncML.exe and mRouterRuntime.exe were listed and set to 'Auto' in the Access column. I noticed that under access, the options include auto, allow, block and custom. I reasoned that 'allow' is the highest level of access, and to support the sync feature, I changed the status to 'allow' from 'auto' for the DXP SyncML and mRouterRuntime executable files. If you believe it is ok and safer to keep the auto status, advise me.
    I did not find in the listing any of these programs; Bearer Abstraction Layer (SCBAL.exe), Generic Device Management Executable (Generic.exe) or Symbian Connect Object Model for Symbian Connect QI (SymbianConnectRuntime.exe).I did a search and located the generic.exe and the other two files under 'common files' in 'teleca shared' folder, and 'symbian' in 'shared' and 'symbianconnectruntime', respectively.
    Norton's control panel for Smart Firewall gave me three options when adding programs: allow, block and manual configure internet settings. The last of the three was recommended by Norton. However, I selected 'allow' for the generic.exe, symbianconnectruntim.exe and scba.exe.Please advise if you believe I need to modify the terms I entered to set up this procedure (is there a better setting that allow me to achieve the same level of functionality without compromising my security?)
    Now Joanne, whats left is for me to try the sync after making these changes. I feel as if I accomplished a lot by only reaching this far. I will have to do a reinstallation of the SE PC Suite before moving on though. Let me explain.
    When the sync failed repatedly because of the unexpected termination linked with the dxp syncml.exe, I uninstalled the SE PC Suite which was done from a disc, and installed a version from the Sony website. That version is 1.6.0, with a copyright date of 2006. With this, the sync worked. By the way I am using Windows 7 Starter. Now what I am going to do later is uninstall this version of the suite, and reinstall the one from the disc that was linked with the problem we are solving. When I do that later, I will give you feedback.
    Just in case you are wondering, I have a vested interest in using the PC Suite from the disc. This application works fine for the file manager component where the drive on the phone and removable media card are read. In the 1.6.0 version, I cannot get the file manager to see the phone as connected though when I put the card (is that called M2 disc?) in the phone, it reads. So, I although sync is working with the 1.6.0 version from the website, I want to use the version I have on disc if the sync component gets over the problem we are trying to solve.
    Hope I am on the right  track so far I thank you profusely for your patience and dealing with my qeurry; the solution will make a world of a difference for me and many other P1i owners. Look foward to the follow up
    Rohan Bell

  • Tax jurisdiction code creates a difference when posting invoice with PO ref

    I have added a tax jurisdiction code since the client wants to be able to sort taxes by location.  The problem now is that, I have posted a PO with a tax jurisdiction code but upon posting the invoice with reference to this PO, there's an error saying that there still exists a balance even though the balance on the screen is zero.  Any ideas on how this can be solved?

    Hi ,
    Can you please tell us how you resolved? We do facing the same problem.
    Thanks
    Ganesh

  • Error when posting invoice for Asset purchase order

    Hi,
    we are getting the errore message account determination for asset posting with keys not defined in chart of accounts,when posting an invoice for asset purchase order.
    Can any one see why this error is coming and what will be the solution.
    Nagesh

    Hi Prabhakar,
    Here is the reply,
    we have 10 line items,in which 3 items are freight related and other 7 items are related to goods reciept.
    i am trying to enter invoice for 3 line items at a time with two relevant to goods reciept and other related to non goods receipt(freight related).
    accounting entries generated after the GR are as follows,
    asset under construction account,and GR/IR account.
    Let me know the details is sufficient or not.

  • Default due date , payment method when posting invoice with Special G/L

    Hi Gurus,
    I have a question is when I am posting an invocie to a vendor (FB60), Due On date, payment method  are automatically calculated based on the defaulted baseline date and the payment term in the vendor master. But when I am posting the invocie to the same vendor with Special G/L indicator, Due On date, payment method are not automatically calculated and system are expecting me to enter this date manually. Is there a way we can default this Due On date, payment thod based on payment term like it happens when posting to other invoices without Sp GL indicator ?
    Thanks
    Edited by: Ngoc Hoang on Nov 29, 2011 8:30 AM

    Dear Ngog,
    In general, special G/L transactions are used to map special processes
    to be stated separately in the balance sheet.So if you use special GL
    indicator, the fields relevant to payment terms (including baseline
    date) are not displayed. This is not controlled by field status.
    To make the fields You need ready for input for posting
    with special G/L indicator, the following Customizing setting is
    necessary:
    Financial Accounting -> Accounts Receivable and Accounts Payable
    ->Business Transactions -> Outgoing Payments -> Automatic Outgoing
    Payment-> Payment Method/Bank Selection -> Configure payment program ->
    All company codes -> double-click on corresponding company code -> under
    Vendor -> 'Sp. G/L transactions to be paid' you should enter the special
    G/L indicator A,B, etc.
    As explained in SAP note 4683, the only standard possibility to get the
    field payment terms on creating a posting with a special G/L indicator
    is by setting in the payment program configuration (trans. FBKP) for
    'All company codes' for customers/vendors 'Sp. G/L transaction to be
    paid'.
    Mauri

  • Error table T030 when posting invoice

    Hi Expert,
    I'm having error when posting invoice :
    "Table T030 : Entry HASA WRX AA_____4000 does not exist"..
    Is there anything missing in config? Please guide me to fix the problem.
    Thanks

    Hi
    May be looking at the entries, account modifier is blank. Were you able to post GR for this PO, if your invoice is in reference to a PO.
    Thanks !
    E.Avudaiappan

  • Runtime error when adding a role to a webpage in WPC

    Dear Portal KMC WPC experts,
    After upgrading to KMC WEB PAGE COMPOSER 7.01 SP005  in the SAP Netweaver Portal we encountered a runtime error when we add a role to a webpage or website in Web Page Composer. This was not the case before the upgrade.
    This is the error we get:
    Runtime Error
    An exception occured while processing the request.
    Additional information: null
    Exception ID = 8049882b-36e3-2c10-56bd-ef82084cf508
    How can we correct this?
    Thanks in advance,
    Peter

    Kenny K wrote:
    Ok, I figured out my issue.
    It seems that you have to graph the data, before you can change any graph attributes, even though I have done that before.
    Once I put the axis, title, etc after the graphing, then it worked.  Well, I also had specified my range wrong, so that errored out too.
    Thank you for the help.
    Also, how to you get a reference to the Chart Wizard through the excel activex?
    I posted a snippet. You can take it from there. I do not remember how I got it before. I have not had to change it in six to seven years. I remember going through the MSDN and found the function. I think I made it from scratch to match the MSDN..
    Tim
    Johnson Controls
    Holland Michigan

  • Error when posting goods issue

    hi gurus,
    can anyone please help me with this error when posting goods issue to a free issue sales order " line item text is mandatory for vendor invoices".
    thanks in advance

    Dear Ysabella
    It seems the item texts is not maintained in the order which is made as mandatory.
    Go to sale order VA02, select that line item and click on "GotoItemTexts".  There maintain the relevant text and retry.
    thanks
    G. Lakshmipathi

  • Runtime Error when starting Lightroom

    I'm currently on day 12 or so of my trial with Lightroom. I've spent quite a few hours getting to know LR by retouching and cataloging over 8 years of photos. So far, aside from a few in-program bugs that I found a way to work around, I've been super-happy with it (especially the powerful keywording/metatagging system: amazing!) and have been really seriously coughing up the huge wad of $$ when the trial's done. But....
    For no reason, LR started giving me a Runtime Error when I tried to start it. Something along the lines of "This application requested Runtime to terminate it unusually."
    So off to Google I went, where I knew I could probably search that error and fix it like I've done with countless other programs. Unfortunately nothing is working.
    Here are the facts:
    --I'm running a fully patched Vista machine.
    --LR worked fine earlier this morning. I had 1.4 and didn't perform any upgrades or maintenance to it (that I know of) when it just gave me the error out of the blue today when I tried to start it.
    --I tried holding CTRL when I start it, and it still gives the error.
    --I tried deleting a .lock file (which did exist) but it still wouldn't start.
    --I tried running the "repair" tool in the install...no good.
    --I uninstalled LR, d/led it again, and re-installed it. IT WORKED!....one time. I was able to run it, checked to make sure my cataloging was still intact (it was - phew!) and even deleted a folder I didn't want in it. Then I closed it. I tried re-opening it a few hours later and I got the SAME ERROR!
    I sure hope someone can help because I'm at my wit's end.

    This is disgusting. I've pounded away for over 4 hours and I finally found a workaround. Here's the original post that had my answer:
    http://www.adobeforums.com/webx/.3c05ac2f
    The short of the story: if I put lightroom.exe into Windows XP compatibility mode" it will work. (To do that, for anyone else who comes across this, you just right-click your lightroom icon, click PROPERTIES, and go to the Compatibility tab and check the box next to "Run this program in compatibility mode for:" and select "Windows XP (Service Pack 2)")
    I've loaded it up half a dozen times and it's still working perfectly as far as I can tell. Hopefully it won't hurt anything keeping it in that mode.
    I'm glad this happened early enough into my trial that I'll have ample opportunity to see if it repeats itself. I'm not keen on sinking $300 into software that will give me ulcers as I troubleshoot problems like this.

  • MDG Material BS_MAT_OVP_03 application is fine in development but giving runtime errors when moved to quality

    Dear Experts,
    We are Facing a problem with BS_MAT_OVP_03, We have done some enhancements and it is working very much fine in development and when we move it to Quality we are getting runtime errors, they are not with the enhancements but with in standard code itself.
    "ASSERTION_FAILED" " ""CL_USMD_ACC_FLD_PROP_DATA=====CP" or "CL_USMD_ACC_FLD_PROP_DATA=====CM009" "VALIDATE_RETURNED_FLD_PROP"
    we are getting above runtime error, Please let us know the reason for issue, If some one have come across.
    Regards
    Sukumar

    Hi Sukumar,
    It's because of few generated structures could be in "Inactive" mode for your data model when you move to quality system.
    Refer each generated structure from SE11 and activate them individually..this can be a post processing activity everytime you move data model structures from one ECC to other ECC.
    Thanks
    Praveen

  • Error when extracting data with extractor 2lis_04_matnr - NEED HELP ASAP !!

    Hi experts!
    Got an error when extracting data with extractor 2lis_04_matnr.
    System says (short dump):
    DUMP TEXT START----
    Runtime error:    CONNE_IMPORT_WRONG_COMP_TYPE
    Exception:   CX_SY_IMPORT_MISMATCH_ERROR
    Error when attempting to import object "MC04P_0MAT_TAB".
    The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed. This is probably due to an error in the ABAP program. When attempting to import data, it was discovered that the data type of the stored data was not the same as that specified in the program.
    An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', was neither caught nor passed along using a RAISING clause, in the procedure  "MCEX_BW_LO_API" "(FUNCTION)".                                                                             
    Since the caller of the procedure could not have expected this exception      
    to occur, the running program was terminated.                                
    The reason for the exception is:  When importing the object "MC04P_0MAT_TAB", the component no. 5 in the dataset has a different type from the corresponding component of the target object in the program "SAPLMCEX". <b>The data type is "D" in the dataset, but "C" in the program.</b>
    DUMP TEXT END----
    Please, can someone explain me how to solve it? 
    Really need help ASAP!
    Thanks in advance,
    Jaume
    Message was edited by:
            Jaume Saumell
    Message was edited by:
            Jaume Saumell

    Hi,
    Check this note: 328181
    So you need to delete entries in SM13/LBWQ for application and also detup table content.
    And then refill teh set up table.
    If you are in production clear the entries by running collective run no of times for this application 04.
    With rgds,
    Anil Kumar Sharma .P

  • Has anyone got a "runtime error" when trying to search in itunes store?

    has anyone got a "runtime error" when trying to search itunes store?

    I assume since you are posting in the iTunes U for iOS forum that you are having issues with the IOS version of the app. What is the exact error message?
    Can you participate in a course's discussion from iTunes U's Course Manager (https://itunesu.itunes.apple.com/coursemanager/)?

  • Runtime error while posting a document (FB70/FBS1)

    Hi
    I am getting a runtime error while posting a document through FB70 or FBS1 .
    The erro description tells The type "CL_BCS_OBJHEAD" is unknown.
    And the program dumps in Function module SO_KPRO_DECIDE.
    Has any one faced this problem?

    Hi,
    Please check the psoting date and also the reversal  date in FBS1. Please check when you have posted the document and when you want ot reverse the same.
    Thank you,
    Shilpa.

  • Runtime Error when creating a new group

    I'm getting a runtime error when creating a new group on a site collection? 
    Thanks in advance

    The most possible reason is if your site collection is reached the maximum site quota limit,then there is chance to get the run time error while creating a new group.
    In this case,you will get the error while creating/updating the group or while adding the new user/uploading any content.
    Also Ensure the group name is not having any special/unsupported characters.
    Feel free to share the error screenshot/entry in the ULS logs.
    Please remember to click 'Mark as Answer' on the answer if it helps you
    Best Regards,
    Pavan Kumar Sapara
    s p kumar

  • Error when posting IDoc *** in system ERP100

    Hi Experts!
    Can you pls help me with a goods receipt issue?
    When user tries to make a good receipt on a PO, we have the msg "Error when posting IDoc *** in system ERP100" in SRM front-end application monitor.
    The same msg is getting displayed in RZ20.
    On the idoc itself in tcode WE02 however, I can't see any problem and unfortunately I have no access to the same t-code in R/3. Anyway, I don't see the GR on the PO.
    What can be the reason for this problem please?
    What is in general the way to analyse and solve this kind of issue?
    Thanks a lot !!
    imre

    Hi,
    First find out the PO number from the idoc in tx WE02 in SRM system. Then in ERP , transaction BD87 , specify the details like message type and the system information .... and find out the PO that was errored out for GR. From this we can find the cause of the error. First try to rectify the error and then run the report to clear the contents of  BBP_DOCUMENT_TAB.
    Hope this helps.
    Regards,
    Kalyan

Maybe you are looking for

  • Help required in understanding the flow of control in working with EJB 3.0

    *1. Can anyone help me in understanding the flow after getting an object of InitialContext in using Stateless/Stateful in EJB 3.0 from client i.e. what we are getting in the step Object ref=jndiContext.lookup("CalculateBean/Remote) .* *2. What is the

  • Error while testing SD cycle (Release to Accounting)

    Prof.segment for prim.cost elements not advisable for costing-based CO-PA Message no. KI183 Diagnosis You posted to a profitability segment for primary cost element 42031053. However, only costing-based profitability analysis is active in your contro

  • My app status is "inreview" for last 4 days.

    I have uploaded my app using itunes connect after 7 days my app got reviewd but they rejected my app and displayed the status like metadata rejected. According to resoltion centre i have given specific info for review and resubmitted without adding n

  • Problem : Idoc to File scneario using Party ..!!

    Hi , lam doing Idoc to file scenario by using party. Partner type for receiving system is "LS". 1. when I use Party for my sending system , the message is not processing showing error as " No receiver could be determined" 2. When I use the sending sy

  • Font selection will not work

    I have a MacBook Pro, quadcore i7 and for some reason in imovie I am unable to change the fonts. The button won't engage and stays in the same non highlighted color. Its also doing this crazy red thing any ideas?