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

GET OBJEC

Former Member
0 Likes
629

Hi,

I have to use PCH Logical Database in my program.

Can you please let me know:

1. What should I do to get the standard PCH Selection Screen

2. What does GET OBJEC do.

Thanks and Regards,

Ishaq.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
535

hi check this for getting the standard selection screen for PCH ..

use this in the report..

tables: objec .

GET OBJEC .

regards,

venkat

3 REPLIES 3
Read only

Former Member
0 Likes
536

hi check this for getting the standard selection screen for PCH ..

use this in the report..

tables: objec .

GET OBJEC .

regards,

venkat

Read only

Former Member
0 Likes
535

Hi Ishaq Ali Khan,

After selecting the logical database in Attributes.

Then inside u need to just give

TABLES: OBJEC.

To fetch the data from database u need to use GET Event block.

Please check this

REPORT  logical_database.

TABLES: objec.

GET objec.

  WRITE: objec-otype,
         objec-objid,
         objec-begda,
         objec-endda.

Get is an Event Block.

GET in Logical Database acts as SELECT statement . It fetches the data from the database similar to SELECT statement.

Please check this link

http://help.sap.com/search/highlightContent.jsp

Hope this helps...

Best regards,

raam

Read only

Former Member
0 Likes
535

I think you could use a NODES statement instead of TABLES:



nodes: objec.

GET objec.

  WRITE: objec-otype,
         objec-objid,
         objec-begda,
         objec-endda.