COMPUTE_BCD_OVERFLOW MIRO Incoming Invoice

Hi, Gurus,
I have extended most of my domains successfully and everything seems fine until in MM when the MM consultant tries to simulate or save in trans MIRO, a short dump appears saying the above. I have look at the position specified in the dump and BETRAG and PX_DRSEG-WRBTR reference the same domain which has the same number of characters so, it seems here things are OK. But there is that dump as follows:
Runtime Errors         COMPUTE_BCD_OVERFLOW
Exception              CX_SY_ARITHMETIC_OVERFLOW
Date and Time          05.06.2008 09:49:32
Short text
     Overflow during the arithmetical operation (type P) in program "SAPLMRMP".
What happened?
     Error in the ABAP Application Program
     The current ABAP program "SAPLMRMP" had to be terminated because it has
     come across a statement that unfortunately cannot be executed.
What can you do?
     Note down which actions and inputs caused the error.
     To process the problem further, contact you SAP system
     administrator.
     Using Transaction ST22 for ABAP Dump Analysis, you can look
     at and manage termination messages, and you can also
     keep them for a long time.
Error analysis
     An exception occurred that is explained in detail below.
     The exception, which is assigned to class 'CX_SY_ARITHMETIC_OVERFLOW', was not
      caught in
     procedure "SPERRGRUND_T" "(FORM)", nor was it propagated by a RAISING clause.
     Since the caller of the procedure could not have anticipated that the
     exception would occur, the current program is terminated.
   The reason for the exception is:
   An overflow was discovered in an ongoing arithmetical operation with
   operands of type P. Possible causes are:
   1. The result field of type P is too small for the result.
   2. The result or a intermediate result has more than 31 decimal places.
ow to correct the error
   The result field must be enlarged, if this is still possible. It may
   also be possible to break up the current process into subprocesses so
   that only smaller values occur.
   There may already be a solution to the error in the SAP notes system.
   If you have access to the SAP notes system first try searching with the
   following keywords:
    "COMPUTE_BCD_OVERFLOW"
    "BCD_FIELD_OVERFLOW" (Until release 4.0a, this runtime error occurred at this
    position)
    "SAPLMRMP" or "LMRMPF1K"
    "SPERRGRUND_T"
   If you cannot solve the problem yourself and want to send an error
   notification to SAP, include the following information:
   1. The description of the current problem (short dump)
      To save the description, choose "System->List->Save->Local File
   (Unconverted)".
   2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
after the short dump. Then choose "System->List->Save->Local File
(Unconverted)".
3. If the problem occurs in a problem of your own or a modified SAP
program: The source code of the program
    In the editor, choose "Utilities->More
Utilities->Upload/Download->Download".
4. Details about the conditions under which the error occurred or which
actions and input led to the error.
The exception must either be prevented, caught within proedure
"SPERRGRUND_T" "(FORM)", or its possible occurrence must be declared in the
RAISING clause of the procedure.
To prevent the exception, note the following:
tem environment
SAP-Release 700
Application server... "dev"
Network address...... "10.0.0.81"
Operating system..... "SunOS"
Release.............. "5.9"
Hardware type........ "sun4u"
Character length.... 16 Bits
Pointer length....... 64 Bits
Work process number.. 0
Shortdump setting.... "full"
Database server... "tetradev"
Database type..... "ORACLE"
  Database name..... "DEV"
  Database user ID.. "SAPSR3"
  Char.set.... "C"
  SAP kernel....... 700
  created (date)... "Aug 31 2006 20:59:23"
  create on........ "SunOS 5.9 Generic_117171-13 sun4u"
  Database version. "OCI_102 (10.2.0.2.0) "
  Patch level. 75
  Patch text.. " "
  Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
  SAP database version. 700
  Operating system..... "SunOS 5.9, SunOS 5.10"
  Memory consumption
  Roll.... 16192
  EM...... 16759392
  Heap.... 0
  Page.... 188416
  MM Used. 9422712
  MM Free. 3143832
er and Transaction
  Client.............. 300
  User................ "USER01"
  Language key........ "E"
  Transaction......... "MIRO "
  Program............. "SAPLMRMP"
  Screen.............. "SAPLMR1M 6000"
  Screen line......... 34
