九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
SAP CRM銷售訂單UI上的字段對應(yīng)的數(shù)據(jù)庫表存儲字段:requested start date和end date

Suppose you need to investigate which database table stores the value of Requested start date and end date:

You can just activate SQL trace via tcode ST05, make changes on either field, and save the change. Then display trace and search with keyword “update”:

You could find one record whose UPDATE statement contains the changed date you maintained in WebUI, which indicates the table SCAPPTSEG is what we are looking for.

When we browse this table in SE11, we didn’t know the relationship between APPT_GUID or APPL_GUID with the service order guid.

We can click the display source code button in ST05:

And set a breakpoint on the very code where the table is updated. From the callstack we can know the function module CRM_DATES_UPDATE_DU is updating this table.

Perform where used list on CRM_DATES_UPDATE_DU and we can get CRM_DATES_SAVE_OB,

then CRM_DATES_SAVE_EC:

In this function, we can know the relationship between appl_guid and service order guid:

I use a simple report below to illustrate the process how to get requested start and end date starting from Service order guid:

REPORT zdisplay_request_date.PARAMETERS: guid TYPE crmt_object_guid OBLIGATORY DEFAULT '00163EA720041EE19BB780506245F081'.DATA: lt_dates TYPE STANDARD TABLE OF scapptseg,      lv_link  TYPE crmd_link-guid_set.START-OF-SELECTION.  SELECT SINGLE guid_set INTO lv_link FROM crmd_link WHERE guid_hi = guid AND objtype_set = '30'.  IF sy-subrc <> 0.    WRITE: / 'no requested data maintained'.    RETURN.  ENDIF.  SELECT * INTO TABLE lt_dates FROM scapptseg WHERE appl_guid = lv_link.  READ TABLE lt_dates ASSIGNING FIELD-SYMBOL(<start>) WITH KEY appt_type = 'SRV_CUST_BEG'.  IF sy-subrc = 0.    WRITE: / 'requested start: ' , <start>-tst_from.  ENDIF.  READ TABLE lt_dates ASSIGNING FIELD-SYMBOL(<end>) WITH KEY appt_type = 'SRV_CUST_END'.  IF sy-subrc = 0.    WRITE: / 'requested end: ' , <end>-tst_from.  ENDIF.

Note: “30” means object name “APPOINTMENT”, you can find the relationship from this table CRMC_OBJECTS:

本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊舉報(bào)
打開APP,閱讀全文并永久保存
猜你喜歡
類似文章
面向服務(wù)架構(gòu)(SOA)吐血整理
如何在高并發(fā)分布式系統(tǒng)中生成全局唯一Id
crm2011創(chuàng)建Lookup類型的字段
在標(biāo)準(zhǔn)實(shí)體特殊消息上注冊插件及Dynamics CRM 2015中計(jì)算字段的使用
升級本地部署的CRM到Dynamics 365及部分新特性介紹。
百日晨讀第134天:要求REQUESTS
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服