Dump while saving sales order

Hi,
I was doing my config from quite a while and was able to save sales orders normally. All of a sudden, I am now unable to save any sales orders. It is throwing a dump while I am trying to save the sales order. The dump details are provided below. I tried debugging the code to an extent and realized that there is some error in acessing access sequences in output determination. Can someone guide me to fix this error please?
Please find the dump below:
Runtime Errors SAPSQL_INVALID_FIELDNAME
Exception CX_SY_DYNAMIC_OSQL_SEMANTICS
Occurred on 23.10.2008 at 09:09:10
One of the field names in the SELECT clause was not recognized.
What happened?
Error in ABAP application program.
The current ABAP program "SAPLV61Z " had to be terminated because one of the
statements could not be executed.
This is probably due to an error in the ABAP 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.
You can use transaction ST22 (ABAP Dump Analysis) to view and administer
termination messages, especially those beyond their normal deletion
date.
Error analysis
An exception occurred. This exception is dealt with in more detail below
. The exception, which is assigned to the class 'CX_SY_DYNAMIC_OSQL_SEMANTICS',
was neither
caught nor passed along using a RAISING clause, in the procedure "SEL_KONDTAB"
"(FORM)"
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:
The SELECT clause was specified in an internal table at runtime.
It contains the field name "DATBI", but this does not occur in any of
the database tables listed in the FROM clause.
How to correct the error
The exception must either be prevented, caught within the procedure
"SEL_KONDTAB"
"(FORM)", or declared in the procedure's RAISING clause.
To prevent the exception, note the following:
Check the field names in the SELECT clause.
You may able to find an interim solution to the problem
in the SAP note system. If you have access to the note system yourself,
use the following search criteria:
"SAPSQL_INVALID_FIELDNAME" CX_SY_DYNAMIC_OSQL_SEMANTICSC
"SAPLV61Z " or "LV61ZU01 "
"SEL_KONDTAB"
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.............. "620"
Application server....... "sap_server"
Network address.......... "10.1.1.193"
Operating system......... "Windows NT"
Release.................. "5.2"
Hardware type............ "2x Intel 801586"
Character length......... 8 Bits
Pointer length........... 32 Bits
Work process number...... 0
Short dump setting....... "full"
Database server.......... "SAP_SERVER"
Database type............ "ORACLE"
Database name............ "NX1"
Database owner........... "SAPNX1"
Character set............ "English_United State"
SAP kernel............... "620"
Created on............... "Aug 5 2002 21:33:12"
Created in............... "NT 5.0 2195 Service Pack 2 x86 MS VC++ 12.00"
Database version......... "OCI_817_SHARE "
Patch level.............. "252"
Patch text............... " "
Supported environment....
Database................. "ORACLE 8.1.7.."
SAP database version..... "620"
Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
User, transaction...
Client.............. 800
User................ "SAPUSER"
Language key........ "E"
Transaction......... "VA01 "
Program............. "SAPLV61Z "
Screen.............. "SAPMV45A 4001"
Screen line......... 61
Information on where termination occurred
The termination occurred in the ABAP program "SAPLV61Z " in "SEL_KONDTAB".
The main program was "SAPMV45A ".
The termination occurred in line 495 of the source code of the (Include)
program "LV61ZU01 "
of the source code of program "LV61ZU01 " (when calling the editor 4950).
Processing was terminated because the exception "CX_SY_DYNAMIC_OSQL_SEMANTICS"
occurred in the
procedure "SEL_KONDTAB" "(FORM)" but was not handled locally, not declared in
the
RAISING clause of the procedure.
The procedure is in the program "SAPLV61Z ". Its source code starts in line 225
of the (Include) program "LV61ZU01 ".
Source code extract
004650 IF SE_PRESTEP = YES OR
004660 SE_READ_ONLY_ONE_RECORD = YES.
004670 IF T681-KSDAT IS INITIAL.
004680 IF SE_READ_ALL_PRESTEP IS INITIAL.
004690 SELECT * FROM (T681-KOTAB) APPENDING TABLE KOND_TAB
004700 UP TO 1 ROWS
004710 WHERE KAPPL = SE_KAPPL
004720 AND KSCHL = SE_KSCHL
004730 AND (CODING_TAB).
004740 H_SUBRC = SY-SUBRC.
004750 ELSE.
004760 SELECT * FROM (T681-KOTAB) APPENDING TABLE KOND_TAB
004770 WHERE KAPPL = SE_KAPPL
004780 AND KSCHL = SE_KSCHL
004790 AND (CODING_TAB).
004800 ENDIF.
004810
004820 * it is enough to find one record in prestep
004830 * (care must be taken with pool tables - depending on database this
004840 * will cost performance instead of saving)
004850 IF SELECT_SPLIT NE 0 AND H_SUBRC NE 0.
004860 MODIFY CODING_TAB FROM CODING_ALTER INDEX SELECT_SPLIT.
004870 SELECT * FROM (T681-KOTAB) APPENDING TABLE KOND_TAB
004880 UP TO 1 ROWS
004890 WHERE KAPPL = SE_KAPPL
004900 AND KSCHL = SE_KSCHL
004910 AND (CODING_TAB).
004920 ENDIF.
004930 ELSE.
004940 IF SE_READ_ALL_PRESTEP IS INITIAL.
SELECT * FROM (T681-KOTAB) APPENDING TABLE KOND_TAB
004960 UP TO 1 ROWS
004970 WHERE KAPPL = SE_KAPPL
004980 AND KSCHL = SE_KSCHL
004990 AND DATBI >= SE_DATE
005000 AND DATAB <= SE_DATE
005010 AND (CODING_TAB).
005020 H_SUBRC = SY-SUBRC.
005030 ELSE.
005040 SELECT * FROM (T681-KOTAB) APPENDING TABLE KOND_TAB
005050 WHERE KAPPL = SE_KAPPL
005060 AND KSCHL = SE_KSCHL
005070 AND DATBI >= SE_DATE
005080 AND DATAB <= SE_DATE
005090 AND (CODING_TAB).
005100 ENDIF.
005110
005120 IF SELECT_SPLIT NE 0 AND H_SUBRC NE 0.
005130 MODIFY CODING_TAB FROM CODING_ALTER INDEX SELECT_SPLIT.
005140 SELECT * FROM (T681-KOTAB) APPENDING TABLE KOND_TAB
Contents of system fields
SY field contents..................... SY field contents.....................
SY-SUBRC 4 SY-INDEX 1
SY-TABIX 17 SY-DBCNT 1
SY-FDPOS 1 SY-LSIND 0
SY-PAGNO 1 SY-LINNO 1
SY-COLNO 1 SY-PFKEY U
SY-UCOMM SICH SY-TITLE Create Sales Order: Overview
SY-MSGTY E SY-MSGID FI
SY-MSGNO 011 SY-MSGV1 AUD
SY-MSGV2 SY-MSGV3
SY-MSGV4
Active calls / events
No.... Type........ Name..........................
Program
Include Line
Class
1 FORM SEL_KONDTAB
SAPLV61Z
LV61ZU01 495
2 FUNCTION SD_COND_ACCESS
SAPLV61Z
LV61ZU01 196
3 FORM KOMT2_AUFBAUEN
SAPLV61B
LV61BF0K 78
4 FORM KONDITIONSVORSTEP
SAPLV61B
LV61BF0K 275
5 FORM COND_ACCESS_V1
SAPLV61B
LV61BMES 417
6 FUNCTION MESSAGING
SAPLV61B
LV61BU50 81
7 FORM NACHRICHTEN_POSITION
SAPMV45A
MV45AF0N_NACHRICHTEN_POSITION 81
8 FORM BELEG_BEARBEITEN_ENDE
SAPMV45A
MV45AF0B_BELEG_BEARBEITEN_ENDE 268
9 FORM BELEG_SICHERN
SAPMV45A
MV45AF0B_BELEG_SICHERN 270
10 FORM FCODE_SICH
SAPMV45A
MV45AF0F_FCODE_SICH 9
11 FORM FCODE_BEARBEITEN
SAPLV00F
LV00FF0F 90
12 FUNCTION SCREEN_SEQUENCE_CONTROL
SAPLV00F
LV00FU02 44
13 FORM FCODE_BEARBEITEN
SAPMV45A
MV45AF0F_FCODE_BEARBEITEN 90
14 MODULE (PAI) FCODE_BEARBEITEN
SAPMV45A
MV45AI0F_FCODE_BEARBEITEN 8
Chosen variables
1 FORM SEL_KONDTAB
SAPLV61Z
LV61ZU01 495
SE_KSCHL EXEM
4544
585D
CODING_TAB[] Table IT_44581x256
67050000E0006100000000000000FFFF0200C300
07320000F200A100100001000000FFFF47308600
... + 40
0000C020
A0001400
SY-REPID SAPLV61Z
5454533522222222222222222222222222222222
310C661A00000000000000000000000000000000
KOND_TAB[] Table IT_39140x480
3FC50000E00040000000E0000000FFFF02009000
03A100003100AF00000001000000FFFF47308A00
... + 40
0000C000
A0001E00
KOMGM
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 120
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 240 00
233222222222222
000000000000000
SE_READ_ALL_PRESTEP
2
0
T681 B998V1B998
4333534333222222222222222222222222222222
2998612998000000000000000000000000000000
... + 40 X3 000
53233322222222222222222222
83000000000000000000000000
%_DUMMY$$
2222
0000
T681-KOTAB B998
433322222222222222222222222222
299800000000000000000000000000
CONDITION_IN_MEMORY_INTERNAL
2
0
KOMGR
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
22222222222222222222222222222222222222
00000000000000000000000000000000000000
SE_KAPPL V1
53
61
*KOMGR
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
22222222222222222222222222222222222222
00000000000000000000000000000000000000
KOMK 800 AUD 0000000001100
3332222222222222222222245423333333333333
8000000000000000000000015400000000001100
... + 40 0001MEL 21 AU VIC AUD A
3333444222332245254422222224542222222224
0001D5C000210015069300000001540000000001
... + 80 UD AUD #####0000000000000010050000
5422454222222000003333333333333333333333
54001540000000000C0000000000000010050000
... + 120 00100500000010050000001005
3333333333333333333333333322222222222222
0010050000001005000000100500000000000000
... + 160 000000000001###V SABI0120081023200
2222223333333333330005254443333333333333
00000000000000000100C6031290120081023200
... + 200 81023200810232008102320081023CIFdandenon
3333333333333333333333333333344466666666
8102320081023200810232008102339641E45EFE
... + 240 g
622222222222222
700000000000000
SE_DATE 20081023
33333333
20081023
KOMP 000010000000000000000857 MEL VI
3333333333333333333333332222222222444254
0000100000000000000008570000000000D5C069
... + 40 C
4222222222222222222222222222222222222222
3000000000000000000000000000000000000000
... + 80 04 MEL ##############
2332222444222222222220000000000000022222
0040000D5C00000000000000000C000000C00000
... + 120 015
2222222222222222222222222222333222222222
0000000000000000000000000000015000000000
... + 160 ###### 000010
2222222000000222222233333322222222222222
000000000000C000000000001000000000000000
... + 200
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 240
222222222222222
000000000000000
2 FUNCTION SD_COND_ACCESS
SAPLV61Z
LV61ZU01 196
APPLICATION V1
53
61
CALL_MODUS A
4
1
CONDITION_TYPE EXEM
4544
585D
DATE 20081023
33333333
20081023
HEADER_COMM_AREA AUD 0000MEL 00000110021
2222222222454233334442333333333332222222
000000000015400000D5C0000001100210000000
... + 40 0000001005000000100500000
2222222222222223333333333333333333333333
0000000000000000000001005000000100500000
... + 80 0100500000010050000000000CIF020001200810
3333333333333333333333333444333333333333
0100500000010050000000000396020001200810
... + 120 231######0#AUD YOR C CA
3330000003045422222222222222225452422244
2310000030C15400000000000000009F20300031
... + 160 CCCCCCCH 00000000
2222444444442222222333333332222222222222
0000333333380000000000000000000000000000
... + 200
222222222222222222222222
000000000000000000000000
KOPRT_I 00000003001 KRML00
3333333333322224544332222222222222222222
000000030010000B2DC000000000000000000000
... + 40
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 120
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200
2222222222222222222222222
0000000000000000000000000
NO_MEM_IMPORT
2
0
POSITION_COMM_AREA 0000100000000000000008570000000000000008
3333333333333333333333333333333333333333
0000100000000000000008570000000000000008
... + 40 57 015 T
3322222222222222222222222222223332222225
5700000000000000000000000000000150000004
... + 80 AN 100001100055555004##############K
4422222333333333333333333000000000000004
1E00000100001100055555004000000C000000CB
... + 120 AR #
4522222222222222222222222222222222222220
1200000000000000000000000000000000000000
... + 160 ### 000001######0#u0153 #################
0002223333330000003092200000000000000000
C0C0000000010000030CC000000010C0000010C0
... + 200 #######KAR######%#######u201EKG ########
0000000445000000200000008544200000000222
000010CB120000075C0000064CB700000000C000
... + 240 01MEL MEL1
334442222244432
01D5C00000D5C10
PRESTEP X
5
8
PROTOCOL_ACCESS X
5
8
PROTOCOL_DATE
2
0
READ_ALL_PRESTEP
2
0
READ_ONLY_ONE_RECORD X
5
8
SDPROTHEAD_I CONDB0000000000
2222222222222244444333333333322222222222
000000000000003FE42000000000000000000000
... + 40 00000000000000
222222233333333333333
000000000000000000000
T682I_I BV1EXEM03998## 000X
453454433333002233352
261585D039980C0000080
CONDITION_IS_IN_MEMORY #############
0000000000000
0000000000000
CONDITION_IS_PURELY_HEADER X
5
8
CONDITION_RECORDS[] Table IT_44400x119
3C15EA15E0005100000070000000FFFF0F004200
01C20DC2C2008100000070000000FFFF4C408500
... + 40
0000C020
10001400
POSITION_COMM_AREA_DYNAMIC
2222
0000
KOMPAZD
2222222222
0000000000
SYST ########################d###############
0000000010000000000000006000000000000000
1000100010001000000000004000000000000000
... + 40 ####################################|###
0000000000000000000000000000000000007000
100010001000000010000000000000000000C100
... + 80 ################S#######################
0000000000000000500000000000000000000000
0000000000004000310000000000000000000000
... + 120 ####################################¶###
000000000000000000000000000000001000B000
00000000000000000000000000000000D0006000
... + 160 ####ÿ####### u0152##XC############# E0 4
0000F0000000A800540000000000000222432223
0000F00000000C00830040000C0000C000500004
... + 200 001LIST N ####__S 800
3334455222420000555222222222222222223332
001C934000E01000FF3000000000000000008000
... + 240 00
222223322222222
000000000000000
SY-XFORM CONVERSION_EXIT
444545544454545222222222222222
3FE65239FEF5894000000000000000
CONDITION_RECORDS 800V1VEN0
3335354432222222222222222222222222222222
8006165E00000000000000000000000000000000
... + 40
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80 0000002101
222222222222222222222222222223333333333
000000000000000000000000000000000002101
SY-XPROG SAPCNVE
5454454222222222222222222222222222222222
3103E65000000000000000000000000000000000
KOPF_POS_UNLOAD UNLOAD_COMMUNI_BV1
544444544445445453
5ECF14F3FDD5E9F261
3 FORM KOMT2_AUFBAUEN
SAPLV61B
LV61BF0K 78
SY-TABIX 17
1000
1000
*KOMKBNF
2222222222222222
0000000000000000
KOMKBWA
2222
0000
TYP_TNAPR 8
3
8
%_DUMMY$$
2222
0000
KOPRT 00000003001 KRML004502009
3333333333322224544333333333222222222222
000000030010000B2DC004502009000000000000
... + 40
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 120
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200
2222222222222222222222222
0000000000000000000000000
C_EVENT 9
3
9
XSUBRC 0
0000
0000
KOMPBME ### 00000000
0002222222222222222222222222233333333222
00C0000000000000000000000000000000000000
... + 40 0000
2222222222222222222222233332222222222222
0000000000000000000000000000000000000000
... + 80
22222
00000
KOMKBME-UNAME
222222222222
000000000000
KOMT1-KAPPL V1
53
61
KOMT1-KSCHL EXEM
4544
585D
HEADER_COMM AUD 0000MEL 00000110021
2222222222454233334442333333333332222222
000000000015400000D5C0000001100210000000
... + 40 0000001005000000100500000
2222222222222223333333333333333333333333
0000000000000000000001005000000100500000
... + 80 0100500000010050000000000CIF020001200810
3333333333333333333333333444333333333333
0100500000010050000000000396020001200810
... + 120 231######0#AUD YOR C CA
3330000003045422222222222222225452422244
2310000030C15400000000000000009F20300031
... + 160 CCCCCCCH 00000000
2222444444442222222333333332222222222222
0000333333380000000000000000000000000000
... + 200
222222222222222222222222
000000000000000000000000
<%_TABLE_TNAD1> ???
ITEM_COMM 0000100000000000000008570000000000000008
3333333333333333333333333333333333333333
0000100000000000000008570000000000000008
... + 40 57 015 T
3322222222222222222222222222223332222225
5700000000000000000000000000000150000004
... + 80 AN 100001100055555004##############K
4422222333333333333333333000000000000004
1E00000100001100055555004000000C000000CB
... + 120 AR #
4522222222222222222222222222222222222220
1200000000000000000000000000000000000000
... + 160 ### 000001######0#u0153 #################
0002223333330000003092200000000000000000
C0C0000000010000030CC000000010C0000010C0
... + 200 #######KAR######%#######u201EKG ########
0000000445000000200000008544200000000222
000010CB120000075C0000064CB700000000C000
... + 240 01MEL MEL1
334442222244432
01D5C00000D5C10
KOMKBWR-ERNAM
222222222222
000000000000
KOMPBWR-ERNAM
222222222222
000000000000
*TNAD1-VKORG
2222
0000
G_SDPROTHEAD CONDB0000000000
2222222222222244444333333333322222222222
000000000000003FE42000000000000000000000
... + 40 00000000000000
222222233333333333333
000000000000000000000
T682I BV1EXEM03998## 000X
453454433333002233352
261585D039980C0000080
RSJOBINFO 00000000
2222222222222222222222222222222233333333
0000000000000000000000000000000000000000
... + 40 000000
3333332222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80 ####
0000
0000
HEADKZ X
5
8
<%_TABLE_TNAD2> ???
KONDTAB[] Table IT_44400x119
3C15EA15E0005100000070000000FFFF0F004200
01C20DC2C2008100000070000000FFFF4C408500
... + 40
0000C020
10001400
*TNAD2-VKORG
2222
0000
*TNAD2-VTWEG
22
00
SY-REPID SAPLV61B
5454533422222222222222222222222222222222
310C661200000000000000000000000000000000
*TNAD2-SPART
22
00
SYST-REPID SAPLV61B
5454533422222222222222222222222222222222
310C661200000000000000000000000000000000
4 FORM KONDITIONSVORSTEP
SAPLV61B
LV61BF0K 275
%_SPACE
2
0
SY-SUBRC 4
0000
4000
SY ########################d###############
0000000010000000000000006000000000000000
1000100010001000000000004000000000000000
... + 40 ####################################|###
0000000000000000000000000000000000007000
100010001000000010000000000000000000C100
... + 80 ################S#######################
0000000000000000500000000000000000000000
0000000000004000310000000000000000000000
... + 120 ####################################¶###
000000000000000000000000000000001000B000
00000000000000000000000000000000D0006000
... + 160 ####ÿ####### u0152##XC############# E0 4
0000F0000000A800540000000000000222432223
0000F00000000C00830040000C0000C000500004
... + 200 001LIST N ####__S 800
3334455222420000555222222222222222223332
001C934000E01000FF3000000000000000008000
... + 240 00
222223322222222
000000000000000
INCL_ZUGRIFFSFOLGE X
5
8
NO
2
0
KOMT1-KOZGF EXEM
4544
585D
NACH-KSCHL
2222
0000
T683S-KAUTO
2
0
KOMKBMM
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 120
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200
2222222222222
0000000000000
HEADER_COMM AUD 0000MEL 00000110021
2222222222454233334442333333333332222222
000000000015400000D5C0000001100210000000
... + 40 0000001005000000100500000
2222222222222223333333333333333333333333
0000000000000000000001005000000100500000
... + 80 0100500000010050000000000CIF020001200810
3333333333333333333333333444333333333333
0100500000010050000000000396020001200810
... + 120 231######0#AUD YOR C CA
3330000003045422222222222222225452422244
2310000030C15400000000000000009F20300031
... + 160 CCCCCCCH 00000000
2222444444442222222333333332222222222222
0000333333380000000000000000000000000000
... + 200
222222222222222222222222
000000000000000000000000
ITEM_COMM 0000100000000000000008570000000000000008
3333333333333333333333333333333333333333
0000100000000000000008570000000000000008
... + 40 57 015 T
3322222222222222222222222222223332222225
5700000000000000000000000000000150000004
... + 80 AN 100001100055555004##############K
4422222333333333333333333000000000000004
1E00000100001100055555004000000C000000CB
... + 120 AR #
4522222222222222222222222222222222222220
1200000000000000000000000000000000000000
... + 160 ### 000001######0#u0153 #################
0002223333330000003092200000000000000000
C0C0000000010000030CC000000010C0000010C0
... + 200 #######KAR######%#######u201EKG ########
0000000445000000200000008544200000000222
000010CB120000075C0000064CB700000000C000
... + 240 01MEL MEL1
334442222244432
01D5C00000D5C10
APPLIKATION V1
53
61
%_VIASELSCR #
0
4
SCREEN BT_PVMV
4555545222222222222222222222222222222222
24F06D6000000000000000000000000000000000
... + 40
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 120 BTA 00001#00000 ####
2222222222222224542222223333303333320000
0000000000000002410000000000100000000000
SY-XFORM CONVERSION_EXIT
444545544454545222222222222222
3FE65239FEF5894000000000000000
5 FORM COND_ACCESS_V1
SAPLV61B
LV61BMES 417
KOMKBNF
2222222222222222
0000000000000000
KOMKBV1 AUD 0000MEL 00000110021
2222222222454233334442333333333332222222
000000000015400000D5C0000001100210000000
... + 40 0000001005000000100500000
2222222222222223333333333333333333333333
0000000000000000000001005000000100500000
... + 80 0100500000010050000000000CIF020001200810
3333333333333333333333333444333333333333
0100500000010050000000000396020001200810
... + 120 231######0#AUD YOR C CA
3330000003045422222222222222225452422244
2310000030C15400000000000000009F20300031
... + 160 CCCCCCCH 00000000
2222444444442222222333333332222222222222
0000333333380000000000000000000000000000
... + 200
222222222222222222222222
000000000000000000000000
KOMPBV1 0000100000000000000008570000000000000008
3333333333333333333333333333333333333333
0000100000000000000008570000000000000008
... + 40 57 015 T
3322222222222222222222222222223332222225
5700000000000000000000000000000150000004
... + 80 AN 100001100055555004##############K
4422222333333333333333333000000000000004
1E00000100001100055555004000000C000000CB
... + 120 AR #
4522222222222222222222222222222222222220
1200000000000000000000000000000000000000
... + 160 ### 000001######0#u0153 #################
0002223333330000003092200000000000000000
C0C0000000010000030CC000000010C0000010C0
... + 200 #######KAR######%#######u201EKG ########
0000000445000000200000008544200000000222
000010CB120000075C0000064CB700000000C000
... + 240 01MEL MEL1
334442222244432
01D5C00000D5C10
APPLIKATION V1
53
61
6 FUNCTION MESSAGING
SAPLV61B
LV61BU50 81
KOMKBWN
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
22
00
APPLIKATION V1
53
61
SCHEMA V10000
533333
610000
PI_OBJTYPE VBAP
5445222222
6210000000
TYP_FRVOR C
4
3
G_OBJTYPE VBAP
5445222222
6210000000
G_ITEM X
5
8
PI_ITEM X
5
8
KOMK V10000##########
5333330000000000
6100000010007000
KOMK-KALSM V10000
533333
610000
L_CONDITION_FORM COND_ACCESS_V1
4444544445555322222222222222222222222222
3FE4F133533F6100000000000000000000000000
KOMKBMR
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222222222222222
0000000000000000000000
L_RC 0
0000
0000
KOMKBPA
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222222222222222222
0000000000000000000000000
7 FORM NACHRICHTEN_POSITION
SAPMV45A
MV45AF0N_NACHRICHTEN_POSITION 81
VBMUEZ 0000
2222222222233332222222222222222222222222
0000000000000000000000000000000000000000
... + 40 ##
2222200
000000C
SY-SUBRC 4
0000
4000
SYST-REPID SAPMV45A
5454533422222222222222222222222222222222
310D645100000000000000000000000000000000
STEUERUNG BEDINGUNG_PRUEFEN_001
444444544555544445333
2549E75E7F025565EF001
VBUP 800 000010 CAA AA CCCC
3332222222222333333224442224422444422222
8000000000000000010003110001100333300000
... + 40
222222222222222
000000000000000
YVBUP 000000
2222222222222333333222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222222222
0000000000000000
IVBPA1_EINTRAG_AKTUELL 0
0000
0000
VBAP 800 000010000000000000000857000
3332222222222333333333333333333333333333
8000000000000000010000000000000000857000
... + 40 000000000000857
3333333333333332222222222222222222222222
0000000000008570000000000000000000000000
... + 80 015 Pattu Bombay Sandwitch Chutn
2223332222225677724666672566676766246776
0000150000000144502FD219031E47943803854E
... + 120 ey TAN A000000000000 1000011
6722222222225442224333333333333223333333
59000000000041E0001000000000000001000011
... + 160 00055555004##############KAR######KAR###
3333333333300000000000000445001001445000
00055555004000000C000000CB1200C00CB12000
... + 200 ###########00000000#######
0000000000033333333000000022222222222222
000C000000C00000000000000C00000000000000
... + 240
222222222222222
000000000000000
IVBEP 000000 00000000002008102310000000000####
3333332333333333333333333333333333330000
0000000000000000020081023100000000000000
... + 40 ########
2222222200000000
0000000000000000
VBKD 800 000000 21000001 CIFdanden
3332222222222333333223333333322444666666
800000000000000000000210000010039641E45E
... + 40 ong X #####0000000
6662222222222222222222522222000003333333
FE700000000000000000008000000000C0000000
... + 80 0000001 #####2008102320081023000000000
3333333222000003333333333333333333333333
00000010000100C2008102320081023000000000
... + 120 000000##### 000002
3333330000022222222222222222222223333332
0000000100C00000000000000000000000000020
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200 1000
2222222222222222223333222222222222222222
0000000000000000001000000000000000000000
... + 240 00
222222222222233
000000000000000
IVBEP_KEY 000010 00000000002008102710000000002
333333233333333333333333333333333333
000010000000000002008102710000000002
PART[] Table IT_44305x169
0F15EF15E00041000000A0000000FFFF0000A300
839282925200E100500090000000FFFF40000510
... + 40
1000C220
00001400
IVBEP_KEY1 000010 0000000000200810271000000
33333323333333333333333333333333
00001000000000000200810271000000
XVBPA[] Table IT_17425x542
A0E52CD58000C000000010000000FFFF00007D00
03810BD19000E6005000E2000000FFFF44008D00
... + 40
1000D200
00001480
SVBEP ####
0000
1000
TVAK-KAPPL V1
53
61
US_VBEPKOM 00000000000000 000000#######00000000 000
3333333333333323333330000000333333332333
000000000000000000000000000C000000000000
... + 40 000 0000 0000000000000000000000000000
3332223333223333333333333333333333333333
0000000000000000000000000000000000000000
... + 80 0000000000000000000000000000
3333333333333333333333333333222222222222
0000000000000000000000000000000000000000
... + 120
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 160 00
2222222222222222222222222222222222222233
0000000000000000000000000000000000000000
... + 200 000000000000
33333333333322
00000000000000
XOBJKY_POS 000010
222222222233333322222222222222
000000000000001000000000000000
CHARX X
5
8
IVBEP_TABIX_ZEILE_1 0
0000
0000
BUSINESSOBJEKT_POS VBAP
5445222222
6210000000
US_VBEPKOMX 0000000000
33333333332222222222222222222222
00000000000000000000000000000000
TVAP-KALSM V10000
533333
610000
IVBEP_TABIX_AKTUELL 1
0000
1000
%_SPACE
2
0
8 FORM BELEG_BEARBEITEN_ENDE
SAPMV45A
MV45AF0B_BELEG_BEARBEITEN_ENDE 268
WK_ABRUF_EXIST
2
0
SY-BINPT
2
0
BI_INFO-CTU_AMODUS
2
0
CATTAKTIV
2
0
%_ARCHIVE
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 120
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 240
222222222222222
000000000000000
SY-REPID SAPMV45A
5454533422222222222222222222222222222222
310D645100000000000000000000000000000000
SY-MSGID FI
44222222222222222222
69000000000000000000
MAAPV ############## ##
2222222222222222222220000000000000022200
000000000000000000000000000C000000C00000
... + 40 ##### 00000000######
0000022222222222222222222233333333000000
0000C00000000000000000000000000000000000
... + 80 ######################
0000000000000000000000222222222222222222
C000000C000000C000000C000000000000000000
... + 120
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 240
222222222222222
000000000000000
FCODE_SORT_AUFLOESEN AUFL
45442222222222222222
156C0000000000000000
XVCKEY[] Tableinitial
0000FFFD
0000FFFF
SPACE
2
0
SY-MSGNO 011
333
011
ORDTAB 000000 00
2222222222333333222222222222222222222233
0000000000000000000000000000000000000000
... + 40 000000##############
3333330000000000000022222
000000000000C000000C00000
SY-MSGV1 AUD
4542222222222222222222222222222222222222
1540000000000000000000000000000000000000
... + 40
2222222222
0000000000
SY-MSGV2
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222
0000000000
SY-MSGV3
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222
0000000000
SY-MSGV4
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222
0000000000
MODIFICATION_FLAG-NO_OUTPUT_CO
2
0
CVBFA 000000 000000 ####
2222222222222333333222222222233333320000
0000000000000000000000000000000000000000
... + 40 #### ######## 00000000000000
0000222000000002222222233333333333333222
000C0000000000C0000000000000000000000000
... + 80 00 00000000 #####
2222222222222222222223322233333333200000
0000000000000000000000000000000000000000
... + 120 ### ######## 000000#######
0002220000000022222222222223333330000000
00C0000000000C00000000000000000000000000
... + 160 ################ #############
0000000000000000222000000000000022222222
0000000000000000000000000000000000000000
... + 200 ####### ####
2222222222000000022222222222000022222222
0000000000000000C00000000000000000000000
... + 240 000000 ####
222333333220000
000000000000000
PARTAB1 000000000000000
2222222222222222222222222333333333333333
0000000000000000000000000000000000000000
... + 40 000
3332222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
XVBAK_UPDKZ I
4
9
UPDKZ_DELETE D
4
4
VVBRP[] Tableinitial
0000FFFD
0000FFFF
DPP_ACTIVE
2
0
XVBKD[] Table IT_37371x565
A2C554E560009000000030000000FFFF00009C00
82C100E1C1009E00100052000000FFFF44000200
... + 40
0000C020
50001E00
XVBKD 800 000000 21000001 CIFdanden
3332222222222333333223333333322444666666
800000000000000000000210000010039641E45E
... + 40 ong X #####0000000
6662222222222222222222522222000003333333
FE700000000000000000008000000000C0000000
... + 80 0000001 #####2008102320081023000000000
3333333222000003333333333333333333333333
00000010000100C2008102320081023000000000
... + 120 000000##### 000002
3333330000022222222222222222222223333332
0000000100C00000000000000000000000000020
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200 1000
2222222222222222223333222222222222222222
0000000000000000001000000000000000000000
... + 240 00
222222222222233
000000000000000
EFFECTIVITY_CHANGED
2
0
NA_VBKD 800 000000 21000001 CIFdanden
3332222222222333333223333333322444666666
800000000000000000000210000010039641E45E
... + 40 ong X #####0000000
6662222222222222222222522222000003333333
FE700000000000000000008000000000C0000000
... + 80 0000001 #####2008102320081023000000000
3333333222000003333333333333333333333333
00000010000100C2008102320081023000000000
... + 120 000000##### 000002
3333330000022222222222222222222223333332
0000000100C00000000000000000000000000020
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200 1000
2222222222222222223333222222222222222222
0000000000000000001000000000000000000000
... + 240 00
222222222222233
000000000000000
IVBEP1 000010 00000000002008102710000000002####
3333332333333333333333333333333333330000
0000100000000000020081027100000000022000
T180-TRTYP H
4
8
IVBEP[] Table IT_40082x56
500500000000A000000030000000FFFF0000BE00
8CB2000042008F00200080000000FFFF45000400
... + 40
0000C020
01001E00
VBAK 800 20081023090832SAPUSER 0
3332222222222333333333333335455545222223
8000000000000200810230908323105352000000
... + 40 00000000000000020081023C0YOR 00000000
3333333333333333333333343545222233333333
00000000000000020081023309F2000000000000
... + 80 ######0#AUD AUD 0000100ME
2222222222222200000030454224542333333344
000000000000000000030C1540015400000100D5
... + 120 L 0000000000000000 2008
4222222222333333333333333322222222223333
C000000000000000000000000000000000002008
... + 160 10231 SABI0102F2 100
3333322222222222544433334322333222222222
1023100000000000312901026200100000000000
... + 200 1000
2222222222222222222222222222222333322222
0000000000000000000000000000000100000000
... + 240
222222222222222
000000000000000
IVBEP1[] Table IT_38442x40
0205A5C590000000000020000000FFFF00003E00
84B28DB171004F00200080000000FFFF40008D00
... + 40
9000C020
60001400
VBUK 800 CAA AA CCCCCCCCA00000
3332222222222224442222442244444444433333
8000000000000003110000110033333333100000
... + 40 000 620
3332222222222222222222222222222222233322
0000000000000000000000000000000000062000
... + 80
22222222222222222
00000000000000000
9 FORM BELEG_SICHERN
SAPMV45A
MV45AF0B_BELEG_SICHERN 270
XFPLT[] Table IT_38480x696
0000E6C5A00000000000B0000000FFFF00003200
000002B171008F00000082000000FFFF40008C10
... + 40
0000C000
A0001E00
YVBAK 00000000000000 0
2222222222222333333333333332222222222223
0000000000000000000000000000000000000000
... + 40 00000000000000000000000 00000000
3333333333333333333333322222222233333333
0000000000000000000000000000000000000000
... + 80 ########
2222222222222200000000222222222222222222
000000000000000000000C000000000000000000
... + 120 0000000000000000 0000
2222222222333333333333333322222222223333
0000000000000000000000000000000000000000
... + 160 0000 000
3333222222222222222222222222333222222222
0000000000000000000000000000000000000000
... + 200
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 240
222222222222222
000000000000000
YVBAPF[] Tableinitial
0000FFFD
0000FFFF
YVBAP[] Table IT_38540x1720
0000A6C5A00000000000B0000000FFFF0000B900
000006B1D100EF00000086000000FFFF40000E00
... + 40
0000C000
20001E00
XVBUV[] Table IT_17430x123
AE058CD58000C000000070000000FFFF00006F00
87A20AD18000F6000000B0000000FFFF44000800
... + 40
1000C020
00009400
YVBUV[] Tableinitial
0000FFFD
0000FFFF
%_DUMMY$$
2222
0000
DA_SUBRC 0
0000
0000
SYST ########################d###############
0000000010000000000000006000000000000000
1000100010001000000000004000000000000000
... + 40 ####################################|###
0000000000000000000000000000000000007000
100010001000000010000000000000000000C100
... + 80 ################S#######################
0000000000000000500000000000000000000000
0000000000004000310000000000000000000000
... + 120 ####################################¶###
000000000000000000000000000000001000B000
00000000000000000000000000000000D0006000
... + 160 ####ÿ####### u0152##XC############# E0 4
0000F0000000A800540000000000000222432223
0000F00000000C00830040000C0000C000500004
... + 200 001LIST N ####__S 800
3334455222420000555222222222222222223332
001C934000E01000FF3000000000000000008000
... + 240 00
222223322222222
000000000000000
FCODE SICH
54442222222222222222
39380000000000000000
FCODE_GLEICHE_SEITE ENT1
44532222222222222222
5E410000000000000000
XVBBE 0000000000
2222222222222333333333322222222222222222
0000000000000000000000000000000000000000
... + 40 00000000
2222222222222223333333322222222222222222
0000000000000000000000000000000000000000
... + 80 ################ 0000000000
2000000000000000022222222222223333333333
00000000C0000000C00000000000000000000000
... + 120 000
3332222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 160 ####################
2222222222222222222200000000000000000000
000000000000000000000000000000000000000C
... + 200 00000000 000000000000000000
2222222222233333333233333333333333333322
0000000000000000000000000000000000000000
... + 240 ###
222222222222000
000000000000000
CH_SUBRC 4
0000
4000
POSNR_NULL 000000
333333
000000
T178T
22222222222222222222222222
00000000000000000000000000
IVBPA2_PAGIND ###
000
00C
10 FORM FCODE_SICH
SAPMV45A
MV45AF0F_FCODE_SICH 9
TVAP-FPART
22
00
VTCOMWE-ALAND AU
452
150
IVBPA2_SELIND ###
000
00C
J_1BATL2T
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 120
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 240
222222222222222
000000000000000
SY-XPROG SAPCNVE
5454454222222222222222222222222222222222
3103E65000000000000000000000000000000000
SY-CALLD
2
0
CHARV V
5
6
TVAK-BEZOB
2
0
11 FORM FCODE_BEARBEITEN
SAPLV00F
LV00FF0F 90
SY-MSGV1 AUD
4542222222222222222222222222222222222222
1540000000000000000000000000000000000000
... + 40
2222222222
0000000000
FCODE SICH
54442222222222222222
39380000000000000000
SY-MSGV2
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222
0000000000
T185F-FCINT 0
3
0
SY-MSGV3
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222
0000000000
SY-MSGV4
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222
0000000000
AKTYP
2
0
SY-REPID SAPLV00F
5454533422222222222222222222222222222222
310C600600000000000000000000000000000000
T185-NMODUL FCODE_SICH
444445544422222222222222222222
63F45F393800000000000000000000
%_ARCHIVE
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 40
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 120
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 160
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 200
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 240
222222222222222
000000000000000
T185-NPROG SAPMV45A
5454533422222222222222222222222222222222
310D645100000000000000000000000000000000
%_SPACE
2
0
MODUL-POOL SAPMV45B
5454533422222222222222222222222222222222
310D645200000000000000000000000000000000
FLAG-ENDE
2
0
T185-CRMFUNC
222222222222222222222222222222
000000000000000000000000000000
SCREEN BT_PVMV
4555545222222222222222222222222222222222
24F06D6000000000000000000000000000000000
... + 40
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 80
2222222222222222222222222222222222222222
0000000000000000000000000000000000000000
... + 120 BTA 00001#00000 ####
2222222222222224542222223333303333320000
0000000000000002410000000000100000000000
T185-FCODE SICH
54442222222222222222
39380000000000000000
12 FUNCTION SCREEN_SEQUENCE_CONTROL
SAPLV00F
LV00FU02 44
FUNKTION SICH
54442222222222222222
39380000000000000000
KOPFGRUPPE AU
4522
1500
POSITIONSGRUPPE N
4222
E000
PROGRAMM SAPMV45B
5454533422222222222222222222222222222222
310D645200000000000000000000000000000000
TYP
2
0
AKTYP
2
0
CUA_PARA1
2222222222222222
0000000000000000
CUA_PARA2
2222222222222222
000

