Modifying MB01, Could affect other transaction linked to it?

Hi Experts,
My user is encountering this error when she tried to define the delivery amount or qty.. and post it. I'm just wondering why they were able to post a GR before July even the amount is 7 digits. The user tried to breakdown the amount but there's still an error.
There was no changes in the configuration or any user exits connected to it. I have checked the runtime error logs in st22 and released it. But until now those errors ar still in the list.
My last option is to change the data type of Rexwrt field from EXWRT to wertv12. Exwert has a length of 13 characters and I want to change it to WERTV12 that has 23 characters.
they are using SAP release 4.0:
007650 DATA: REXWRT LIKE EXWRT.
> REXWRT = W-EXWRT + W-SALK3.
from SAP 6
DATA: rexwrt TYPE wertv12.
My question is, Would it be safe if I modify it? How would I know if there are other transaction may affect this code?
I don't get an error in DEV server.
Overflow when converting from "1.08844e+013"
What happened?
The current ABAP/4 program "SAPLMBGB " had to be terminated because
one of the statements could not be executed.
This is probably due to an error in the ABAP/4 program.
What can you do?
Print out the error message (using the "Print" function)
and make a note of the actions and input that caused the
error.
To resolve the problem, contact your
SAP system administrator.
Error analysis
When attempting to convert the value "1.08844e+013",
an overflow occurred.
There is probably an error in the program
"SAPLMBGB ".
How to correct the error
Probably the only way to eliminate the error is to correct the program.
You may able to find an interim solution to the problem in the
SAP note system. If you have access to the SAP note system yourself,
please use the following search criteria:
"CONVT_OVERFLOW"
"SAPLMBGB " or "LMBGBFSU "
"WERT_V_RECHNEN"
If you cannot solve the problem yourself, please send the
following documents to SAP:
1. A hard copy print describing the problem.
   To obtain this, select the "Print" function on the current screen.
2. A suitable hardcopy prinout of the system log.
   To obtain this, call the system log with Transaction SM21
   and select the "Print" function to print out the relevant
   part.
3. If the programs are your own programs or modified SAP programs,
   supply the source code.
   To do this, you can either use the "PRINT" command in the editor or
   print the programs using the report RSINCL00.
4. Details regarding the conditions under which the error occurred
   or which actions and input led to the error.
