Any hints of how to exclude these lines from the following BEx output?

Hi,
I have a BEx report which outputs the following shipment activities, showing Doc and Items numbers, Requested and Received dates, actual and PO quantities.
DocNoItmNoReqDate-RcvdDate-PO_Qty-Act_Qty---TB%
1101-----5--12/10/05-12/5/05020--
80
1101-----5--12/10/05#00--80
1101-----5--12/10/05#200--
80
1101-----7--12/10/05-12/5/05030--
50
1101-----7--12/10/05-12/8/0505--
50
1101-----7--12/10/05#00--50
1101-----7--12/10/05#350--
50
Somehow, I am getting some activity lines which I do not understand but do not want in the output. Those are the lines which show u201CPO_Qty = 0 AND Act_Qty = 0 at the same time.u201D i.e. the highlighted lines.
Any hint on how to eliminate the highlighted lines from the output?
I played with calculated key figures but could not reason it out.
Thanks

DocNoItmNoReqDate-RcvdDate-PO_Qty-Act_Qty---  Formula                        TB%                                                                               
PO QTY + ACT QTY
1101-----5--12/10/05-12/5/05020-----               20                        -
80
1101-----5--12/10/05#00--                 0                         -80
1101-----5--12/10/05#200-----                  20                     -
80
1101-----7--12/10/05-12/5/05030-----                30                      -
50
1101-----7--12/10/05-12/8/0505--
                5                         -
50
1101-----7--12/10/05#00-----                  0                         -50
1101-----7--12/10/05#350-----                 35                        -
50
Create Conditions over the Formula. Since the sum would be always 0 only when both the KF's are zero I think you can create condition over this formula.
Would this help?
Regards
VJ

