0% found this document useful (0 votes)
242 views4 pages

ALV and Fuzzy Search

The document discusses improving the ALV (ABAP List Viewer) using IDA (Integrated data access). Key points: - Selected columns will be fetched from the database. - Pagination will be added. - Queries will be automatic.

Uploaded by

Karan Chopra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
242 views4 pages

ALV and Fuzzy Search

The document discusses improving the ALV (ABAP List Viewer) using IDA (Integrated data access). Key points: - Selected columns will be fetched from the database. - Pagination will be added. - Queries will be automatic.

Uploaded by

Karan Chopra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 4

Improved the ALV (ABAP List Viewer) using IDA (Integrated data access)

Selected columns will be fetched from DB


pagination
Automatic query

x x
Presentation Presentation

Application X Application x

Database Database
largest small

www.onlinefioritrainings.com
Sales Order Data with BUPA CDS Business Partner CDS

Country

Authorization Object

PFCG Role

Users = IN Users = US users

www.onlinefioritrainings.com
TCODE TO TEST CDS
RSRTS_ODP_DIS

1. Foreign key
2. Domain
3. Value Help help
4. Attaching search help @ Data element level
5. Search help @ structure level
6. Dynamic – AT VALUE SELECTION
7. SH exit code inside a SH

There is has to be a FULLTEXT index available @ table level – pre-requisite to do a full text search in SAP HANA

www.onlinefioritrainings.com
PK Text1 Text2
1 I love india This is my home
2 I like Russia It is nice place to visit, I
love romania

SELECT * from tab where Contains ( * , ‘Love’);

HANA Does preprocessing to enable such searches which are case sensitive. I love india
Love => Love, lOve, loVe, love  Normalization This is my home
Break down every statement in words  Tokenization
go  went  gone I like Russia
Went It is nice place to visit, I love
Linguistic analysis of words  Linguistic romania

Preprocessing (3)
Space as saperator,

select * from sapa4h.snwd_texts where text like '%screen';


select * from sapa4h.snwd_texts where contains ("TEXT",'screen')
create FULLTEXT index idx_texts on SNWD_TEXTS("TEXT") ;
www.onlinefioritrainings.com

You might also like