System environment
SAP Release.............. "40B"
Application server....... "prosap"
Network address.......... "192.168.0.80"
Operating system......... "Windows NT"
Release.................. "0"
Hardware type............ "PENTIUM"
Database server.......... "prosap"
Database type............ "INFORMIX"
Database name............ "PRO"
Database owner........... "sapr3"
Character set............ "E"
SAP kernel............... "40B"
Created on............... "May 25 1999 02:20:08"
Created in............... "NT 4.0 1381 Service Pack 3 x86 MS VC++ 11.00?"
Database version......... "inf INF_723_TC2"
Patch level.............. "400"
Patch text............... " "
Supported environment....
Database................. "INFORMIX 7.2*.*"
SAP database version..... "40B"
Operating system......... "Windows NT 0 4"
User, transaction...
Client.............. 400
User................ "SAPUSR_FI05"
Language key........ "E"
Transaction......... "MB01 "
Program............. "SAPLMBGB "
Screen.............. "SAPMM07M 0210"
Screen line......... 71
Information on where termination occurred
The termination occurred in the ABAP/4 program "SAPLMBGB " in
"WERT_V_RECHNEN".
The main program was "SAPMM07M ".
The termination occurred in line 779
of the source code of program "LMBGBFSU " (when calling the editor 7790).
Source code extract
007490                             W-BETRAG LIKE BETRAG.
007500
007510     DATA: RMENGE LIKE MENGE.
007520     RMENGE = 0 - W-MENGE.
007530     IF ( W-EXWRT IS INITIAL AND W-EXWOB IS INITIAL ) OR
007540        ( W-LBKUM < 0 AND ( W-SHKZG = H OR W-LBKUM < RMENGE ) ).
007550       PERFORM WERT_WERTPROPORTIONAL USING W-SALK3
007560                                           W-VERPR
007570                                           W-LBKUM
007580                                           W-PEINH
007590                                           W-MENGU
007600                                           W-WERTU
007610                                           W-BWSPA
007620                                           W-MENGE
007630                                           W-BETRAG.
007640     ELSE.
007650       DATA: REXWRT LIKE EXWRT.
007660       IF W-SHKZG = H.
007670         IF ( W-LBKUM > W-MENGE AND NOT W-SALK3 < W-EXWRT )
007680            OR NOT W-LBKUM > 0.
007690           W-BETRAG = W-EXWRT.
007700         ELSEIF NOT W-LBKUM < W-MENGE.
007710           W-BETRAG = W-SALK3.
007720         ELSE.
007730           RMENGE = W-MENGE - W-LBKUM.
007740           W-BETRAG = ( RMENGE * W-EXWRT ) / W-MENGE.
007750           W-BETRAG = W-BETRAG + W-SALK3.
007760         ENDIF.
007770       ELSE.
007780         RMENGE = W-MENGE + W-LBKUM.
----->         REXWRT = W-EXWRT + W-SALK3.
007800         IF ( RMENGE < 0 AND NOT REXWRT > 0 )
007810            OR NOT W-LBKUM < 0.
007820           W-BETRAG = W-EXWRT.
007830         ELSEIF NOT RMENGE > 0.
007840           W-BETRAG = 0 - W-SALK3.
007850         ELSE.
007860           W-BETRAG = ( RMENGE * W-EXWRT ) / W-MENGE.
007870           W-BETRAG = W-BETRAG - W-SALK3.
007880         ENDIF.
007890       ENDIF.
007900       IF W-BETRAG > MAXIMUM OR W-BETRAG < MINIMUM.
007910         MESSAGE E302 WITH 'WERT_V_RECHNEN' 'W-BETRAG'.
007920       ENDIF.
007930     ENDIF.

Hi Maui,
See SAP Note
Note 196607 - Overflow in WERT_V_RECHNEN provided by SAP on 25.01.2000 .
the correction instruction clearly mentions
Context Block 
    PERFORM WERT_WERTPROPORTIONAL USING W-SALK3
                                        W-VERPR
                                        W-LBKUM
                                        W-PEINH
                                        W-MENGU
                                        W-WERTU
                                        W-BWSPA
                                        W-MENGE
                                        W-BETRAG.
  ELSE.
Delete Block 
    DATA: REXWRT LIKE EXWRT.
Insert Block 
DATA: REXWRT TYPE WERTV12.
Hope this helps you. Revert for more clarifications if any.
<b>Always reward points to useful suggestion.</b>
regards,
Vikas

