Shared Top Border

Enterprise Resource
Planning Portal

 

Advertise | Founder BLOG

ERPGenie.COM ABAP Tips and Tricks Database

THE ultimate
ERP website

 

Forums | Vote for us |

Google    Other Search Options

Home arrow Tips and Tricks arrow SAPScript / Smart forms
SAPScript / Smart forms
Introduction to SAP SmartForms PDF Print E-mail
User Rating: / 0
Written by Anon.   
Saturday, 29 December 2007

What is SAP Smart Forms?
SAP Smart Forms is introduced in SAP Basis Release 4.6C as the tool for creating and maintaining forms. 

SAP Smart Forms allow you to execute simple modifications to the form and in the form logic by using simple graphical tools; in 90% of all cases, this won't include any programming effort. Thus, a power user without any programming knowledge can 
configure forms with data from an SAP System for the relevant business processes.

Read more...
 
Transporting Objects and Standard Text PDF Print E-mail
User Rating: / 2
Written by Anon.   
Thursday, 13 December 2007

SAP currently provide two standard programs for you to transport the standard texts.

RSTXSCRP - SAPscript Export to Dataset/ SAPscript Import from Dataset

RSTXTRAN - Transfer of SAPscriptTexts to a Correction

4.6c
In
SE10, tick the followings :-

  • Customizing requests

  • Workbench requests

  • Transport of copies

  • Modifiable

  • Released

  • Hit Enter and a changed request lists will be displayed (click Releaseddirectly button or press F9)

STMS - Transport request from Developerto Production (depending on your company settings)

  • Import Overview

  • Double the Target System

  • Select the request to transport and click Import request or Ctrl + F11

Read more...
 
Convert SAPSCRIPT into SMARTFORMS PDF Print E-mail
User Rating: / 3
Written by Anon.   
Monday, 17 September 2007
SAP provides a conversion for SAPscript into SMARTforms.

There are two way through which you can convert sapscript into smartforms.


(1)
This is basically a function module, called FB_MIGRATE_FORM.

You can start this function module by hand (via SE37), or create a small ABAP which migrates all SAPscript forms automatically.

(2)
You can also do this one-by-one in transaction SMARTFORMS, under
Utilities -> Migrate SAPscript form.
You could also write a small batch program calling transaction SMARTFORMS and running the migration tool.


Note :

While Converting sapscript into smartforms,only layout has passed.But you have do all logic coding in your smartforms.

Steps :

(1) Understand logic of sapscript program.
(2) Understand SAP script windows data.

Now make your technical Design Accordingly,and now do code accordingly for your smartforms.
 
Introduction to SAP SmartForms PDF Print E-mail
User Rating: / 1
Written by Anon.   
Thursday, 02 August 2007

What is SAP Smart Forms?
SAP Smart Forms is introduced in SAP Basis Release 4.6C as the tool for creating and maintaining forms. 

SAP Smart Forms allow you to execute simple modifications to the form and in the form logic by using simple graphical tools; in 90% of all cases, this won't include any programming effort. Thus, a power user without any programming knowledge can 
configure forms with data from an SAP System for the relevant business processes.

Read more...
 
Smartform to Mail as PDF attachment PDF Print E-mail
User Rating: / 1
Written by Anon.   
Tuesday, 17 July 2007
Read more...
 
Standard SAP Script Form names PDF Print E-mail
User Rating: / 0
Written by P. Renjith Kumar   
Wednesday, 30 May 2007
Here you can find some standard SAP Script form names :
Last Updated ( Tuesday, 04 November 2008 )
Read more...
 
How To copy SAP Scripts between clients PDF Print E-mail
User Rating: / 5
Written by P. Renjith Kumar   
Friday, 18 May 2007
Here you can find how to copy SAP Scripts between different clients :
Last Updated ( Sunday, 20 May 2007 )
Read more...
 
How do we debug Smartform ? PDF Print E-mail
User Rating: / 8
Written by Anon.   
Sunday, 01 April 2007

