2008 Jun 20 2:56 PM
Hi Guys,
How to keep External break Point.Is ther anyway we can keep External BreakPoint in my RFC while executing or calling that RFC from Visual Controller If so How?
Thanks,
Gopi.
2008 Jun 20 3:11 PM
Hi Guys,
How to keep External break Point.Is ther anyway we can keep External BreakPoint in my RFC while executing or calling that RFC from Visual Controller If so How?
Thanks,
Gopi.
2008 Jun 20 2:58 PM
2008 Jun 20 3:00 PM
hiiii
use ctrl_shft_f9 for setting external breakpoint.
<removed_by_moderator>
thx
twinkal
Edited by: Julius Bussche on Jun 23, 2008 10:04 PM
2008 Jun 20 3:07 PM
Hi Gopi,
In ECC 6.0 we have TWO break points
SESSION Breakpoint ---> CtrlshiftF12
EXTERNAL Breakpoint --->CtrlshiftF9
Menu path
For External Break point
Utilities ---> External Beakpoints --->Set/Delete External Breakpoint
For Session Break point
Utilities ---> Breakpoints ---> Set/Delete
Best regards,
raam
2008 Jun 20 3:11 PM
2008 Jun 20 3:17 PM
Hi guys,
Thanks for ur response.
What my doubt is what happens when a VisualComposer guy executes by calling my RFC(if i already kept the External Break Point in my RFC).Does the VC guys has to call the RFC from my system only with the same User ID or different user ID.?
Thanks,
Gopi.
2008 Jun 20 3:27 PM
It is the same user you need to call, or else it wont come.(debugging will not occur).
2008 Jun 20 3:29 PM
IT will stop, if the credentials used by the Visual Composer Program to log in into your system are the same as yours.
In other words, the visual composer also triggers your RFC by specifying the logon credentials somewhere. You have to be logged in as that user to set the breakpoint.
Regards,
Ravi
2008 Jun 20 3:38 PM
Hi Vijay,
Do i ned to havee a Visual Composer uname and Pwd to access or my VC guys can come into my system and login thru his details and acces my RFC in my system?
Thanks,
Gopi.
2008 Jun 20 9:14 PM
check this raaa
IF p_usrid IS INITIAL.
lstr_bapireturn-type = 'E'.
lstr_bapireturn-message = 'User ID Not Found'.
MOVE lstr_bapireturn TO return.
ELSEIF p_action IS INITIAL.
lstr_bapireturn-type = 'E'.
lstr_bapireturn-message = 'Action Not Found'.
MOVE lstr_bapireturn TO return.
ELSE.
lv_usrid = p_usrid.
CALL FUNCTION 'HRWPC_AP_GET_EMPLOYEE_FOR_USER'
EXPORTING
user_name = lv_usrid
begindate = sy-datum
enddate = sy-datum
IMPORTING
employeenumber = lv_pernr
EXCEPTIONS
no_employeenumber_found = 1
subtype_not_available = 2
OTHERS = 3.
IF sy-subrc <> 0.
lstr_bapireturn-type = 'E'.
lstr_bapireturn-message = 'User ID Not Found'.
MOVE lstr_bapireturn TO return.
ENDIF.
ENDIF.
in import P_USRID TYPE PA0105-USRID is visual user ID
P_ACTION is the type of action like 1=creare,2=delete......
2008 Jun 23 11:11 PM
Thread assumed answered. Ravi is correct.
@ "Gopi Anne": Please follow up on your 210 unresolved questions. Please also read the rules of engagement regarding what these forums are intended for and the "food for points" initiative.