‎2008 May 21 4:33 PM
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.
‎2008 May 21 5:37 PM
hi check this for getting the standard selection screen for PCH ..
use this in the report..
tables: objec .
GET OBJEC .
regards,
venkat
‎2008 May 21 5:37 PM
hi check this for getting the standard selection screen for PCH ..
use this in the report..
tables: objec .
GET OBJEC .
regards,
venkat
‎2008 May 21 6:01 PM
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
‎2008 May 21 7:34 PM
I think you could use a NODES statement instead of TABLES:
nodes: objec.
GET objec.
WRITE: objec-otype,
objec-objid,
objec-begda,
objec-endda.