2008 Feb 06 4:26 AM
Hi
Is there any Function Module to create an entry or update the record in ESERVICE table . I have got the VERTRAG (point of delivery id) and I have to create a record or update an existing records. So please tell me if any?
Thanks and regards
Balbir Singh
2008 Feb 06 4:34 AM
Use these FMs to create or change or delete the ESERVICE table.
ISU_DB_ECHANGE_SERVICE_INSERT
ISU_DB_ECHANGE_SERVICE_DELETE
ISU_DB_ECHANGE_SERVICE_SELECT
Please reward points if it helps
Regards,
Shiv
2008 Feb 06 8:04 AM
Hi,
you can use the BOR-Object ISUNBSERVC (Method Create).
Regards,
Alexander
2008 Feb 06 8:10 AM
You can use ISU_S_NBSERVICE_CREATE this FM to create an entry IN Eservice....
Populate X_auto structure
xy_auto-eserviced_use = 'X'.
xy_auto-eserviced-mandt = sy-mandt.
xy_auto-eserviced-int_ui = pointofdelivery.
xy_auto-eserviced-vertrag = space.
xy_auto-eserviced-sparte = division.
xy_auto-eserviced-service = servicetype.
xy_auto-eserviced-serviceid = serviceprovider.
xy_auto-eserviced-service_start = startdate.
xy_auto-eserviced-service_end = '99991231'.
x_no_dialog = 'X'
x_upd_online = 'X'
x_keydate = startdate
x_vertrag = space
Allot Points if it helps
Regards,
Shiv