Hello All,
I have a query regarding Like operator in Abap . I am using the below code using like operator to fetch some data . For that RFC I need an Odata request URL which Inturn calls that RFC . Which String function i need to use ?
SELECT EBELN "Purchasing Document Number
EBELP "Item Number of Purchasing Document
TXZ01 "Short Text
MATNR "Material Number
MENGE "Purchase Order Quantity
MEINS "Purchase Order Unit of Measure
FROM EKPO
INTO TABLE T_EKPO
WHERE EBELN LIKE IM_PO_NUM.
I want to get all records which starts with '045'. I tried with below syntax.
http://host:port/sap/opu/odata/sap/ZPO_SRV/POSearchCollection?$filter=substringof('045' , ImPoNum) eq true and ImPlant eq ' ' .
Syntactically it's correct but not able to get data.
Appreciate your help.
Thanks.