Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SYNTAX_ERROR

Former Member
0 Likes
853

Hi,

Can any one tell me the solution for this.

Runtime Errors SYNTAX_ERROR

Date and Time 22.08.2011 14:12:24

-


-


Short text

Syntax error in program "SAPLSDTB ".

-


-


What happened?

Error in the ABAP Application Program

The current ABAP program "SAPLSDIFRUNTIME" had to be terminated because it has

come across a statement that unfortunately cannot be executed.

The following syntax error occurred in program "SAPLSDTB " in include "LSDTBU29

" in

line 200:

"The type "ABAP_BOOL" is unknown."

" "

" "

" "

The include has been created and last changed by:

Created by: "SAP "

Last changed by: "SAP "

-


-


Error analysis

The following syntax error was found in the program SAPLSDTB :

"The type "ABAP_BOOL" is unknown."

" "

" "

" "

-


-


Trigger Location of Runtime Error

Program SAPLSDIFRUNTIME

Include LSDIFRUNTIMEF02

Row 371

Module type (FORM)

Module Name TABL_TRANSFORM_NTAB

-


-


Source Code Extract

-


Line

SourceCde

-


341

form tabl_transform_ntab tables x031l_tab structure x031l

342

using x030l_wa type x030l

343

objname TYPE DDOBJNAME

344

uclen like x030l-unicodelg

345

rc like syst-subrc.

346

347

data: get_state like dctablget, got_state like dctablget.

348

data: dd02v_wa_n like dd02v, dd02v_wa_a like dd02v,

349

dd09l_wa_n like dd09l, dd09l_wa_a like dd09l.

350

data: dd03p_tab_n like dd03p occurs 0,

351

dd03p_tab_a like dd03p occurs 0,

352

dd05m_tab_n like dd05m occurs 0,

353

dd05m_tab_a like dd05m occurs 0,

354

dd08v_tab_n like dd08v occurs 0,

355

dd08v_tab_a like dd08v occurs 0,

356

dd12v_tab_n like dd12v occurs 0,

357

dd12v_tab_a like dd12v occurs 0,

358

dd17v_tab_n like dd17v occurs 0,

359

dd17v_tab_a like dd17v occurs 0,

360

dd35v_tab_n like dd35v occurs 0,

361

dd35v_tab_a like dd35v occurs 0,

362

dd36m_tab_n like dd36m occurs 0,

363

dd36m_tab_a like dd36m occurs 0.

364

data: uuid like sysuuid-x,

365

abstamp like x030l-abstamp, dystamp like x030l-dystamp.

366

data: x030l_stru_wa like x030l,

367

x031l_stru_tab like x031l occurs 0 with header line.

368

369

  • Read active DD-sources

370

get_state-tabl = 'A'.

>>>>>

call function 'DD_TABL_GET'

372

exporting

373

get_state = get_state

374

tabl_name = objname

375

add_typeinfo = 'D'

376

importing

377

dd02v_wa_a = dd02v_wa_a

378

dd02v_wa_n = dd02v_wa_n

379

dd09l_wa_a = dd09l_wa_a

380

dd09l_wa_n = dd09l_wa_n

381

got_state = got_state

382

tables

383

dd03p_tab_a = dd03p_tab_a

384

dd03p_tab_n = dd03p_tab_n

385

dd05m_tab_a = dd05m_tab_a

386

dd05m_tab_n = dd05m_tab_n

387

dd08v_tab_a = dd08v_tab_a

388

dd08v_tab_n = dd08v_tab_n

389

dd12v_tab_a = dd12v_tab_a

390

dd12v_tab_n = dd12v_tab_n

-


2 REPLIES 2
Read only

Sandra_Rossi
Active Contributor
0 Likes
613

Hi,

Locate the line in SAPLSDTB where ABAP_BOOL is defined, and find out why it has been added.

Could it be related to note 1531602? Did you apply it recently?

Sandra

Edited by: Sandra Rossi, 1 minute later

If you applied it, you may have forgotten to ACTIVATE LSDTBTOP include

Read only

Subhankar
Active Contributor
0 Likes
613

Hi,

I think you haven't implement the note 1531602 correctly. Please undo the implementation from SNOTE and re implement this. Just check in the top include TYPE pool ABAP is added.

Thanks

Subhankar