Menu
  • HOME
  • TAGS

SAP UI5 vs web dynpro

sap,abap,sapui5,openui5,webdynpro

Please find comments below for your questions: (1) Is Webdynpro plays role like Servlets and JSP for middle ware programming? Not Exactly, Web Dynpro ABAP is the SAP standard UI technology for developing Web applications in the ABAP environment. It consists of a runtime environment and a graphical development environment...

SQL selecting all records with IN statement

java,sql,sap,portal,webdynpro

the IN statement in SQL cannot accept a wild card character. You would have to add a OR to your query to get it to work... select * from RC_Recall t INNER JOIN RC_RECALLSTORE s ON t.ID = s.RECALLID where t.creationdate >= ?1 AND t.enddate <= ?2 AND t.id LIKE...