Enterprise Resource Planning Blogs by Members
Gain new perspectives and knowledge about enterprise resource planning in blog posts from community members. Share your own comments and ERP insights today!
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member407594
Active Participant
Few days back I came across a requirement, to programmatically create and retrieve documents attached in GOS (Generic Object Services) via Stored business object. It took significant amount of time for me to do this. Thought sharing the solution might help someone who may come across this requirement.

I have tried to cover the scenario which I have solved with this. Any suggestions/improvements/modifications in this document are appreciated.

 

Prerequisite:

Business object, Object ID, Document type are the prerequisite for this process. To get these details, refer T-code OAC3.

 



 

A. Existing attachments to the material.

 



 

B. To create attachment:

Following are the function modules required to be executed for attaching the document.

  1. Use FM ARCHIVOBJECT_CREATE_FILE to generate document id.






A different ARCHIV_DOC_ID is generated every time FM is executed.

 

  1. Use FM ARCHIV_CONNECTION_INSERT to attach the document.


 



 



 

C. To fetch attachment:

Following are the function modules required to be executed to get the binary value of the attachment.

  1. Use FM ARCHIVOBJECT_GET_URI to get Archive document id i.e. ARC_DOC_ID.


This FM gives document id of the attachment which is required to be passed in next function module. Pass your Business object in OBJECTTYPE (e.g. BUS1001006 for Material Master, BUS2012 for Purchase Order) & object in OBJECT (e.g. Material code, Purchase order number).

 



 



 



 

  1. Use FM ARCHIVOBJECT_GET_TABLE to get binary value.


This function module takes ARC_DOC_ID as an input & gives the binary value of the attached document.



 

Pass Content repository to the ARCHIVE_ID, Document type to DOCUMENT_TYPE & get ARCHIV_DOC_ID from FM ARCHIVOBJECT_GET_URI.



This will give the binary value for the attachment.

 

If you want to download the file in ECC, you can call method cl_gui_frontend_services=>gui_download. With this method file can be downloaded in given path.

If you want to use this in Ui5 application, you can use FM "SCMS_BINARY_TO_XSTRING", which will convert binary value to XSTRING value. Ui5 developer can consume this Xstring value through Odata service.

 

Happy Learning!!! 🙂
23 Comments
Labels in this area