SAP for Healthcare Discussions
Foster discussions about patient care, cost reduction, and operational excellence in healthcare organizations using SAP. Join the conversation.
cancel
Showing results for 
Search instead for 
Did you mean: 

Filter in a specific column of NWP1

Former Member
0 Kudos

Hi colleagues,

someboy know in which table (or where?) are saved the filter conditions defined in the columns of the views of Clinical Work Station?

Best regards,

Alberto

Edited by: Alberto Aquino on Apr 27, 2010 9:57 PM

1 REPLY 1

Former Member
0 Kudos

Hi, filter (and other layout) information is stored in cluster table LTDX. you can retrieve the data with the following command:

IMPORT LT_DBFIELDCAT TO RT_DBFIELDCAT

LT_DBSORTINFO TO RT_DBSORTINFO

LT_DBFILTER TO RT_DBFILTER

LT_DBLAYOUT TO RT_DBLAYOUT

FROM DATABASE LTDX(LT)

ID RS_VARKEY.

In RS_VARKEY you should specify user and reportname (e.g. RNWPVIEW001, for the occupancy view).

For an example, check out function module LT_DBDATA_READ_FROM_LTDX.

Good luck!

Patrick Bryan

Edited by: Patrick Bryan on May 20, 2010 2:41 PM