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

Smartforms error

Former Member
0 Likes
1,044

Hi,

When I activate my smart form , I am getting the following error

"Width of the line type %LTYPE 1 does not correspond to total table width"

What is the default value and what value should I give ?

Thanks,

Ram

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,021

In the Table tab of your Table node, the line type's total width has to add up to the same width that is declared in the Table Width field.

7 REPLIES 7
Read only

Former Member
0 Likes
1,022

In the Table tab of your Table node, the line type's total width has to add up to the same width that is declared in the Table Width field.

Read only

0 Likes
1,021

Thanks Matt for your quick reply

Could you pls let me know how to check width in the Table width field ?

If I a correct,

The Table width field can be found right above the Line Type(%LTYPE). If I am correct, Table Width and Line Type width are same, but still I am getting the same error

Thanks,

Ram

Message was edited by:

Rambadri Madhavarao

Read only

0 Likes
1,021

The Table Width field is at the top of the Table tab of your Table node.

For example, if your line type has 3 columns of 4 CM each then the Table width must be 12 CM.

Read only

0 Likes
1,021

How many columns are in your line type? I ask because if you have more than 5, they won't all display. You need to click the black arrows to see all your columns.

Also, have you checked all of your table nodes?

Read only

0 Likes
1,021

Thanks Matt. I have 4 columns.

Matt, How can I call a function Module in se38.

How can I have to call function module (SSF_FUNCTION_MODULE_NAME) in SE38 ?

Thanks,

Ram

Message was edited by:

Rambadri Madhavarao

Read only

0 Likes
1,021
* Get the Function Module Name
  CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
       EXPORTING
            FORMNAME           = V_FORM_NAME
       IMPORTING
            FM_NAME            = V_FM_NAME
       EXCEPTIONS
            NO_FORM            = 1
            NO_FUNCTION_MODULE = 2
            OTHERS             = 3.
Read only

0 Likes
1,021

Thanks Matt for all your help.

Thanks,

Ram