cancel
Showing results for 
Search instead for 
Did you mean: 

FireFighter Login Error

former_member184114
Active Contributor
0 Kudos

Hi All,

I have implementted virsa Add-On 5.1 successfully. Subsequently, i have followed the configuration guide. I have created following types of ids and users:

  • IDs users*

==========================

1)FireFighter Id FFFIN

2)FireFighter Owner FFOWNER

3)FireFighter FFighter

Now im trying to login FF using user id FFIGHTER, system is throwing the following abap dump:

Runtime Errors CALL_FUNCTION_CONFLICT_TYPE

Exception CX_SY_DYN_CALL_ILLEGAL_TYPE

Date and Time 21.04.2008 15:37:16

Short text

Type conflict when calling a function module.

What happened?

Error in the ABAP Application Program

The current ABAP program "/VIRSA/ZVFAT" had to be terminated because it has

come across a statement that unfortunately cannot be executed.

A function module was called incorrectly.

What can you do?

Note down which actions and inputs caused the error.

To process the problem further, contact you SAP system

administrator.

Using Transaction ST22 for ABAP Dump Analysis, you can look

at and manage termination messages, and you can also

keep them for a long time.

Error analysis

An exception occurred that is explained in detail below.

The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was

not caught in

procedure "RETRIEVE_PSWD" "(FORM)", nor was it propagated by a RAISING clause.

Since the caller of the procedure could not have anticipated that the

exception would occur, the current program is terminated.

The reason for the exception is:

The call to the function module "SUSR_LOGIN_CHECK_RFC" is incorrect:

The function module interface allows you to specify only

fields of a particular type under "PASSWORD".

The field "FF_PWD" specified here is a different

field type

.

How to correct the error

If the error occurred in your own ABAP program or in an SAP

program you modified, try to remove the error.

If the error occures in a non-modified SAP program, you may be able to

find an interim solution in an SAP Note.

If you have access to SAP Notes, carry out a search with the following

keywords:

"CALL_FUNCTION_CONFLICT_TYPE" "CX_SY_DYN_CALL_ILLEGAL_TYPE"

"/VIRSA/ZVFAT" or "/VIRSA/ZVFAT"

"RETRIEVE_PSWD"

If you cannot solve the problem yourself and want to send an error

notification to SAP, include the following information:

1. The description of the current problem (short dump)

To save the description, choose "System->List->Save->Local File

(Unconverted)".

2. Corresponding system log

Display the system log by calling transaction SM21.

Restrict the time interval to 10 minutes before and five minutes

after the short dump. Then choose "System->List->Save->Local File

(Unconverted)".

3. If the problem occurs in a problem of your own or a modified SAP

program: The source code of the program

In the editor, choose "Utilities->More

Utilities->Upload/Download->Download".

4. Details about the conditions under which the error occurred or which

actions and input led to the error.

The exception must either be prevented, caught within proedure

"RETRIEVE_PSWD" "(FORM)", or its possible occurrence must be declared in the

RAISING clause of the procedure.

To prevent the exception, note the following:

System environment

SAP-Release 700

Application server... "eccdcs1s"

Network address...... "172.27.130.1"

Operating system..... "AIX"

Release.............. "5.3"

Hardware type........ "00C6D8CD4C00"

Character length.... 16 Bits

Pointer length....... 64 Bits

Work process number.. 0

Shortdump setting.... "full"

Database server... "eccdcs1s"

Database type..... "ORACLE"

Database name..... "D10"

Database user ID.. "SAPD10"

Char.set.... "C"

SAP kernel....... 700

created (date)... "Feb 25 2008 21:19:03"

create on........ "AIX 2 5 005DD9CD4C00"

Database version. "OCI_102 (10.2.0.2.0) "

Patch level. 149

Patch text.. " "

Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."

SAP database version. 700

Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5, AIX 1 6"

Memory consumption

Roll.... 16192

EM...... 8379696

Heap.... 0

Page.... 57344

MM Used. 938096

MM Free. 3249152

User and Transaction

Client.............. 750

User................ "FFIGHTER"

Language key........ "E"

