‎2009 Feb 10 9:15 AM
Hi,
I am using BAPI_AGREEMENT_MAINTAIN to create contract.
Contract is getting created.When we view the contract through ME32K transaction Net Price is shown as '0.00'.But when we see EKPO table the net price is shown there.
Let me know why the net value is not displayed in ME32k or ME32K transaction.
Regards,
SP
‎2009 Feb 11 10:36 PM
When you run ME32K, start the debugger, and put a Watchpoint on field EKPO-NETPR. When it changes the program will stop in debugging mode. Also the program SAPMM06E contains user exits, so be sure to check those out. Just by searching for EKPO-NETPR in this program, I see several places where the field is being set to zero...
‎2009 May 06 6:56 PM
Hi,
When transaction start, Net price is 0. if you put the watch point, how can you expect watch point will stop.
Reagrds,
Jaganmohan.
‎2009 May 06 7:44 PM
A "simple" watchpoint simply records changes in the field... if the value changes from zero to non-zero, the watchpoint will be hit. You can also specify exact values for the field (e.g. stop when the value is greater than or equal to 1), or you can set the watchpoint to trigger when it is equal to another field.
Those are all the options available to you. Try using a "simple" watchpoint to see all changes to the field.
‎2009 May 07 8:35 AM
Hi ,
comment the below lines in the BAPI.
lv_logsys = gc_logsys_crm.
EXPORT lv_logsys TO MEMORY ID 'LOGSYS_CRM'.
now you can see the required change .
regards,
Jagan.