Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Modify data of a temp table in AMDP

Former Member
0 Kudos

Hello All

I'm currently looking at a scenario within AMDP where I need to modify the data of a select query within the AMDP method.

For Ex: I select data from tables BKPF and ACDOCA, from the resultant set I would like to modify 3 fields A, B, C with the value in column D.

I have tried to implement various options but could not achieve the desired results, also I was trying to find out if there is a possibility of calling a non AMDP method inside an AMDP method?

Regards
Sachin

1 ACCEPTED SOLUTION

thomasgauweiler
Active Participant

Your first question seems to be the same as discussed in

You can call any Hana function or stored procedure from an database procedure.

Regards, Thomas

2 REPLIES 2

thomasgauweiler
Active Participant

Your first question seems to be the same as discussed in

You can call any Hana function or stored procedure from an database procedure.

Regards, Thomas

0 Kudos

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 why I was so keen about other methods inside AMDP was to identify if we could use a method which has Open SQL code and access that within the AMDP. But it wasn't possible.