2007 Apr 27 10:46 AM
I was developed a interactive, it was displayed the sales order details, when i was clicks on sales order no (only), it has to go the VA03 transaction.
But my report it works like when ever i clicks on particular SALES ORDER LINE, it is going to VA03, I don't want like this.
Ple give your suggestions.
I was developed a interactive, it was displayed the sales order details, when i was clicks on sales order no (only), it has to go the VA03 transaction.
But my report it works like when ever i clicks on particular SALES ORDER LINE, it is going to VA03, I don't want like this.
Ple give your suggestions.
2007 Apr 27 10:52 AM
Hi,
I hope u are using get cursor field command
get cursor field fnam value fval.
call transaction after comparing fnam with the work area name..
ex
If fnam = 'W_VBAK-VBELN'.
Call transaction 'VA03'.
EndIf.
2007 Apr 27 10:52 AM
You have a couple of options.
1. Output the VBELN field as a hotspot.
2. Use the command GET CURSOR FIELD.....Then do a check on the field that the user has clicked on.
You could also output the VBELN field as a different color.
2007 Apr 27 10:59 AM
Hi,
Instead of Hide statement, use Hot spot for that particular field. It will solve ur problem.
If u still have doubt refer program demo_list_format_hotspot on abapdocu transaction.
Rewards if useful.
Regards,
U. Uma
2007 Apr 27 11:06 AM
Hi Gouri,
Try this,
If u click somewhere else except vbeln it'll give an error <b>'CLICK ON SALES ORDER"</b>
AT LINE-SELECTION.
get cursor field d_field value d_value.
CASE d_field.
WHEN 'WA_FINAL-VBELN'.
SET PARAMETER ID: 'AUN' FIELD d_value.
CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
WHEN OTHERS.
message e222.
ENDCASE.
reward points if helpful,
shreya
2007 Apr 27 2:24 PM
Hi Shreya
Now it working fine, Thanks for your help.
Thanks,
Gourisankar.
2007 Apr 27 11:08 AM
2007 Apr 27 11:22 AM
Hi,
Use Check.
CHECK logexp.
If you need more details on that take F1 help on Check.
Hope it would be helpful for you.
Regards,
Varun.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |