Functionality This module displays an existing note. You can display notes in eitherthe SAPscript Editor or print preview format onscreen. If you want print preview format, you must select the parameter PREVIEW= 'X'. If you want the SAPscript Editor display option, you simplydeactivate this checkbox (PREVIEW = SPACE). Example CALL FUNCTION "RH_NOTE_DISPLAY" EXPORTING INFOTYPE = P1001 PREVIEW = 'X' EXCEPTIONS INTERNAL_ERROR = 1 ILLEGAL_INFOTYPE = 2 NOTE_NOT_FOUND = 3 NO_AUTHORITY = 4. If no note is allowed for an infotype (table T77NT), the exceptionILLEGAL_INFOTYPE is generated. If no note exists for the infotypespecified, the exception NOTE_NOT_FOUND is generated. The exception INTERNAL_ERROR is always returned if an internal functioncall returns a technical error. The exception NO_AUTHORITY is generated if the user does not have therequired for an infotype. If you do not want this check to be made, youmust enter 'X' in the parameter NO_AUTHORITY_CHECK.' Further information For more information, refer to the documentation of thefunction group>. |