Application Development and Automation 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: 
Read only

How to keep External Break point?

Former Member
0 Likes
1,376

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,349

Gopi,

Use CtrlshiftF12.

Regards,

Suresh Kumar.

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.

10 REPLIES 10
Read only

Former Member
0 Likes
1,349

go to utilities--->breakpoints-->set

Read only

Former Member
0 Likes
1,349

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

Read only

Former Member
0 Likes
1,349

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

Read only

Former Member
0 Likes
1,350

Gopi,

Use CtrlshiftF12.

Regards,

Suresh Kumar.

Read only

0 Likes
1,349

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.

Read only

0 Likes
1,349

It is the same user you need to call, or else it wont come.(debugging will not occur).

Read only

0 Likes
1,349

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

Read only

0 Likes
1,349

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.

Read only

0 Likes
1,349

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......

Read only

0 Likes
1,349

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.