Re: Getting the error "some out table var is not assigned :" in AMDP
Looks like a typing error. You should use: et_sflight_det = SELECT a.carrid, a.connid, b.cityfrom, b.cityto ...instead of et_flight_det = SELECT a.carrid, a.connid, b.cityfrom, b.cityto ...Best...
View ArticleRe: Getting the error "some out table var is not assigned :" in AMDP
Thank you Thomas..
View ArticleCan we loop an internal table inside AMDP method
Hello Expert, Please help me for the below points: 1. Can we loop an internal table inside AMDP method.2. Can we write delete adjacent duplicate.... inside AMDP method.3. What all operation we can do...
View ArticleUnable to set the break point inside AMDP method
Hello Expert, I am unable to set the breakpoint inside the AMDP method. While clicking on the selection bar, I am getting the error as specified in the attachment.Please help me on this. Thanks &...
View ArticleRe: Can we loop an internal table inside AMDP method
Try it like this: first_itab = SELECT .. FROM VBRK JOIN VBRP ... ;second_itab = SELECT DISTINCT ... FROM :first_itab;third_itab = SELECT ... FROM OTHERTABLE JOIN :second_itab; Why do you want to write...
View ArticleRe: Problem with cl_salv_gui_table_ida
Hi Frank, I just saw your question. Thank you for citing the place in the coding!Yes, there is a reason: When a column has a conversion exit, it does not make much sense to do a text-search on the...
View ArticleRe: Problem with cl_salv_gui_table_ida
Hi Ivo, and what is the solution for my problem? There are plenty of conversion routines in the SAP ERP Standard. I think the user should have the possibility to search for fields even if they have a...
View ArticleRe: Can we loop an internal table inside AMDP method
Hello Binod, If you have concern about performance then you should have to choose AMDP....But now advanced open SQL also pretty much faster and has compatibility with HDB. For your case you can go with...
View ArticleRe: Problem with cl_salv_gui_table_ida
Hi Frank, I am honestly sorry for having read only part of your thread. I saw the discussions about the HANA revision, but I missed the other important parts. I did not try it but I would expect that...
View ArticleSubtraction in CDS view
Hi Experts, I am posting here first time. If it is not right forum, please ignore it. I have created a CDS view in ECLIPSE. Sharing this view as an image.Here I have dynamic fields like GOODS_RECPT...
View ArticleSearch for CDS Views
Hey Experts, is there an option to search for existing CDS views?I would like to expose materials and their short texts as OData via gateway. Of course i can model a own CDS on top of the both tables...
View ArticleRe: Modify data of a temp table in AMDP
Thanks for the insight Thomas. Actually my fields were of char type and no arithmetic operations involved. So I could modify the values by creating a calculated column using case statement. The reason...
View ArticleRe: Search for CDS Views
Hi Simon, in ADT do a "Where used"-query on your table - in your case MARA and MAKT. When you get the result you could filter it by clicking on the filter icon in the upper right corner of the view:...
View ArticleSubtraction in CDS view
Hi Experts, I am posting here first time. I have created a CDS view in ECLIPSE. Sharing this view as an image. Here I have dynamic fields like GOODS_RECPT & GOODS_ISSUE. I want to make a new...
View ArticleRe: Subtraction in CDS view
Hello Arindam, I assume you would use the alias names for the minus calculation. Alias names cannot be used in that case. Normally in such situations the "expression" used to calculate a specific...
View ArticleSAP ABAP(7.4 SP11) CDS consumption to Analysis for office not working
Hi All, I am trying to consume the ABAP CDS to Analysis for office but the error is coming as :Error msg: The parser produced the error: "ZCXXX" is a database entity with parameters, but a "(" is...
View ArticleRe: Subtraction in CDS view
Hi Arindam, you cannot refer to the names GOODS_RECPT & GOODS_ISSUE in the same view where you define them.Either create another view on top of your view or repeat the expressions that define your...
View ArticleRe: SAP ABAP(7.4 SP11) CDS consumption to Analysis for office not working
Hi Gaurav, if your CDS view has parameters, then they must be filled within the SELECT statement.See also here: ABAP Keyword Documentation Best Regards, Thomas
View ArticleRe: SAP ABAP(7.4 SP11) CDS consumption to Analysis for office not working
Hi Thomas,I am not writing any code to fetch the data, the data is being pulled from ABAP CDS view.Since query :true is one of the annotation that creates query automatically by the system. When i am...
View Article