Application Development and Automation 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: 
Read only

sap script problem : qm certficate changes in driver program are not reflecting in sap script output

Former Member
0 Likes
1,270

Hi,

I am told to make changes in sap script of qm. so i copy sap script :QM_QCERT_01 and print program RQCAAP00. Now i need to add another table value

qamv and qase. I changed print program but changes are not there in sap script.

7 REPLIES 7
Read only

Former Member
0 Likes
1,127


Hi,

Whatever changes you did in driver program then same fields should be populate in script then only it will display in the output. so pass the fields in write_form function module from driver program and populate the fields in script.

Thanks,

Sree

Read only

0 Likes
1,127

hi,

but write form function module is already there in program , thing is that even if i comment the whole print program output is coming

Read only

0 Likes
1,127

can we convert  value inhexadecimal to decimal of sap script

Read only

Former Member
0 Likes
1,127

Hi ,

It is not necessary (or indeed possible) to pass the fields to your SAPscript once they're added to the print program, and you can check in the form if they are available.

Go into the Text element for the Page Window you want to update then choose Include -> Symbols -> Program Symbols.  In the pop-up add your print program (it may already be there) then choose either DDIC Fields or Global data, depending on how your new fields have been defined.  This will show you what fields are available in the form.

Regards,

Nick

Read only

0 Likes
1,127

hi now i found that i need a value which is in hexadecimal to be printed in sap script as decimal.

is there any conversion which can be in sap script.

Read only

0 Likes
1,127

i want  the logic to convert hexadecimal to decimal in sap script

Read only

0 Likes
1,127

Hi,

It is possible to call an ABAP subroutine from your SAPscript (which is will documented elsewhere).  I did a search on SDN for 'hex to decimal' and found loads of useful suggestions.

Regards,

Nick