SAP for Utilities Discussions
Connect with fellow SAP users to share best practices, troubleshoot challenges, and collaborate on building a sustainable energy future. Join the discussion.
cancel
Showing results for 
Search instead for 
Did you mean: 

Print Workbench tool

Former Member
0 Kudos

Hi guru's,

newly i Print workbench objects, i con't understand the scenario of the Form class, Application form, User exit include, User top include and how can pass the data from Application form to smartfrom.

how can we enhance the user top include and user exit include.

Plea let me know the full information with example (if its possible)

Regards,

sri.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

in ecc6 the procedure adopted in efrm is as follows

1.efrm t code

type the application form name u wish 2 activate

click enter

in the next screen click activate button

2.for creating a new form

gv ur form name ex ZIS_U_WA_ORDER_DOWNLOAD

and click in menu bar copy from client

copy from 000 to ur client id

and u can see in the next screen all forms and application forms created in new name starting with z...

and save in english

thats it in the ecc6 version

differnece between sapcripts and smartforms are based on client depenedecies

smartforms areclient dependent and sap scriots are clienct independent

coloured logos can be made in smart forms not in sap scripts

smart forms is always easier since it s the advanced of sapscript concept..

foor more clear differnce contacta technical consultant near u

thanks ans regards

prince

View solution in original post

4 REPLIES 4

Former Member
0 Kudos

Hi

in ecc6 the procedure adopted in efrm is as follows

1.efrm t code

type the application form name u wish 2 activate

click enter

in the next screen click activate button

2.for creating a new form

gv ur form name ex ZIS_U_WA_ORDER_DOWNLOAD

and click in menu bar copy from client

copy from 000 to ur client id

and u can see in the next screen all forms and application forms created in new name starting with z...

and save in english

thats it in the ecc6 version

differnece between sapcripts and smartforms are based on client depenedecies

smartforms areclient dependent and sap scriots are clienct independent

coloured logos can be made in smart forms not in sap scripts

smart forms is always easier since it s the advanced of sapscript concept..

foor more clear differnce contacta technical consultant near u

thanks ans regards

prince

Former Member
0 Kudos

PWB : Form class is a Template or a class or an object .

We will enhance this object by creating Application form.(Ex: Badi we are implementing rite).

Start-Exit : We will initialize the objects....Like clearing the variables like this

End Exit : We write code for creating a flat file or RDI file

Next there are three main user exits for our Business Scenarios

Don't write Select queries in PWB, most of the data it will come by running the application form. Select the node and see the structure it will come data through these structures. If you are not finding your required fields then write the select query.

Before Loop: if you want to modify your internal table before loop you can modify in this user exit.

After Loop: Final internal table population

During Loop: For multiple entries for example your node is Table it will have multiple entries. You want that data or you want to manuplate this data you can use this user-exits.

Regards,

Shiva Kumar

Former Member
0 Kudos

Create global internal tables in the Top iclude.

create same internal tables in the smart form --> Global interface ->Import and export and tables parameters.

Data will come automatically.

Regards,

Shiva Kumar

Former Member
0 Kudos

thanks for answer