Transaction......... "/VIRSA/VFAT "

Transactions ID..... "480C6DEF4DCF0275E1008000AC1B8201"

Program............. "/VIRSA/ZVFAT"

Screen.............. "/VIRSA/ZVFAT 9100"

Screen line......... 10

Information on where terminated

Termination occurred in the ABAP program "/VIRSA/ZVFAT" - in "RETRIEVE_PSWD".

The main program was "/VIRSA/ZVFAT ".

In the source code you have the termination point in line 2944

of the (Include) program "/VIRSA/ZVFAT".

The termination is caused because exception "CX_SY_DYN_CALL_ILLEGAL_TYPE"

occurred in

procedure "RETRIEVE_PSWD" "(FORM)", but it was neither handled locally nor

declared

in the RAISING clause of its signature.

The procedure is in program "/VIRSA/ZVFAT "; its source code begins in line

2932 of the (Include program "/VIRSA/ZVFAT ".

Source Code Extract

Line SourceCde

2914 IGUISTATUS = 'AEND'.

2915 APPEND IGUISTATUS.

2916 IACTION = 'S'.

2917 PERFORM VFAT_TABLE_DISP_MAINTAIN.

2918 ELSE.

2919 MESSAGE I601 WITH IVIEW.

2920 ENDIF.

2921 ENDIF.

2922 CLEAR ISUBRC.

2923 ENDFORM. " VFAT_TABLE_DISP_MAINTAIN

2924 &----


2925 *& Form retrieve_pswd

2926 &----


2927 * text

2928 ----


2929 * --> p1 text

2930 * <-- p2 text

2931 ----


2932 FORM retrieve_pswd.

2933 data: tempss(32), resultss(32).

2934 select single zvirpassword into tempss from /virsa/zvirffpwd where

2935 zvirffid = ff_user.

2936 if sy-subrc <> 0.

2937 MESSAGE I606 with ff_user.

2938 clear sy-ucomm.

2939 call screen 9100.

2940 else.

2941 perform decrypt_pass using tempss resultss.

2942 ff_pwd = resultss.

2943 endif.

>>>>> CALL FUNCTION 'SUSR_LOGIN_CHECK_RFC'

2945 EXPORTING

2946 BNAME = FF_USER

2947 PASSWORD = FF_PWD

2948 * XBCODE =

2949 * XCODVN =

2950 EXCEPTIONS

2951 WAIT = 1

2952 USER_LOCKED = 2

2953 USER_NOT_ACTIVE = 3

2954 PASSWORD_EXPIRED = 4

2955 WRONG_PASSWORD = 5

2956 NO_CHECK_FOR_THIS_USER = 6

2957 INTERNAL_ERROR = 7

2958 OTHERS = 8.

2959 IF SY-SUBRC <> 0.

2960 CASE SY-SUBRC.

2961 WHEN '1'.

2962 MESSAGE I616.

2963 WHEN '2'.

Contents of system fields

Name Val.

SY-SUBRC 0

SY-INDEX 0

SY-TABIX 1

SY-DBCNT 1

SY-FDPOS 0

SY-LSIND 0

SY-PAGNO 0

SY-LINNO 1

SY-COLNO 1

SY-PFKEY 9100

SY-UCOMM SLOG

SY-TITLE Firefighter

SY-MSGTY S

SY-MSGID /VIRSA/VFAT

SY-MSGNO 642

SY-MSGV1

SY-MSGV2

SY-MSGV3

SY-MSGV4

SY-MODNO 0

SY-DATUM 20080421

SY-UZEIT 153716

SY-XPROG

SY-XFORM

Active Calls/Events

No. Ty. Program Include Line

Name

2 FORM /VIRSA/ZVFAT /VIRSA/ZVFAT 2944

RETRIEVE_PSWD

1 MODULE (PAI) /VIRSA/ZVFAT /VIRSA/ZVFAT 643

USER_COMMAND_9100

Chosen variables

Name

Val.

No. 2 Ty. FORM

Name RETRIEVE_PSWD

SY-MSGV1

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

FF_USER

FFFIN

000000000000

000000000000

444442222222

6669E0000000

SY-MSGV2

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

SY-MSGV3

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

SY-MSGV4

00000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000

22222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000

%_ITAB_MODIFY_LIST

Table IT_5[1x4]

\PROGRAM=/VIRSA/ZVFAT\DATA=%_ITAB_MODIFY_LIST

Table reference: 4

TABH+ 0(20) = 07000000628DE698000000000000000000000000

TABH+ 20(20) = 00000004000000050000000100000004FFFFFFFF

TABH+ 40(16) = 0400000000002F900019249401800000

store = 0x07000000628DE698

ext1 = 0x0000000000000000

shmId = 0 (0x00000000)

id = 4 (0x00000004)

label = 5 (0x00000005)

fill = 1 (0x00000001)

leng = 4 (0x00000004)

loop = -1 (0xFFFFFFFF)

xtyp = TYPE#000239

occu = 25 (0x00000019)

access = 1 (ItAccessStandard)

idxKind = 0 (ItIndexNone)

uniKind = 2 (ItUniqueNon)

keyKind = 1 (default)

cmpMode = 2 (cmpSingleMcmpR)

occu0 = 1

groupCntl = 0

rfc = 0

unShareable = 0

mightBeShared = 0

sharedWithShmTab = 0

isShmLockId = 0

gcKind = 0

isUsed = 1

isCtfyAble = 1

>>>>> Shareable Table Header Data <<<<<

tabi = 0x0700000062905750

pgHook = 0x0000000000000000

idxPtr = 0x0000000000000000

shmTabhSet = 0x0000000000000000

id = 6 (0x00000006)

refCount = 0 (0x00000000)

tstRefCount = 0 (0x00000000)

lineAdmin = 25 (0x00000019)

lineAlloc = 25 (0x00000019)

shmVersId = 0 (0x00000000)

shmRefCount = 1 (0x00000001)

>>>>> 1st level extension part <<<<<

regHook = Not allocated

collHook = Not allocated

ext2 = Not allocated

>>>>> 2nd level extension part <<<<<

tabhBack = Not allocated

delta_head = Not allocated

pb_func = Not allocated

pb_handle = Not allocated

SY-UCOMM

SLOG

0000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000

5444222222222222222222222222222222222222222222222222222222222222222222

3CF7000000000000000000000000000000000000000000000000000000000000000000

%_RREADTI_%_APP_%

000000000000000000000000000000

000000000000000000000000000000

222222222222222222222222222222

000000000000000000000000000000

SY-REPID

/VIRSA/ZVFAT

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

2545542554452222222222222222222222222222

F69231FA66140000000000000000000000000000

TEMPSS

9?D9;Y3)Y!04wTrAt6S}aB[9m&J%]v5/