In the Smartform, create a Code Node and within the Code Node you can hardcode a normal abap break Point.

 
Form Control PDF Print E-mail
User Rating: / 1
Written by Anon.   
Friday, 30 March 2007
  • To branch to a new page
  • Line in SMARTFORM
  • Difference between form interface and global definitions
  • Functional module name of smartform
  • Inserting Logo in SmartForm
Read more...
 
Difference with SMARTFORMS vs. SapScript(SE71) PDF Print E-mail
User Rating: / 4
Written by Anon.   
Thursday, 29 March 2007

The Following are the differences :-

  1. Multiple page formats are possible in smartforms which is not the case in SAPScripts
  2. It is possible to have a smartform without a main window .
  3. Labels cannot be created in smartforms.
  4. Routines can be written in smartforms tool.
  5. Smartforms generates a function module when activated.

 

 
Smartforms function module not saved in development class PDF Print E-mail
User Rating: / 1
Written by Anon.   
Thursday, 29 March 2007

Smart forms whose function module was generated is not saved in a development class. Is it anything to do with / name space.  When I transported the martforms only the layout went but not function module. How could this be resolved?

That is because the Function module is not transported. It is regenerated on the Target System as a new function module all together. You can transport the smartform from SE01.

 
Additional Fonts for your SMARTFORMS PDF Print E-mail
User Rating: / 1
Written by Anon.   
Thursday, 29 March 2007

You can create additional fonts and style with transaction SMARTSTYLES

This can then be defined in the paragraph and character formats, which you can then assign to texts and fields in the Smart Form.

The character formats includes effects such as superscript, subscript, barcode and font attributes.

Last Updated ( Sunday, 20 May 2007 )
 
5 Steps to create a simple SMARTFORMS PDF Print E-mail
User Rating: / 6
Written by Anon.   
Thursday, 29 March 2007
Read the abap program in step 5 first to see how the data is begin pass to the internal table.
  1. Create a new smartforms
  2. Define looping process for internal table
  3. Define table in smartforms
  4. To display the data in the form
  5. Calling SMARTFORMS from your ABAP program
Read more...
 
What About SAPscript? PDF Print E-mail
User Rating: / 0
Written by Anon.   
Thursday, 29 March 2007

SAP customers can use either SAPScript or Smart Forms as their SAP forms solution. SAP recommends you use Smart Forms for new developments (from 4.6C), because these forms are much easier to edit when using the Smart Forms graphical tools. Also, further development is planned for the Smart Form print solution.

For example, the customer can use a preconfigured Smart Form for the Purchase Order, and a SAPscript form for the Production Order (if no suitable Smart Form is available), or create the Smart Form.

While unnecessary, a user’s prior knowledge of SAPScript forms can accelerate their Smart Forms learning because some tools are used both by Smart Forms and SAPscript (for example, font maintenance transaction SE73, SAPScript texts, and more).

Also check out Adobe interactive forms or even Duet (the Microsoft office integration piece) 

 
Calling SMARTFORMS from your ABAP program PDF Print E-mail
User Rating: / 2
Written by Anon.   
Wednesday, 28 March 2007
Calling SMARTFORMS from your ABAP program. Collecting all the table data in your program, and pass once to SMARTFORMS
Declare your table type in :-
  • Global Settings -> Form Interface
  • Global Definintions -> Global Data
  • Main Window -> Table -> DATA
Last Updated ( Thursday, 29 March 2007 )
Read more...
 
<< Start < Prev 1 2 Next > End >>

Results 1 - 15 of 22

Google Search

Google Ads

Shared Bottom Border

Contact Us | Polls | Add URL | Contribute | Privacy | Terms | Feedback

Discussion Forum | BLOG | Consultants: Post your resume | Companies: Advertise on ERPGenie.COM | Post Job
Financials Consultant | Consultant Review | Gallia Consulting | Supply Chain Project | SAP Financials Forum
GenieHoldings.COM, Inc. | Genie Press | WorkflowGenie | ESAGenie | ERPTopSites | ABAP Tips and Tricks | SAP Solutions Database

EDIGenie | Searching Survivor