cancel
Showing results for 
Search instead for 
Did you mean: 

Error while creating a device.

Former Member
0 Kudos

Hi all,

I tried to create a device and when i click on save it is giving an ABAP dump as below.

The following error text was processed in the system M01 : CREATE DATA: The specified type is not a valid data type.

The error occurred on the application server wicomp05_M01_04 and in the work process 0 .

The termination type was: RABAX_STATE

The ABAP call stack was:

Method: GET_USERS_FROM_CDS of program CL_SMMW_USER==================CP

Method: FETCH_USER_LIST of program /1BCWDY/005OX851WLQW549Y03TQ==CP

Method: IF_USER_SEARCH~FETCH_USER_LIST of program /1BCWDY/005OX851WLQW549Y03TQ==CP

Method: ONACTIONON_SEARCH of program /1BCWDY/005OX851WLQW549Y03TQ==CP

Method: IF_WDR_VIEW_DELEGATE~WD_INVOKE_EVENT_HANDLER of program /1BCWDY/005OX851WLQW549Y03TQ==CP

Method: INVOKE_EVENTHANDLER of program CL_WDR_DELEGATING_VIEW========CP

Method: IF_WDR_ACTION~FIRE of program CL_WDR_ACTION=================CP

Method: DO_HANDLE_ACTION_EVENT of program CL_WDR_WINDOW_PHASE_MODEL=====CP

Method: PROCESS_REQUEST of program CL_WDR_WINDOW_PHASE_MODEL=====CP

Method: PROCESS_REQUEST of program CL_WDR_WINDOW=================CP

Is it any bug in the system?

I am currently on SP07 stack.

Please help me in resloving this.

Thanks and regards,

Rajesh

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Rajesh,

As Rohit mentioned, whenever a new SP is installed, all the mandatory notes have to be applied inorder to fix the known issues. The composite note for SP07 is 1263664. This note will give you the list of mandatory notes that you have to apply. Once you have implemented the notes, regenerate the Userdetails Data Object from Workbench to make it consistent. Your issue should be solved with this.

Best regards,

Vinodh

Former Member
0 Kudos

Hi ,

Solved .Didnt done the initial setup using sdoe_sr.After doing it it is working fine.Thanks for your support.

rerads,

rajesh

Former Member
0 Kudos

Hi Rajesh,

Can you upload the ST22 dump details with the source code extract?

Also,Please check If all the mandatory notes were applied into system and SAP BASIS data objects are generated properly.

Regards,

Rohit

Former Member
0 Kudos

Hi Rohit,

We didnt applied any sap note after upgrading to SP07.if there any sap note for this error pls let me know.I read in some thread that we have to re generate the Data Object userdetails in the basis SC.

When i regenerated the satus becam red.

Please find the ST22 dump details.

root_profile_table = ls_cds_list-tablename . |

104

ENDIF.

105

106

ENDLOOP.

107

108

LOOP AT lt_mbo_segm_infm INTO ls_mbo_segm_infm .

109

110

CASE ls_mbo_segm_infm-sfld_orgname .

111

112

WHEN 'LOGIN_NAME' .

113

tbl_fld_login_nm = ls_mbo_segm_infm-sfld_name .

114

WHEN 'FIRST_NAME' .

115

tbl_fld_first_nm = ls_mbo_segm_infm-sfld_name .

116

WHEN 'LAST_NAME' .

117

tbl_fld_last_nm = ls_mbo_segm_infm-sfld_name .

118

WHEN 'LONG_NAME' .

119

tbl_fld_full_nm = ls_mbo_segm_infm-sfld_name .

120

121

ENDCASE.

122

ENDLOOP.

123

124

125

DATA : var1 TYPE bapiusname .

126

DATA: lt_tmp_ref TYPE REF TO data.

127

DATA: ls_tmp_ref TYPE REF TO data.

128

129

FIELD-SYMBOLS : <lt_tmp> TYPE ANY TABLE.

130

FIELD-SYMBOLS : <ls_tmp> TYPE any,

131

<area> TYPE any.

132

>>>>>

CREATE DATA lt_tmp_ref TYPE TABLE OF (root_profile_table).

134

ASSIGN lt_tmp_ref->* TO <lt_tmp>.

135

136

CREATE DATA ls_tmp_ref TYPE (root_profile_table).

137

ASSIGN ls_tmp_ref->* TO <ls_tmp>.

138

139

140

***Search based on the Importing Parameter - I_USER_NAME ******

141

lv_login_name = i_user_name .

142

lv_first_name = i_first_name .

143

lv_last_name = i_last_name .

144

145

wildcard_flag = ''.

146

REPLACE ALL OCCURRENCES OF '*' IN lv_login_name WITH '%'.

147

IF sy-subrc EQ 0.

148

wildcard_flag = 'X'.

149

ENDIF.

150

REPLACE ALL OCCURRENCES OF '*' IN lv_first_name WITH '%'.

151

IF sy-subrc EQ 0.

| 152| wildcard_flag = 'X'.

Thanks and regards,

rajesh