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 for Nodes command

Former Member
0 Likes
1,750

Hi,

I am getting the syntax error

"SPFLI" is not a node of the logical database __S.

and the code is

NODES : SPFLI, SFLIGHT.

GET SPFLI FIELDS CARRID CONNID CITYFROM CITYTO.

WRITE: / SPFLI-CARRID,

SPFLI-CONNID,

SPFLI-CITYFROM,

SPFLI-CITYTO.

GET SFLIGHT FIELDS FLDATE.

WRITE: / SFLIGHT-FLDATE.

If i change 'Nodes' to 'Tables' then I am getting this error.

"SPFLI" is not defined for the current logical database.

I am using ECC 6.0.

Please suggest where i have to correct my code?

Thanks

k srinivas

1 ACCEPTED SOLUTION
Read only

MarcinPciak
Active Contributor
0 Likes
1,351

Go to se36->type your Logical DB name-> select structure ->Display. You can see if SPFLI is supported node in this LDB and what kind of node it is (node type column).

Regards

Marcin

9 REPLIES 9
Read only

Former Member
0 Likes
1,351

Hi,

Which Logical Database are you using ?

Read only

0 Likes
1,351

Thanks for the reply. How to declare logical data base in the program. I pasted the program given in help documentation and i am getting this error. How i should find which logical database to use?

Read only

0 Likes
1,351

Hi,

Using the Menu path from abap editor Goto->Attributes check whether Logical database input field is blank or not. If it is blank then you need to provide the logical database.

The name of the logical database in the help documentation from where you have copied and fill the Logical database input field in the Report attributes.

Read only

MarcinPciak
Active Contributor
0 Likes
1,352

Go to se36->type your Logical DB name-> select structure ->Display. You can see if SPFLI is supported node in this LDB and what kind of node it is (node type column).

Regards

Marcin

Read only

0 Likes
1,351

SPFLI is in F1S logical database

Thanks

K Srinivas

Read only

0 Likes
1,351

Hi,

Assign F1S logical database in the Report attribute. This will resolve the problem.

Read only

0 Likes
1,351

Thanks and the problem is solved.

Read only

Former Member
0 Likes
1,351

so now i have the same question ,"SPFLI" is not a node of the logical database, how to resolve this ,.

Should i add some code in my program ?   , i find spfli in F1L  in LDB , how any other suggest ?

Read only

0 Likes
1,351

problem has been done, just as

Avinash Kodarapu said. \

Using the Menu path from abap editor Goto->Attributes check whether Logical database input field is blank or not..   i filled F1S into to it, it ok, Thanks