Commit e4764dc8 authored by Quxl's avatar Quxl

x

parent 515ba093
......@@ -59,6 +59,8 @@ public class ConfirmQuotationServiceImpl implements ConfirmQuotationService {
RESPONSE res = Z_MT_SD_008_SO_CONFIRM_QUOTATION.getRESPONSE();
HEADER h = res.getHEADER();
header.put("MSGTYPE", h.getMSGTYPE());
header.put("MSGTXT", h.getMSGTXT());
header.put("BSTKD_E", h.getBSTKD_E());
header.put("VBELN", h.getVBELN());
header.put("VKORG", h.getVKORG());
......
......@@ -75,6 +75,8 @@ public class Z_MT_SD_008_SO_CONFIRM_QUOTATION {
@XmlType(name = "HEADER")
@XmlAccessorType(XmlAccessType.FIELD)
public static class HEADER {
String MSGTYPE;
String MSGTXT;
String BSTKD_E;
String VBELN;
String VKORG;
......@@ -283,6 +285,22 @@ public class Z_MT_SD_008_SO_CONFIRM_QUOTATION {
DPFLAG = dPFLAG;
}
public String getMSGTYPE() {
return MSGTYPE;
}
public void setMSGTYPE(String mSGTYPE) {
MSGTYPE = mSGTYPE;
}
public String getMSGTXT() {
return MSGTXT;
}
public void setMSGTXT(String mSGTXT) {
MSGTXT = mSGTXT;
}
}
@XmlType(name = "ITEM_DATA")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment