How to eleminate #

RESPECTED ALL
I HAVE PREPARED INFOOBJECT OF CHAR(LENGTH 40) AND AT TRANSFORMATION LEVEL APPLY FORMULA
( IF MERKNER=120,PRUEFMBKT,") BY THIS FORMULA WHEN I AM SEEING THE OUTPUT IN THE REPORT, IT IS GIVING ME THE VALUE AND # SYMBOL. AND WHEN I AM PUTTING SOME KEYFIGURE IN COLUMN PANEL THE VALUE IS COMMING INFRONT OF THIS # SO THE TOTAL VISUAL EFFECT OF THE REPORT IS NOT UP TO THE MARK. I AM GETTING FOLLOWING SCENE
DESIRED VALUE----
BLANK
                       -------------------- 1236.00
BUT I WANT FOLLOWING SCENE
DESIRED VALUE -
1236.00
I DONT WANT THIS # HOW TO ELEMENATE THIS

Division by zero  : Means infinity value. For Ex: You have used a division operator in a formula and if denominator is zero.
Does not exist : If no value exists for a particular cell.
Num. overflow : If the value exceeds beyond the upper limit for a type.
Mixed values: The value is a sum of multiple values with different unit. For Ex: you are using addition of quantity or value with different unit of measure or curremcy.
No authorization: The user is not authorized to see the particular value. (defined based on the user role).

Similar Messages

  • How to eleminate repeated names when counting some names?

    how to eleminate repeated ip's when counting some ip's ?
    when I used a query select count(locaation_ip) from web_stats;
    getting result as 11
    but when I count manually total ip's are 9
    Is there any query for that?

    Most probably you are looking for something like select count(DISTINCT locaation_ip) from web_stats;

  • How to eleminate unused master data from Costing Run?

    Dear
    We have some material codes that we do not use for material type HALB & FERT. But they keep appearing in MM60 . what can be done to remove them from MM60?
    These unused materials appear in the costing run ck40n. They create costing error/ discrepancy etc. How to get rid of it? If I activate deletion flag for these materials will they stop appearing in costing run?
    Thanks
    Chandra

    Dear Chandra,
    1.MM60 is only a report for the list of materials and here if you include the check box for valuated materials then the system
    displays only the materials that have the accounting data,and for a proper list of materials I suggest you to fetch either from the
    table or else via a query using MARA,MARC.
    2.In case if you dont want to cost certain materials set the indicator on for do not cost in the costing 1 view of the material
    master.
    3.Also in my understanding CK40N will be run for the FERT materials and in this only the BOM component's HLAB and ROH
    materials will be normally included in the costing and the error come only for the BOM component's and related to operation.
    4.So instead of running it for the entire plant,input the Finishes products andf the plant combination and check the same,the no
    of errors may get reduced.
    Check with this and revert back.
    Regards
    Mangalraj.S

  • How to eleminate the co-releated Subquery to improve the query performance

    Please find the query below which takes long time to fetch the records.
    SQL> SET LINE 120
    SQL> EXPLAIN PLAN FOR select *
      2                 from KEMP_SRC a1
      3                 where ('MOFF' is null or eq_name = 'MOFF')
      4                       and
      5                         is_ad_hoc <> 1
      6                         and (pb_proc_id is null
      7                         or pb_proc_id in (select proc_id from KEMP_CONFIG where frequency_type <> -1)
      8                         )
      9                    and     KEMPUtility.DTTM(end_dt, end_tm) in      (select max(KEMPUtility.DTTM(end_dt, end_tm))
    10                                from KEMP_SRC a2
    11                                where a2.eq_name = a1.eq_name
    12                                and (a2.pb_proc_id = a1.pb_proc_id or (a2.pb_proc_id is null and a1.pb_proc_id is null))
    13                                and a2.is_ad_hoc <> -1 -- repeating case
    14                                group by eq_name, pb_proc_id
    15                                );
    Explained.
    SQL> SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY());
    PLAN_TABLE_OUTPUT
    Plan hash value: 2624956131
    | Id  | Operation             | Name                      | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT      |                           |     1 |    96 | 69399   (3)| 00:13:53 |
    |*  1 |  FILTER               |                           |       |       |            |          |
    |*  2 |   TABLE ACCESS FULL   | KEMP_SRC                  |  2896 |   271K|   124   (2)| 00:00:02 |
    |*  3 |   TABLE ACCESS FULL   | KEMP_CONFIG               |     1 |    26 |     2   (0)| 00:00:01 |
    |*  4 |    FILTER             |                           |       |       |            |          |
    |   5 |     HASH GROUP BY     |                           |     1 |    35 |   125   (3)| 00:00:02 |
    PLAN_TABLE_OUTPUT
    |*  6 |      TABLE ACCESS FULL| KEMP_SRC               |   364 | 12740 |   124   (2)| 00:00:02 |
    Predicate Information (identified by operation id):
       1 - filter(("PB_PROC_ID" IS NULL OR  EXISTS (SELECT /*+ */ 0 FROM
                  "KEMP_CONFIG" "KEMP_CONFIG" WHERE "PROC_ID"=:B1 AND
                  "FREQUENCY_TYPE"<>(-1))) AND  EXISTS (SELECT /*+ */ 0 FROM "KEMP_SRC" "A2" WHERE
                  "A2"."EQ_NAME"=:B2 AND ("A2"."PB_PROC_ID"=:B3 OR :B4 IS NULL AND "A2"."PB_PROC_ID" IS
                  NULL) AND "A2"."IS_AD_HOC"<>(-1) GROUP BY "EQ_NAME","PB_PROC_ID" HAVING
    PLAN_TABLE_OUTPUT
                  "KEMPUtility"."DTTM"(:B5,:B6)=MAX("KEMPUtility"."DTTM"("END_DT","END_TM"))))
       2 - filter("EQ_NAME"='BILAN_MAZOUT_BFOE' AND "IS_AD_HOC"<>1)
       3 - filter("PROC_ID"=:B1 AND "FREQUENCY_TYPE"<>(-1))
       4 - filter("KEMPUtility"."DTTM"(:B1,:B2)=MAX("KEMPUtility"."DTTM"("END_DT","END_TM")))
       6 - filter("A2"."EQ_NAME"=:B1 AND ("A2"."PB_PROC_ID"=:B2 OR :B3 IS NULL AND
                  "A2"."PB_PROC_ID" IS NULL) AND "A2"."IS_AD_HOC"<>(-1))
    28 rows selected.

    When i comment the reference to a1 in the subquery , then the cost drastically reduced .
    select *
      2                 from KEMP_SRC a1
      3                 where ('MOFF' is null or eq_name = 'MOFF')
      4                       and
      5                         is_ad_hoc != 1
      6                         and (pb_proc_id is null
      7                         or pb_proc_id in (select proc_id from KEMP_CONFIG where frequency_type  -1)
      8                         )
      9                    and     KEMPUtility.DTTM(end_dt, end_tm) in      (select max(KEMPUtility.DTTM(end_dt, end_tm))
    10                                from KEMP_SRC a2
    11                                where
                                                 -- a2.eq_name = a1.eq_name
    12                            --    and (a2.pb_proc_id = a1.pb_proc_id or (a2.pb_proc_id is null and a1.pb_proc_id is null))
    13                                --and
                                                 a2.is_ad_hoc != -1 -- repeating case
    14                                group by eq_name, pb_proc_id
    15                                );
    PLAN_TABLE_OUTPUT
    Plan hash value: 3739658629
    | Id  | Operation              | Name                      | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT       |                           |    78 |  8190 |   249   (3)| 00:00:03 |
    |*  1 |  FILTER                |                           |       |       |            |          |
    |*  2 |   HASH JOIN            |                           |   203 | 21315 |   249   (3)| 00:00:03 |
    |   3 |    VIEW                | VW_NSO_1                  |     7 |    63 |   125   (3)| 00:00:02 |
    |   4 |     HASH UNIQUE        |                           |     7 |   245 |   125   (3)| 00:00:02 |
    |   5 |      HASH GROUP BY     |                           |     7 |   245 |   125   (3)| 00:00:02 |
    PLAN_TABLE_OUTPUT
    |*  6 |       TABLE ACCESS FULL| KEMP_SRC               |  2896 |    98K|   124   (2)| 00:00:02 |
    |*  7 |    TABLE ACCESS FULL   | KEMP_SRC               |  2896 |   271K|   124   (2)| 00:00:02 |
    |*  8 |   TABLE ACCESS FULL    | KEMP_CONFIG |     1 |    26 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter("PB_PROC_ID" IS NULL OR  EXISTS (SELECT /*+ */ 0 FROM
                  "KEMP_CONFIG" "KEMP_CONFIG" WHERE "PROC_ID"=:B1 AND
                  "FREQUENCY_TYPE"<>(-1)))
    PLAN_TABLE_OUTPUT
       2 - access("$nso_col_1"="KEMPUTILITY"."DTTM"("END_DT","END_TM"))
       6 - filter("A2"."EQ_NAME"='BILAN_MAZOUT_BFOE' AND "A2"."IS_AD_HOC"<>(-1))
       7 - filter("EQ_NAME"='BILAN_MAZOUT_BFOE' AND "IS_AD_HOC"<>1)
       8 - filter("PROC_ID"=:B1 AND "FREQUENCY_TYPE"<>(-1))

  • How can I move mp3 files from trash to iTunes?

    I accidently moved a group of MP3 files (songs) from my iTunes to the trash.  After doing a little research, I saw the suggestion of creating a folder on my desktop and dragging them from the trash to the new desktop folder.  So, I did that, and as far as I can tell, the songs are all there, sitting in the folder.  But when I tried to drag the songs from the desktop folder to iTunes, I got this message:
    "Attempting to copy the disk Macintosh HD failed.  You do not have enough access privaleges for this operation."
    This makes no sense to me.  This is my private computer so I should have all the privaleges I need to do anything, right? And I'm not trying to copy the "disk Macintosh HD", right?
    Anyway, can you help me move the songs back into iTunes--or to the podcast so I can then move them to iTunes?  FYI, the songs have names like, "download 124.mp3" and the Kind is "mp3 Audio."  I originally got these songs via a podcast from a radio station (KCRW). I have iTunes 11.1.1. 
    Thanks!  

    ed2345,
    Thanks!  I did that and the songs are now back in my iTunes.  Some of the songs went back to the podcast and some went to the playlist. 
    UNFORTUNATELY, the songs did some sort of massive duplicating so that there are now over 100 duplicates of every episode/song (the podcast now has almost 36,000 episodes/songs and the playlist now has over 24,000 episodes/songs), and iTunes is viery slow/sluggish (spinning beach ball).  Can you tell me how to eleminate all of the duplicates?  

  • How to eliminate empty lines in Flat file.

    Hi All,
    How to delete the empty lines in flat file,i am explaining below with data
    Here we have 3 fields with field lengths 30,10,34  i am checking the condition in message mapping if the middle field containing 9999999999 i am deleting the total record but in output file i am getting empty line how to eleminate empy lines in file please suggest me is it possible through Content Convertion.
    Thanks,
    Sudheer.
    0500189175247200000500003141700000142888073108000009640566210000
    0500189175247200000500012449050000142889072908000009623017230000
    0500189175247200000500000496210000142890073008000009631840760000
    0500189175247200000500000162130000142891072808000009613028730000
    0500189175247200000500001356750000142892072908000009621443430000
    0500189175247200000500012982910000142893072908000009622158440000
    0500189175247200000500001380990000142894073008000009631876720000
    0500189175247200000500000074560000142895072808000009613904430000
    0500189175247200000500003351650000142896072908000009623005030000
    0500189175247200000500000061170000142898072808000009613026140000
    0500189175247200000500000060590000142900073008000009630862400000
    0500189175247200000500000155320000142901072908000009623234640000
    0500189175247200000500043425220000142903072808000009612752160000
    0500189175247200000500000517450000142904073108000009640911680000
    0500189175247200000500006901140000142905073008000009630927540000
    0500189175247200000500001565590000142906073008000009630938540000
    0500189175247200000500000210440000142907073108000009640765850000
    0500189175247200000500000187500000142908072908000009622980650000
    0500189175247200000500000069240000142909072908000009622980660000

    Hi,
    I think we could handle this with may be usage of Advanced UDF in Graphical mapping only.
    Here as per the condition you are deleting the particular record but unknowingly blank value i.e. " " is getting passed so on target side blank node is created for this record.
    You need to just avoid this blank Node.
    If you can share the logic you have applied for Middle field as well the source and target structure I will be able to try the UDF code..based on it
    Thanks
    swarup

  • Copy and paste problem  in JTextPane????

    Hello,
    Just I am tring copy and paste the following text in JTextPane (jdk1.3):
    "that�s right" I got "that[]s right"
    How to eleminate []???
    -redlotus

    Hello,
    The problem has been solved by over writing the � font.properties � file in jre/lib/� .
    The changes given as follows:
    # Exclusion Range info.
    # exclusion.dialog.0=0500-20ab,20ad-ffff
    # exclusion.dialoginput.0=0500-20ab,20ad-ffff
    # exclusion.serif.0=0500-20ab,20ad-ffff
    # exclusion.sansserif.0=0500-20ab,20ad-ffff
    # exclusion.monospaced.0=0500-20ab,20ad-ffff
    That is, we comment the lines having Red foreground color.

  • Code inspector error with exception

    I have below code :
    IF P_SUMM = C_ON.
       CALL FUNCTION 'ZSD_REPORT_HEADER'             "Write std Nike header
             EXPORTING
                  PROGRAM   =  V_PROGRAM
                  LINE_SIZE =  SY-LINSZ
                  RUN_DATE  =  V_DATE
                  RUN_TIME  =  V_TIME
                  TITLE_1   =  TEXT-025
                  TITLE_5   = '1424'
                  PAGE_NO   =  SY-PAGNO.
       IF SY-SUBRC <> 0.
         WRITE: 'Problem with ZSI_REPORT_HEADER'(019).
       ENDIF.
    However in the code inspector it is giving  error :
    Program ZSDR_TOP_ACC  Include ZSDR_TOP_ACC Row 988 Column 0
    No EXCEPTION to set SY_SUBRC Declared for CALL FUNCTION 'ZSI_REPORT_HEADER'
    Thus the value of SY-SUBRC is always 0
    Could you please suggest me how to eleminate error.  YOUR Helpis highy appreciated.
    Thanks in advance and happy new year.
    Code Formatted by: Alvaro Tejada Galindo on Jan 4, 2010 5:34 PM

    CALL FUNCTION 'ZSI_REPORT_HEADER'              
             EXPORTING
                  PROGRAM   =  V_PROGRAM
                  LINE_SIZE =  SY-LINSZ
                  RUN_DATE  =  V_DATE
                  RUN_TIME  =  V_TIME
                  TITLE_1   =  TEXT-016
                  TITLE_5   = '1425'
                  PAGE_NO   =  SY-PAGNO
    *ADD Exceptions even the FM does not have exceptions.
              EXCEPTIONS
                  OTHERS    = 1.
        IF SY-SUBRC NE 0.
          WRITE: 'Problem with ZSI_REPORT_HEADER'(028).
        ENDIF.
    We can add exception like above even though the exception was not declared in Function module.

  • Jafa log file is suplicated each time the process is run

    Hi all,
    I am trying to create a file logger,,Following is part of my coding.
    Now I can see the log file being created. However my problem is that every time I run the process the log is appended to the test.log file correctly. But the problem is that it also create test.log.1, test.log.2.. etc files each time the process is run. It will be great if anyone advise me how to eleminate these extra files being generated each time. I need just one log file to be genereted and all the logs to be appended to it.
    boolean append = true;
    FileHandler handler = new FileHandler(test.log);
    SimpleFormatter simpleFormatter = new SimpleFormatter();
    handler.setFormatter(simpleFormatter);
    logger.addHandler(handler);Thanks in adavance

    Are you saying that it is creating new logs AND appending to the other one? That doesn't seem quite right.

  • Java log file is duplicated for each run.

    Hi all,
    I am trying to create a file logger,,Following is part of my coding.
    Now I can see the log file being created. However my problem is that every time I run the process the log is appended to the test.log file correctly. But the problem is that it also create test.log.1, test.log.2.. etc files each time the process is run. It will be great if anyone advise me how to eleminate these extra files being generated each time. I need just one log file to be genereted and all the logs to be appended to it.
    boolean append = true;
    FileHandler handler = new FileHandler(test.log);
    SimpleFormatter simpleFormatter = new SimpleFormatter();
    handler.setFormatter(simpleFormatter);
    logger.addHandler(handler);Thanks in adavance

    could some one please help me out on this.

  • Table maintenence

    what is the use for table maintenence generator and where wil we use
    plzz.
    and also how to eleminate duplicate entries in internal table ?

    the purpose of table maintainence generator is to enable the table maintenance through SM30, and to implement and validation etc on table field inputs.
    Here are the steps to create the table maitenance generator for a ZTable :-
    1.SE11.
    2.CHOOSE TABLE.
    3.UTILITIES--->TABLE MAINT GENERATOR.
    4.AUTH GRP : W/O AUTH.
    5.FUNCTION GRP: PROJ DEPENDENT (SEE CREATE FUNC GROUP).
    6.MAINT TYPE : 2 STEP.
    7.MAINT. SCR NO. : CLICK APPL BUTTON | FIND SCR. NUMBER(S) |
    8.CHOOSE PROPOSE SCREEN NO FROM POPUP.
    9.REMEMBER OVERVIEW SCR NO.
    10.CLICK CREATE BUTTON ON APPL TOOL BAR.
    11.CLICK SAVE ON FUNC TOOL BAR.
    12.GO TO SE93. TO CREATE TRANSACTION CODE.
    13.WRITE SUTIABLE TRAN NAME..CLICK CREATE
    14.CHOOSE TRANSACTION WITH PARAMETERS(LAST).
    15.FILL SHORT TEXT.
    16.OK
    17.TRANSACTION : SM30.
    18.CHECK SKIP INITAL SCREEN CHKBOX
    19.SCREEN NO : FROM STEP 9.
    20.IN TABLE BELOW
    NAME OF SCREEN FIELD VALUE.
    VIEWNAME [TABLENAME]
    UPDATE X
    21.SAVE
    22.RUN TRAN CODE IN COMMAND BOX.
    tcode is SM30
    also see this
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8129f164-0a01-0010-2a8e-8765287250fc
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • Serch Help

    Hi all,
    I have created an elementary search help for a custom table. In the selection screen I am finding duplicate (redundant) values for F4 . Can anybody tell me how to eleminate this.
    Thanks,
    Mungala.

    See if this thread can help you:
    Re: Search Help(SAP-ABAP)
    https://forums.sdn.sap.com/click.jspa?searchID=3348838&messageID=3121203

  • Dummy Profit Center in Balance Sheet Account

    Hi Profit Center Guru,
    I have a lot dummy profit center posting from B/S accnts from the below kind of type:
    1) Bank Account
    2) Inventory Account
    3) WIP Account
    4) customer/vendor reconciliation account
    5) Tax account
    6) Accrual Income account
    7)  Other Manual B/S GL Posting
    Could you advice? whether those dummy posting from B/S must be eleminated? and normally how to eleminate the dummy profit center posting?
    Thanks a lot for your comments/opinion.
    Regards,
    Kick

    Hi,
    If you want to avoid any posting to dummy profit center maintained in 3KEH, you must ensure that you have properly defined rule to derive profit center. You will have to explore the following different ways of deriving correct profit center so that system does not take dummy for posting:
    1. For Inventory accounts, maintain prfoit center in material master. Make it a compulsory field in material master.
    2. Make profit center as compulsory entry in FI postings through changes in field status groups.
    3. Derive profit center based on cost center, cost center to be made as compulsory field in FI entries in such cases.
    4. Use Derivation and substitution rules to derive profit center.
    5. Use Business Area for deriving profit center.
    6. For posting through MM and FI, SAP has provided Badi AC_Document, in ECC 5.0 onwards. This can be used to derive profit center.
    Depending upon your settings in the system., you can choose appropriate option suitable to you, to derive profit center.
    Thanks and regards,
    Sanjay

  • SAP office Express info-the UPDATE is terminated as received from the user"

    Hi Sap Gurus,
    I am facing a problem which I failed to find out why.
    The case is in Network Activity I have attached components of Type "N" type i.e, non stock item.I tried to run MRP but with no effect.
    Now the problem is whenever I am trying to attach further components of "N" type & save it ; s message is coming thru {{ SAP office Express info }} stating that {{Express document " the UPDATE is terminated as received from the user" X ".
    Where from this message is getting generated & that to only for " n " type component.
    How to eleminate this error.
    2. Same problem is coming at the time of creation of user defined Characteristics.
    This has become very urgent otherwise I could not proceed further.
    Pl. Help.
    I am attaching the screen shot of the problem .
    Regards,
    A. Bose.

    Hi,
    Please use the T.code SM13 where there was an error and  click on the Repeat update icon
    Check the Error.
    Also check T. Code: ST22.
    Is the number range assigned to the Purchasing documents in OMH7, or are they exhausted. check if any workflow or user exit is active.
    hope it helps.
    thanks,
    Reward points if found useful.

  • Executing bat file without using Runtime.exec()??

    Hi all
    From my java App ,I am running a bat file. This is what I did:
    When I press 'execute' button inside my App, it runs a bat file through Runtime.exec() method. Since exec() runs it through cmd.exe, get a DOS window when I press Execute button. If I manually runs my app from command promt , I dont get it. But I have to create a short cut of my main class in the desktop. This is happening when I run my app from desktop icon.
    Now I want to eleminate DOS popup everytime I press execute button. Would anyone pls give an idea how to run bat file without using Runtime.exec()? Any suggestion will be helpful.
    Thanks

    jscell
    Thanks for taking time to answer to my problem .
    Here is what my problem: I create a shortcut of my main class in the desktop. Through this shortcut ,I run my java App. My App has a execute button, When I press this button , It run another bat file through Runtime.exec() method, and show some result in the result PAnel. NOw what happen , I get a DOS command window , everytime I press execute button. , Which is very annoying . But If I run my App thorugh command promt by executing: "java myApp", then I dont get this DOS popup. But I have to create a shortcut in the desktop, so other can use it conveniently.
    NOw I am not sure why I am getting this DOS window in the middle of my Application. IS it for using Runtime.exec() method? or for running bat file through my application? Can anyone pls tell me? I am kind of new to java, and I am learning lot of stuff from this forum .
    Would u pls suggest me about how to eleminate this DOS popup when I press execute button.
    Regrds

Maybe you are looking for

  • ITunes store does not show in iTunes

    I just reinstalled a fresh version of iTunes (V10.5.3.3) on my PC (XP, SP3). The program starts OK, but clicking on 'iTunes Store' at the left, leaves me with an empty window at the right part. No menu at the top (Music, Films, App Store, etc) and no

  • Sequence monitor OK.....Program monitor not OK?

    A imported jpeg file looks OK in the source monitor, but is messed up in the program monitor: horizontally striped, each stripe offset several pixels to the right of the one above it. The following link shows an example: http://cid-a48e00d4dc98bfc2.s

  • Using Linksys router with Time Capsule / Airtunes...

    Hi, Does anyone have any idea how I can use my old Linksys WRT54G wireless router with my Time Capsule in such a way that the WRT54G provides a b/g network and I can have my Time Capsule provide just 802.11n for the best possible speed? I have the tw

  • No enclosing instance of the type AClass is accessible in scope

    Hi all, Below is a file that defines AClass and CClass. I was told to use the construction CClass toRet = (CClass) AClass.this.createDClass(); in method method in CClass, but I can't get it to work. I get the message "No enclosing instance of the typ

  • Blank library

    Every time I close and open iTunes I have no music in my library. The music file are not deleted because they are still found in my music folder. I have Tried the Fix detailed on the Support Website over the Updating Problem but it Solved nothing. Th