cancel
Showing results for 
Search instead for 
Did you mean: 

Business partner

0 Kudos

How can i bring business partners which are created today with the get date() function

sveabecker
Community Advocate
Community Advocate
0 Kudos

Welcome and Thank you for visiting SAP Community to get answers to your questions. Please add more details to your question, e.g. you can also add a screenshot. With that, you can reach a broader range of experts to get your question answered. I also recommend to do this tutorial https://developers.sap.com/tutorials/community-qa.html

The more details you provide, the more likely it is that members will be able to assist you.

Regards, Svea

SAP Community moderator

Accepted Solutions (1)

Accepted Solutions (1)

jitin_chawla
Product and Topic Expert
Product and Topic Expert

Hi,

Please in the question, mention whether it is required for HANA or SQL. Bot ave different functions for it.

FOR HANA


SELECT "CreateDate", "CardCode" FROM OCRD GROUP BY "CreateDate", "CardCode" HAVING "CreateDate" = CURRENT_DATE;


For SQL


select"CreateDate", "CardCode" from OCRD
where  "CreateDate" = cast(GETDATE() as date)


KR,

Jitin

Answers (0)