Information on where terminated
    Termination occurred in the ABAP program "SAPLMRMP" - in "SPERRGRUND_T".
    The main program was "SAPLMR1M ".
    In the source code you have the termination point in line 39
    of the (Include) program "LMRMPF1K".
    The termination is caused because exception "CX_SY_ARITHMETIC_OVERFLOW"
     occurred in
    procedure "SPERRGRUND_T" "(FORM)", but it was neither handled locally nor
     declared
    in the RAISING clause of its signature.
    The procedure is in program "SAPLMRMP "; its source code begins in line
    12 of the (Include program "LMRMPF1K ".
Source Code Extract
Line  SourceCde
    9 * --> PI_XNULLPOS: Liegt eine Nullpos. vor?  (wenn ja: keine Verarb.)  *
   10 * <-> PX_DRSEG: Struktur mit den aktuell zu bearbeitenden Pos.daten    *
   11 ----
   12 FORM SPERRGRUND_T USING    PI_RBKPV TYPE MRM_RBKPV
   13                            PI_XNULLPOS LIKE BOOLE-BOOLE
   14                   CHANGING PX_DRSEG TYPE MMCR_DRSEG.
   15
   16   CHECK PI_XNULLPOS = SPACE.           "keine Nullpos.
   17
   18   DATA s_t169g TYPE t169g.
   19   SELECT SINGLE * FROM t169g INTO s_t169g
  20                   WHERE   bukrs = px_drseg-bukrs
  21                     AND    tolsl = 'ST'.
  22   check sy-subrc = 0.
  23   IF NOT s_t169g-xw2ne IS INITIAL.
  24     EXIT.
  25   ENDIF.
  26   DATA: datum1 LIKE sy-datum,
  27         DATUM2 LIKE SY-DATUM.
  28   DATA: DT_DIFF(8) TYPE C.
  29
  30   CHECK: PI_RBKPV-XRECH NE SPACE,
  31          PX_DRSEG-RETPO = SPACE,  "keine Sperre durch eine Retoure-Pos.
  32          PX_DRSEG-EINDT NE '00000000',
  33          PX_DRSEG-PSTYP NE C_PSTYP_1,  " keine Blanket PO
  34          PX_DRSEG-FPLNR IS INITIAL.    " kein Rechnungsplan
  35
  36   DATUM1 = SY-DATLO.
  37   DATUM2 = PX_DRSEG-EINDT.
  38   CHECK DATUM2 > DATUM1.
>>>>   BETRAG = PX_DRSEG-WRBTR * ( DATUM2 - DATUM1 ).
  40   DT_DIFF = ( DATUM2 - DATUM1 ).
  41
  42   SY-SUBRC = 0.
  43   CALL CUSTOMER-FUNCTION '001'
  44        EXPORTING I_RBKPV  = PI_RBKPV
  45                  I_YDRSEG  = PX_DRSEG
  46        EXCEPTIONS CALL_FAILURE = 001.
  47   CASE SY-SUBRC.
  48     WHEN 001.
  49       MESSAGE E271 RAISING PARAMETER_ERROR.
  50   ENDCASE.
  51
  52   RC = 0.
  53   CALL FUNCTION 'MRM_TOLERANCE_CHECK'
  54        EXPORTING
  55             I_AKT_WERT       = BETRAG
  56             I_BUKRS          = PX_DRSEG-BUKRS
  57             I_TOLSL          = 'ST'
  58             I_VERGLEICHSWERT = '0.00'
Please assist as urgently as possible. Assistance will be rewarded.
Thanx in advance.
Edited by: Darlington Chiyamha on Jun 5, 2008 11:06 AM

Hi Darlington,
You usually get that, if a number you calculate i getting bigger than the field it is stored in allows.
Check the data declaration of the variable which holds this value. If the resultant value is too large then the ABAP throws this exception.
You may handle this using CATCH ENDCATCH statement.
Check this e.g.:
PARAMETERS fact TYPE i.
DATA: fact_save TYPE i,
res(16) TYPE p.
ARITHMETIC_ERRORS contains COMPUTE_BCD_OVERFLOW ***
CATCH SYSTEM-EXCEPTIONS ARITHMETIC_ERRORS = 5.
res = fact_save = fact.
SUBTRACT 1 FROM fact.
DO fact TIMES.
MULTIPLY res BY fact. "<- COMPUTE_BCD_OVERFLOW
SUBTRACT 1 FROM fact.
ENDDO.
ENDCATCH.
IF sy-subrc = 5.
WRITE: / 'Overflow! Factorial of', fact_save,
'can not be calculated.'.
ELSE.
WRITE: / 'Factorial of', fact_save, 'gives', res.
ENDIF.
Edited by: Raj on Jun 5, 2008 2:43 PM

Similar Messages

  • BAPI for MIRO Incoming Invoice

    Hi All,
    I want BAPI for MIRO Posting ie for Incoming Invoice.
    .here MIRO is being done with Delivery Note number
    Following are the necessary entries for MIRO Posting
    Invoice date
    Reference
    Amount
    Calculate Tax
    Tax amount
    Delivery Note
    Vednor
    Business Area
    Please suggest me suitable BAPI for MIRO Incoming Invoice Posting with sample code.
    immediately.Please give some sample code for my reference.
    Rewards will be given.
    Regards.
    Ulhas

    Hi,
    BAPI for Invoice Verification: Post Invoice
    BAPI_INCOMINGINVOICE_CREATE
    The method can only carry out your function if no error messages were
    generated in the Return table. This is the case if the header data and
    all the items were processed successfully.
    Transaction control is not implemented. The calling program therefore
    has to execute the Commit Work itself after this method has been
    successfully called (in other words, if no errors were reported in the
    Return parameter).

  • MIRO-Incoming invoice

    Hi Experts,
    I got couple of doubts with regards to MIRO..
    1)Which doc no should be in the  reference field?
    2)this particular invoice is meant only for shipment services ryt?.....let me explain the scenario am working....we deliver goods from different plant of another company code say xxxx......vendor yyyy of xxxx will render shipment service to our customer, so here miro will contain the details of shipment service of the vendor correct me if this understanding is wrong........so invoice for the goods which xxxx is delivering  has to be created seperatly thats called inter company invoice am i ryt?......
    3)with which document we will cross check the incoming invoice?.....
    4)whos invoicing party?.....the party who is issueing the invoice?...here vendor should be the invoicing party is it ryt?
    5)can any one send me the steps to create MIRO document?....

    Hi,
    A company arranges direct delivery of the goods to the customer from the stocks of another company belonging to the same corporate group. Ex- Company code A orders goods through its sales organization A from Plant B belonging to Company code B.
    The condition type IV01 in intercompany billing document represents revenue to the Supplying Company. But its corresponding condition type PI01 in the billing document to the end customer is shown as a statistical item meant for information purposes. Condition Type VPRS in the intercompany-billing document indicates cost to the supplying company code.The use of two different condition types in Intercompany billing is necessary to ensure that data is transmitted correctly to the financial statement (Component CO-PA)
    Specify purchase order no as reference and date so that price in the PO will flow to the MIRO document.
    Regards.

  • FIeld selection for MIRO Incoming Invoice

    HI,
    Iam creating invoice entry (MIRO). After entring purchase order number i will get all the GRN against that PO.
    But iam getting all the fields with  not necessary. pls tell what is the path in SPRO setting to select filed selection.
    Regards
    Sunil

    Hi
    Please check the Tcode OLMRLIST  . Here you can make fields mandatory/display/optional. You need to select transaction MIRO with appropriate screen variant and have to search for juridiction code , make it optinal.
    Else check the GL code used for the particular line item and check if tax data is made mandatory for that.
    Cheers
    Mukta

  • Enter Incoming Invoice ( MIRO) unalbe to post

    Dear All,
    While posting the Incoming Invoice using MIRO tran. - credit memo, After Entering the GL Account
    Layout of Business Area , Cost Center, Partner Business area , and order field indicator shows all
    tick mark, ( correct sign) ,
    continuos message come fill in all required entry field.
    but when I using other User ID  Entering the Incoming Invoice happened.
    Please reply me How to correct the same. Which Auth.shall I remove.
    Regards,
    Santosh

    Thanx sri nath for reply., but still my problem is not solved.
    SAP user doing following entries :
    MIRO ->Inv. date >Reference>Calculate Tax ( check box select) > Business place>text>PO ref>
        --> select Delivery Note --> Select G/L Account -->
        in this menu after select the G/l account --> Business area --> Cost Center --> Order ( This fielld  
       automatically  Mandatory tick comes  ) only in one SAP login.
      So please tell me now How to remove this Mandatory tick to aboe field.
    While on my other SAP user this field are not comes in Mandatory. so Invoice post successfully.
    Regards,
    Santosh

  • Can we Use T Code MIRA instead of MIRO for posting incoming invoice?

    Hi All,
    Can we Use T Code MIRA instead of MIRO for posting incoming invoice?
    While trying to post a incoming invoice using MIRO, I am getting a error "HKONT is EMPTY". But when using MIRA i could get the invoice posted.
    And in which situations we use MIRA?
    Thanks in Advance
    Gopi Krishna

    Hello
    MIRA is for Invoice Verification in the Background
    Purpose
    This process is suitable for the following transactions:
    Posting invoices with mass amounts of data for which no item check is required
    Posting invoices referring to transactions not yet entered in the system
    Entering Invoices for Verification in the Background (Without Item List)
    When verifying invoices in the background, you enter only a small set of document header data, such as the invoice amount, the currency and the tax information. You also allocate the incoming invoice to a purchasing document or a vendor. The system saves the data and allocation criteria you enter.
    At a later point, the system verifies the invoice in the background. It uses the allocation criteria you entered to determine the item list. It then calculates the net total from the item list.
    If the net total = gross amount invoiced - tax amount (+/- tolerance), the system posts the invoice in the background.
    If the net total ¹ gross amount invoiced - tax amount (+/- tolerance), the system does not post the invoice in the background. It saves the document header data and the items determined in the background; the saved document then has to be processed manually in Invoice Verification.
    With Invoice Verification in the background, the system does not check for any quantity or price differences at item level. Since you do not enter any actual invoice item data, the system uses the default data for comparison.
    Regards
    Gregory Mathews

  • User exit for incoming invoice - MIRO/MB60

    Hi,
    Can anybody suggest me the user exit to set the payment block during the creation of incoming invoice document through MIRO(With PO reference) / FB60 (With out PO reference).
    Kindly dont run the program and send the list of the exists.
    Thanks
    Suri

    HI Suresh,
      Just execute this report and enter input value as FB60 then it will display alll the user exits related to this  t-code.
    report zuserexit no standard page heading.          
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.          
             tables : tstct.          
    data : jtab like tadir occurs 0 with header line.          
    data : field1(30).          
    data : v_devclass like tadir-devclass.          
    parameters : p_tcode like tstc-tcode obligatory.          
    select single * from tstc where tcode eq p_tcode.          
    if sy-subrc eq 0.          
       select single * from tadir where pgmid = 'R3TR'          
                        and object = 'PROG'     
                        and obj_name = tstc-pgmna.     
       move : tadir-devclass to v_devclass.     
          if sy-subrc ne 0.     
             select single * from trdir where name = tstc-pgmna.     
             if trdir-subc eq 'F'.     
                select single * from tfdir where pname = tstc-pgmna.     
                select single * from enlfdir where funcname =     
                tfdir-funcname.     
                select single * from tadir where pgmid = 'R3TR'     
                                   and object = 'FUGR'     
                                   and obj_name eq enlfdir-area.     
                move : tadir-devclass to v_devclass.     
              endif.     
           endif.     
           select * from tadir into table jtab     
                         where pgmid = 'R3TR'     
                           and object = 'SMOD'     
                           and devclass = v_devclass.     
            select single * from tstct where sprsl eq sy-langu and     
                                             tcode eq p_tcode.     
            format color col_positive intensified off.     
            write:/(19) 'Transaction Code - ',     
                 20(20) p_tcode,     
                 45(50) tstct-ttext.     
                        skip.     
            if not jtab[] is initial.     
               write:/(95) sy-uline.     
               format color col_heading intensified on.     
               write:/1 sy-vline,     
                      2 'Exit Name',     
                     21 sy-vline ,     
                     22 'Description',     
                     95 sy-vline.     
               write:/(95) sy-uline.     
               loop at jtab.     
                  select single * from modsapt     
                         where sprsl = sy-langu and     
                                name = jtab-obj_name.     
                       format color col_normal intensified off.     
                       write:/1 sy-vline,     
                              2 jtab-obj_name hotspot on,     
                             21 sy-vline ,     
                             22 modsapt-modtext,     
                             95 sy-vline.     
               endloop.     
               write:/(95) sy-uline.     
               describe table jtab.     
               skip.     
               format color col_total intensified on.     
               write:/ 'No of Exits:' , sy-tfill.     
            else.     
               format color col_negative intensified on.     
               write:/(95) 'No User Exit exists'.     
            endif.     
          else.     
              format color col_negative intensified on.     
              write:/(95) 'Transaction Code Does Not Exist'.     
          endif.     
    at line-selection.     
       get cursor field field1.     
       check field1(4) eq 'JTAB'.     
       set parameter id 'MON' field sy-lisel+1(10).     
       call transaction 'SMOD' and skip first   screen.
    Hope this helps you. reply for queries.
    Regards,
    Kumar.

  • Unplanned delivery costs block incoming invoice - MIRO

    Hello experts,
    In tcode MIRO how can I block the "Incoming Invoice" if I insert Unplanned delivery costs? It is possible?
    I already set tolerance limits (Materials Management->Logistics Invoice Verification->Invoice Block->Set Tolerance Limits), but it only works when when the cost is the level of the item.
    Thanks in advance,
    Best regards

    Andreia,
    Because you say "incoming invoice", I assume you are asking how to block an invoice that is being process via an Idoc?  If that is the case, I am not aware of any SAP configuration that will make that happen.   You could perhaps block it via a user exit.
    Regards,
    Sandra

  • LSMW of INCOMING INVOICE (MIRO)

    Hi,
    I'm gonna do the conversion of Invoices from one SAP to an other SAP and I need to use an LSMW of Incoming Invoices for SAP Material Management (transaction MIRO???).
    Anyone knows if it's possible and if it's exists?
    Thank you
    Andrea

    you want migrate historical data?
    There is nothing really impossible with computer programs, but I feel this would need so much effort and cost more than the whole rest of your migration project.
    you would have to redo anything in the sequence as it was dont in the old system, otherwise you will get wrong values.. You cannot migrate movements by its own, or invoices by its own.
    You would need to create this old (and probably closed)  PO again, receive the goods to create the   movement, post the invoice... which would mean that you might have an open item and you would need to pay the vendor again.......
    Dont forget to post all the goods issues otherwise your stock will be incorrect.
    And .. do you really think that you can get the data with the same numbers, if you have 2 SAP systems, then you might have overlapping number ranges.
    No , to be honest, I have not seen that such was done anywhere.
    You usually transfer open business process (and create cross reference lists, to see what old number has got which new number). means you transfer all POs that have not been received yet.
    You will post the invoices that belong to a PO that was received in the old system using the FI transactions (no 3 way match for a short period of time)
    You might want to ask that question to SAPs SLO team.

  • In MIRO transaction (enter incoming invoice) system brings used positions.

    Hi All,
    In MIRO transaction (enter incoming invoice) system brings used positions (items) as available. It shouldn't work like that. Enclosed you can find a print screen from MIRO transaction. Both items in this order have already been used but still it lets user to post invoice against them.
    plz help.
    regards,
    nishith

    Hi,
    Make "Reference number" mandatory in 'Required during document entry segment' in "RE" document type in OBA7 t.code & save.
    Set Error message for messages M8-471,M8-108 & M8-462 in t.code: OMRM  & save
    So when you do MIRO , you need to enter VENDOR INVOICE NUMBER in Reference number field in MIRO & post document and further more same VENDOR INVOICE NUMBER you can not used in MIRO t.code again, if you do so, system will show error message.
    Regards,
    Biju K

  • DMS document attachment with Incoming Invoice

    Hi All,
    We are creating one DMS document and want to attach it to an Incoming Invoice (MIRO).
    We are using the bapi BAPI_DOCUMENT_CREATE.  What are the fields to pass in Objectlink.
    Please help us to achieving it.
    Thanks

    We have created an Incoming Invoice already using 'BAPI_INCOMINGINVOICE_CREATE'. We are now creating a DMS document using 'BAPI_DOCUMENT_CREATE' and want it to be linked to the existing Invoice. For this we are trying to use the 'OBJECTLINKS' table.
    The linked document should be visible in T-Code FBL1N. Can you please throw some light on how to do this?
    Edited by: Himansu.P on Jun 14, 2011 3:06 PM

  • Calculate due on date in incoming invoice based on p.date of purchase order

    We would like to calculate due on date in incoming invoice based on posting date of purchase order position. We want to be able to see the posting date of the purchase order lines from miro transaccion. Then we would add 85 days to calculate the due on date. I have tried to create an "item list variant" from OLMRLIST transaccion (Customizing - Logistics invoice verification) and add the posting date but it is not possible to access this value.
    Thanks in advance.

    Hi,
    have a look at badi MRM_PAYMENT_TERMS.
    Check as well OSS Note 1156325 - BAdIs in the Logistics Invoice Verification environment
    Best regards.

  • Tax Jurisdiction code for EDI Incoming invoice

    Hi,
    We have implemented EDI incoming invoice using INVOIC02. The process code is INVL.The invoice is to be posted against a Purchase Order line item. It is noticed that the EDI invoice is not getting the Tax Jurisdiction code from the Purchase Order line . Instead the Tax Juridiction code is copied from the company code. However when we post the invoice manually using MIRO , then the Tax Juridiction code is copied from the Purchase Order. We understand that the system should take the Tax Jurisdiction code from the Purchase Order even for EDI invoices. Is it compulsory that we have to use the user exit EXIT_SAPLMRMH_014 in order to populate the Tax Jurisdiction code field TXJCD from the Purchase Order line? or is there any config required to enable the transfer of Tax Juridication code from the Purchase Order? In transaction OBCE there is a config to transfer the tax jurisdiction code supplied by the external vendor. If we do not check that box , then system is supposed to get the tax jurisdiction code from the Purchase Order.
    Thanks
    Sukumar

    The issue is resolved through OSS Note 506343. In the standard R/3 system, the tax jurisdiction code can't be written to invoice via EDI and only the Ship To Plant's Tax Jurisdiction Code is written to the invoice.
    Regards
    Sukumar

  • Document date is in the future in incoming Invoice

    Hi,
    When I create incoming invoice with Tcod MIRO  this problem create
    {Check - document date is in the future)
    What I do in this case please tell me
    Regards
    Sunil.

    hi,
    cHECK THE DOCUMENT DATE IF IT IS IN THE FUTURE I,E FOR EG A MONTH AHEAD.
    Probably the system just askds u if u have to post the doc in the future date.
    This should be just a warning message and not the error message.
    This should allow u to proceed with MIRO.
    Please proceed and see,
    Regards,
    Hope thsi helps.
    Prasanna
    Award if helpful

  • RBKP vs RSEG - incoming invoice w/o PO

    Dear All,
    Please give a hand in this issue:
    I created an incoming invoice in MIRO with WBS reference (no PO was involved into this process). There was two lines in MIRO when I created the document in MIRO (WBS were the same for both lines).
    1. Using the number of MIRO-invoice I can see a record in RBKP.
    2. In RSEG I haven't found any record using this document number.
    3. In RSEG I can find only record with PO reference.
    My questions:
    1. Where are stored my document lines? I thought the should be in RSEG but they aren't... How does this work?
    2. How can I connect my MIRO document items (that were booked w/o PO reference) to accounting document items (BKPF, BSEG)?
    Thanks in advance,
    Csaba
    Edited by: Csaba Szommer on Aug 26, 2008 5:31 PM

    Hello
    Link between RBCO and BSEG:
    1. select single * from RBKP where BELNR = RBCO-BELNR and GJAHR = RBCO-GJAHR.
    2. concatenate RBCO-BELNR RBCO-GJAHR into AWKEY1.
    3. select single * from BKPF where BUKRS = RBKP-BUKRS and GJAHR = RBKP-GJAHR
    and BLART = RBKP-BLART and BUDAT =RBKP-BUDAT and TCODE = RBKP-TCODE
    and XBLNR = RBKP-XBLNR and AWKEY = AWKEY1.
    4. select * from BSEG where BUKRS = BKPF-BUKRS and BELNR = BKPF-BELNR
    and GJAHR = BKPF-GJAHR.