Similar Messages

  • Modifying a CD track's stop time affects other tracks on the disc

    Previous topic locked. Bug still present with iTunes 7.3.
    <hr>
    I've reported this same bug via the feedback form for a number of versions of iTunes, I believe going back to version 3 or 4, but here it is again for the pile.
    Setting a custom stop time for an individual track on a CD (track -> Get Info -> Options -> Stop Time) affects other tracks on the CD in addition to the one being modified.
    For example, if you set one track to end at 2:30, ALL tracks prior to and including that track will now end at 2:30. If one of those tracks is actually 2:10 long, it will play in its entirety and the track immediately following will play for 20 seconds before it ends and goes on to the next track. Tracks after the modified track are unaffected (unless the track being edited is the last track on the CD, in which case ALL tracks on the CD are affected).
    I would like to set stop times before ripping CDs to remove dead space commonly added to pad out "hidden" tracks, but this long (long, long, long) standing bug makes this nearly impossible.
    Quicksilver dual-1.2GHz G4, 1.83 Core Duo mini, 60GB 5G iPod, 8GB iPhone   Mac OS X (10.4.10)  

    Adjusting start and stop times is a feature for
    playback of files in iTunes, not for CD ripping. Even
    if the program allows you to modify these values for
    an audio CD prior to importing it, it still is not a
    reliable way of ripping a CD.
    Yes, but there's a difference between "may not be frame-accurate when playing/ripping" and "will radically affect tracks other than the one edited when playing/ripping".
    Instead of using your current work process, why not
    just rip the CD in a lossless format such as Apple
    Lossless, then adjust the start/stop times of the
    desired tracks in iTunes and convert the files to
    another format. There will be no loss in sound
    quality in this case, and your problem should be
    solved.
    I could also buy Fission to losslessly edit the ripped mp3. But for such a basic task (that worked from SoundJam through at least iTunes 3) it would be nice to handle it during the rip instead of going through multiple steps (currently, I rip all tracks but the one that needs editing, then change the start/stop times for that one and rip it on its own).
    I ended up filing a bug report, which is what I should have done originally.
    Quicksilver dual-1.2GHz G4, 1.83 Core Duo mini, 60GB 5G iPod, 8GB iPhone   Mac OS X (10.4.10)  

  • Once a transaction has an error it's affected to other transaction

    Hi is there anyone help me about understanding the "job_queue_interval" and "job_queue_processes" parameters??I have experienced that when a transaction has an error on it,it's affected to other transactions which in the same job queue with it.Then the normal(the should not have any error) transaction detected with some error, but i didn't see any error on the errors detail.I set up the job_queue_processes=10 and job_queue_interval=0. Help me please........Thanx

    job_queue_processes = number of backgroud processes dedicated to run jobs
    job_queue_interval = interval in seconds, how often ORACLE check, if there is some job to run (next_time in xxx_jobs views).

  • Error 'Could not commit transaction'

    Dear Expert,
    I am facing error ' Could not commit transaction' while entering  Good Receipt PO . All GL account mapped.

    Hi,
    Please check for the Approval procedures and see if the user for which
    you are getting error is defined the originator for the affected
    documents.
    You can check this by going through all the Approval template for that
    particular document.
    Then check the Terms tab of that template and if in Launch Approval
    Procedure "When the following applies" is ticked then check the "Ratio"
    column and "Value" column and make sure that some value is given there.
    There should not be any undefined type.
    If there is any Template which has undefined type selected then please
    logged in as the Authoriser or Approver of that template and modify
    that term.
    Check all the approval template and go through the term tab and see the
    value defined there.
    Hope this will help.
    Regards,
    Gagan Thareja
    SAP Business One Forums Team

  • Will apex_application.stop_apex_engine affect other users to use that APEX?

    Hi, guys:
    I wonder if I call apex_application.stop_apex_engine to execute wpg_docload.download_file in order to download RTF file, would it affect other users to use that APEX application at the same time? I checked the article and did experiment, I think it won't, but I still want to get your comments about it.
    http://www.talkapex.com/2011/12/apexapplicationstopapexengine.html
    APEX 4.1
    Oracle 11G R2
    appreciate your advice!
    Sam
    Edited by: lxiscas on May 17, 2013 9:34 AM
    Edited by: lxiscas on May 17, 2013 9:35 AM

    lxiscas wrote:
    Could you give me more detail about the affects on current session? as I found I have no problem to get to other pages through navigation, and I can still use the current page. The apex_application.stop_apex_engine is called at last in the procedure. and the procedure is called when user click one of two links.I think the API documentation and Martin's post fully cover the effects on the current "session" ("request" would be a more accurate term). Is there something specific that's bothering you?
    <tt>apex_application.stop_apex_engine</tt> does not exert any global control over APEX or the current session (see +{thread:id=2401000}+ for previous discussion on this). It simply stops further APEX page processing of the current request. This is necessary because you want to send the contents of a downloaded file, or redirect it to a new resource, not display an APEX page.

  • Web Services,Delivery Document Adding Error  Could not commit Transaction

    Dear All,
       I am working with SAP Business One Web Services, While adding Delivery Document it's giving error  "Could not commit transaction"  Please Give your Suggestion It's urget.
    Thanks,
    Madhu
    9701155577

    Hi,
    Do you mean there is no journal entry created orthat the link is missing?
    If this really is a delivery for stock/inventory items there should be a journal entry, else it sounds like an error in SAP.
    Are there still changes in the stored procedure? Also have a look at the TansactionNotice. It is possible the roll back does not work correctly.
    Again sounds like an error.
    Doe sit happen all the time?
    Only for certain items?
    Are the stored procedures now clean?
    What Version are you using?
    Kind Regards,
    Friederike

  • "Could not commit transaction: Error -1 detected during transaction"

    hi guys,
    im getting this error "Could not commit transaction: Error -1 detected during transaction" when trying to create standard document/s. i am now using B1 8.8, MS SQL 2008.
    originally, my program was written for B1 2005, MS SQL 2005, and it WORKED.
    we upgraded into B1 8.8, MS SQL 2008, and now my program is not working. it is now having the mentioned error upon committing transaction (vCompany.EndTransaction(wf_Commit)). tried removing transaction handling, and it WORKED. also, tried simplifying the program, instead of creating multiple documents, i modified it in just creating one document with transaction handling, and it WORKED.
    initialliy, this issue seems to be related to MS SQL 2008.
    please help, thanks.

    Hi Emmanuel........
    You get this error due to the Approval Procedure.
    Please check if it is activated then please deactivate it from Administration> Approval> Approval Template.......
    Then try.......
    Regards,
    Rahul

  • Could not find the linked file

    I open a PDF to edit it in Adobe Illustrator and get several messages like this:
    Could not find the linked file "whatever.gif". Choose Repair to locate the missing
    file, Replace to select another file, or Ignore to leave the link unchanged.
    When I open that same PDF up in Adobe Acrobat Pro, however, all images display - even the ones that Adobe Illustrator seems to be trying to "link" to.
    If Adobe Acrobat Pro doesn't require the images be stored locally on the hard drive, why does Adobe Illustrator require it?

    PrepressPro1 wrote:
    It would seem Illustrator compatability was not checked when the PDF was saved.
    Actually it seems it was checked, and Illustrator is opening the AI portion of the file, which links to an external file. The PDF portion can only use embedded images, so that cannot be what Illustrator is reading.
    The PDF was saved from Illustrator with "Include Illustrator Editing Capability" turned on. This option saves the native AI file within the PDF so it can be edited with Illustrator. The drawback is that linked images need to be supplied as well, and in this case they were not. Acrobat ignores the AI portion of he file and only reads the PDF data, which contains an embedded copy of the image, which has probably been heavily modified from the original for embedding in the PDF. Expect the image to have some or all on these modifications: JPEG compression, downsampling, flattening, conversion from RGB to CMYK or from CMYK to RGB, cropping.
    Your best option is to ask the original file's supplier to send you the missing image. Illustrator's Links panel will tell you the file name. If that's not an option, open the PDF with Photoshop and select Images instead of Pages to open. Select the image from the thumbnails shown, open it, then save. Switch back to Illustrator and link to that image.

  • I cannot see other user's tables via the OTHER USERS link

    I'm using SQL Developer version 1.5.0.53 Build MAIN-53.38.
    I log into the database as a user who has SELECT access to tables in other schemas via a ROLE.
    In the SQL window, I can select from those other tables as I expect.
    But, when I go down to the bottom of the screen and expand the Other Users link and then go down to one of the schemas that my account can select from,
    no tables appear.
    I've tried a couple of things so far to no avail.
    1. I first granted SELECT ANY TABLE to my account. I then killed my SQL Developer session and started a fresh session. I'm seeing the same results.
    2. I saw a post in here that said I needed to grant SELECT on the ALL_USERS view. So I removed the SELECT ANY TABLE privilege and granted the SELECT on
    ALL_USERS to my account. Once again, I killed the SQL Developer session and re-logged in. Same results.
    Is this a bug?
    Thanks,
    John

    well, it turns out I'm not as dumb as I though. My end user could still not select from other user's Materialized Views. Some more research showed that granting either SELECT ANY TABLE or SELECT_CATALOG_ROLE fixed the problem for him. I'm sure that a more restrictive grant on one of the DBA_ tables would also work (probably DBA_MVIEWS) but I've not tried that.

  • HT2509 Despite what this article states, Apple support told me not to try to remove any fonts as it could cause other possibly serious problems.  Is there a program which can be safely installed which will keep at the top of the font list those fonts whic

    An article in the New York Times yesterday told how to remove unwanted fonts from the Font Book.  I followed its instructions (the same as those on the webpage "support.apple.com/kb/ht2509") and was NOT successful in removing fonts.  Despite what the newspaper article and the web page stated, my attempts to remove fonts were unsuccessful.  I use perhaps 15-20 of the hundreds and hundreds of fonts, and deleting those I don't use would make choosing a font a lot faster.  I called support and was told not to try to remove any fonts which I myself had not added to the list(I have not added any) as doing so could cause significant problems elsewhere.  The support tech suggested that there might be independent software programs which would keep at the top of the list those fonts I have used, which sure would speed up the process of selecting a font.  Anyone know of such a program, or how to safely alter the font list Thanks.

    I just spoke again to tech support and this time an answer was provided that works!  Choose the font you want to use, drag it to the left, and a new "unnamed" folder will appear.  Continue to drag into that folder fonts you want to use.  You can click onto that folder to change its name.  Then when using font book merely click on that folder to open it and select the font wanted.  This tech rep also confirmed that you should NOT try to delete individual fonts as they are part of the basic operating system; he did confirm that the apple web page in parentheses above says otherwise, and will refer that to higher ups to see about removing or modifying that page.

  • Free Goods Determination for other transaction types

    Hi,
    Does anybody know of any Function Modules or Class names that determines Free Goods determination in a Sales Order? We are thinking if this functionality could be mimicked for other transaction types?
    Thanks!

    Hi,
    please consider the sap online help:
    http://help.sap.com/saphelp_crm700_ehp03/helpdata/en/b7/4a893a8729337be1
    0000000a11402f/frameset.htm
    Check the function moduls:
    Event CRM_FREE_GOODS_ADD_ITEM_EC
    CRM_FREE_GOODS_DETERMINE_EC  >
    CALL  FUNCTION CRM_FREE_GOODS_DETERMINATION
    Best regards
    Rene

  • When trying to Airplay from my Macbook Pro Retina, to AppleTv3 it plays for only a few minutes, and then jumps back to the Mac. It seems to do this no matter what I play, music, movies or pictures. I just bought a new router. This could affect it

    When trying to Airplay from my Macbook Pro Retina, to AppleTv3 it plays for only a few minutes, and then jumps back to the Mac. It seems to do this no matter what I play, music, movies or pictures. I just bought a new router. This could affect it.
    I have been playing whole movies before from VLC without problems.
    Any Ideas?

    Welcome to the Apple Community.
    Yes it's network issues or settings that cause these types of problems most of the time.
    The following article(s) may help you.
    Troubleshooting AirPlay
    Troubleshooting Wi-Fi networks and connections
    Recommended Wi-Fi settings
    Wifi Diagnostic Software (for Mac users)
    You may also find some help on this page, where I’ve collected some of the more unusual solutions to network issues.

  • "a placed instance of this link is modified" though I tried to re-link the same file.

    "a placed instance of this link is modified" though I tried to re-link the same file. Problem does not occur when I place the same file in a new indesign document

    I'm going to repeat what I said previously, but in a different way to make it clearer, I hope. You have more than one instance of the same placed file. The file was modified after it was placed for at least one of these instances and that instance has not been updated. Updating that instance should resolve the issue.
    If there is no instance of the link in the links panel that shows the modified warning, then the file is probably damaged in some minor way and you should see Remove minor corruption by exporting

  • Account Details page transaction link do not display anything

    Hi,
    I extended the TransactionTableVO to include new columns. Initially, whenever I click on the transaction link, I get an exception error. But I fixed it by commenting out functions that seem to overrride the original one (like setIrSalesOrder, setAmountDueRemainingFormatted etc). It worked for Payment transaction type but not for the other types like Credit Memo, Chargeback, Invoice, Debit Memo, etc.
    This Transaction link displays different pages according to the transaction type. I don't have any clue why it worked for Payment transaction type but did not work for the rest. There is no error just blank content.
    I opened the original TransactionTableVORowImpl.class and found the following code possibly related to this issue:
    public static String getStaticTransactionDetailsRegionCode(InvoiceTableVORowImpl invoicetablevorowimpl, String s)
    String s1 = null;
    if("INV".equals(s) || "GUAR".equals(s) || "CB".equals(s) || "DM".equals(s) || "DEP".equals(s))
    s1 = "ARITRANSACTIONDETAILSPAGE";
    } else
    if("CM".equals(s))
    s1 = "ARITEMPCMDETAILSPAGE";
    } else
    if("PMT".equals(s))
    s1 = "ARI_PAYMENT_DETAILS_PAGE";
    } else
    if("REQ".equals(s))
    s1 = "ARITEMPCMREQUESTDETAILSPAGE";
    return s1;
    public void setTransactionDetailsRegionCode(String s)
    setAttributeInternal("TransactionDetailsRegionCode", s);
    I checked the URL and it does contain the correct name of the page i.e. if it's an Invoice transaction type, it includes ARITRANSACTIONDETAILSPAGE in the URL. So it is getting the correct page to redirect to. The window title, however, contains the following:
    Message not found. Application: AR, Message Name: nullTitle
    Any assistance is greatly appreciated!
    N
    Edited by: pekochan on 25/11/2009 09:43

    I think I'm not passing the correct paramaters. I checked the URL and it's not passing any &Irtransactiontype. How can I check where this parameter is coming from??

  • Transaction links to gl

    hi experts
    I need to create every single transaction link to its own module and for that i see that gl_je_lines, gl_import_references, gl_je_hearders are the the table which store every transaction reference in it.
    but how can i track each transaction to dril down to it main transations.
    for e.g. lets suppose .
    if i see one set of transaction of sales invoice in which
    1- entry to customer for generate a/r
    2- entry to sales for sales credit
    3- tax, entries ,
    4- stock movements
    well for BUSSINESS INTELLIGENCE ( if i dont have BI FOR APPS) and i m working on standard BI tool then i have to create ETLs for that and for that i need to link every single transaction to its own module and tables.
    is there anyone who can help me in this regards
    simplly i just want to link every single line from gl_je_lines from its own module table ... ( e.g) gl_je_line link to ra_customer_trx_lines, or gl_je_lines link to mtl_material_transactions
    how can i do that .. please help me out .. give me any solutions .. its urgent and would be highly appriciatbale..
    regards
    Anwer

    Hi,
    If you have updated your legacy GL account No. in "Alternative account No" field in the SAP GL account,
    1. T Code SE16, Table Name SKB1, display the field ALTKT (your legacy GL account).
    2. Go to any T Code where the GL account option is available(F-02, FB01, FB50, FS00, etc.,), press F4, select the tab "Alternative account number" , and give the old legacy GL No., it will give the new GL account number.
    If you have used different field, let me know the field name to answer your question
    Hope it helps
    Saravanan.A

Maybe you are looking for

  • Update Indicator from SubVi in Main Vi

    Hi, I am new to labview and have recently undertood the concept of Control Refnum. Because all the examples online are related to passing controls to the subvi and triggerign an event there, I am able to do it and it works. I am here because I could

  • Please Help...I am lost!

    Ok, this kinda started recently, lets start from what I believe is the begining. I use Windows XP (which I hate anyways and am stuck with for the time being), and I had a project for a class and thought I could hook my iPod up to the schools eMac and

  • How can I download a previous version of an app?

    I recently just downloaded the latest version of eBuddy, 5.2.0, and it is absolutely terrible. It doesn't give me all my messages, and it crashes every few seconds. I wish to revert back to 5.1.0 without deleting the information on my iPod as of curr

  • Copies are very bad, just faint lines. i thought i needed new ink but the printer works fine

    copies are very bad, just faint lines. I thought I needed new ink but the printer works fine

  • Were do suspicous add-ons Download Keeper come from?

    Today, I noticed an advertisement on a page I visited. This advertisement was labelled "Download Keeper" and showed a few pictures with products and prices in dollars. I didn't expect such advertisements on the site in question and so I looked more c