Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Upload Logo

Former Member
0 Kudos

How can i upload a logo in SAP Script.?

Is there any function module to convert the amount in words with paise.? (i.e) for example 10.50 as "Rupees ten and fifty paise only".

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi vennila,

Logo can be uploaded through the transaction SE78(SAp graphics management.

SPELL_AMOUNT is the function module to convert the amount in words.

Regards,

Sharath

7 REPLIES 7

GauthamV
Active Contributor
0 Kudos

hi vennila,

u can upload logo from legacy to sap using SE78.

after tht now u can load this logo into ur script by creating a graphic window and insert ur logo.

u can convert amount into words using function module

'SPELL_AMOUNT'.

<removed by moderator>

Edited by: Mike Pokraka on Aug 4, 2008 9:13 AM

Former Member
0 Kudos

Thanks a lot for all your replys.

Former Member
0 Kudos

Hi vennila,

Logo can be uploaded through the transaction SE78(SAp graphics management.

SPELL_AMOUNT is the function module to convert the amount in words.

Regards,

Sharath

former_member226999
Contributor
0 Kudos

Your logo should be in TIF format and load it using the SE78 transaction.

Display the logo by including it in the SAP script using the include statement.

use SPELL_AMOUNT function to spell the amount.

hope it helps.

FY

<removed by moderator>

Edited by: Mike Pokraka on Aug 4, 2008 9:13 AM

Former Member
0 Kudos

GOTO SE78, upload your logo in SE78..

Come back to your SApscript, goto the window you want to place the logo, menu, insert --> graphics and give the name of the logo that you have uploaded.

CALL FUNCTION 'HR_IN_CHG_INR_WRDS'

check the sample code

DATA : AMT_IN_WORDS(200).

CALL FUNCTION 'HR_IN_CHG_INR_WRDS'

EXPORTING

AMT_IN_NUM = '99999999999'

IMPORTING

AMT_IN_WORDS = AMT_IN_WORDS

EXCEPTIONS

DATA_TYPE_MISMATCH = 1

OTHERS = 2.

WRITE : AMT_IN_WORDS

Regards

Kiran Sure

Former Member
0 Kudos

Former Member
0 Kudos

Thanks a lot for your replys.