Maybe you are looking for

  • How to send a mail from SAP 3.1H Ver.

    Hi,   I am working on SAP 3.1H Version. I need to send mail from one of my ABAP program. Since SAP 3.1H version does not have Standard function modules which send mails from any ABAP program so how can I achive this task in this version of SAP. The O

  • EhP 5 and EhP 4 in ECC 6.0

    Hi All, Pls someone explain me the key points of difference b/w ECC 6.0 EhP5 and EhP 4. I need to test all these scenarios reg. the differences. And if possible pls give the points of differences from MM point of view. Thanks in advance. Regards.

  • Safari update 4.1

    I may be repeating this question ,but if anyone can help with I problem I have using the back button to return to a page with various articles. The article comes in to my mail via Yahoo. I used to be able to hit the back button to return to the main

  • HTML, JavaScript, Applets possible in Web-Dynpro Applications?

    Hello Community, I'm developing a JEE5-Application using Web-Dynpro for the User-Interface. Web-Dynpro works fine for the most functions and processes of the application. But there are some special requirements i don't know to implement them using We

  • 27.56 GB of other listed in contents of ipod

    I don't understand what the 27.56 GB of "other" is on my ipod. I have only sync'd and transferred music files from Windows Media Player, and photo's from Adobe Photo shop. It's taking up almost half of my available space on my ipod. Please if anyone