00000000000000000000000000000000

00000000000000000000000000000000

33433532523375747357645362425732

9F49B93991047421463D12B9D6A5D65F

RESULTSS

abcd1234

00000000000000000000000000000000

00000000000000000000000000000000

66663333222222222222222222222222

12341234000000000000000000000000

RUSER-LOW

000000000000

000000000000

222222222222

000000000000

SFFID[]

Table[initial]

ITRDIRT

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

FF_PWD

abcd1234

00000000

00000000

66663333

12341234

SY-XFORM

000000000000000000000000000000

000000000000000000000000000000

222222222222222222222222222222

000000000000000000000000000000

%_DUMMY$$

0000

0000

2222

0000

SYST-REPID

/VIRSA/ZVFAT

0000000000000000000000000000000000000000

0000000000000000000000000000000000000000

2545542554452222222222222222222222222222

F69231FA66140000000000000000000000000000

%_SPACE

0

0

2

0

No. 1 Ty. MODULE (PAI)

Name USER_COMMAND_9100

INT_ZVIRTCODE[]

Table[initial]

I_ZVIRFFIDS-ZVIRFFID

FFFIN

000000000000

000000000000

444442222222

6669E0000000

INT_ZVIRTCODE

00000000000000000000000000000000000000000000000000000000

00000000000000000000000000000000000000000000000000000000

22222222222222222222222222222222222222222222222222222222

