Re: calling CDS view with input parameters using associations
Hi Puneet, Thanks for the code example. Sure. it is possible to call the CDS via association from CDS itself. The restriction currently is only from Open SQL as I mentioned above. If you think you have...
View ArticleHow to declare Global Internal Table Inside a perform using inline Data...
Hi Expert, I am filling one internal table inside a perform which needs to be accessed globally in the program I am using inline data declaration to declare the internal table. As i am doing it in...
View ArticleRe: How to declare Global Internal Table Inside a perform using inline Data...
Hello,Inline data deceleration is visible only statically in the program and valid to current context.Deceleration of any data type in perform it acts like local deceleration for that subroutine only....
View ArticleRe: Rewriting Native SQL to Open SQL in HANA DB Migration
Hi Jayvardhan, We are also facing the same problem , specially point 3. If your issue is resolved can you please share the solution you applied. THanksPoonam
View ArticleRe: Updating data in HANA DB
Did you have a database COMMIT (either explicit or implicit by the end of your ABAP program)?As long as no COMMIT was issued, the data cannot be seen be other sessions than your own running program....
View ArticleRe: Rewriting Native SQL to Open SQL in HANA DB Migration
1. HANA is a database like any other database supported by ABAP. Therefore you can use Native SQL also with HANA. The other questions I cannot answer.Best Regards, Thomas
View ArticleHow to set oData property 'nullable' via CDS
Hi Experts. I want a field in my entity type to be set as 'nullable' . Since I am creating the entity using CDS for ABAP, I am not able to make any changes in SEGW. Is there anyway I can set this...
View ArticleIN operator in CDS view
Hi Experts. As we cannot use IN operator in S4 HANA CDS view. Can you please let me know how do we handle the scenario when we have to filter the record with respect to a range maintained seperately....
View ArticleRe: IN operator in CDS view
What exactly is your use case? When you use Open SQL in ABAP you can use the IN Operator when selecting from a CDS view.
View ArticleRe: IN operator in CDS view
Hi Thomas, I am creating a CDS view. I am trying to fetch GL accounts related data, where I have GL account ranges maintained in SETLEAF table (VALFROM, VALTO).
View ArticleAMDP Query for ANLC Table Failed
Hi All, I have written following 2 queries in AMDP class. DATA(im_where_anla) = cl_shdb_seltab=>combine_seltabs( it_named_seltabs = VALUE #( ( name = 'BUKRS' dref = REF #( im_bukrs[] ) ) "...
View ArticleRe: IN operator in CDS view
Interesting: a persisted selection table! Until now, I only knew them as ABAP internal tables.As there is no native support for an IN operator in the database, selection tables are transformed into...
View ArticleRe: IN operator in CDS view
Hi Thomas, Thanks for your inputs. I have done similar join on SETLEAF for now. but this would not work when I have multiple entries in SETLEAF which has different ranges of GL account maintained....
View ArticleGetting difference of Left outer join & inner join
Hi All, Lets say in VBRK, I have the following billing docs: 1,2,3,4,5 In custom table ZFFORM_R, I have the following billing docs: 1,2,3 Now using AMDP, I need the result set containing billing docs...
View ArticleABAP on HANA Database
Hi All,Please help me for my below query. One of our client have recently changed the SAP R/3 data base from Oracle to Hana database. There is some custom program in old system which is running...
View ArticleAssertion Dump while creating CDS View in HANA ADT
Dear Experts, In HANA ADT, I see DDL Source under Core Data Services. Earlier DDL Source used to be below Data Dictionary. Now when I am trying to create a custom CDS View, the SQL is not editable to...
View ArticleRe: ABAP on HANA Database
You must check for any native sqls in program. Please also perform SCI using parameters 'FUNCTIONAL_DB' & 'PERFORMANCE_DB' and correct the errors if any.
View ArticleRe: ABAP on HANA Database
Hi Joseph,please have a look on the blog:ABAP custom code adaption for SAP HANA – The efficient way Here you will find the things you have to cosinder when moving your custom code towards HANA db....
View ArticleAMDP: Dynamic SELECT
Hi all, I would like to know if it is possibile to use SELECT statements in an AMDP method where the table name and/or the table fields are not the actual values but variables that contain the values...
View ArticleRe: Assertion Dump while creating CDS View in HANA ADT
Hi Raju, Are you facing this error for other templates also ? I hope you have followed the below steps for creating a custom CDS view. 1) With your system added choose New - > Other. In the...
View Article