Hi I'm getting a short dump when creating / saving a shopping cart. I've been through OSS and other threads but can find anything that will solve my problem. Any pointers much appreciated!
Error analysis
An exception has occurred which is explained in more detail below. The
exception, which is assigned to class 'CX_BBP_PD_ABORT' was not caught and
therefore caused a runtime error. The reason for the exception is:
Buffer table not up-to-date
Server-Side Connection Information
Information on caller of "HTTPS" connection: Plug-in type......... HTTPS
Caller IP.............. 172.30.118.101
Caller port............ 443
Universal resource ID /sap/bc/webdynpro/sapsrm/wda_l_fpm_gaf
Program.............. SAPLBBP_PDH
Screen.............. SAPMHTTP 0010
Screen line.......... 2
Information on caller of "HTTPS" connection: Plug-in type......... HTTPS
Caller IP.............. 172.30.118.101
Caller port............ 443
Universal resource ID "/sap/bc/webdynpro/sapsrm/wda_l_fpm_gaf"
Chain of Exception Objects
Attrib. Name Value
Level 1 Class CX_BBP_PD_ABORT
Program SAPLBBP_PDH Include LBBP_PDHU08 Row 81
Short Te
Long Tex
IS_RESUMABLE
KERNEL_ERRID
T100_MSGID BBP_PD
T100_MSGNO 001
T_APPL_LOG_MESSAGES &T_APPL_LOG_MESSAGES:aTable&
WORKED_ON_DOCUMENT
T100_MSGID BBP_PD
T100_MSGNO 001
T_APPL_LOG_MESSAGES &T_APPL_LOG_MESSAGES:aTable&
WORKED_ON_DOCUMENT
Information on where terminated
The termination occurred in ABAP program "SAPLBBP_PDH", in "BBP_PD_ABORT". The
main program
was "SAPMHTTP ".
In the source code, the termination point is in line 81 of (Include)
program "LBBP_PDHU08".
Source Code Extract
Line SourceCde
51 CALL FUNCTION 'BBP_ALERT_INTERNAL_OT'
52 EXPORTING
53 msgid = gc_msgid_bbp_pd
54 msgno = 047
55 msgarg1 = lv_msgarg1
56 msgarg2 = lv_msgarg2
57 msgarg3 = lv_msgarg3.
58
59 MESSAGE ID gc_msgid_bbp_pd TYPE c_msgty_i NUMBER iv_msg_no
60 WITH ls_callstack1-eventtype
61 ls_callstack1-eventname
62 ls_callstack1-progname.
63
64 ROLLBACK WORK.
65
66 * get the messages from the application log
67 TRY.
68 CALL FUNCTION 'BBP_PD_LOG_GET_MESSAGES'
69 TABLES
70 e_messages = lt_messages.
71 CATCH cx_bbp_pd_abort.
72 REFRESH lt_messages.
73 ENDTRY.
74
75 IF iv_msgid IS SUPPLIED.
76 lv_msgid = iv_msgid.
77 ELSE.
78 lv_msgid = gc_msgid_bbp_pd.
79 ENDIF.
80
>>>> RAISE EXCEPTION TYPE cx_bbp_pd_abort EXPORTING
82 worked_on_document = lv_guid
83 t100_msgid = lv_msgid
84 t100_msgno = iv_msg_no
85 t_appl_log_messages = lt_messages.
86