2023 Jul 28 2:20 PM
Hello,
I have a requiremet to upload Multiple User signatures in SE78.
I have to mantain the signature for each SAP user.
Is there any program to do it. Can someone please help me out with a program hich will help to upload multiple user signatures. Also it should have the abilty to remove or add signure when a user leaves or joins.
Thank You.
2023 Jul 28 3:03 PM
"user signature" is not very clear, you mean images (whatever they contain).
There are a few answers already.
2023 Jul 28 3:10 PM
Hey sandra.rossi
"User Signatures" are images
I'd try to google but did not find any thing relavant. My requirement is to upload multiple images at a time.
It can be 1000 images too. Currently i am able to uploade one image at a time.
Can you please share me a program if you have any? which will help me solve my issue to upload multiple images at a time?
2023 Jul 28 3:14 PM
Let me search that for you.
That's the problem of searching "user signature", or search or say "QR code", instead of just searching or saying "image" or "picture", it makes it difficult to search and find.
How to create a QR code and show it in a Smartform | SAP Blogs
2023 Jul 28 3:35 PM
2023 Jul 28 3:37 PM
2023 Jul 28 4:01 PM
So, you don't want a program, you just want to do it via robot. Just create batch input. SHDB.
2023 Jul 28 4:01 PM
Anything you want to automate, not specific to SE78, use Batch Input, or SAP GUI Scripting, etc.
2023 Jul 28 4:16 PM
Ok let me elaborate my question
2023 Jul 28 4:31 PM
Use Batch Input. It takes 1 minute to do it (unless it's the first time you use it).
2023 Jul 28 4:32 PM
2023 Jul 28 7:48 PM
Too bad, unfortunately SAP has implemented Control Framework in SE78 which prevents it to be simulated via Batch Input. Either do it via SAP GUI Scripting, tweak it, or do it as I explained first (link to blog post with code).
Another solution of ABAP code (which in fact is same solution as in blog post, with a few less lines) is this, which you can then operate via Batch Input:
REPORT.
FIELD-SYMBOLS <g_stxbitmaps> TYPE stxbitmaps.
PERFORM dummy_dummy_dummy IN PROGRAM sapmssch IF FOUND.
ASSIGN ('(SAPMSSCH)G_STXBITMAPS') TO <g_stxbitmaps>.
<g_stxbitmaps>-tdobject = 'GRAPHICS'.
<g_stxbitmaps>-tdid = 'BMAP'.
<g_stxbitmaps>-tdbtype = 'BCOL'.
PERFORM graphic_import_bds IN PROGRAM sapmssch.
EDIT Aug 2nd, 2023: the code was buggy, I replaced 'BITMAP' with 'GRAPHICS'. Tested successfully.
2023 Jul 31 3:50 PM
If i create a BDC, for this upload images. How do i maintain the Transport Request for each images?
2023 Jul 31 4:26 PM
I don't get the point. Transport request is an input field and you can initialize it with Batch Input.
PS: BDC is the obsolete name of Batch Input.