00000000000000000000000000000000000000000000000000000000

SY-UNAME

FFIGHTER

000000000000

000000000000

444445452222

669784520000

C_FLAG

0

0

2

0

SY-SUBRC

0

0000

0000

%_ARCHIVE

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

SY-MSGID

/VIRSA/VFAT

00000000000000000000

00000000000000000000

25455425445222222222

F69231F6614000000000

LIN

0

0000

0000

SPACE

0

0

2

0

SY-MSGNO

642

000

000

333

642

CL_GUI_CONTROL=>LIFETIME_DEFAULT

???

??????

??????

%_PRINT

000 0###

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223000

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

%_TCODE_%_APP_%-TEXT

000000000000000000000000000000

000000000000000000000000000000

222222222222222222222222222222

000000000000000000000000000000

RREADTI

000000

000000

000000

333333

000000

IVIEW

000000000000000000000000000000

000000000000000000000000000000

222222222222222222222222222222

000000000000000000000000000000

%_RDAY_%_APP_%

000000000000000000000000000000

000000000000000000000000000000

222222222222222222222222222222

000000000000000000000000000000

SY-ONCOM

T

0

0

5

4

Internal notes

The termination was triggered in function "FuncParams"

of the SAP kernel, in line 3169 of the module

"//bas/700_REL/src/krn/runt/abfunc.c#16".

The internal operation just processed is "FUNC".

Internal mode was started at 20080421153206.

Name of function module...............: "SUSR_LOGIN_CHECK_RFC"

Name of formal parameter..............: "PASSWORD"

Technical type of actual parameter....: "C"

Technical length of actual parameter..: 16 bytes

Technical type of formal parameter....: "C"

Technical length of formal parameter..: 80 bytes

Name of formal parameter at caller....: "PASSWORD"

Active Calls in SAP Kernel

Lines of C Stack in Kernel (Structure Differs on Each Platform)

=> 64 bit R/3 Kernel

=> 64 bit AIX Kernel

=> Heap limit = unlimited

=> Stack limit = 4294967296

=> Core limit = 1073741312

=> File size limit = unlimited

=> Heap address = 0x0x1202fb0c0

=> Stack address = 0xfffffffffff2e90

=> Stack low = 0xfffffffffff2e90

=> Stack high = 0xffffffffffff800

=> Stack Trace:

AixStack() at 0x1000c7d94

CTrcStack2() at 0x1000c7e8c

rabax_CStackSave__Fv() at 0x1000b2d70

ab_rabax() at 0x1000af728

FuncParams__FP9FUNC_INFO() at 0x100fd291c

ab_jfunc__Fv() at 0x100fca480

ab_extri__Fv() at 0x1004113c4

ab_xevent__FPCUs() at 0x100aa1068

ab_dstep() at 0x10069b3d8

dynpmcal() at 0x100d5fbbc

dynppai0() at 0x100d5d190

dynprctl() at 0x100d64f2c

dynpen00() at 0x100d56e14

Thdynpen00() at 0x1000e3c98

TskhLoop() at 0x1000e5bfc

ThStart() at 0x10010095c

DpMain() at 0x101571e64

nlsui_main() at 0x101a9f6e8

List of ABAP programs affected

Index Typ Program Group Date Time Size Lang.

0 Prg /VIRSA/ZVFAT 0 23.03.2008 12:07:43 254976 E

1 Prg SAPMSSYD 0 30.11.2006 10:06:06 21504 E

2 Prg SAPFSYSCALLS 0 09.09.2004 14:18:32 8192 E

3 Typ /VIRSA/ZFFUSERS 0 23.04.2007 20:29:13 12288

4 Typ /VIRSA/ZVIRFFIDS 0 23.04.2007 20:29:15 3072

5 Prg %_CCXTAB 0 18.02.2005 14:15:08 5120 E

6 Typ SCXTAB_CONTROL 0 18.05.2004 14:07:29 6144

7 Typ RFCHOSTS 0 10.07.1993 02:33:30 2048

8 Typ UINFO 0 01.12.1999 12:17:58 4096

9 Typ CVERS 0 09.11.2000 14:05:49 2048

