Interface BdcMessage
-
public interface BdcMessage
This class represents a single message returned by a transaction call. It largely corresponds with the SAP dictionary structureBDCMSGCOLL
This message can be translated into clear text by callingXbpInterface.getMessageText()
method
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEnv()
Get the BDC input activityString
getFieldName()
Get the BDC field nameString
getLanguage()
Get the language of the messageString
getMessageId()
Get the message idString
getMessageNumber()
Get the message numberString
getMessageType()
Get the message typeString
getMessageV1()
Get the first parameter of the messageString
getMessageV2()
Get the second parameter of the messageString
getMessageV3()
Get the third parameter of the messageString
getMessageV4()
Get the fourth parameter of the messageString
getModuleName()
Get the module nameString
getScreenNumber()
Get the screen numberString
getTransactionCode()
Get the transaction code
-
-
-
Method Detail
-
getTransactionCode
String getTransactionCode()
Get the transaction code- Returns:
- transaction code
-
getModuleName
String getModuleName()
Get the module name- Returns:
- name of the module
-
getScreenNumber
String getScreenNumber()
Get the screen number- Returns:
- screen number
-
getLanguage
String getLanguage()
Get the language of the message- Returns:
- language of the message
-
getMessageType
String getMessageType()
Get the message type- Returns:
- message type
-
getMessageId
String getMessageId()
Get the message id- Returns:
- message id
-
getMessageNumber
String getMessageNumber()
Get the message number- Returns:
- message number
-
getMessageV1
String getMessageV1()
Get the first parameter of the message- Returns:
- first parameter
-
getMessageV2
String getMessageV2()
Get the second parameter of the message- Returns:
- second parameter
-
getMessageV3
String getMessageV3()
Get the third parameter of the message- Returns:
- third parameter
-
getMessageV4
String getMessageV4()
Get the fourth parameter of the message- Returns:
- fourth parameter
-
getEnv
String getEnv()
Get the BDC input activity- Returns:
- BDC input activity
-
getFieldName
String getFieldName()
Get the BDC field name- Returns:
- BDC field name
-
-