亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用Java在SAP C4C里創建銷售訂單

發布時間:2021-12-29 16:23:58 來源:億速云 閱讀:143 作者:iii 欄目:開發技術

本篇內容介紹了“怎么使用Java在SAP C4C里創建銷售訂單”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

需要創建的銷售訂單的明細通過硬編碼指定:

比如銷售訂單的描述為Jerry Test 2019-1-23 16:05PM

怎么使用Java在SAP C4C里創建銷售訂單

執行之后,看到Status Code 201,說明創建成功:

怎么使用Java在SAP C4C里創建銷售訂單

到UI上能看到成功創建的銷售訂單:

怎么使用Java在SAP C4C里創建銷售訂單

實現代碼:

package odata;import java.io.IOException;import java.io.UnsupportedEncodingException;import java.net.URI;import org.apache.http.HttpEntity;import org.apache.http.HttpHost;import org.apache.http.HttpResponse;import org.apache.http.client.ClientProtocolException;import org.apache.http.client.HttpClient;import org.apache.http.client.config.RequestConfig;import org.apache.http.client.methods.HttpGet;import org.apache.http.client.methods.HttpPost;import org.apache.http.entity.StringEntity;import org.apache.http.impl.client.HttpClientBuilder;public class SimpleOrderCreator {    private final String SERVICEURL = "https://my5000jerry.c4c.saphybriscloud.cn/sap/c4c/odata/cust/v1/zjerrysalesorder/CustomerQuoteCollection";
    HttpClient m_httpClient;    private HttpClient getHttpClient() {        if (this.m_httpClient == null) {            this.m_httpClient = HttpClientBuilder.create().build();
        }        return this.m_httpClient;
    }    
    private String getCSRFToken(){        final HttpGet get = new HttpGet(SERVICEURL);
        get.setHeader("Authorization", "Basic 0FOR0pFUlJZMTpTYXB0ZXN0MQ==");
        get.setHeader("x-csrf-token", "fetch");
        HttpHost proxy = new HttpHost("proxy.sha.sap.corp", 8080, "http");
        RequestConfig config = RequestConfig.custom().setProxy(proxy).build();
        get.setConfig(config);
        HttpResponse response;
        String token = null;        try {
            response = getHttpClient().execute(get);            /*Header[] header = response.getAllHeaders();
            for( int i =0; i < header.length; i++){
                System.out.println("Header: " + header[i].getValue());
            }*/
            token = response.getFirstHeader("x-csrf-token").getValue();
            System.out.println("token: " + token);
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException | UnsupportedOperationException e) {
            e.printStackTrace();
        }        return token;
    }    
    private void createSO(String token,String body) {        final HttpPost post = new HttpPost(
                URI.create(SERVICEURL));
        post.setHeader("Authorization",                "Basic 0FOR0pFUlJZMTpTYXB0ZXN0MQ==");
        post.setHeader("Content-Type", "application/json");
        post.setHeader("X-CSRF-Token", token);
        HttpEntity entity = null;        try {
            entity = new StringEntity(body);
        } catch (UnsupportedEncodingException e) {            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        post.setEntity(entity);
        HttpResponse response = null;        try {
            response = getHttpClient().execute(post);
        } catch (ClientProtocolException e) {            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        System.out.println("Response statusCode for Batch => "
                + response.getStatusLine().getStatusCode());
    }    
    public static void main(String[] args) {
        SimpleOrderCreator tool = new SimpleOrderCreator();
        String token = tool.getCSRFToken();
        String body = "{" + 
    "\"Name\": \"Jerry Test 2019-1-23 16:05PM\"," + 
    "\"TypeCode\": \"2059\"," + 
    "\"BuyerID\":\"ee\"," + 
    "\"PartyID\":\"60102\", " + 
    "\"CustomerQuoteText\":[{" + 
        "\"Text\": \"test comment by Jerry Wang\", " + 
        "\"TypeCode\": \"10024\"" + 
    "}]," + 
    "\"CustomerQuoteItem\":[{ " + 
        "\"ProductID\": \"1042416\"" + 
    "}]," + 
    "\"CustomerQuoteItemProposal\":[{" + 
        "\"ProductUUID\": \"00163E72-09C6-1EE8-BBDC-AC5F0CB0D795\"," + 
        "\"Quantity\": \"1\"," + 
        "\"unitCode\": \"EA\"" + 
    "}]" + 
"}";
        
        tool.createSO(token, body);
    }
}

“怎么使用Java在SAP C4C里創建銷售訂單”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

将乐县| 托克逊县| 车致| 蕲春县| 永德县| 阿城市| 江都市| 监利县| 林周县| 晴隆县| 那坡县| 肥西县| 额济纳旗| 疏勒县| 万宁市| 信丰县| 大石桥市| 平武县| 巩留县| 淅川县| 潞城市| 姚安县| 行唐县| 辉县市| 赫章县| 碌曲县| 大厂| 遵化市| 嫩江县| 平利县| 灵丘县| 蒙阴县| 东乡县| 疏勒县| 巴楚县| 新竹县| 务川| 梁河县| 英德市| 阜南县| 莆田市|