How would I make it so that when I double click a specific field, the system drills down to the field level data associated with that field. I would like to have a base level data, when I double click it drills down to 1st level data, and when I double click to 2nd level data, etc.
You have to implement all this in the methods. You have to think about where you want to display this information? In a message box, then it goes relatively fast or with splitter container. I have not needed this myself in this form yet. 🤔
@@CustAndCode It would be great to see the two working examples with a dialog window and for more functionality with a dialog box container. This would be very useful to double click on a line to show in a pop up window field specific data from a table. Thanks!
Frist of all great video. Secondly, i am having problems because i don´t know what should i put in the field part of the parameters (set parameter id 'BES' field ...) i understand that is something of the structure you create previously, but i don´t know what is nesesary in my case.
Thanks! Parameter fields are just an example! You don't need this to call a transaction. In my example I pass a field by clicking a row. This field I pass with the transaction. 🤗😀
@@CustAndCode Fast answer, amazing. I ended up using (set parameter id 'BES' field ekko-ebeln). Now i need it to be activated when i click in the vbeln row but not the others. How can i restrict the click event to an specific column?
@@DanielOjedaMartel For this you have to check another event. Doubleklick is not right for this, because it belongs to the whole record. Try Hotspot event to set a link on a specific field, like I explained in this video: ua-cam.com/video/fP5Z1ew18pM/v-deo.html This should work. 🤗😀
i need to call me13 with alv double click and pass date field in condition date to and from in me13 , but in data element there is no parameter id what to do in this case
For this you have to use BDC (Batch Data Communication / Batch-Input). But I haven't create a example video how to use it. Hope I find some time in the future to make one. 🤗
How would I make it so that when they double click a specific column the system will only get the value in that field. Also can I make a hot spot on field ecord?
Have a look a linenumber 18, here I get the column too. At linenumber 26 I only use the row, because I know which column I need. But you have here, in this method the info about the row and the column and you can use both of it. 🤗 Hotspot is possible but I have to see for myself. If I find time I make a video about it.
@@CustAndCode Okay thank you so much. I was able to put something together yesterday next week I'll work on the hotspot I am thinking there is an option in the CS Salv class
Some of sap tcodes have a hotspot with an underline in the record when I double-click that I go to another transaction. I think VA03 is one, I tried to debug that yesterday but it brought me in the sap land and then I got confused. 🤣
@@CustAndCode I'm a trainee at my company, and my first task was to prepare a raport using reuse_alv_grid and now cl_gui_alv_grid. I guess what the third task is going to be :D
@@ne01337 Ah, I understand, to display (read only) my data I always use the SALV Table. If I want to edit some data I use the reuse_alv_grid. If is that your next excersise have a look at this video: ▶ ua-cam.com/video/ZzXHYDy0UUE/v-deo.html 🤗
You are life saver for ton of folks... Amazing !!
Glad to hear that! 🤗 Thank you! 🤗
Hi,
very helpfull videos,
watched multiple about salv tables on
your channela and has been a great help with learning
ABAP.
Thank you for making them
Thank you very much for your kind feedback! 😀 I'm glad the videos could help you! 🤗
How would I make it so that when I double click a specific field, the system drills down to the field level data associated with that field. I would like to have a base level data, when I double click it drills down to 1st level data, and when I double click to 2nd level data, etc.
You have to implement all this in the methods. You have to think about where you want to display this information? In a message box, then it goes relatively fast or with splitter container. I have not needed this myself in this form yet. 🤔
@@CustAndCode It would be great to see the two working examples with a dialog window and for more functionality with a dialog box container. This would be very useful to double click on a line to show in a pop up window field specific data from a table. Thanks!
@@gpsyking I put it on my long todo list 🤔
Easy to follow and clear information! Thanks alot!
Thank you for your feedback! 🤗😀
excellent explanation, thank you so much !
You are very welcome, and thank you for watching and commenting! 🤗
Awesome video with explanation and to the mark.
Thank you for your positive feedback! I am glad! 🤗
Great Thankyou For amazing explanation
Thank you very much! 😀🤗
Nice video,Thanks
Thank you for this feedback! 😀
Frist of all great video. Secondly, i am having problems because i don´t know what should i put in the field part of the parameters (set parameter id 'BES' field ...) i understand that is something of the structure you create previously, but i don´t know what is nesesary in my case.
Thanks! Parameter fields are just an example! You don't need this to call a transaction. In my example I pass a field by clicking a row. This field I pass with the transaction. 🤗😀
@@CustAndCode Fast answer, amazing. I ended up using (set parameter id 'BES' field ekko-ebeln). Now i need it to be activated when i click in the vbeln row but not the others. How can i restrict the click event to an specific column?
@@DanielOjedaMartel For this you have to check another event. Doubleklick is not right for this, because it belongs to the whole record. Try Hotspot event to set a link on a specific field, like I explained in this video: ua-cam.com/video/fP5Z1ew18pM/v-deo.html This should work. 🤗😀
@@CustAndCode Thanks man!!
@@DanielOjedaMartel You are welcome! 😀
Nice video
Thank you! 🤗
What if I want it to run with the parameter I called the transaction with? Like basically get it to execute with on top of this.
I'm not sure if I understand your question clearly enough 🤔 could you give me an example? 🤗
i need to call me13 with alv double click and pass date field in condition date to and from in me13 , but in data element there is no parameter id what to do in this case
For this you have to use BDC (Batch Data Communication / Batch-Input). But I haven't create a example video how to use it. Hope I find some time in the future to make one. 🤗
Nice videos, keep it up! :)
Thank you very much! 🤩
How would I make it so that when they double click a specific column the system will only get the value in that field. Also can I make a hot spot on field
ecord?
Have a look a linenumber 18, here I get the column too. At linenumber 26 I only use the row, because I know which column I need. But you have here, in this method the info about the row and the column and you can use both of it. 🤗
Hotspot is possible but I have to see for myself. If I find time I make a video about it.
@@CustAndCode Okay thank you so much.
I was able to put something together yesterday next week I'll work on the hotspot I am thinking there is an option in the CS Salv class
Some of sap tcodes have a hotspot with an underline in the record when I double-click that I go to another transaction.
I think VA03 is one,
I tried to debug that yesterday but it brought me in the sap land and then I got confused.
🤣
@@Steveo3312 Yes, it should work! I will have a look at it next week 🤗
@@Steveo3312 debugging standard transactions like VA03 is very challenging 😉 that's true! I also do this very rarely 🤗
Thank you very much
I'm glad you liked it. And thank you for watching! 🤗
can I use this solution with cl_gui_alv_grid?
Unfortunately no, this would have to be solved differently 🤗
@@CustAndCode could you please give me a hint? :D
@@ne01337 I have been using the SALV table for my use cases for a very long time as I find it easier to implement. Why don't you use it?
@@CustAndCode I'm a trainee at my company, and my first task was to prepare a raport using reuse_alv_grid and now cl_gui_alv_grid. I guess what the third task is going to be :D
@@ne01337 Ah, I understand, to display (read only) my data I always use the SALV Table. If I want to edit some data I use the reuse_alv_grid. If is that your next excersise have a look at this video: ▶ ua-cam.com/video/ZzXHYDy0UUE/v-deo.html
🤗