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

RFC_ERROR_SYSTEM_FAILURE: Error in ASSIGN: Memory protection error.

Former Member
0 Likes
458

HI,

I need an urgent help in this error. I am getting this error, while i am trying to access the R3 from portal. i.e While saving the employee info.

ESS -> PERSONAL INFO -> PROJECT EXP-> SAVE (dump)

error msg in portal

Error while saving: com.sap.mw.jco.JCO$Exception: (104)

RFC_ERROR_SYSTEM_FAILURE: Error in ASSIGN: Memory protection error.

Please contact administrator.

FIELD-SYMBOLS <KEY> STRUCTURE PAKEY DEFAULT INFTY_TAB.

FIELD-SYMBOLS <CTRL> STRUCTURE PSHD1 DEFAULT INFTY_TAB.

LOOP AT INFTY_TAB.

ASSIGN INFTY_TAB+3 TO <KEY>. " Skip MANDT-field <-- error while exe this statement

end loop.

HI,

I need an urgent help in this error. I am getting this error, while i am trying to access the R3 from portal. i.e While saving the employee info.

ESS -> PERSONAL INFO -> PROJECT EXP-> SAVE (dump)

error msg in portal

Error while saving: com.sap.mw.jco.JCO$Exception: (104)

RFC_ERROR_SYSTEM_FAILURE: Error in ASSIGN: Memory protection error.

Please contact administrator.

FIELD-SYMBOLS <KEY> STRUCTURE PAKEY DEFAULT INFTY_TAB.

FIELD-SYMBOLS <CTRL> STRUCTURE PSHD1 DEFAULT INFTY_TAB.

LOOP AT INFTY_TAB.

ASSIGN INFTY_TAB+3 TO <KEY>. " Skip MANDT-field <-- error while exe this statement

end loop.

1 REPLY 1
Read only

Former Member
0 Likes
417

Just try below Field-sumbiol statement might be it will solve ur problem.

FIELD-SYMBOLS <KEY> TYPE ANY.

FIELD-SYMBOLS <CTRL> TYPE ANY.

LOOP AT INFTY_TAB.

ASSIGN INFTY_TAB+3 TO <KEY>. " Skip MANDT-field <-- error while exe this statement

end loop.