‎2006 May 24 5:09 PM
Hi All
when i checking EPC and Code Inspector for the given prgram, i am getting following error msgs.
<b>Syntax check warning</b>
This warning is only displayed in SLIN
In "SELECT SINGLE ...", the WHERE condition for the key field "AUFNR" does not
test for equality. Therefore, the single record in question is possibly not
unique.
(The message can be hidden with "#EC *)
Row: 76
Syntax check warning
This warning is only displayed in SLIN
In "SELECT SINGLE ...", the WHERE condition for the key field "AUFNR" does not
test for equality. Therefore, the single record in question is possibly not
unique.
(The message can be hidden with "#EC *)
&----
*& TABLES
&----
TABLES: AUFK, "Order master data
VIQMEL, "Notification Header
KNA1, "General Data in Customer Master
IHPA, "Plant Maintenance: Partners
PMCO, "Cost structure of maintenance order
T003O, "Order Types
T001W, "Plant
AFKO. "Order header data PP orders
&----
*& TYPE POOLS
&----
TYPE-POOLS SLIS. "Global types for generic building blocks
&----
*& PROGRAM VARIABLES
&----
DATA: G_COL TYPE I, "Column position for fieldcat
G_REVENUE LIKE PMCO-WRT00, "Revenues
G_ACTCOST LIKE PMCO-WRT01, "Actual Costs
G_PLCOST LIKE PMCO-WRT02, "Plan Costs
lv_lines type i.
&----
*& STRUCTURES
&----
DATA: I_FIELDCATTAB_WA TYPE SLIS_FIELDCAT_ALV, "Fieldcat Work Area for ALV
I_TITLE_WA TYPE SLIS_LISTHEADER, "Title Work Area for ALV
GT_LAYOUT TYPE SLIS_LAYOUT_ALV. "Layout Settings for Color
&----
*& INTERNAL TABLES
&----
Internal table of plants for auth check
DATA: BEGIN OF it_plant OCCURS 0,
werks like t001w-werks,
END OF it_plant.
" Internal table containing AUFK table contents
DATA I_AUFKTAB LIKE AUFK OCCURS 0 WITH HEADER LINE.
" Internal table containing final data for the Report screen
DATA: BEGIN OF I_FINTAB OCCURS 0,
AUFNR LIKE AUFK-AUFNR,
KTEXT LIKE AUFK-KTEXT,
KUNUM LIKE VIQMEL-KUNUM,
NAME1 LIKE KNA1-NAME1,
I_PARNR LIKE IHPA-PARNR,
WRT00 LIKE PMCO-WRT00,
WRT01 LIKE PMCO-WRT01,
USER4 LIKE AUFK-USER4,
WRT02 LIKE PMCO-WRT01,
PROFIT(10) TYPE P DECIMALS 2,
PROFITP(5) TYPE P DECIMALS 2,
GSTRP LIKE AFKO-GSTRP,
LINE_COL(4) TYPE C,
END OF I_FINTAB.
" Internal table containing PMCO table contents
DATA: I_PMCO LIKE PMCO OCCURS 0 WITH HEADER LINE,
" Internal table containing final data for the Report screen
" with selection screen criteria
I_FINALTAB LIKE I_FINTAB OCCURS 0 WITH HEADER LINE,
" Fieldcat Internal table for ALV
I_FIELDCATTAB TYPE SLIS_T_FIELDCAT_ALV ,
" Title Internal table for ALV
I_TITLE TYPE SLIS_T_LISTHEADER .
&----
*& SELECT-OPTIONS
&----
SELECT-OPTIONS: S_AUFNR FOR AUFK-AUFNR, "Job Number
S_KTEXT FOR AUFK-KTEXT, "Job Description
S_KUNUM FOR VIQMEL-KUNUM, "Customer Number
S_NAME1 FOR KNA1-NAME1, "Customer Name
S_PARNR FOR IHPA-PARNR NO INTERVALS
NO-EXTENSION MATCHCODE OBJECT USER_COMP, "Supervisor
S_WRT00 FOR PMCO-WRT00 , "Actual Costs
S_WRT01 FOR PMCO-WRT01 , "Plan Costs
S_USER4 FOR AUFK-USER4 , "Estimated Costs
S_WRT02 FOR PMCO-WRT02, "Revenues
S_PROFIT FOR PMCO-WRT03 , "Profit
S_PROFP FOR PMCO-WRT04 NO INTERVALS
NO-EXTENSION, "Profit %
S_GSTRP FOR AFKO-GSTRP, "Period of Time
S_WERKS FOR AUFK-WERKS, "Plant
S_AUART FOR AUFK-AUART. "Order Type
***********************************************************************
AT SELECTION-SCREEN
***********************************************************************
Event which occurs each time the user hits enter on the selection
screen.
AT SELECTION-SCREEN.
perform plant_authorization_check.
perform validate_select_options.
***********************************************************************
START-OF-SELECTION
***********************************************************************
START-OF-SELECTION.
"Retrieves the data from the table AUFK into internal table I_AUFKTAB
PERFORM SUB_SELECTION_AUFKTAB.
"Final Internal table containing the report fields
PERFORM SUB_SELECTION_FINALTAB.
"Defining the fieldcatalog to be used for the report
PERFORM SUB_FIELDCAT_BUILD.
"Define the Top-Of-Page contents
PERFORM SUB_FIELDCAT_TITLE.
"Mapping the internal table I_FINALTAB with fieldcat
PERFORM SUB_FIELDCAT_DISPLAY.
&----
*& Form SUB_SELECTION_AUFKTAB
&----
Retrieves the data from the table AUFK into internal table I_AUFKTAB
----
FORM SUB_SELECTION_AUFKTAB.
SELECT AUFNR KTEXT USER4 OBJNR INTO CORRESPONDING FIELDS OF TABLE I_AUFKTAB
FROM AUFK
FOR ALL ENTRIES IN it_plant
WHERE AUFNR IN S_AUFNR AND
KTEXT IN S_KTEXT AND
WERKS IN S_WERKS AND
AUART IN S_AUART AND
USER4 IN S_USER4 AND
werks eq it_plant-werks.
ENDFORM. "SUB_SELECTION_AUFKTAB
&----
*& Form SUB_SELECTION_FINALTAB
&----
Final Internal table containing the report fields
----
FORM SUB_SELECTION_FINALTAB.
LOOP AT I_AUFKTAB.
I_FINTAB-AUFNR = I_AUFKTAB-AUFNR.
I_FINTAB-KTEXT = I_AUFKTAB-KTEXT.
I_FINTAB-USER4 = I_AUFKTAB-USER4.
SELECT SINGLE * FROM IHPA WHERE OBJNR = I_AUFKTAB-OBJNR AND PARVW = 'AG' .
IF SY-SUBRC = 0.
"Retrieving customer number from VIQMEL into final internal table
I_FINTAB-KUNUM = IHPA-PARNR.
ENDIF.
SELECT SINGLE * FROM KNA1 WHERE KUNNR = I_FINTAB-KUNUM .
IF SY-SUBRC = 0.
"Retrieving customer name from KNA1 into final internal table
I_FINTAB-NAME1 = KNA1-NAME1.
ENDIF.
SELECT SINGLE * FROM IHPA WHERE OBJNR = I_AUFKTAB-OBJNR AND PARVW = 'VU'.
IF SY-SUBRC = 0.
"Retrieving supervisor from IHPA into final internal table
I_FINTAB-I_PARNR = IHPA-PARNR.
ENDIF.
"Clearing the internal table contents I_PMCO
CLEAR I_PMCO[].
SELECT * FROM PMCO INTO TABLE I_PMCO WHERE OBJNR = I_AUFKTAB-OBJNR.
CLEAR: G_REVENUE,G_ACTCOST,G_PLCOST.
LOOP AT I_PMCO .
"Calculating the Plancosts, Actual Costs and Revenues depending on Type
"and Category
IF I_PMCO-BELTP = '2' .
G_REVENUE = G_REVENUE + I_PMCO-WRT00 + I_PMCO-WRT01 + I_PMCO-WRT02 +
I_PMCO-WRT03 + I_PMCO-WRT04 + I_PMCO-WRT05 + I_PMCO-WRT06 + I_PMCO-WRT07 +
I_PMCO-WRT08 + I_PMCO-WRT09 + I_PMCO-WRT10 + I_PMCO-WRT11 + I_PMCO-WRT12 +
I_PMCO-WRT13 + I_PMCO-WRT14 + I_PMCO-WRT15 + I_PMCO-WRT16.
ENDIF.
IF I_PMCO-BELTP = '1' and I_PMCO-WRTTP = '04'.
G_ACTCOST = G_ACTCOST + I_PMCO-WRT00 + I_PMCO-WRT01 + I_PMCO-WRT02 +
I_PMCO-WRT03 + I_PMCO-WRT04 + I_PMCO-WRT05 + I_PMCO-WRT06 + I_PMCO-WRT07 +
I_PMCO-WRT08 + I_PMCO-WRT09 + I_PMCO-WRT10 + I_PMCO-WRT11 + I_PMCO-WRT12 +
I_PMCO-WRT13 + I_PMCO-WRT14 + I_PMCO-WRT15 + I_PMCO-WRT16.
ELSEIF I_PMCO-BELTP = '1' and I_PMCO-WRTTP = '01'.
G_PLCOST = G_PLCOST + I_PMCO-WRT00 + I_PMCO-WRT01 + I_PMCO-WRT02 +
I_PMCO-WRT03 + I_PMCO-WRT04 + I_PMCO-WRT05 + I_PMCO-WRT06 + I_PMCO-WRT07 +
I_PMCO-WRT08 + I_PMCO-WRT09 + I_PMCO-WRT10 + I_PMCO-WRT11 + I_PMCO-WRT12 +
I_PMCO-WRT13 + I_PMCO-WRT14 + I_PMCO-WRT15 + I_PMCO-WRT16.
ENDIF.
ENDLOOP.
SELECT SINGLE * FROM AFKO WHERE AUFNR = I_AUFKTAB-AUFNR.
" Retrieving the time period.
IF SY-SUBRC = 0.
I_FINTAB-GSTRP = AFKO-GSTRP.
ENDIF.
I_FINTAB-WRT00 = G_ACTCOST.
I_FINTAB-WRT01 = G_PLCOST.
I_FINTAB-WRT02 = G_REVENUE.
IF G_REVENUE < '0.00'.
G_REVENUE = - G_REVENUE.
I_FINTAB-WRT02 = G_REVENUE.
ENDIF.
I_FINTAB-PROFIT = I_FINTAB-WRT02 - I_FINTAB-WRT00.
IF I_FINTAB-WRT02 IS INITIAL.
I_FINALTAB-PROFITP = 0.
ELSE.
I_FINTAB-PROFITP = I_FINTAB-PROFIT * 100 / I_FINTAB-WRT02.
ENDIF.
APPEND I_FINTAB.
CLEAR I_FINTAB.
ENDLOOP.
" Moving to final internal table for the corresponding selection screen values.
LOOP AT I_FINTAB WHERE WRT00 IN S_WRT00 AND WRT01 IN S_WRT01 AND WRT02 IN S_WRT02
AND PROFIT IN S_PROFIT AND GSTRP IN S_GSTRP AND KUNUM IN S_KUNUM AND NAME1 IN S_NAME1
AND I_PARNR IN S_PARNR.
I_FINALTAB = I_FINTAB.
APPEND I_FINALTAB.
CLEAR I_FINALTAB.
ENDLOOP.
" Final Internal Table is empty
IF ( I_FINALTAB[] IS INITIAL ).
MESSAGE S010.
ENDIF..
" Color handling depending on the Profit Percentage
LOOP AT I_FINALTAB.
IF I_FINALTAB-PROFITP < S_PROFP-LOW.
I_FINALTAB-LINE_COL = 'C610'.
ELSE.
I_FINALTAB-LINE_COL = 'C300'.
ENDIF.
MODIFY I_FINALTAB.
CLEAR I_FINALTAB.
ENDLOOP.
" Default sort order - Order Number
SORT I_FINALTAB BY AUFNR.
ENDFORM. "SUB_SELECTION_FINALTAB
&----
*& Form SUB_FIELDCAT_BUILD
&----
Defining the fieldcatalog to be used for the report
----
FORM SUB_FIELDCAT_BUILD.
PERFORM SUB_FIELDCAT USING '' 'AUFNR' text-001 G_COL 'X'.
ADD 1 TO G_COL.
PERFORM SUB_FIELDCAT USING '' 'KTEXT' text-002 G_COL ''.
ADD 1 TO G_COL.
PERFORM SUB_FIELDCAT USING '' 'KUNUM' text-003 G_COL ''.
ADD 1 TO G_COL.
PERFORM SUB_FIELDCAT USING '' 'NAME1' text-004 G_COL ''.
ADD 1 TO G_COL.
PERFORM SUB_FIELDCAT USING '' 'I_PARNR' text-005 G_COL ''.
ADD 1 TO G_COL.
PERFORM SUB_FIELDCAT USING '' 'WRT00' text-006 G_COL ''.
ADD 1 TO G_COL.
PERFORM SUB_FIELDCAT USING '' 'WRT01' text-007 G_COL ''.
ADD 1 TO G_COL.
PERFORM SUB_FIELDCAT USING '' 'USER4' text-008 G_COL ''.
ADD 1 TO G_COL.
PERFORM SUB_FIELDCAT USING '' 'WRT02' text-009 G_COL ''.
ADD 1 TO G_COL.
PERFORM SUB_FIELDCAT USING '' 'PROFIT' text-010 G_COL ''.
ADD 1 TO G_COL.
PERFORM SUB_FIELDCAT USING '' 'PROFITP' text-011 G_COL ''.
ADD 1 TO G_COL.
ENDFORM. "SUB_FIELDCAT_BUILD
&----
*& Form SUB_FIELDCAT
&----
Defining the fields in the fieldcatalog used for the report
----
--> L_TABNAME : Table name for the fieldcat
--> L_FNAME : Field name for the fieldcat
--> L_SEL : Field Description for the fieldcat
--> L_COL : Column position for the fieldcat
--> L_KEY : Key for the fieldcat
----
FORM SUB_FIELDCAT USING L_TABNAME TYPE SLIS_TABNAME
L_FNAME TYPE SLIS_FIELDNAME
L_SEL TYPE DD03P-SCRTEXT_L
L_COL TYPE I
L_KEY TYPE C.
I_FIELDCATTAB_WA-REF_TABNAME = L_TABNAME.
I_FIELDCATTAB_WA-FIELDNAME = L_FNAME.
I_FIELDCATTAB_WA-SELTEXT_L = L_SEL.
I_FIELDCATTAB_WA-COL_POS = L_COL.
I_FIELDCATTAB_WA-KEY = L_KEY.
APPEND I_FIELDCATTAB_WA TO I_FIELDCATTAB.
ENDFORM. " SUB_FIELDCAT
&----
*& Form SUB_FIELDCAT_DISPLAY
&----
Mapping the internal table I_FINALTAB with fieldcat
----
FORM SUB_FIELDCAT_DISPLAY.
GT_LAYOUT-ZEBRA = 'X'.
GT_LAYOUT-DETAIL_POPUP = ' '.
GT_LAYOUT-INFO_FIELDNAME = 'LINE_COL'.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
I_CALLBACK_PROGRAM = 'ZPSPAR12_SER_ORD'
IT_FIELDCAT = I_FIELDCATTAB
I_CALLBACK_TOP_OF_PAGE = 'TOP_OF_PAGE'
IS_LAYOUT = GT_LAYOUT
I_SAVE = 'A'
TABLES
T_OUTTAB = I_FINALTAB
EXCEPTIONS
PROGRAM_ERROR = 1
OTHERS = 2.
ENDFORM. "SUB_FIELDCAT_DISPLAY
&----
*& Form SUB_FIELDCAT_TITLE
&----
Define the Top-Of-Page contents
----
FORM SUB_FIELDCAT_TITLE.
I_TITLE_WA-TYP = 'H'.
I_TITLE_WA-INFO = text-014.
APPEND I_TITLE_WA TO I_TITLE.
I_TITLE_WA-TYP = 'S'.
I_TITLE_WA-KEY = text-012.
I_TITLE_WA-INFO = SY-UNAME.
APPEND I_TITLE_WA TO I_TITLE.
I_TITLE_WA-TYP = 'S'.
I_TITLE_WA-KEY = text-013.
I_TITLE_WA-INFO0(2) = SY-DATUM6(2).
I_TITLE_WA-INFO+2(1) = '.'.
I_TITLE_WA-INFO3(2) = SY-DATUM4(2).
I_TITLE_WA-INFO+5(1) = '.'.
I_TITLE_WA-INFO6(4) = SY-DATUM0(4).
APPEND I_TITLE_WA TO I_TITLE.
ENDFORM. "SUB_FIELDCAT_TITLE
&----
*& Form TOP_OF_PAGE
&----
TOP-OF-PAGE
----
FORM TOP_OF_PAGE.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
IT_LIST_COMMENTARY = I_TITLE.
ENDFORM. "TOP_OF_PAGE
INCLUDE ZPSPAR12_FORMS_F01.
‎2006 May 24 5:11 PM
Hi Chinna,
Those are Syntax Errors Related to EPC and we can ignore those errors as they will not effect the Functionality of the Program.
Regards,
Santosh
‎2006 May 24 5:20 PM
Hi Santosh
Thanks,
But when i am doing code Inspector
i am getting <b>following 3 errors</b> .
can u go through it ones.
This check examines the WHERE condition of the SELECT statement for accesses to non-buffered tables according to the criteria below.JOINs are not processed; accesses that bypass the table buffer are not taken into consideration either.
SELECT statement does not contain any WHERE condition.
WHERE condition does not contain any field of a table index.
WHERE condition does not contain any first field of a table index.
Despite the addition ' 'CLIENT SPECIFIED', no client field in the WHERE condition.
Table does not exist or has no nametab entry.
The priority of a message depends on the size category of the table that is accessed.
Thanks& Regards
Chinna
‎2006 May 24 5:25 PM
These are NOT ERRORS, just warnings.
Looks like you are doing a SELECT SINGLE either without a WHERE clause or with a WHERE clause where the entire KEY of the table is not considered. Then there is no guarantee that there will be only unique row.
When you use CLIENT SPECIFIED option, you should have MANDT IN THE WHERE CLAUSE, probably MANDT = SY-MANDT.
Regards,
Ravi
NOte : Please mark the helpful answers
‎2006 May 24 5:35 PM
Hi Ravi
canu u give me some more explanation for this,
because when i ran this prg for runtime analysis it's taking 67.3% for Database.
How to reduce it to less than 50% for dataselection.
Thanks&Regards'
Chinna
‎2006 May 25 1:47 AM
Hi,
1. I can see that you have a SELECT statement with ALL ENTRIES but you are not chekcing the contents of the table before the SELECT.
Have this condition before select.
if NOT IT_TAB[] is initial.
SELECT .... FOR ALL ENTRIES
endif.
If you don't do this, you will end up getting all the entries from the table you are selecting, if the Internal table is empty.
Also, quite few SELECTS with *, select only this fields which you need.
Make sure you have added all the WHERE clauses that you can.
Regards,
Ravi
Note : Please mark all the helpful answers
‎2006 May 26 9:51 AM
Hi
Even i did the above changes to my code, it's giving still <b>performance issues</b>.
How to comeout from this ..
Thanks
Chinna
‎2006 May 26 9:56 AM
Do a run time analysis and also ST05 to find out which parts of the program is taking more time and look at that section.
Regards,
Ravi
Note :Please mark all the helpful answers
‎2006 May 26 10:24 AM
Hi Ravi
Actually this program working fine.
but wee are trying for reeduce atleast time.
when io run SE30 it's give Execution time in mseconds
abap : 32.2%
Database: 61.8%
system: 6.0%
Thanks
Chinna
‎2006 May 26 10:31 AM
Switch on the TRACE in St05, run the program and analyze the trace to find out which part of the program is taking more time, you can easily point out then which PERFORM / section of code is taking more time and fix that part.
Regards,
Ravi
Note : Please mark the helpful answers
‎2006 May 26 10:43 AM
Hi Chinna,
1. avoid 'select *' statements in ur program, please fetch only the required fields
2. u can also avoid fetching data in the loop, instead u can use "for all entries"
‎2006 May 26 10:55 AM
Ravi
Plz see this code after change.
SELECT * FROM PMCO INTO TABLE I_PMCO WHERE OBJNR = I_AUFKTAB-OBJNR.
SELECT SINGLE * FROM PMCO WHERE OBJNR = I_AUFKTAB-OBJNR.
CLEAR: G_REVENUE,G_ACTCOST,G_PLCOST.
LOOP AT I_PMCO .
"Calculating the Plancosts, Actual Costs and Revenues depending on Type
"and Category
IF I_PMCO-BELTP = '2' .
G_REVENUE = G_REVENUE + I_PMCO-WRT00 + I_PMCO-WRT01 + I_PMCO-WRT02 +
I_PMCO-WRT03 + I_PMCO-WRT04 + I_PMCO-WRT05 + I_PMCO-WRT06 + I_PMCO-WRT07 +
I_PMCO-WRT08 + I_PMCO-WRT09 + I_PMCO-WRT10 + I_PMCO-WRT11 + I_PMCO-WRT12 +
I_PMCO-WRT13 + I_PMCO-WRT14 + I_PMCO-WRT15 + I_PMCO-WRT16.
ENDIF.
IF I_PMCO-BELTP = '1' and I_PMCO-WRTTP = '04'.
G_ACTCOST = G_ACTCOST + I_PMCO-WRT00 + I_PMCO-WRT01 + I_PMCO-WRT02 +
I_PMCO-WRT03 + I_PMCO-WRT04 + I_PMCO-WRT05 + I_PMCO-WRT06 + I_PMCO-WRT07 +
I_PMCO-WRT08 + I_PMCO-WRT09 + I_PMCO-WRT10 + I_PMCO-WRT11 + I_PMCO-WRT12 +
I_PMCO-WRT13 + I_PMCO-WRT14 + I_PMCO-WRT15 + I_PMCO-WRT16.
ELSEIF I_PMCO-BELTP = '1' and I_PMCO-WRTTP = '01'.
G_PLCOST = G_PLCOST + I_PMCO-WRT00 + I_PMCO-WRT01 + I_PMCO-WRT02 +
I_PMCO-WRT03 + I_PMCO-WRT04 + I_PMCO-WRT05 + I_PMCO-WRT06 + I_PMCO-WRT07 +
I_PMCO-WRT08 + I_PMCO-WRT09 + I_PMCO-WRT10 + I_PMCO-WRT11 + I_PMCO-WRT12 +
I_PMCO-WRT13 + I_PMCO-WRT14 + I_PMCO-WRT15 + I_PMCO-WRT16.
ENDIF.
ENDLOOP.
Pls see this changes.
Thanks
Chinna.T