CVI2013 f1 and excluded lines

I've already reported a bug using excluded lines with CVI2013 (see here)
Now with f1 patch the bug has been partially fixed, but the problem is still there if you exclude lines (CTRL+E) in a heare file included from another header file (and not directly from a source file).
See attached example and exclude (CTRL+E) line 4 in dummy.h to see the problem.
Vix
In claris non fit interpretatio
Using LV 2013 SP1 on Win 7 64bit
Using LV 8.2.1 on WinXP SP3
Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
Using CVI 6.0 on Win2k, WinXP and WinXP Embedded
Solved!
Go to Solution.
Attachments:
userint.zip ‏9 KB

Hi Daniel,
let me explain what you should do (and should see, I hope).
if you comment line 4 in dummy.h (with //) the project can't be rebuilt for an error. This is what I expect.
if you exclude line 4 in dummy.h (CTRL+E) I expect the same, but the project is rebuilt without errors
So, the problem is: CTRL+E in a header file included from another header file has no effect (the line is not excluded).
Could you confirm this, please?
Vix
In claris non fit interpretatio
Using LV 2013 SP1 on Win 7 64bit
Using LV 8.2.1 on WinXP SP3
Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
Using CVI 6.0 on Win2k, WinXP and WinXP Embedded

Similar Messages

  • CVI2013 problem with excluded lines

    I found a problem with CVI 2013 when you have some excluded lines in a header file which has some errors.
    This problem can be seen in the attached example, following these steps:
    exclude the line #35 (CTRL+E shortcut)
    build the project; this gives error due to line #28 in dummy.h
    in the Build output window double click on the line explaining the error
    CVI opens a new tab with a copy of dummy.h header (from UnsavedChanges directory) where the excluded lines have been commented (//....)
    when this happens it's not clear that this is NOT the real header file, so you modify it (fixing the error), but when you rebuild the project you see the same error described at step #2
    This behavior has no sense.
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded
    Attachments:
    CVI_2013 project error.zip ‏6 KB

    This bug has been partially solved with f1 patch (see here).
    But anyway the behavior is not correct yet; another bug report ID has been already filled in.
    I know that if I comment and/or "#if 0" the lines the project can be compiled, but my usage of CTRL+E is to temporary disable lines without saving the modifications in the source files.
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded

  • Package comments and excluded files

    I have an ant target to generate javadoc for a whole package structure minus one sub-package and one class, plus a few classes from another package:
      <target name="doc">
        <mkdir dir="${build}/docs/api"/>
        <javadoc destdir="${build}/docs/api/"
          use="true"
          windowtitle="Public API">
          <classpath>
            <path refid="3rdparty.jar.path"/>
          </classpath>
          <fileset dir="${build}">
            <include name="com/company/pkg1/**"/>
            <exclude name="com/company/pkg1/util/**"/>
            <exclude name="com/company/pkg1/server/ServiceMBean.java"/>
            <include name="com/company/pkg2/CustomerReport.java"/>
            <include name="com/company/pkg2/DeprecatedReport.java"/>
            <include name="com/company/pkg2/Report.java"/>
            <include name="com/company/pkg2/TagReport.java"/>
          </fileset>
        </javadoc>
      </target>This worked fine until I started including package.html files for package documentation. Running this with package.html in com/company/pkg1 gives the following error:
    javadoc: Illegal package name: "C:\abc\def\com\company\pkg1\package.html"
    After playing around, I found that if I shift the 3 <include> and <exclude> lines referring to pkg1 out of the <fileset> tag and into a <packageset> tag, then the package comments work. However, then the exclude for the individual java class (ServiceMBean.java) does not work. Likewise, shifting the file exclude back to the fileset tag still does not exclude it.
    It seems that I must decide whether to have package comments or the ability to exclude individual files, but not both. Is there any way around this?

    Well, it is a known issue. And actually, issue is with DBMS_METADATA, not with DATAPUMP, which simply uses DBMS_METADATA:
    SQL> create or replace package
      2  --comment
      3  MyPkg
      4  is
      5  a number;
      6  end;
      7  /
    Package created.
    SQL> select text from user_source where name = 'MYPKG' order by line;
    TEXT
    package
    --comment
    MyPkg
    is
    a number;
    end;
    6 rows selected.
    SQL> select dbms_metadata.get_ddl('PACKAGE','MYPKG') from dual;
    DBMS_METADATA.GET_DDL('PACKAGE','MYPKG')
      CREATE OR REPLACE PACKAGE "SCOTT"."MYPKG"
    is
    a number;
    end;
    SQL> You should put comments after package name:
    SQL> create or replace package
      2  MyPkg
      3  --comment
      4  is
      5  a number;
      6  end;
      7  /
    Package created.
    SQL> select dbms_metadata.get_ddl('PACKAGE','MYPKG') from dual;
    DBMS_METADATA.GET_DDL('PACKAGE','MYPKG')
      CREATE OR REPLACE PACKAGE "SCOTT"."MYPKG"
    --comment
    is
    a number;
    end;
    SQL> SY.

  • [svn] 3233: Fix for bug related to see tag, [Exclude] metadata, and extra lines in mxml examples block.

    Revision: 3233
    Author: [email protected]
    Date: 2008-09-16 12:57:29 -0700 (Tue, 16 Sep 2008)
    Log Message:
    Fix for bug related to see tag, [Exclude] metadata, and extra lines in mxml examples block.
    Bugs: SDK-16886
    QA: Yes
    Doc:
    Reviewed By: Pete F
    Tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16886
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Duplicity: include and exclude files

    I think I'm missing something about duplicity's include/exclude mechanism.
    1) This might be obvious but still... Where is the difference whether I use --exclude-filelist or --include-filelist? A dry-run showed the exact same size for my backup.
    2) Using --exclude-globbing-filelist and these lines will not backup any txt files:
    + /home/m/exclude/*.txt
    - /home/m/exclude/
    Yet, these lines will backup arch.txt:
    + /home/m/exclude/arch.txt
    - /home/m/exclude/
    Shouldn't "*.txt" expand to "arch.txt"?

    Hi yehiel,
    1. It is clear that the normal sql statement
       won't work in the way we won't.
    2. Thats why, some extra logic needs to be applied.
       As already mentioned,
       The RANGE for EXCLUDE
       must be filled with some DUMMY Data.
      Just write this CODE
      JUST BEFORE CALLING THE SQL.
    IF z_stat_eIS INITIAL.
      z_stat_e-sign = 'I'.
      z_stat_e-option = 'EQ'.
      z_stat_e-low  = 'XXX'.
      z_stat_e-high = 'XXX'.
      APPEND z_stat_e.
    ENDIF.
    HOPE THIS WORKS.
    Regards,
    Amit M.

  • How to change category on open and closed PO and Requisition lines

    We realized a little late that our category definition needs change. But when we change the category definitions (including structure) how do we change the existing PO lines and Requisition lines to have the new categories? We checked for any APIs, but there are none. What other option do we have?

    changing the name of the home directory and the login name is not advisable. it can be done
    http://www.macworld.com/article/132693/2008/03/changeshortusername.html
    but a better way would be to make a new user account using system preferences->accounts. call it whatever you want. log into that and delete the old account. since you just got this computer you don't have any data on it yet, right?

  • How to add a JPanel with label and border line

    hi,
    I want a Jpanel with label and border line like this.Inside it i need to have components.Is there a resuable component to bring this directly??
    Any solution in this regards.???
    Label-----------------------------------------------------------
    | |
    | |
    | |
    | |
    | |
    |________________________________________ |

    [url http://java.sun.com/docs/books/tutorial/uiswing/misc/border.html]How to Use Borders

  • NEW CELL and NEW LINE

    Hi,
    I am not clear about NEW CELL and NEW LINE in The Main window -> Table -> Footer -> Output options -> Output Table.  Could any one help in explaining exactly what is the purpose of it.
    Thanks
    Ram

    when you are placing a text element, you need to specify whether you want this text element to be displayed in the next cell of the table. If the text element is to be displayed in the next line then you will have to check that as well. So, if you are displaying a list of fields in a row format then for the first field, you check both line and cell and for the rest of the fields you check just the cell.
    Regards,
    Ravi
    Note - Please mark all the helpful answers

  • Derivation of Profit Centers in case of bank and Cash line items

    We are in the process of configuring the Profit Center Accounting functionality. We are in ECC 6.0 but have not migrated to New G/L.
    We understand that Profit center needs to be derived for each of the items for which it does not flow online in realtime. As regards Bank and Cash Line Items, we are not able to understand how Profit Center Derivation will happen.
    We have posted an FI payment document using Tcode F110 and further to which we executed F.5D and 1KEK. Further to this, we have checked the Profit Center Total records report (2KEE). It updates the vendor line items. But it does not reflect the Bank line item. Unless this happens, we understand that our Profit Center wise Trial Balance will not tally.
    Kindly let us know how bank and Cash line items will update in PCA. In our view, it should derive the Profit center from the offsetting entry in the vendor invoice. Pl. correct me if I am wrong.
    Pl. help.
    Venkat Iyer

    Hi Venkat,
    You may define a derivation rule in 3KEH
    Regarda
    Sachin

  • Profit Center population in the Vendor and Customer Line items

    hello
    our client is asking for  getting profit center in the vendor and customer line items  where in the view FBL5n and fbl1n we are not getting the profit center populated - in the new gl i understand that there is a standard report based on the gl account.
    but our business is not satisfied with the report and expecting report at profit center level.
    Can any one suggest any way of doing this.
    regards,
    Vijay

    Dear Vijay,
    Let me provide you my view of solutioning for this. This is an enahcement that needs to be done
    1. You can get the profit center from the given vendor and customer line item at the time of posting, using an enahcement you will be able to capture it.
    2. Existing the profit center field is not populated in the BSIK,BSAK,BSID and BSAD tables
    3. Hence, in the same enhancement once you capture the profit center , you can write the code that profit center is updated in these tables also.
    4. This will help you to do the vendor line item wise selection in the FBL1N,  FBL5N profit center wise.
    Constraints of this solution:
    The only constraint remains where in the for a given document if there are multiple profit center, then the system will do the splitting profit center wise for a vendor line item, which will not populate the profit center in those tables as there is only one field available in the bsid etc.. tables.
    This basically would be the one the soltuion where in as seeen from the end user ther eis no change in the front end interface , the way they are doing always they can do.
    You need to also take care the % of document splitting means cross profit center postings /cross document splitting charactericstics postings and the volume involved in this. so that you can suggest this to your client.
    Regards,
    Bharathi.

  • FBCJ LINE ITEM AND FI LINE ITEMS ARE DIFFERENT

    Dear Expert
    FBCJ LINE ITEM AND FI LINE ITEMS ARE DIFFERENT

    Hi,
    It seems from the screen shot you are seeing different documents as in the first screen shot it clearly shows you have booked the multiple expenses under one see the below screen shot we have circled it
    whereas FB03 screen shows different.
    You can do one thing click on circle item and check the expenses involved in it and accordingly go to FBL3N and display documents for that G/L for the date 05.04.2014.
    Hope your issue has been resolved else revert.
    Regards,
    Tejas.

  • ETD and Base line are not matching

    Hi All,
    My requirement is in production server, for some invoices the Expected time departure and base line date are not matching,
    What will be the reason behind this? Can you please advice how to approach to this problem.?
    Thanks in advance
    jaya.G

    Hi,
    could you please eloborate the issue?
    Thanks,
    Srinu

  • ALV Grid Control -  Modifiy data in total and subtotal lines

    Hello all,
    I´am creating a report using ALV Grid Control. This report calculates (using delivered and returned materials) for each vendor/material-combination the return quote.
    Using the totals and subtotals function for different characteristics I want to calculate the return quote for the selected characteristic. Example:
    Material delivered returned quote
    ..4711 . . . 500 . . . 5 . . . . 1 (=returned*100/delivered)
    ..4711 . . . 400 . . . 10 . . . . 2,5
    . SUM . . . 900 . . . 15 . . . . 3,5 <-- 3,5 is the sum but I want display the calculated value 1,667
    Is there a possibility to modify data in the total and subtotal lines.
    Thank you for your answer
    Best regards
    Thomas

    you said instead of 3.5 you want to show 1,667 ..
    how is it possible...
    3,5 become 1,667
    i thought you are doing any conversions...
    vijay

  • 500k profile after disruption and new line install...

    Hello,
    Status: 
    I have an open fault logged with BT;  
    Phone line ok but broadband speed low, profile appears stuck at 500k.
    History: sporadic BBand connection and noisy phone line followed by outright failure of both.
    Engineers visited and confirmed line between street and master socket probably corroded - they put it on leg+leg to get it working while we waited for a new physical line to be installed.
    Pavement was dug up, new armoured cable run from street to house, and a proper master socket fitted (NT5 ? but no inbuilt ADSL filter).
    In effort to ensure low noise, ALL other sockets in the property disconnected.
    Digital phone (3 handsets off a single powered base) are run off the master socket using a filter.
    Router is business hub - 2700hgv; f/w 6.1.1.48.1-enh.tm ,  h/w 2701-100589-005 .
    Hub is connected to same master socket as phone (as it's the only socket now connected to the new line).
    New line was installed approx 18 days ago.
    Speed tests (speedtest.net) repeatedly show download of 480kbps, upload around 620kbps.
    No change since new line was installed and all but the master socket decomissioned.
    I use wireless to the router but also repeated tests with a Cat6 copper RJ45 cable and got same results.
    Have taken all wireless devices offline and removed electrical items near phone line power supply and cable path to reduce potential noise and repeated tests.
    I left the router on for two weeks and no increase in broadband speed.
    I rebooted it twice this weekend to see whether it picked up a different profile - but no change.
    BT speedtester repeatedly indicates a profile of 500k (full results further down).
    Last year I had speeds about 512k on a DrayTek router before switching to the 2700HGV. The change to the BT hub upped the download speed to around 1Mbps, which made a huge difference.
    I know I am "a long way from the exchange" but I've had 1Mbps last year and now have a new line into my property, so not much left that I can do to improve the situation.
    I'd like to know what can be done to get me at least 1Mb download again.
    I have an engineer visit due tomorrow but I believe that will be purely to finish putting paving slabs back over the armoured cable that's been installed (i.e. OpenReach dig team rather than line engineers).
    After those slabs are done, I expect the fault will be closed but I'll still have a 500k profile and will need to raise a new fault all over again - that fault was opened 5 weeks ago.
    Results of speedtester.bt.com run just now (1pm Sun 13th March 2011):
    Download speed achieved during the test was - 363 Kbps
     For your connection, the acceptable range of speeds is 100-500 Kbps.
     Additional Information:
     Your DSL Connection Rate :576 Kbps(DOWN-STREAM), 777 Kbps(UP-STREAM)
     IP Profile for your line is - 500 Kbps
    The throughput of Best Efforts (BE) classes achieved during the test is - 2.46:14.86:82.95 (SBE:NBEBE)
    Upload speed achieved during the test was - 638 Kbps
     Additional Information:
     Upstream Rate IP profile on your line is - 777 Kbps
    Router web interface shows:
    Rate:
    576 kbs
    778 kbs
    Max Rate:
    2621 kbs
    784 kbs
    Noise Margin:
    16.7 dB
    7.0 dB
    Attenuation:
    62.8 dB
    35.8 dB
    Output Power:
    16.1 dBm
    12.4 dBm
    Protocol:
    G.DMT2 Annex A
    Channel:
    Interleaved
    DSLAM Vendor Information
    Country: {46336} Vendor: {IFTN} Specific: {48753 }
    ATM PVC:
    0/38
    Rate Cap:
    2621 kbs
    Attenuation @ 300kHz:
    62.8 dB
    Uncanceled Echo:
    -14.8 dB
    Ok
    VCXO Frequency Offset:
    -2.0 ppm
    Ok
    Final Receive Gain:
    34.5 dB
    Ok
    Impulse Noise Comp. Tones:
    0
    Ok
    Excessive Impulse Noise:
    0
    Ok
    I hope that's the information that someone might need to help me at least get 1Mbps back on my line.
    Regards,
    BK

    Hi Bk1
    Welcome to the Community.
    Send me an email to the link in the about me section of my profile.
    I can have this looked into for you further.
    Cheers
    Stuart
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Possible to use both optical out AND regular line out at the same time?

    I currently have my computer speakers (logitech z560) hooked up to the mac pro via regular stereo jack in the back. I have an extra receiver that I would love to hook in to supply me with some needed sound for movie watching and what-not.. Is there a way to enable both line out - digital and line out at the same time?

    You can set DVD Player's "Audio output" to "Digital Out" in its "Disc Setup" preference, while other applications use Line Out.
    You could use a splitter on Line Out to feed your current speakers, and analog Line In on your receiver. When you want sound to both systems, set the receiver to Line In. When you want to watch DVDs, set it to Digital In. This will give you surround sound if the DVD has multichannel sound, and the receiver supports more than two channels.
    If you really want the same output on the Mac Pro Line Out, and Digital Out, you can use the "Auxiliary Device Output" effect in Audio Hijack Pro
    <http://www.rogueamoeba.com/audiohijackpro/>
    It will not support more than two-channel audio.

Maybe you are looking for