cancel
Showing results for 
Search instead for 
Did you mean: 

Photos on the DELIVERY

Former Member
0 Kudos

Does anyone know if we can attach/store a photo image (jpeg/gif) to a delivery...

Feel free to share other ideas on how we could link a photo (photo of the actual shipment) to its delivery.

Regards,

Edited by: Anup Keswani on Apr 22, 2008 10:12 PM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello,

Go to settings --> services for objects --> you can attach any document here.

Prase

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi - this may be possible as I have seen Company Logos being pasted and then put on the outputs

your abap developer should be able to figure this out.

mandar_shete
Active Participant
0 Kudos

Hi Anup,

Basically in SAP or any DB there is a concept of BLOB (Binary Larg Object). In SAP you can store images using transaction SMW0 (In Standard Menu = Tools -> Web Development -> Web Repository. Choose Binary Data for WEBRfc application).

Now about your question. There is no way you can show this image on Delivery unless and until you find some screen-exit for this. Atleast I am not aware of any screen-exit for Delivery.

The work arround coukd be as follows.

1. You (ABAPer) can create a Function Module <ZFUN> in which there will be a call to cutome screen (Module Pool Programing).

2. In this screen code for getting the image. For this activity you can refer standard SAP Codes given in DWDM transaction -> Picture Control -> Screen Display. OR in SE38 -> sap_picture_demo. Same way the developer has to code in the custom screen.

3. Upload all the required images using SMW0 and given the proper names.

E.g. M1, M2 etc.

4. In the user exit MV50AFZ1 -> USEREXIT_READ_DOCUMENT.

IF XLIKP-VBELN <> SPACE.

CALL FUNCTION MODULE <ZFUN> IN TASK <TASKNAME>

EXPORT VBELN = XLIKP-VBELN.

ENDIF.

So this statement will popup the screen in new session with Delivery No. as a Title and with the image store in the table WWWDATA with name as M1, M2 etc.

Regards,

Mandar