We have added search box. Key in SAP issue keyword to search
TopBottom

Announcement: wanna exchange links? contact me at sapchatroom@gmail.com.

Re: [sap-dev] Serial Number in Table in Smartform

Posted by Admin at
Share this post:
Ma.gnolia DiggIt! Del.icio.us Yahoo Furl Technorati Reddit

Reply from chamalashankarreddy on Feb 8 at 5:52 AM
You have written the logic and doing increment of SNo and immediately clear
the variable. If I understood correctly in global you have declared a variable v_sno.

Use below code instead of this code

*Your code :*
data: v_sno type n.
v_sno = 1.
v_sno = v_sno + 1.
clear v_sno.

By doing clear v_sno your clearing the value of this. and nothing will
display in smartform.


*New code:*
data: lv_sno type n.
lv_sno = v_sno + 1.

move lv_sno to v_sno.
clear lv_sno.

Regards,
Shankar

---------------Original Message---------------
From: EsakkiMuthu
Sent: Friday, February 08, 2013 4:34 AM
Subject: Serial Number in Table in Smartform

Hi Everyone,

You declared in global definitions-- S_No Type N. Numeric contains-0 to 9

Please try this syntax

S_No type I.

I contains SY-TABIX values.

you will get the answer definitely.

Thank you

 
Reply to this email to post your response.
 
__.____._
Manage Settings | Unsubscribe | Create FAQ | Send Feedback
  
Copyright © 2013 Ziff Davis, Inc. and message author.
Ziff Davis, Inc. 28 E 28th Street New York, NY 10016
chamalashankarreddy  

SAP
 
Mark as helpful
View this online
Ask a new question
 
In the Spotlight
Toolbox.com for iPhone & Android: Ask Questions & Get Answers Anywhere. Download the Free App

_.____.__

0 comments:

Post a Comment

T r a n s l a t e to your language