‎2007 Apr 30 8:45 PM
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
‎2007 Apr 30 8:48 PM
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.
‎2007 Apr 30 8:48 PM
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.
‎2007 Apr 30 8:54 PM
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
‎2007 Apr 30 8:56 PM
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.
‎2007 Apr 30 9:02 PM
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?
‎2007 Apr 30 9:17 PM
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
‎2007 Apr 30 9:24 PM
* 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.
‎2007 Apr 30 9:41 PM