2009 May 01 10:53 AM
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
2009 May 01 11:04 AM
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
2009 May 01 10:59 AM
2009 May 01 11:03 AM
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?
2009 May 01 11:10 AM
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.
2009 May 01 11:04 AM
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
2009 May 01 11:10 AM
2009 May 01 11:12 AM
Hi,
Assign F1S logical database in the Report attribute. This will resolve the problem.
2009 May 01 11:19 AM
2014 Mar 17 8:39 AM
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 ?
2014 Mar 17 9:09 AM
problem has been done, just as
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