Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Resident load

hi i am new to sap ,can u help me to get the result , see the attached files

EMP:

LOAD empid,

     deptno,

     empcity,

     country,

     salary

FROM

C:\qlikview\p2.xlsx

(ooxml, embedded labels, table is Sheet3);

Employee:

LOAD country,

     salary

Resident as EMP;

Message was edited by: vinay a

1 Solution

Accepted Solutions
Not applicable
Author

RESIDENT is followed by the table name not by "as"

View solution in original post

5 Replies
Not applicable
Author

RESIDENT is followed by the table name not by "as"

qv_testing
Specialist II
Specialist II

Hi,

Only using Resident Table_Name

Employee:

LOAD country,

     salary

Resident EMP;

Not applicable
Author

hi

use like this

RESIDENT EMP;

if you want to remove EMP table just use DROP TABLE

regards

Gernan

Not applicable
Author

tanq u

Not applicable
Author

Hi Vinay,

Resident is followed by table name only not as

Resident as emp  //wrong

Resident emp      //Right

employe:

load country,sal

Resident emp;