2007 Aug 07 12:36 PM
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.
2007 Aug 07 12:45 PM
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.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |