‎2010 May 22 2:28 PM
Hi,
I have declared one parameter:
SELECTION-SCREEN COMMENT 1(31) TEXT-026 FOR FIELD P_COMQTY.
PARAMETERS: P_COMQTY type SY-TABIX DEFAULT 10000.
SELECTION-SCREEN END OF LINE.
I am than using this parameter in one include , but its showing syntax error in include that P_COMQTY does not exist , I have alreay activated program and include . how I can remove this error.
‎2010 May 22 4:15 PM
Hi,
The include command is placed before the parameter in the program? If yes, can you put it after parameter ?
Can you put some lines of code?
Best regards,
Leandro Mengue
‎2010 May 22 4:15 PM
Hi,
The include command is placed before the parameter in the program? If yes, can you put it after parameter ?
Can you put some lines of code?
Best regards,
Leandro Mengue
‎2010 May 24 5:02 AM
Hi,
The include command is placed after after parameter.
SELECTION-SCREEN BEGIN OF BLOCK BVAR WITH FRAME.
PARAMETERS: P_VARI LIKE DISVARIANT-VARIANT.
SELECTION-SCREEN END OF BLOCK BVAR.
INCLUDE YSD9G_PROFCENTER_UPDATE_F01.
‎2010 May 24 5:17 AM
Hi,
Try the below code:
SELECTION-SCREEN : BEGIN OF LINE,
COMMENT 1(31) TEXT-026 FOR FIELD P_COMQTY.
PARAMETERS : P_COMQTY type SY-TABIX DEFAULT 10000.
SELECTION-SCREEN : END OF LINE.
Regards
Shruti
‎2010 May 24 5:27 AM
It is giving syntax error . Plz tell me some othere method . Parameter is used like this .
IF P_COMQTY IS INITIAL.
P_COMQTY = 10000.
ENDIF.
‎2010 May 24 1:58 PM
Hi,
Where is P_COMQTY in this your code???
SELECTION-SCREEN BEGIN OF BLOCK BVAR WITH FRAME.
PARAMETERS: P_VARI LIKE DISVARIANT-VARIANT.
SELECTION-SCREEN END OF BLOCK BVAR.The "PARAMETERS P_COMQTY ... " is placed in the include ? If yes, try to put it in the master program (below "parameters p_vari")
Best regards,
Leandro Mengue
‎2010 May 22 11:21 PM