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

Parameters in a logical database

Former Member
0 Likes
1,464

Hi all,

Why Parameters defined in a logical databse are not like those defined in a report program?

And what we can do with those one wich declare in a logical database?

Thanks.

5 REPLIES 5
Read only

Former Member
0 Likes
888

In logical database the selection screen is already get created.

You can make it dynamic also.But you can not create a selection screen in your report if your report contains a logical database.

but you can check or restrict the select options.

I mean after entering values in selection screen ( coz of logical database) , then you can put check on the select options as per the requirement.

Read only

Former Member
0 Likes
888

Hi,

When ever you mention LDB in your program attributes, there is one option for report categories.

you can mention the report category also.

If you execute the program the program will display the screen which contains the parameters or select options for that report category.

Goto the transaction SM30 and check the view V_T599F.

Also check the tables T599C for report categories and T599W for HR report categories.

Edited by: Velangini Showry Maria Kumar Bandanadham on May 16, 2008 2:14 PM

Read only

Former Member
0 Likes
888

If U don't want to use any of the parameters given by LDB

.. then U need to change the Report category ...

If UR using LDB PNP and U don't want the default selection

screen then use '_____000' in the report category ..

(No selection criteria for DB PNP) .. declare your own

parameters/select-options

Read only

Former Member
0 Likes
888

Hi,

in a fact, I want to know what can I do with a parameters data defined in a logical data base !

Read only

0 Likes
888

hi check this..

if you want to get the data from the LDB you can give the values in the standard screen given and execute it will work like a report but what happens here is the screen comes automatically...and you can disable the screen as said by srinivas gurram reddy....check the simple program...

with logical data base..PNP. copy this and execute it and give the values in the selection screen...

TABLES:PERNR.

INFOTYPES:0002,0008.

GET PERNR.

PROVIDE * FROM P0002 BETWEEN PN-BEGDA AND PN-ENDDA.

ENDPROVIDE.

PROVIDE * FROM P0008 BETWEEN PN-BEGDA AND PN-ENDDA.

ENDPROVIDE.

IF SY-SUBRC = 0.

WRITE:/ P0002-PERNR,P0002-BEGDA,P0002-ENDDA,P0002-VORNA,P0008-ANSAL,P0008-PREAS.

ENDIF.

regards,

venkat