10 Typ MSXXLIST 0 07.12.2000 13:34:00 3072

11 Prg SAPLSRFC 11 07.02.2006 10:16:57 37888 E

12 Prg SAPLTHFB 12 10.02.2008 02:29:48 394240 E

13 Typ MSXXLIST_V6 0 13.02.2005 18:20:27 4096

14 Prg SAPMSSY0 14 10.02.2008 02:29:48 92160 E

15 Prg SAPLSPIAGENTCW 15 18.06.2007 16:48:07 13312 E

16 Prg SAPLSPILS 16 10.02.2008 02:29:48 64512 E

17 Prg CL_OS_TRANSACTION_END_NOTIFIERCP 17 05.07.2005 13:05:25 9216 E

18 Prg CL_SYSTEM_TRANSACTION_STATE===CP 18 10.02.2008 02:29:47 106496 E

19 Prg SAPLICON 19 10.02.2008 02:56:31 16384 E

20 Prg %_CICON 19 10.02.2008 02:52:32 10240 E

21 Typ ICONT 0 30.11.2006 10:01:19 2048

22 Prg SAPFSPOR 0 12.08.2007 14:21:34 2048 E

23 Prg SAPLSCNT 23 18.02.2005 14:16:06 30720 E

24 Typ DYCBOX 0 20.08.1998 11:16:53 30720

25 Prg SAPLSVSM 25 18.02.2005 14:16:06 28672 E

26 Prg SAPLSGUI 26 10.02.2008 02:29:48 84992 E

27 Prg SAPLSTTM 27 05.07.2005 13:10:18 69632 E

28 Prg SAPLSBDC 28 10.02.2008 02:12:42 44032 E

29 Prg CL_DATAPROVIDER===============CP 29 28.02.2005 21:00:46 2048 E

30 Prg %_CCNTL 29 18.02.2005 14:15:08 17408 E

31 Typ OBJ_RECORD 0 14.02.1998 08:30:43 2048

32 Prg SAPLSTUP 32 10.02.2008 02:10:26 485376 E

33 Prg SAPLCNDP 33 09.02.2008 23:39:49 195584 E

34 Prg SAPSHDTV 23 05.01.2005 16:26:16 33792 E

35 Typ SHDSTU 0 14.12.1998 23:15:34 2048

36 Typ SHDSTCIU 0 14.12.1998 23:15:34 2048

37 Prg SAPFGUICNTL 0 18.02.2005 14:15:08 24576 E

38 Prg SAPLOLEA 38 09.05.2007 22:12:32 96256 E

39 Prg SAPLSFES 39 10.02.2008 02:56:37 260096 E

40 Prg SAPLSPLUGIN 40 09.09.2004 14:18:36 39936 E

41 Typ ARFCRDATA 0 13.02.2005 18:20:24 11264

42 Prg SAPLGRFC 42 13.02.2005 18:20:25 17408 E

43 Typ SWCBCONT 0 15.11.2000 17:55:11 126976

44 Typ OLE_VERBS 0 04.04.1995 16:02:20 2048

45 Typ OLE_PA 0 04.04.1995 16:02:19 2048

46 Prg CL_GUI_PROPS_CONSUMER=========CP 46 18.02.2005 14:15:08 30720 E

47 Typ EUDB 0 06.11.2003 20:28:08 8192

48 Prg CL_DYNAMIC_GUI_EXTENSIONS=====CP 48 18.02.2005 14:15:28 37888 E

49 Prg CL_GUI_DATAMANAGER============CP 49 05.07.2005 13:10:15 75776 E

50 Prg CL_ABAP_CHAR_UTILITIES========CP 50 05.07.2005 13:10:15 13312 E

51 Typ /VIRSA/ZFFCONFIG 0 23.04.2007 20:29:13 2048

52 Typ /VIRSA/ZVIRFFPWD 0 23.04.2007 20:29:15 2048

53 Prg SAPLSUSO 53 10.02.2008 02:29:52 96256 E

54 Prg CX_SY_DYN_CALL_ILLEGAL_TYPE===CP 54 05.07.2005 13:10:16 13312 E

