2007 Jul 17 4:23 PM
Hi abapers i have an small query try to resolve the solution to me ....
if i click certain button it has to generate particuler transcation .
in my pai module :- case ok_code
when ' submit'
call transcation 'se38'
when 'next'
call transcation 'se11' --> its not working wat should i do /modify to do so for my requirement.
Hi abapers i have an small query try to resolve the solution to me ....
if i click certain button it has to generate particuler transcation .
in my pai module :- case ok_code
when ' submit'
call transcation 'se38'
when 'next'
call transcation 'se11' --> its not working wat should i do /modify to do so for my requirement.
2007 Jul 17 4:32 PM
2007 Jul 17 4:38 PM
Thanku for ur patience . right now iam not having code but sure to say
PAI MODULE
CASE 0K_CODE ( OK_CODE HAS BEEN DEFINED AS SY-UCOMM)
WHEN ' EDITOR'.
CALL TRANSACTION 'SE38'.
WHEN 'DICT'.
CALL TRANSACTION 'SE11'.
ENDCASE.
ENDMODULE . IAM SURE BUT ITS NOT WORKING YARR GUIDE ME PLZ .
2007 Jul 17 4:44 PM
2007 Jul 17 4:47 PM
Thanku for ur patience . right now iam not having code but sure to say
PAI MODULE
CASE 0K_CODE ( OK_CODE HAS BEEN DEFINED AS SY-UCOMM)
WHEN ' EDITOR'.
CALL TRANSACTION 'SE38'.
WHEN 'DICT'.
CALL TRANSACTION 'SE11'.
ENDCASE.
ENDMODULE . IAM SURE BUT ITS NOT WORKING YARR GUIDE ME PLZ .
2007 Jul 17 6:41 PM
Do you want to exit to the new transaction or just perform certain logic and return to your program for further processing?
2007 Jul 17 7:10 PM
You need to define function code either in menu painter(if you use button in application tool bar) or layout.
declare ok_code as below like
data ok_code(4) type c.
use ok_code in attributes column,then it should trigger,use upper case in case you use ' '.
Thanks
Seshu
2007 Jul 17 4:35 PM
Have you written exactly like this..
CALL TRANSACTION 'SE38' .check UPPER case..
2007 Jul 17 4:40 PM