Hi Venkat,
Kindly share how this error is being fixed?
I hit the same error here...
CL_GM_ACTUAL_MGR

Similar Messages

  • Update termination dump while saving sales order after updating billing pla

    Hi,
    Our client is facing a strange issue. The client has a sales order already created and WBS element assigned to it automatically. The sales order has many items, which are billed periodically. Whenever the particular item has to be billed. user attaches milestone in the project which is updated in the billing plan of the sales order. Then user goes into change view of sales order, and sees if the billing plan is getting updated. After user sees that billing plan is updated, he tries to save the sales order and the update termination dump comes.
    We have analyzed this issue to some extent. Since the product hierarchy have been changed, the system checks for the duplicate records and throws the dump.
    We have advised the user to follow following steps also:
       1) Delete existing billing plan if any assigned to the order. You can delete the billing plan by going into CJ20N and deleting the existing milestones completely.
       2) Please ensure network in project is release and sales order does not have credit block.
       3) Change Product Hierarchy in sales order (Please do not copy and paste from Material master instead select the same through F4 for each level.
       4) Once again create the milestones as required in the Project.
       5) We need to remove block of billing plan from Project only instead of from Order.
       6) Check order in display mode and ensure billing plan has appeared.
       7) Now goto change mode of the order and carry billing.
    Above solution has solved the issue but sometimes it takes times for the above solution to work.
    The user has to repeatedly follow above steps to save the billing plan.
    We need to have permanent solution for the same. I would appreciate if anybody can help resolve this issue.
    Thanks

    Thanks All for providing me possible solutions.
    The issue is resolved by one more step into what i had suggested in my questions
    At step 3, after changing the product hierarchy, I simply go to billing plan tab, thereby generating billing plan even before I add milestones in the project.
    To my understanding, generating billing plan in the sales order must be conflicting with the milestone being added to the billing plan from the project, giving 2 billing plan numbers in the background and throwing update termination dump.
    Cheers!!

  • Error while saving sales order

    Hi I am encountering below error message while saving sales order:
    Warehouse
    Specify export data in material master
    Then I go to material master to check foreign trade export tab, and I had maintained commodity code export group, country of origin and region of origin, what did I miss? Help.

    Hi,
    Check whether you have activated legal control data for the Sales Order type configuration in Foreign Trade.
    If the Order type is activated then the following error message can pop up unless you maintain in material master.
    See whether export legal control data is activated or not for the order type.
    In IMG Sales and Distribution>Foreign trade>Legal control section
    Regards,
    Saju.S

  • "Procurement Wizard"  window opens for a particular warehouse while saving Sales Order

    Hello All,
    We have upgraded SAP B1 8.8 to SAP B1 9.0
    My client is facing one of problem while saving Sales order using particular warehouse.
    Actually client is having 4 warehouses (A,B,C,D) in which if they use one particular warehouse "A" for saving Sales order they are facing a issue. The scenario is here below:
    1. Client selects all required details of sales order with along with particular warehouse "A".
    2. On saving SO "Procurement Wizard" is automatically triggered even if procurement document field is unchecked in logistic tab of SO.
    3. This is happening only for a particular warehouse "A". Whereas if I select other 3 warehouses (B,C,D) the system saves SO without trigerring "Procurement Wizard".
    Client is using SAP B1 9.0 PL 08 
    We don't want this  "Procurement Wizard" window to open for this. As we haven't selected any check box for  "Procurement Wizard" so it should not open for a particular warehouse "A".
    Do you think any issue with my warehouse or system settings? Please let me know.
    Please refer screen shots.
    Thanks in advance.

    Hi Saurabh,
    As per your Screen Shot, I think you have Add-on.
    Please stop that Add-on and then check above Scenario.
    Thanks
    Regards::::
    Atul Chakraborty

  • How/ where to  check output type while saving sales order for confirmation

    Hi All,
    Could you anyone pls let me know How/ where to  check output type while saving sales order for confirmation.
    Present scenario : when the Sales Order is created the Order confirmation is sent irrespective of credit block of the sales order.
    Requirement : Order confirmation “ZA00” sent to the partner only for those Sales orders which does not have credit block and ZCLE sent to the partner if the order has credit block.
    Now i want to know where exactly to check the output types "ZA00" and 'ZCLE' based on the credit block to send the confirmation to partener.
    Quick help highly appreciated......
    Preetham

    Hi Santosh,
    Thanks for the info. But here in this case I have to send the confiramation based on credit limit check. If credit limit check exceeds "ZCLE' should go as confirmation else 'ZA00' should go as confirmation.
    Where can we check the credit limit whether it exceeded or not. My doubt is whether it is config issue or do we need to write code user exit or routine to send the specific output type for confirmation.
    Thanks & Regards,
    Preetham

  • While saving sales order, deleted item resulting in error

    Dear All
    I am facing an issue while changing Sales Orders.
    I have set a check in a user exit that if batch is empty, display an error message. I add try to add a new line item which doesnt have batch. When i try to save, i get a message which is fine.
    But when I delete this line item and try to save again, I am still getting message. I am not sure how this is happening.
    Kindly advice.
    Regards
    Dinesh

    There's a field EKPO-LOEKZ (Deletion Indicator in Purchasing Document) for PO, but there's no such field for an SO as per my knowledge. So the only option left to you is to debug the your user-exit while saving the SO and check why its still triggering the error message. May be you can add another condition stating that the line item should have atleast material number filled, in that case if the material number is there and batch is missing, it will show an error msg.
    Regards,
    Raman.

  • Run time error while saving sales order

    Hi all,
    i am working on IDES ECC 6.0, when i am saving an sales order(OR) i am getting run time error in the table CRMPAROLTP, program SAPMV45A.
    i am using 4 GB RAM, still having a space of 30 GB for only IDES to save the data.
    so, how to solve it.

    Hello,
    I doubt the runtime error (I am assuming you mean that you got a short dump) you mentioned in your original post has anything to do with the warning messages you see when doing a check (Ctrl+F2) on table CRMPAROLTP and program SAPMV45A.  These warnings should not cause a short dump or runtime error.
    The warning message for the table has the following long text:
    Table CRMPAROLTP: Key length > 120 (Restricted functionality)
    Message no. DT214
    Diagnosis
    The key length, i.e. the sum of the field lengths of all the key fields of the table, is more than 120 bytes.
    System response
    This is a warning.
    Procedure
    Note the following restricted fuctionality for this table:
    - Table contents cannot be transported by specifying key values, at
      best by specifying generic key values with a maximum length of 120
      bytes.
    - The table may not be used as the base table of a lock object.
    The warnings in SE38 for program SAPMV45A are mostly related to Unicode and have no reference to the table CRMPAROLTP.
    If you haven't already done so, please check the SAP Note referenced in my first reply since this does provide a solution for short dumps related to table CRMPAROLTP.
    Of course, since I don't know specifically what the short dump message is that you received, I could be basing my assessment on false assumptions.  If you have those details it is better for the SDN community as a whole if you include the information in this thread instead of sending it to me offline.
    Best Regards,
    Jamie

  • Dump while creating sales order using BAPI

    Hi Experts,
    I am trying to create a sales order in my alv report using BAPI_SALESORDER_CREATEFROMDAT2. I get a dump while executing the program. Please suggest me where I am going wrong.
    |Source Code Extract                                                                               |
    |Line |SourceCde                                                                                |
    |    1|FORM FRM_KOND_BASIS_604.                                                                    |
    |    2|*{   INSERT         DEVK910738                                        1                     |
    |    3|                                                                                |
    |    4|data:  zuomqtyo   LIKE ekpo-menge,                                                          |
    |    5|       zuomqtyn   LIKE ekpo-menge,                                                          |
    |    6|       zqty1      type i,                                                                   |
    |    7|       zqty2(11)   type n.                                                                  |
    |    8|                                                                                |
    |    9|** Round up billing qty                                                                     |
    |   10|   if komp-zzLTKZA ne 'VAR'.                                                                |
    |   11|                                                                                |
    |>>>>>|      zqty1   = xkwert.                                                                     |
    |   13|      compute zqty2   = zqty1 / 1000.                                                       |
    |   14|      xkwert = zqty2 * 1000.                                                                |
    |   15|                                                                                |
    |   16|     exit.                                                                                |
    |   17|   endif.                                                                                |
    |   18|                                                                                |
    |   19|                                                                                |
    |   20|** Samples                                                                                |
    |   21|                                                                                |
    |   22|  if komp-MATKL = '5400'.                                                                   |
    |   23|                                                                                |
    |   24|    check not xkomv-kmein is initial.                                                       |
    |   25|    check not komp-vrkme  is initial.                                                       |
    |   26|                                                                                |
    |   27|** Make sure base is correct when sales unit and pricing unit differ                        |
    |   28|   if komp-vrkme ne xkomv-kmein.                                                            |
    |   29|                                                                                |
    |   30|     zuomqtyo = komp-MGAME.                                                                 |
    |   31|                                                                                |
    Thanks.

    John,
    Here is what I am doing.
    *Assign Header Data And Move To Header Data Final Table
              GS_ORDERHEADERIN-DOC_TYPE            = GC_AUART.
              GS_ORDERHEADERIN-SALES_ORG           = GC_SORG.
              GS_ORDERHEADERIN-DISTR_CHAN          = GC_DISTC.
              GS_ORDERHEADERIN-DIVISION            = GC_DIVI.
              GS_ORDERHEADERIN-ORD_REASON          = GC_AUGRU.
              GS_ORDERHEADERIN-REQ_DATE_H          = WA-USAGE_DATE.
              GS_ORDERHEADERIN-PURCH_DATE          = WA-USAGE_DATE.
              GS_ORDERHEADERIN-PURCH_NO_C          = WA-USAGE_DOC.
    *Assign Header Data And Move To Header Data Final Table
              GS_ORDERHEADERINX-DOC_TYPE           = GC_FLAG.
              GS_ORDERHEADERINX-SALES_ORG          = GC_FLAG.
              GS_ORDERHEADERINX-DISTR_CHAN         = GC_FLAG.
              GS_ORDERHEADERINX-DIVISION           = GC_FLAG.
              GS_ORDERHEADERINX-ORD_REASON         = GC_FLAG.
              GS_ORDERHEADERINX-REQ_DATE_H         = GC_FLAG.
              GS_ORDERHEADERINX-PURCH_DATE         = GC_FLAG.
              GS_ORDERHEADERINX-PURCH_NO_C         = GC_FLAG.
    *ASSIGN ITEMS DATA AND MOVE TO ITEMS DATA FINAL TABLE
            GS_ORDERITEMSIN-ITM_NUMBER         = WA-POSNR.
            GS_ORDERITEMSIN-MATERIAL           = WA-MATERIAL.
            GS_ORDERITEMSIN-TARGET_QTY         = WA-EXT_QTY.      "EXT_QTY is of type LFIMG
            GS_ORDERITEMSIN-TARGET_QU          = WA-EXT_UOM.      "EXT_UOM is of type VRKME
            APPEND GS_ORDERITEMSIN TO GT_ORDERITEMSIN.
            CLEAR GS_ORDERITEMSIN.
    *Assign Items Data And Move To Items Data Final Table
            GS_ORDERITEMSINX-ITM_NUMBER        = WA-POSNR.
            GS_ORDERITEMSINX-MATERIAL          = GC_FLAG.
            GS_ORDERITEMSINX-TARGET_QTY        = GC_FLAG.
            GS_ORDERITEMSINX-TARGET_QU         = GC_FLAG.
            APPEND GS_ORDERITEMSINX TO GT_ORDERITEMSINX.
            CLEAR GS_ORDERITEMSINX.
    *Assign Schedule Lines Data And Move To Schedule Lines Final Table
            GS_ORDER_SCHEDULES_IN-ITM_NUMBER   = WA-POSNR.
            GS_ORDER_SCHEDULES_IN-REQ_DATE     = WA-USAGE_DATE.
            GS_ORDER_SCHEDULES_IN-REQ_QTY      = WA-EXT_QTY.      "EXT_QTY is of type LFIMG
            APPEND GS_ORDER_SCHEDULES_IN TO GT_ORDER_SCHEDULES_IN.
            CLEAR  GS_ORDER_SCHEDULES_IN.
    *Assign Schedule Lines Data And Move To Schedule Lines Final Table
            GS_ORDER_SCHEDULES_INX-ITM_NUMBER  = WA-POSNR.
            GS_ORDER_SCHEDULES_INX-REQ_DATE    = GC_FLAG.
            GS_ORDER_SCHEDULES_INX-REQ_QTY     = GC_FLAG.
            APPEND GS_ORDER_SCHEDULES_INX TO GT_ORDER_SCHEDULES_INX.
            CLEAR  GS_ORDER_SCHEDULES_INX.
    *Assign Sold-To-Partner Data And Move To Final Partners Table
            GS_ORDERPARTNERS-PARTN_ROLE          = GC_SP.
            GS_ORDERPARTNERS-PARTN_NUMB          = GV_SOLD.
            APPEND GS_ORDERPARTNERS TO GT_ORDERPARTNERS.
            CLEAR  GS_ORDERPARTNERS.
    *Assign Ship-To-Partner Data And Move To Partners Table
            GS_ORDERPARTNERS-PARTN_ROLE          = GC_SH.
            GS_ORDERPARTNERS-PARTN_NUMB          = GV_SHIP.
            APPEND GS_ORDERPARTNERS TO GT_ORDERPARTNERS.
            CLEAR  GS_ORDERPARTNERS.
    *Clear Global Variable Field Of Sales Document
              CLEAR:GV_SALESDOCUMENT.
    "Right after pressing F6 button after this. It gives me dump.
    *Call Function Module To Create Sales Order
              CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
                EXPORTING
                  ORDER_HEADER_IN     = GS_ORDERHEADERIN
                  ORDER_HEADER_INX    = GS_ORDERHEADERINX
                IMPORTING
                  SALESDOCUMENT       = GV_SALESDOCUMENT
                TABLES
                  ORDER_ITEMS_IN      = GT_ORDERITEMSIN
                  ORDER_ITEMS_INX     = GT_ORDERITEMSINX
                  ORDER_SCHEDULES_IN  = GT_ORDER_SCHEDULES_IN
                  ORDER_SCHEDULES_INX = GT_ORDER_SCHEDULES_INX
                  ORDER_PARTNERS      = GT_ORDERPARTNERS
                  RETURN              = GT_BAPIRETURN.
    IF SY-SUBRC = 0.
    *Call Function Module For BAPI Commit
                CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                  EXPORTING
                    WAIT = GC_FLAG.
    ENDIF.
    All my BAPI tables have been filled with required data in them. But, still it is giving me a dump.
    I would really appreciate if some one could suggest me where I am going wrong.
    Thanks.

  • Short dump while marking Sales order Line item for Reason for rejection

    Hi All,
    Need your help in the following regards.
    In system Client is creating a sales order with 100+ line items and for each line item a project gets created automatically at the background as it is a make to order senario. Now what is happening is customer suddenly call's and tells to stop few line items tempororily till he gives go-ahead, so our client is marking it for reason for rejection, while doing this the network created for a project is getting deleted. Once we receive conformation for that line item agin to proceed we are removing the reason for rejection and it was suppose to create a new network, but system is taking huge time to do this and going for a shout dump saying time-out error, in few cases it is creating the network.
    Need your valuable inputs how we can address this issue to avoid the short dump. We have increased the buffer time to 30min also.
    Thanks
    regards
    kishore

    Hi,
    You can easily list out sales order that have been assigned reason for rejection..simple extract of table VBAP-ABGRU = not blank.
    This report should list out the sales order number along with some more details, as required.
    Now the report should allow to choose the documents i.e. like giving checkboxes in the left most side and once the user chooses the sales documents he wants to get processed--> the program should call change Sales Order FM or BAPI. Execute this in background.
    Regards,
    Raghu.

  • Mobile Sales - Error while Saving Sales Order

    Hi,
    When I try to create and save a sales order in the Mobile Sales, the error message UI_CONT_STATUSBAR_ICON_TT is displayed, blocking the saving process and the new order is not saved.
    I tried to debug the SAP Mobile Application Studio(Visual Basic) side and I didn`t find any error there.
    Does anyone knows what could be happening?
    Thanks for any help.
    Regards,
    Andrew

    I reinstaled the Mobile studio and then it worked.

  • To Put a Schedule line block while saving Sales Order

    Hi Experts,
    I have a requirement of putting an 'AH' block at schedule line. In the User exit USEREXIT_SAVE_DOCUMENT_PREPARE  i have coded it in the following manner.
         loop at xvbep where posnr = xvbap-posnr.
           xvbep-lifsp = 'AH'.
           modify xvbep index sy-tabix.
          endloop.
    However it is not putting the block when the Sales order gets saved.
    Please help me out.
    Regards,
    Anjali
    Edited by: Anjali Steeve on Oct 7, 2009 1:26 PM

    HI anjali,
    Try doin the same in this Form Routine: FORM USEREXIT_MOVE_FIELD_TO_VBEP  
    Guess it should work.
    Best Regards,
    Navin Fernandes.

  • Multiple calls of same pricing routine while saving sale order

    Hi,
    I have a requirement where I have to modify a pricing routine 9XX for sale order. In pricing procedure, I observed that this routine 9XX is assigned to multiple pricing conditions (ZNN, ZMM, ZDD etc). I saw that this routine is getting called many times in debugging for each of these assigned pricing conditions. May I know on what basis this pricing routine gets triggered multiple times for the corresponding pricing condition?
    Thanks in advance.
    Regards,
    Sri

    Sri,
    For everychange at ITEM level,Pricing mechanism will be repeated.
    You can check in debugging as below
    1.FM Pricing.
    2.Subroutine perform xkomv_aufbauen_aus_komt1.
    3.Check for the below code
      * L O O P Pricing Procedure
        loop at komt1 from komk-ix_komt1_v to komk-ix_komt1_b.
    4.Within this loop you will find a subroutine
       perform (bedingung_pruefen) in program saplv61a if found.
    Put a break point on this LOOP and check what is happening at the desired condition type while it is running through all the condition types of that Pricing Procedure.
    K.Kiran.

  • Error Message (Enter spread  / MAD type B ...) while saving sale order

    hello,
    when i try to create sale order (VA01) , and when i enter the custmer number (befor entring other informations ..) I get this Error Message :
    "Enter spread  / MAD type B for 05.08.2008 in the system settings"
    the message number is : SG117
    plz help me to solve this problem.
    cordialy
    SDA

    Hi
    The exchange rate buying & selling rate has not been secified for the conversion of amount to another curency
    you need to maintain this
    please work with your FI consultant on this as exchnage rate spread needs to eb maintained - verify the currency maintained for the cuustomer in the master for this
    the settings will be done in the IMG under currencies - type B = Actual period end rate
    cheers
    Nandu

  • Missing shipping point while saving sales order

    hi all,
           friends i am creating a sales order(VA01). when i use incompletion log. it shows shipping point is missing . when i go to fill shipping point , it shows no any data. i have checked customer and material,and also done shipping point determination . But it still shows shipping point missing in sales order .
    so plz help me to solve this problem .
    regards

    First a plant should be determined in the sales order.for the plant to be determined in the sales order you shoud maintain aplant in the customer master or material master or in the customer material information record.
    2nd thing is you must do shipping point determination in logistics execution under shipping assign shipping point,receiving point determination.for that shipping point is assigned to plant ,loading group,and shipping condions and the shipping point you want to assign. If you these two things then the shipping p[oint wiil be determined in the sales order.
    Regards
    Biju

  • Run Time Error on Saving Sales Order

    Hello,
    We are facing problem when saving sales order. When order is created and save button is pressed, it saves sales order and gives Order  Number. But while saving the order during update it gives dump due to Data duplication in VBFA while inserting data to VBFA table
    Looking at ST22 log this error is in form VBFA_BEARBEATEN
    Kindly guide.
    Thanx in advance.
    Regards

    Check the Sales Order Number Range.
    It seems either the Number Range is exhausted (completed) or a document with same number is already created in system in past...
    Hope this helps,
    Thanks,
    Jignesh Mehta

Maybe you are looking for

  • Hooking up ipod shuffle to iMac causes it to freeze

    Whenever I hook my ipod Shuffle to my iMacCore Duo my imac freezes. When I reboot with the ipod connected I get an error message than I don't have a keyboard connected. lenn

  • Oracle Report Open Directly into Excel

    Hi, Some body Tell me what code should i write that oracle Report Directly go in excel and Data is not Break , i want when user close the report that report should open in excel directly . Thanks

  • How to reduce the number of exchange between the database & the app?

    Hi, In order to resolve performance issue of my application under a dirty network (ping=150ms), I make use of Ethereal. And I noticed that an incredible amount of TCP exchanges (little SQL requests amoung others things) was complete between my applic

  • Siebel and Outlook 2007 integration

    Hi there, Does anyone know of issues with Outlook 2007 version integrating with CRM on demand? I installed the plug in and have the lookup CRM contact button but I don't have the "send and add to Siebel" button when I create new message. Thanks in ad

  • How customize the customization page?

    Hi all, in the component wizard there's a page to customize the customization page. But if this is not enough, is there any other way than editing the package in the database? I should need to change the detail captions, for example, the the to be di