55 Typ SCX_SRCPOS 0 18.05.2004 14:07:11 2048

56 Prg CX_SY_DYN_CALL_PARAMETER_ERRORCP 56 05.07.2005 13:10:16 12288 E

57 Prg CX_SY_DYN_CALL_ERROR==========CP 57 05.07.2005 13:10:16 11264 E

58 Prg CX_DYNAMIC_CHECK==============CP 58 05.07.2005 13:10:16 10240 E

59 Prg CX_ROOT=======================CP 59 18.06.2007 16:09:01 11264 E

60 Prg CX_NO_CHECK===================CP 60 05.07.2005 13:10:16 10240 E

61 Prg CX_SY_NO_HANDLER==============CP 61 05.07.2005 13:10:16 10240 E

62 Typ SYST 0 09.09.2004 14:18:12 31744

63 Prg CL_GUI_CONTROL================CP 63 28.02.2005 21:03:09 112640 E

64 Prg CL_GUI_OBJECT=================CP 64 09.02.2008 23:41:36 376832 E

65 Prg IF_CACHED_PROP================IP 63 18.02.2005 14:12:55 5120 E

66 Typ RSPARINT 0 10.04.1995 09:58:38 4096

Directory of Application Tables

Name Date Time Lngth

Val.

Program /VIRSA/ZVFAT

SYST . . : : 00004612

\0\0\0\0\0\x0001\0\x0001\0\0\0\0\0\0\0\0\0\0\0\0\0\x0001\0

Program SAPLICON

ICONT . . : : 00000130

E@08@Green Light; Go; Okay

Program SAPSHDTV

SHDSTU . . : : 00000106

SHDSTCIU . . : : 00000100

Program CL_GUI_PROPS_CONSUMER=========CP

EUDB . . : : 00004068

%C00024000480C6DB84DCF0275E1008000AC1B8201 \0\0\0

ABAP Control Blocks (CONT)

Index Name Fl PAR0 PAR1 PAR2 PAR3 PAR4 PAR5 PAR6 Source Code Line

5618 CLEA 00 0152 /VIRSA/ZVFAT 2938

5619 SETS 02 0000 018C 0000 /VIRSA/ZVFAT 2939

5621 BRAX 00 0007 /VIRSA/ZVFAT 2940

5622 perf 00 003B /VIRSA/ZVFAT 2941

5623 PERP 80 0002 /VIRSA/ZVFAT 2941

5624 PERP 80 C000 /VIRSA/ZVFAT 2941

5625 PERP 80 C001 /VIRSA/ZVFAT 2941

5626 mvqk 10 0080 04BE 0040 /VIRSA/ZVFAT 2942

5628 FUNC 00 9324 /VIRSA/ZVFAT 2944

5629 FUNC 00 0242 /VIRSA/ZVFAT 2944

5630 PAR2 02 0000 0123 0054 /VIRSA/ZVFAT 2944

5632 PAR2 02 0000 00FE 005D /VIRSA/ZVFAT 2944

>>>>> FUNC 10 0011 /VIRSA/ZVFAT 2944

5635 FUNC 81 01D2 /VIRSA/ZVFAT 2944

5636 FUNC 82 0001 /VIRSA/ZVFAT 2944

5637 FUNC 81 01D3 /VIRSA/ZVFAT 2944

5638 FUNC 82 0002 /VIRSA/ZVFAT 2944

5639 FUNC 81 01D4 /VIRSA/ZVFAT 2944

5640 FUNC 82 0003 /VIRSA/ZVFAT 2944

5641 FUNC 81 01D5 /VIRSA/ZVFAT 2944

can anybody please help me in solving this problem.

Regards,

Faisal

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member184114
Active Contributor
0 Kudos

I have solved it by myself. Actually, there was a bug in the standart SAP Program. My ABAPer has rectified it.

Its Virsa RTA 5.1

Hope this piece of inof is useful to you all

Former Member
0 Kudos

Hi Faisal,

We are encountering same issue. Can you tell how do you resolve the error? We would appreciate your response. Thanks.

Best Regards,

Philip