Similar Messages

  • Do any one knows how to add those arrows from the right and left side of the screen in the youtube widget which allows you to navigate back and forth between video clips?

    do any one knows how to add those arrows from the right and left side of the screen in the youtube widget which allows you to navigate back and forth between video clips?

    do any one knows how to add those arrows from the right and left side of the screen in the youtube widget which allows you to navigate back and forth between video clips?

  • How to remove characters/lines from the beginning of an InputStream

    Hi,
    I have a program which receives several InputStreams. From each of these streams I have to remove 2 lines from the beginning. After the lines are removed, all the streams are combined to one with SequenceInputStream and read in one chunk. Is there an easy/simple way of doing this?
    One option I thought would be to read the char by char until 2 end of line chars have been detected and then read the rest of the data to a buffer. And the create a ByteArrayInputStream out of this buffer. Problem with this approach is, that the amount of data can be large, so putting all the data in to memory might cause problems.
    Another option is to use BufferredInputStream and use the readline() method twice to get rid of the lines that are not needed. After this I would write the data to some output stream, which is then converted back to input stream. Propably would work, but sound too much of work for a simple thing like this. There has to be better way.
    To make it simple, what I need is a method that looks like the following, or something similar
    *  Removes n number of lines from the beginning of a InputStream.
    *  @param is InputStream where the lines are removed
    *  @param numberOfLines int value to indicate how many lines whould be removed
    *  @return InputStream where lines have been removed.
    public InputStream removeLines(InputStream is, numberOfLines);Thanks.

    Here's the code, feel free to use it. Comments are also welcome.
    public InputStream removeLinesFromTheBeginning(InputStream is, int numberOfLines) throws IOException
              char c = 'c';
              int i = 0;
              for(int n = 0 ; n < numberOfLines ; n++)
                   do
                        c = (char)is.read();
                        System.out.print(c);
                        if(c == (char)-1)     // end of stream reached before any newline characters were found.
                             return null;
                        i++;
                   while(c != '\n');
                   System.out.println();
                   System.out.println("Characters removed:" + i);
                   System.out.println("n: " + n);
                   i = 0;
              return is;
         }Edited by: dave_spaghetti on Jun 16, 2009 5:42 AM
    Fixed a bug.

  • How to Exclude an Account from the script

    Hi BPC Experts,
    Below script, captures 403  DIVACCOUNTs as below.
    Deposits - DA_221101
    Lending  - DA_211101
    Current Account - DA_221102
    Plus around 400 accounts.
    From the above 403 accounts, I have to exclude the  Current Account - DA_221102 alone for the Flow: FL_AVG_CLO_ADJ in the below script.
    How can I make the change in the below script or in the dimension property.
    Below script should exclude the FLOW = FL_AVG_CLO_ADJ, just only for the Current Account - DA_221102. For all other DIVACCOUNTS, it should consider the FLOW = FL_AVG_CLO_ADJ.
    Advise me, please. Enclosed the screen shot for ref.
    Exclude this FLOW.bmp shows the flow which needs to be excluded in the transfer from Source model to Reporting model.
    Flow.bmp shows the FLOW = FL_AVG_CLO_ADJ .
    DIVACCOUNT shows the  account ids.
    Logic Script:
    *SELECT (%CATYP%,"[CAT_TYPE_CALC]","CATEGORY","[ID] = %CATEGORY_SET%")
    *SELECT (%TIMMBERS%,"[ID]","TIME","[%CATYP%]='F'")
    *SELECT (%DACMBERS%,"[ID]","DIVACCOUNT","[REPORT_ACC]<>''")
    *XDIM_MEMBERSET BOOK=BAS(BK_ALL)
    *XDIM_MEMBERSET DATASRC=BAS(DS_MGT_TOTAL)
    *XDIM_MEMBERSET DETAIL=BAS(DT_ALL)
    *XDIM_MEMBERSET DIVACCOUNT=%DACMBERS%
    *XDIM_MEMBERSET DIVOWNVIEW=BAS(DO_TOT)
    *XDIM_MEMBERSET FLOW=BAS(FL_CLO),FL_NONE,FL_AVG_CLO_ADJ
    *XDIM_MEMBERSET REPRICING=<ALL>
    *XDIM_MEMBERSET RPTCURRENCY=LC
    *XDIM_MEMBERSET TIME=%TIMMBERS%
    *XDIM_MEMBERSET TRNCURRENCY=BAS(TOTAL_CUR)
    *DESTINATION_APP = Reporting
    *SKIP_DIM = BOOK,DIVOWNVIEW,REPRICING
    *RENAME_DIM DIVACCOUNT=ACCOUNT
    *WHEN DIVACCOUNT
    *IS *
    *REC(DATASRC=DS_DIVROI,ENTITY=ENTITY.DIV_TO_REP,DIVACCOUNT=DIVACCOUNT.REPORT_ACC)
    *ENDWHEN
    *COMMIT

    Hi Rajesh,
    Something like:
    *SELECT (%CATYP%,"[CAT_TYPE_CALC]","CATEGORY","[ID] = %CATEGORY_SET%")
    *SELECT (%TIMMBERS%,"[ID]","TIME","[%CATYP%]='F'")
    *SELECT (%DACMBERS%,"[ID]","DIVACCOUNT","[REPORT_ACC]<>'' AND [ID]<>'DA_221102' AND [CALC]='N'")
    *XDIM_MEMBERSET BOOK=BAS(BK_ALL)
    *XDIM_MEMBERSET DATASRC=BAS(DS_MGT_TOTAL)
    *XDIM_MEMBERSET DETAIL=BAS(DT_ALL)
    *XDIM_MEMBERSET DIVOWNVIEW=BAS(DO_TOT)
    *XDIM_MEMBERSET REPRICING=<ALL>
    *XDIM_MEMBERSET RPTCURRENCY=LC
    *XDIM_MEMBERSET TIME=%TIMMBERS%
    *XDIM_MEMBERSET TRNCURRENCY=BAS(TOTAL_CUR)
    *XDIM_MEMBERSET FLOW=BAS(FL_CLO),FL_NONE,FL_AVG_CLO_ADJ
    *XDIM_MEMBERSET DIVACCOUNT=%DACMBERS%,DA_221102
    *DESTINATION_APP = Reporting
    *SKIP_DIM = BOOK,DIVOWNVIEW,REPRICING
    *RENAME_DIM DIVACCOUNT=ACCOUNT
    *WHEN DIVACCOUNT
    *IS %DACMBERS%
    *REC(DATASRC=DS_DIVROI,ENTITY=ENTITY.DIV_TO_REP,DIVACCOUNT=DIVACCOUNT.REPORT_ACC)
    *IS DA_221102
    *WHEN FLOW
    *IS <> FL_AVG_CLO_ADJ
    *REC(DATASRC=DS_DIVROI,ENTITY=ENTITY.DIV_TO_REP,DIVACCOUNT=DIVACCOUNT.REPORT_ACC)
    *ENDWHEN
    *ENDWHEN
    Vadim

  • How to exclude last page from the total number of pages counter

    Hi,
    I am customizing the payables remittance RTF template, our requirement is to reset page number to 1 for each payment, i am able to achieve this using "@section"
    also we have a requirement to have a summary page at the end, i am able to get this using "start@last-page:body".
    issue is last page is also considered in the page counter of the last payment.
    i.e. suppose if i am generating remittance for 2 payments which are printing details in two pages and one page respectively, my output will have total 4 pages and it's showing
    Payment1 page-1 footer -> 1 of 2
    Payment1 page-2 footer -> 2 of 3
    Payment2 page-3 footer -> 1 of 2
    Summary page-4 footer -> 2 of 2
    but i wanted to see
    Payment1 page-1 footer -> 1 of 2
    Payment1 page-2 footer -> 2 of 3
    Payment2 page-3 footer -> 1 of 1
    Summary page-4 footer -> 1 of 1
    Any idea how to remove the summary page from the page counter.
    Rgds,
    -Kamal

    I'm not sure how it was in Acrobat 9, but in XI you add a Header/Footer and
    one of the options it "Page Number and Date Format", where you can select
    the format of the page number to add, some of them contain the total number
    of pages (such as "1 of n").

  • How to remove empty lines from xml files after removing nodes from document

    <pre>
    Hi
    <b>i have xml document, which is shown below
    after removing some nodes from the document ,i am getting empty lines in place of removed nodes,how to resolve this and get the proper xml document without any errors</b>
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE Message SYSTEM "TRD01.dtd">
    <Message>
    <Header>
    <CounterPartyType>CLIENT</CounterPartyType>
    <CreationTime>20134455</CreationTime>
    <ErrorCode>363 </ErrorCode>
    <ErrorEnterPriseId>N</ErrorEnterPriseId>
    <ErrorStatus>1</ErrorStatus>
    <ErrorSystemId>STL</ErrorSystemId>
    <ErrorTimes>31</ErrorTimes>
    <MessageType>T</MessageType>
    <RecipientEnterpriseId>N</RecipientEnterpriseId>
    <RecipentSystemId>EXM</RecipentSystemId>
    <Remarks>REMARSK</Remarks>
    <SenderEnterpriseId>N</SenderEnterpriseId>
    <SenderSystemId>TR</SenderSystemId>
    </Header>
    </Message>
    <ErrorCode>363 </ErrorCode>
    <ErrorEnterPriseId>NIHK</ErrorEnterPriseId>
    <ErrorStatus>1</ErrorStatus>
    <ErrorSystemId>STL</ErrorSystemId>
    <ErrorTimes>31</ErrorTimes>
    XPathExpression expression5 = xpath.compile(xmlpath5);
    Object result5 = expression5.evaluate(doc, XPathConstants.NODE);
    Node node5 = (Node) result5;
    node5.getParentNode().removeChild(node5);
    XPathExpression expression6 = xpath.compile(xmlpath6);
    Object result6 = expression6.evaluate(doc, XPathConstants.NODE);
    Node node6=(Node) result6;
    node6.getParentNode().removeChild(node6);
    XPathExpression expression7 = xpath.compile(xmlpath7);
    Object result7 = expression7.evaluate(doc, XPathConstants.NODE);
    Node node7=(Node) result7;
    node7.getParentNode().removeChild(node7);
    doc.normalize();
    doc.normalizeDocument();
    TransformerFactory tf = TransformerFactory.newInstance();
    Transformer t = tf.newTransformer();
    t.setOutputProperty(OutputKeys.INDENT, "yes");
    t.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
    t.setOutputProperty(OutputKeys.METHOD,"xml");
    t.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
    the xml output i am getting is
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <Message>
    <Header>
    <CounterPartyType>CLIENT</CounterPartyType>
    <CreationTime>20134455</CreationTime>
    <MessageType>TRD01</MessageType>
    <RecipientEnterpriseId>N</RecipientEnterpriseId>
    <RecipentSystemId>STL</RecipentSystemId>
    <Remarks>REMARSK</Remarks>
    <SenderEnterpriseId>N</SenderEnterpriseId>
    <SenderSystemId>T</SenderSystemId>
    </Header>
    </Message>
    <b>could you please let me know how to avoid empty lines in the xml doucment output</b>
    this is the method i am using to get the result
    public void ValidateRecord(String xml){
    try{
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = factory.newDocumentBuilder();
    //parse file into DOM
    /*DOMParser parser = new DOMParser();
    parser.setErrorStream(System.err);
    parser.setValidationMode(DTD_validation);
    parser.showWarnings(true);*/
    System.out.println ("HI THIS xml is validation "+xml);
    Resolver res = new Resolver();
    db.setEntityResolver(res);
    Document doc = db.parse(new InputSource(new StringReader(xml)));
    XPathFactory xpf = XPathFactory.newInstance();
    XPath xpath = xpf.newXPath();
    // XPathExpression expression = xpath.compile("//A/B[C/E/text()=13]");
    String xmlpath="/Message/Header/CounterPartyType/text()";
    String xmlpath1="/Message/Header/RecipentSystemId/text()";
    String xmlpath2="/Message/Header/ErrorSystemId/text()";
    XPathExpression expression = xpath.compile(xmlpath);
    XPathExpression expression1 = xpath.compile(xmlpath2);
    Object result = expression.evaluate(doc, XPathConstants.NODE);
    Object result1 = expression1.evaluate(doc, XPathConstants.NODE);
    Node node = (Node) result;
    Node node1 = (Node) result1;
    System.out.println("the values of the string is " +node.getNodeValue());
    System.out.println("the values of the string is " +node1.getNodeValue());
    // for (int i = 0; i < nodes.getLength(); i++) {
    //System.out.println(nodes.item(i).getNodeValue());
    // CAHNGING THE RECEIPENT NODE
    XPathExpression expression2 = xpath.compile(xmlpath1);
    Object result2 = expression2.evaluate(doc, XPathConstants.NODE);
    Node node2 = (Node) result2;
    System.out.println(node2);
    node2.setNodeValue(node1.getNodeValue());
    System.out.println(node2);
    //removing the nodes from document
    String xmlpath3="/Message/Header/ErrorCode";
    String xmlpath4="/Message/Header/ErrorEnterPriseId";
    String xmlpath5="/Message/Header/ErrorStatus";
    String xmlpath6="/Message/Header/ErrorSystemId";
    String xmlpath7="/Message/Header/ErrorTimes";
    XPathExpression expression3 = xpath.compile(xmlpath3);
    Object result3 = expression3.evaluate(doc, XPathConstants.NODE);
    Node node3 = (Node) result3;
    node3.getParentNode().removeChild(node3);
    XPathExpression expression4 = xpath.compile(xmlpath4);
    Object result4 = expression4.evaluate(doc, XPathConstants.NODE);
    Node node4 = (Node) result4;
    System.out.println("node value");
    System.out.println(node4.getParentNode().getNodeName());
    node4.getParentNode().removeChild(node4);
    XPathExpression expression5 = xpath.compile(xmlpath5);
    Object result5 = expression5.evaluate(doc, XPathConstants.NODE);
    Node node5 = (Node) result5;
    node5.getParentNode().removeChild(node5);
    XPathExpression expression6 = xpath.compile(xmlpath6);
    Object result6 = expression6.evaluate(doc, XPathConstants.NODE);
    Node node6=(Node) result6;
    node6.getParentNode().removeChild(node6);
    XPathExpression expression7 = xpath.compile(xmlpath7);
    Object result7 = expression7.evaluate(doc, XPathConstants.NODE);
    Node node7=(Node) result7;
    node7.getParentNode().removeChild(node7);
    // Node b13Node = (Node) expression.evaluate(doc, XPathConstants.NODE);
    //b13Node.getParentNode().removeChild(b13Node);
    doc.normalize();
    doc.normalizeDocument();
    TransformerFactory tf = TransformerFactory.newInstance();
    Transformer t = tf.newTransformer();
    t.setOutputProperty(OutputKeys.INDENT, "yes");
    t.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
    t.setOutputProperty(OutputKeys.METHOD,"xml");
    t.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
    t.transform(new DOMSource(doc), new StreamResult(System.out));
    catch (Exception e) {
         e.printStackTrace();
    System.out.println(e.getMessage());
    </pre>
    Edited by: user12185243 on Apr 6, 2013 6:38 AM
    Edited by: user12185243 on Apr 6, 2013 6:41 AM
    Edited by: user12185243 on Apr 6, 2013 6:43 AM
    Edited by: user12185243 on Apr 6, 2013 6:45 AM
    Edited by: user12185243 on Apr 6, 2013 9:00 AM

    either this way we can do this
    1)
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    <b> factory.setIgnoringElementContentWhitespace(true); </b>
    DocumentBuilder db = factory.newDocumentBuilder();
    or
    2)
    java.io.StringWriter sw = new java.io.StringWriter();
    StreamResult sr = new StreamResult(sw);
    t.transform(new DOMSource(doc), sr);
    String xml1 = sw.toString().trim();
    <b> xml1=xml1.replaceAll("\\s",""); </b>
    System.out.println(xml1.trim());

  • II just uploaded Leopard on my G4 but CD Drive error 80020022 cant connect came up. any hints on how fix?

    I just uploaded Leopard on my G4 but CD Drive error 80020022 came up and I cant Burn a DVD data disk any hints on how fix It ?  The other error that came up first before that was Burn Disk failed error code 0X8002006E.
    Please help, I have been out of work and need this back up quickly.
    Thanks

    I assume by uploaded, you mean installed!??
    First, Safe Boot , (holding Shift key down at bootup), use Disk Utility from there to Repair Permissions, test if things work OK in Safe Mode.
    Then move these files to the Desktop...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Users/YourUserName/Library/Preferences/com.apple.sidebarlists.plist
    /Users/YourUserName/Library/Preferences/com.apple.desktop.plist
    /Users/YourUserName/Library/Preferences/com.apple.recentitems.plist
    Reboot & test.
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.

  • Is there any way to remove my hard drive with backup files in it from the exclude these items from backups???

    I currently have a MacBook Air and a 1TB external hard drive, and I run my iPhoto Library from the EHD and as well have TM backup my computer to that same HD. The problem I have is that I don't have a backup of that HD which has all my photos and other media, so If the HD takes a crap I can be in big trouble.
    So what I did is I purchased a new HD (My Cloud from WD) to back up my EHD. While setting everything up I ran into this
    TM included the EHD in the "Exclude these items from backup" list and I can't touch them, and I tried everything. I later found this
    The last sentence of #3 states why I can't.... Since the EHD has a backup file in it, it is excluded.
    So..... Does anybody have any idea of a way around this? Would I have to restart everything and set it up different? Or just have a better and easier way of doing this?? I'll appreciate any help and suggestions.

    What you need, is a dedicated image restauration filter that recognized the regular frequency pattern superimposed onto the prints. You can do this in advanced Image processing packages that let you compute the fourier transform of the image and then suppress or attanuate the frequency bands of the artefact with a band-stop filter.
    But neither Aperture nor PhotoShop have this kind of filter. In Aperture and Photoshop you can only soften the effect by blurring and then exporting a smaller version of the image.
    The algorithm that your scanner uses is probably the best that can be done, even if the resolution is only 100 dpi. 
    Do you still have the negatives? Scanning the negatives at a high resolution may give you better results.
    Regards
    Léonie

  • I downloaded Pimsleur foreign language mp3's and put them on my iPad but now cant find them.  Any advice on how to access these files?!  Thanks

    I downloaded foreign language mp3's to my iPad and iPod nano and cant find either one of them on the device even though they both claim to be there under "other" memory when I plug them into my computer.  Any advice on how to find these files on my iPad/iPod device?

    I put them in iTunes and then dragged them to my devices.  On my iPad it looked like it put it under the 'purchased' tab but I looked in the music app and purchased tab and still cant fine them anywhere.  So I tried to move them over again but it says they are already there do I want to skip or duplicate.  Also, when my iPad is attached to my computer, I cant find them either.....

  • My safari browser seems to have been taken over by a malicious program called only-search.  Does any one know how to uninstall this program from safari?  I am running osX 10.10.

    My safari browser seems to have been taken over by a malicious program called only-search.  Does any one know how to uninstall this program from safari?  I am running osX 10.10.

    There is no need to download anything to solve this problem.
    You may have installed the "VSearch" trojan. Remove it as follows.
    Malware is always changing to get around the defenses against it. These instructions are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    Step 2
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the Internet criminal behind VSearch has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Duplicates of a song on iPhone 4s but not in iTunes. Unable to delete duplicate. Won't play and won't let you swipe to delete. Any ideas on how to do so without resetting the phone?

    I have duplicates of a song on an album. One of the duplicates is grey with no album cover. When you attempt to swite and delete, the track will not delete and will not even play. I've contacted iTunes store and the person I received the support email from told me that it may not be downloaded. I emailed him back and explained that no there is no download for that song in my itunes store on my phone.
    One I never received an answer back which shows you how well these people do their job.
    Two: I really would prefer to have a solution to this problem without having to delete all of my music from my phone or resetting my phone. Because this duplicate isn't even showing up in my iTunes, it's only showing up on my phone.
    When I attempt to find it in my itunes it plays fine. But when I try to find the file to delete it, it is no where to be found. I've tried everything that I could think of to get rid of it. And I don't want to leave the album/artist off my phone because I do enjoy their music... And I have the microsoft sync in my car.
    Anyone got any ideas on how to do this without resetting the phone and/or taking my music off?

    If you have all your music on the cmputer then i would connect up my phone uncheck the Sync Music option and apply.
    This should take all the music off your phone .Then you can resync the music back on to it.
    If this doesn't work maybe a restore to factory settings and start from scratch is the way to go

  • How to exclude salary arrears from pension deduction?

    I have setup a pension retro element and its calculating the retro amount correctly.
    However, its using sum of salary arrears (say,arrears for the month of March and April) and adding that to May salary and deducting pension on the total sum.
    (we do not want this, we want only May salary to be considered for pension retro element)
    Does anyone know how to exclude salary arrears from pension deduction element? Is there any obvious step, which I am missing in while defining the element?

    Hi,
    While doing retro for arrears, it will give at a time in one payroll only, no standard for installment payments.
    2nd option:
    Calculate the Total Arrears amount and divide it by four installments and through IT 0014 with New wage type and give for 4 months as start and end date.
    * you have to create a new wage type which is taxable and assigned to IT 0014.
    * add this new wt in Remuneration form in Earnings side.
    Regards,
    Praneeth kumar

  • I use my iphone 5 to record home videos. I have an apple tv but dvd burners dont have a hdmi plug in. Any suggestions on how i can burn videos from iphone 5?

    I use my iphone 5 to record home videos. I have an apple tv but dvd burners dont have a hdmi plug in. Any suggestions on how i can burn videos from iphone 5?
    I had a av cord that plugged into the iPhone 3gs and iPad 2 but its not compatible with the 5 connector. Right now i have to email myself the videos in small segments and open and save on the iPad 2 to burn them.  Is there an easier way to burn these from my iPhone 5 or through air play on apple tv?
    Thanks

    Connect the phone by USB to the computer, import with image capture, iPhoto or whatever application you use to import movies, drop it into iTunes.

  • How can I input read a line from a file and output it into the screen?

    How can I input read a line from a file and output it into the screen?
    If I have a file contains html code and I only want the URL, for example, www24.brinkster.com how can I read that into the buffer and write the output into the screen that using Java?
    Any help will be appreciate!
    ======START FILE default.html ========
    <html>
    <body>
    <br><br>
    <center>
    <font size=4 face=arial color=#336699>
    <b>Welcome to a DerekTran's Website!</b><br>
    Underconstructions.... <br>
    </font> </center>
    <font size=3 face=arial color=black> <br>
    Hello,<br>
    <br>
    I've been using the PWS to run the website on NT workstation 4.0. It was working
    fine. <br>
    The URL should be as below: <br>
    http://127.0.0.1/index.htm or http://localhost/index.htm
    <p>And suddently, it stops working, it can't find the connection. I tried to figure
    out what's going on, but still <font color="#FF0000">NO CLUES</font>. Does anyone
    know what's going on? Please see the link for more.... I believe that I setup
    everything correctly and the bugs still flying in the server.... <br>
    Thank you for your help.</P>
    </font>
    <p><font size=3 face=arial color=black>PeerWebServer.doc
    <br>
    <p><font size=3 face=arial color=black>CannotFindServer.doc
    <br>
    <p><font size=3 face=arial color=black>HOSTS file is not found
    <br>
    <p><font size=3 face=arial color=black>LMHOSTS file
    <br>
    <p><font size=3 face=arial color=black>How to Setup PWS on NT
    <BR>
    <p><font size=3 face=arial color=black>Issdmin doc</BR>
    Please be patient while the document is download....</font>
    <font size=3 face=arial color=black><br>If you have any ideas please drop me a
    few words at [email protected] </font><br>
    <br>
    <br>
    </p>
    <p><!--#include file="Hits.asp"--> </p>
    </body>
    </html>
    ========= END OF FILE ===============

    Hi!
    This is a possible solution to your problem.
    import java.io.*;
    class AddressExtractor {
         public static void main(String args[]) throws IOException{
              //retrieve the commandline parameters
              String fileName = "default.html";
              if (args.length != 0)      fileName =args[0];
               else {
                   System.out.println("Usage : java AddressExtractor <htmlfile>");
                   System.exit(0);
              BufferedReader in = new BufferedReader(new FileReader(new File(fileName)));
              StreamTokenizer st = new StreamTokenizer(in);
              st.lowerCaseMode(true);
              st.wordChars('/','/'); //include '/' chars as part of token
              st.wordChars(':',':'); //include ':' chars as part of token
              st.quoteChar('\"'); //set the " quote char
              int i;
              while (st.ttype != StreamTokenizer.TT_EOF) {
                   i = st.nextToken();
                   if (st.ttype == StreamTokenizer.TT_WORD) {          
                        if (st.sval.equals("href")) {               
                             i = st.nextToken(); //the next token (assumed) is the  '=' sign
                             i = st.nextToken(); //then after it is the href value.               
                             getURL(st.sval); //retrieve address
              in.close();
         static void getURL(String s) {     
              //Check string if it has http:// and truncate if it does
              if (s.indexOf("http://") >  -1) {
                   s = s.substring(s.indexOf("http://") + 7, s.length());
              //check if not mailto: do not print otherwise
              if (s.indexOf("mailto:") != -1) return;
              //printout anything after http:// and the next '/'
              //if no '/' then print all
                   if (s.indexOf('/') > -1) {
                        System.out.println(s.substring(0, s.indexOf('/')));
                   } else System.out.println(s);
    }Hope this helps. I used static methods instead of encapsulating everyting into a class.

  • Does any one know how to Disable/Hide "BCC" from outlook/owa in office 365?

    Hi,
    Does any one know how to Disable/Hide "BCC" from outlook/owa in office 365?
    Thank You.

    Hi Kavin,
    You can try the below steps on the OWA server box,
    search for this file name in explorer
    File name: "messageoptionsdialog.aspx"
    open this file in notepad
    search for "chkbcc" you'll find something like this "input type="checkbox" id="chkBcc"
    you need to update the LINE BEFORE IT to <td style="visibility:hidden">
    Try this and let me now if this worked
    Although I've not tried this for the OUTLOOK client, you can try this and check if you need
    But this has worked for OWA for one of my client
    I'm also not very sure if this can be achieved on all of your outlook users from a server admin point of view, coz this is a client feature and not a user specific active directory attribute.
    Thanks & Regards
    John Chris 

Maybe you are looking for

  • Is it possible to intitate total page refresh from plugin code

    In 11.1.1.4 EMAIGC we are facing following issue: Target status is not getting refreshed after dependent components status change (Which will be done through through EM Plugin UI actions). This will status will be reflected only after manual refresh.

  • WebLogic hangs around after shutdown process appears to complete - Message Driven Bean related

    On my current project we have some Ant scripts that automatically start and stop WebLogic. The stop script equates to (not exactly but close enough): java weblogic.Admin -url localhost:8001 -password password -username username SHUTDOWN WebLogic is s

  • The ActiveX control cannot be instatiated --VC++

    When I try to insert any Javabean ActiveX control in VC++ resource dialog(design time).. I get the following error.. "The ActiveX control cannot be instatiated".. If I create it at runtime..It does not get painted.. if I resize my application my cont

  • Online backup

    Hi After an online backup, if there is no checkpoint, there is no need for recovery, true? beacuse CHECKPOINT_CHANGE# of the datafiles are not modified therefore no need to recovery..

  • [SOLVED] Perl refuses to run certain utilities

    [Aside: Sorry, not really an Arch newbie, but I am a forum and Perl newbie; not sure where else to post this.] I am the current maintainer of the AUR package called mesa-demos-git; it was flagged out-of-date, and I was going to examine the problem (a