cancel
Showing results for 
Search instead for 
Did you mean: 

GETWA_NOT_ASSIGNED dump

Former Member
0 Kudos

Hi ,

i have creatd a new SyncBo, I generated it and replicated but when I try to sicronize it a dump GETWA_NOT_ASSIGNED is produced.

I read in the next thread a posible solution:

But i don´t know where I must configure it or if my problem will be solved with this.

Can anybody help me?

Thanks, regards

Accepted Solutions (0)

Answers (1)

Answers (1)

AjithC
Employee
Employee
0 Kudos

Hi Jose,

GETWA_NOT_ASSIGNED is a very generic dumb. Attach the dumb details, including source code location.

Regards

Ajith Chandran

Former Member
0 Kudos

hi,

this is the detail of dump:

ShrtText

Field symbol has not yet been assigned.

What happened?

Error in ABAP application program.

The current ABAP program "SAPLMEREP_RUNTIME_DB" had to be terminated because

one of the

statements could not be executed.

This is probably due to an error in the ABAP program.

Error analysis

You attempted to access an unassigned field symbol

(data segment 32773).

This error may occur for any of the following reasons:

- You address a typed field symbol before it is set using ASSIGN

- You address a field symbol that points to a line in an internal table

that has been deleted

- You address a field symbol that had previously been reset using

UNASSIGN, or that pointed to a local field that no longer exists

- You address a global function interface parameter, even

though the relevant function module is not active,

that is it is not in the list of active calls. You can get the list

of active calls from the this short dump.

program "LMEREP_RUNTIME_DBU06"

1105 TYPES:

1106 BEGIN OF LTS_MBLLANG,

1107 MBLID TYPE MEREP_507-MBL_ID,

1108 LANG TYPE MEREP_507-LANG,

1109 END OF LTS_MBLLANG.

1110

1111 TYPES:

1112 BEGIN OF LTS_DELTA,

1113 SYNC_KEY TYPE MEREP_207-SYNC_KEY,

1114 R3KEY TYPE MEREP_207-R3KEY,

1115 UPDACT TYPE CHAR1,

1116 ITM TYPE CHAR1,

1117 LANG TYPE SY-LANGU,

1118 END OF LTS_DELTA.

1119

1120

1121

1122 DATA : LDT_MAP TYPE STANDARD TABLE OF LTS_MAP

1123 WITH HEADER LINE,

1124 LDT_DELTA TYPE STANDARD TABLE OF LTS_DELTA

1125 WITH HEADER LINE,

1126 LDT_MBLLANG TYPE STANDARD TABLE OF LTS_MBLLANG

1127 WITH HEADER LINE,

1128 LDT_DELTAML TYPE STANDARD TABLE OF LTS_DELTA

1129 WITH HEADER LINE.

1130

1131 *Get the scenario name

1132 READ TABLE PRT_HEAD ASSIGNING <L_207> INDEX 1.

1133

1134 *get the sync type

>>>> SELECT SINGLE SYNCTYPE

1136 FROM MEREP_401

1137 INTO SYNCTYPE

1138 WHERE SCENARIO EQ <L_207>-SCENARIO

1139

1140 *get the program name

1141 CONCATENATE 'SAPLZ_MEREP_GEN_'

1142 SYNCTYPE

1143 '_'

1144 <L_207>-SCENARIO

1145 INTO PNAME.

1146 *get the subroutine name

1147 CONCATENATE <L_207>-SCENARIO

1148 '_DELTAML'

1149 INTO SNAME.

1150 SORT: PRT_ITEM,

1151 PRT_CUR BY SYNC_KEY.

1152

1153 *Get the delta for updating the data

1154 PERFORM (SNAME)

Coul you help me, please?

Thanks,regards.

Former Member
0 Kudos

Hi,

Implement the note 997289 or/and 1020250 and see if the issue is resolved.

Thanks...

Preetham S