How to generate a list

I have two columns in a spread sheet. The A column has names. The B column tracks progress on tests--simple pass or fail.  I use a 1 for pass and leave the cell blank for fail. I can change the method of recording grades if that helps.
On a separate page, I want to generate a list of names of people who have failed the test. I want the list to update as grades change in the B column over time. I don't want the names of people who have passed to be on the list.
Can anyone help?
Thanks in advance.

Hi shadow,
Applying Barry's and Jerry's ingenuous approach discussed here gives this:
The formula in A2 of the 'List' table, shown in the formula bar, is filled down.
The formula in C2 of the 'Results' table is =B&COUNTIF($B$2:B2,B) , also filled down.
Changing 'F' to 'P' in A1 of the 'List' table will list those who passed.
SG

Similar Messages

  • How to generate a list of  pick dates for all scheduled deliveries?

    Hi!
      How to generate a list of  pick dates for all scheduled deliveries?
      What all the tables involved?
    Thanks
    Imran.

    Thanks for the suggestion concerning the file path.  And certainly it would have been nice to have done this before beginning.  However this is a project that has been around for quite a while, and the files have been moved into different bins.  And now the project sequence is being revised.
    So the problem is, worded slightly differently, how can I search all of the bins for the files that are used just by this sequence, ignoring the files which are used by other sequences?  Or, how can I get a list of the file paths of the files that are used in the sequence?

  • How to generate a list showing Payment Run that how yet to be Executed?

    Hi Guys
    Besides using se16 table, how can I generate a list showing Payment Run that have yet to be executed?
    Thanks
    Cheers
    Kenny

    Hi,
    check whether this programm can do the needed: RFZALI20
    t-code: S_P99_41000099
    Else: build yourself a z-transaction for se16 table and assign it to user roles as required.
    Regards
    Hein

  • How to generate a list of Devices based upon an eDir group

    Is there a way for us to generate a report/query of devices (we need model, etc) where the calculated user for each device is a member of an eDirectory group?
    Basically, we need to generate a list of machines in our "HR" department or "Finance" department, etc.
    Any clever ideas?
    -Brian

    bpedrant,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • How to generate random list of size n

    Hey its me again, my linked list implementation is working fine but i am having problems with one of the constructors of MyLLSet (a class which represents the linked list implementation of a set of integers)
    class must have two constructors : one which takes no
    arguments and creates an empty set (DONE)
    and another which takes a positive integer n as
    input and generates a set of size n with random elements (no duplicates) ,*problem comes in*, How do i generate a random list anyways? where do i get the random values from?
    again i am new to programming
    Here is my Node class that i created
    public class Node<Value> {
    Value element;
    Node<Value> next;
    Node(Value data)
                element=data;
                next=null;
            Node(Value data, Node n)
                element = data;
                next    = n;
    }and the question is how do i make the second constructor of MyLLSet
    private Node<Value> head;
    ..... // first constructor
    public MyLLSet(int n){
        head=?      ( how do i generate a random list of size n?)
    // implementation of methods form the interfacethanks
    Edited by: haraminoI on Mar 23, 2009 2:24 PM
    Edited by: haraminoI on Mar 23, 2009 2:25 PM
    Edited by: haraminoI on Mar 23, 2009 2:26 PM
    Edited by: haraminoI on Mar 23, 2009 2:26 PM
    Edited by: haraminoI on Mar 23, 2009 2:27 PM

    haraminoI wrote:
    doremifasollatido wrote:
    Keep the dummy if you want. It confused me (maybe because I hadn't seen it in ages, if ever), but if you understand it, the dummy is fine (it's apparently a standard way of writing linked lists).
    Generally, it is not advisable to call an overrideable (non-final with public, protected, or default [package-access] modifier) method from a constructor. But, if you disregard that advice for the moment, you could try calling 'add' with your nextInt, and repeat calling add until the size() of the set is n. That's certainly the easiest way to do it (otherwise, you'll have to repeat your 'add' code, with its check for duplicates, in the constructor).
    while (size of set < n) {
    add(new_random_int);
    }Your code for generating the random integers themselves is correct.
    Do you understand the above code?hey !
    Yes i understand that code, it probably is the easiest way,
    but when the random object generates a duplicate number, wont the add function output the duplicate error message?
    Edited by: haraminoI on Mar 23, 2009 5:11 PM
    public MyLLSet(int n){
        head=new Node(null);
        Node<Integer> p=head;
    Random R =new Random();
    int count=0;
    while(count<n){
        this.add(R.nextInt(n));
    count++;
    }And it works,
    but since my add function does nothing on duplicates,
    the code u mention doesnt reuturn a list of size n, because when the add method encounters a duplicate, it doesnt consider it, so the set size gets 1 node smaller, so if there are like 3 similar numbers generated form the random method, the set size become 3 nodes smaller,
    now how do i add three more non-duplicating nodes to the list
    below is my add method
    public void add(Integer v){
        Node<Integer> p;
        Node<Integer> q;
        p=head;
        while(p.next!=null){
            p=p.next;
        if(this.isIn(v)){
               // does nothing on duplicates
        else
        p.next=new Node(v,null);
    } thanks

  • Generate stem list

    Hi,
    How to generate a list of the available stems in a field or a parial list (for example the stems in a field which begin with "a" or "te") ?
    Zsolt

    Hi,
    I have just added an example of yvindevogel suggestion to my blog, http://adobelivecycledesignercookbookbybr001.blogspot.com.au/2014/01/listing-all-fields-in -form.html
    This uses an XSLT and there are a few steps but you will end up with a list of fields in Microsoft Excel, with the captions, error messages, display patterns, fonts, bindings, etc listed.
    You should be able to cusomise it to suit you needs.
    Regards
    Bruce

  • Generate a List of Referenced Files?

    Hello,
    Does anyone know how to generate a list of referenced files in a FrameMaker 8.0 file? I've consulted the User's Manual and online Help, and I can not find this information.
    Thanks,
    Amy

    Special > List of > References. Then select Text Insets or Imported Graphics.
    If you need both, do two LoRs.
    Art

  • BPC75NW: How to generate list of accounts with a specific prefix

    Hi Experts,
    I need to generate a list of accounts (to be scoped in LGF script file) starting with 'A_'.
    How do I acheive this in BPC7.5 NW version ?
    Regards,
    Pankaj.

    Hi,
    One of the ways could be to have a property for all these accounts or any other criteria you may have and use the XDIM Filter statement as below:
    *XDIM_FILTER ACCOUNT= [ACCOUNT].PROPERTIES("ACC_CAT")= "XXXX"
    Thanks,
    Sreeni

  • How do I generate a list of all VIs that are in a TestStand (3.1) sequence?

    Can TestStand (3.1) generate a list of all the VIs that are included in the sequence?  I have a folder structure full of VIs and I know that not all are being used.  I'd like to identify the unused VIs.

    I hope there is no direct method to get the list of VI's, I will always try the following method
    This is the fairly easy way to get the list of VI's used in the Sequence
     Invoke ' Edit -> Sequence File Properties ' and in the  Load Option set  ' Preload When Opening Sequence File ' , after setting this property close and  open the corresponding Sequence file
    When the Sequence File is opened, all the VI's will be loaded in the Memory, so the below code in LabVIEW will list all the VI's in memory
    There is always other complicated Method, you have use the Teststand ActiveX to read all the Steps in the Sequence FIle and Get the Step names which has the LabVIEW Adapter.
    I am using TS 4.2.1, hope above mentioned options are in the TS 3.1
    AshwiN,

  • How do I generate a list of keyboard shortcuts for any given application

    I want to generate a list of keyboard shortcuts for all of the applications I have on my Mac. I want the list to be a simple text (or rtf) file that I can edit and organize. (By edit, I don't mean change the shortcuts, only the report of them.)
    I was using Key Cue, but it does not let me save the list to a text file.
    I want this for several purposes. One is to have a easy to reference list of shortcuts to learn. Another is to find unused key combinations that I can use for my own keyboard shortcuts that I create with DefaultKeyBinding.dict.
    Note: The program doesn't have to an OS X app. A program that runs from a shell without a GUI is plenty adequate.
    If there is a way to read the keyboard commands from a plist list or other such file, and any of you know the format for these or where I can find them, I can write a Perl script myself to do it.

    Well, the info is stored in...
    /Users/YourUserName/Library/Preferences/com.apple.universalaccess.plist
    PlistPro has a way to convert it to ASCII, but you'll srtill have work to do, as...
    {enabled = 1; key = 20; modifier = 1179648; sybmolichotkey = 28; },
    {enabled = 1; key = 20; modifier = 1441792; sybmolichotkey = 29; },
    {enabled = 1; key = 21; modifier = 1179648; sybmolichotkey = 30; },
    {enabled = 1; key = 21; modifier = 1441792; sybmolichotkey = 31; },
    {enabled = 0; key = 28; modifier = 1572864; sybmolichotkey = 15; },
    {enabled = 0; key = 27; modifier = 1572864; sybmolichotkey = 19; },
    {enabled = 0; key = 24; modifier = 1572864; sybmolichotkey = 17; },
    {enabled = 0; key = 47; modifier = 1835008; sybmolichotkey = 25; },
    {enabled = 0; key = 43; modifier = 1835008; sybmolichotkey = 26; },
    {enabled = 0; key = 28; modifier = 1835008; sybmolichotkey = 21; },
    {enabled = 0; key = 96; modifier = 1048576; sybmolichotkey = 59; },
    {enabled = 1; key = 122; modifier = 262144; sybmolichotkey = 12; },
    {enabled = 0; key = 120; modifier = 262144; sybmolichotkey = 7; },
    {enabled = 0; key = 99; modifier = 262144; sybmolichotkey = 8; },
    {enabled = 0; key = 118; modifier = 262144; sybmolichotkey = 9; },
    {enabled = 0; key = 96; modifier = 262144; sybmolichotkey = 10; },
    {enabled = 0; key = 97; modifier = 262144; sybmolichotkey = 11; },
    {enabled = 1; key = 50; modifier = 1048576; sybmolichotkey = 27; },
    {enabled = 1; key = 98; modifier = 262144; sybmolichotkey = 13; },
    {enabled = 1; key = 50; modifier = 1572864; sybmolichotkey = 51; },
    {enabled = 1; key = 100; modifier = 262144; sybmolichotkey = 57; },
    {enabled = 1; key = 17; modifier = 1572864; sybmolichotkey = 50; },
    {enabled = 1; key = 2; modifier = 1572864; sybmolichotkey = 52; },
    {enabled = 0; key = 105; modifier = 0; sybmolichotkey = 32; },
    {enabled = 0; key = 109; modifier = 0; sybmolichotkey = 33; },
    {enabled = 0; key = 103; modifier = 0; sybmolichotkey = 36; },
    {enabled = 0; key = 109; modifier = 0; sybmolichotkey = 62; },
    {enabled = 0; key = 49; modifier = 1048576; sybmolichotkey = 60; },
    {enabled = 0; key = 49; modifier = 1572864; sybmolichotkey = 61; },
    {enabled = 1; key = 2; modifier = 1310720; sybmolichotkey = 70; },
    {enabled = 1; key = 49; modifier = 1048576; sybmolichotkey = 64; },
    {enabled = 1; key = 49; modifier = 1572864; sybmolichotkey = 65; },
    {enabled = 0; key = 53; modifier = 1048576; sybmolichotkey = 73; },
    {enabled = 1; key = 107; modifier = 0; sybmolichotkey = 53; },
    {enabled = 1; key = 113; modifier = 0; sybmolichotkey = 54; }

  • Reporting In Service Manager 2012 - How To Get A List Of All Service Requests Regardless of Status

    Within the Custom Reporting Options available to users of Ssystem Center Service Manager 2012, which would one use to create reports that do not contain any agregated data but are instead detail level info such as a list of all Service Requests reardless
    of status?  I want to include within the report the same data you see on the main page of a Service Request when you double-click a Service Request within Service Manager and it pops opne the details of the Service Request.
    I'm trying to get the following info for each Service Requests
    SR ID (i.e. SR1234)
    Affected User
    Title
    Description
    Priority
    Source
    Area
    Support Group
    Assigned To
    Created By and Created On
    I know the cubes w/Excel offer a great way to get data for a **piece meal report or for getting agregated data (I.E. counts, sums, avergares, Max's & Mins) but I need a report that has zero totals and no agregations. 
    Thanks
    ** A piece meal report is a report that has to be manually pieced together by combining data from others reports and other sources because no single report can be constructed to bring all the data togethere into a single report.  If you've ever
    worked with an accountant taht uses Excel for everything but who has no idea how SQL or databases in general are deisgned then chances are you've either been asked to create a piece meal report for them and or seen them do one them selves when they open a
    spreadshet and dump into it disperate data from a variety of sources and then ask you why you can't automate that same report for them.

    the following thread covers some good SQL queries to get details about the Incident Request, just amend them to cover the Service Request
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/e703641d-3e05-4df4-be2b-bf9bd62534f8/how-to-generate-incident-report-with-incident-description-field-in-scsm-2012-sp1

  • How to generate interactive report in alv

    hi,
      how to generate interactive report in alv,for this what are the requirements,
    give me one sample report.
                                                 thankyou.

    Hi,
    Chk these helpful links..
    ALV
    http://www.geocities.com/mpioud/Abap_programs.html
    http://www.sapdevelopment.co.uk/reporting/reportinghome.htm
    Simple ALV report
    http://www.sapgenie.com/abap/controls/alvgrid.htm
    http://wiki.ittoolbox.com/index.php/Code:Ultimate_ALV_table_toolbox
    ALV
    1. Please give me general info on ALV.
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    2. How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    3. How do I add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    4. How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    5. How to print page number / total number of pages X/XX in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    6. ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    7. How can I set the cell color in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    8. How do I print a logo/graphics in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    9. How do I create and use input-enabled fields in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    10. How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    11. How can I display an icon in ALV? (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    12. How can I display a checkbox in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Go thru these programs they may help u to try on some hands on
    ALV Demo program
    BCALV_DEMO_HTML
    BCALV_FULLSCREEN_DEMO ALV Demo: Fullscreen Mode
    BCALV_FULLSCREEN_DEMO_CLASSIC ALV demo: Fullscreen mode
    BCALV_GRID_DEMO Simple ALV Control Call Demo Program
    BCALV_TREE_DEMO Demo for ALV tree control
    BCALV_TREE_SIMPLE_DEMO
    BC_ALV_DEMO_HTML_D0100
    Regards
    Anversha

  • How to keep the list to show max.of 3 items at a time

    i had a list, the rows are dynamically generated, the problem comes with when the item are more than 3. the 4th one is half visible which looks odd. i want to see 3 rows at a time, how is this possible.  i set rowCount, variablerowheight it didn't work.
    thanks for reading.

    package  Components{
     public
    public  
    class AdvancedLegendList extends List{
    public function AdvancedLegendList(){
    super();} 
    override protected function measure():void
    if(this.height>3) 
    this.height=measureHeightOfItems(-1,1);}
    and set the list as
    <Components:AdvancedLegendList id="itemList"dataProvider="{_incentivesCopy}borderVisible="false" width="295"rowCount="
    {Math.min(DataContext.Incentives.length, 3)}"variableRowHeight="true"selectable="
    false"verticalScrollBarStyleName="sbTrackStyle" paddingRight="1"
    <Components:itemRenderer> <fx:Component>
    if i have override the measure() function in script, i dont know how to access this list.

  • How to generate this output?URGENT

    how to generate using DOM or SAX to get this output?
    <project>
    <process name = " Process1 " >
    </project>
    i am stuck here ... may i know how to continued coding from here.. must add in wat ? can any one tell me thank....
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.FactoryConfigurationError;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.*;
    import org.w3c.dom.DOMException;
    import java.io.*;
    import java.util.*;
    public class TestVector
         private Vector m_vProcess;
         String strProjectName;
         public static void main(String[] args)
              TestVector pThis = new TestVector();
              pThis -> WriteToXML(m_vProcess);
         public void TestVector {
              strProjectName ="Project1";
              m_vProcess = new Vector();               
              m_vProcess.add("Process1");
              m_vProcess.add("Process2");
         public void WriteToXML(Vector vProcess)
              DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
              DocumentBuilder builder = facory.newDocumentBuilder();
              Document builder = builder.parse("Project.xml");
              Node rootNode = document.getDocumentElement();
              NodeList list = document.getElementsByTagName("Project");
    // Loop through the list.
              for (int i=0; i < list.getLength(); i++) {
              thisProjectNode = list.item(i);
              Node thisName1Node = thisProjectNode.getFirstChild();
              if (thisName1Node == null) continue;
              if (thisName1Node.getFirstChild() == null) continue;
              if (! thisName1Node.getFirstChild() instanceof
    org.w3c.dom.Text) continue;
              String data = thisName1Node.getFirstChild().getNodeValue();
              if (! data.equals("Process1")) continue;
    //We're at the Mocha Java node. Create and insert the new
    //element.
              Node newCoffeeNode = document.createElement("Project");
              Node newName1Node = document.createElement("Process");
              Text tnNode = document.createTextNode("Process1");
              newName1Node.appendChild(tnNode);
              Node newName2Node = document.createElement("Process");
              Text tpNode = document.createTextNode("Process2");
              newName2Node.appendChild(tpNode);
              newProjectNode.appendChild(newName1Node);
              newProjectNode.appendChild(newName2Node);
              rootNode.insertBefore(newProjectNode, thisProjectNode);
              break;

    i am not good in programming..wat ever i read b4 ,i wlll forget easily ..and y the output nv come out after i type these...
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.FactoryConfigurationError;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.w3c.dom.*;
    import org.w3c.dom.DOMException;
    import java.io.*;
    import java.util.*;
    public class TestVector
         private Vector m_vProcess;
         String strProjectName;
         public static void main(String[] args)
              TestVector pThis = new TestVector();
              pThis -> WriteToXML(m_vProcess);
         public void TestVector {
              strProjectName ="Project1";
              m_vProcess = new Vector();               
              m_vProcess.add("Process1");
              m_vProcess.add("Process2");
         public void WriteToXML(Vector vProcess)
              DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
              DocumentBuilder builder = facory.newDocumentBuilder();
              Document builder = builder.parse("Project.xml");
              TransformerFactory tfac = TransformerFactory.newInstance();
              FileWriter fileWtr = new FileWriter("output.xml");
              StreamResult strResult = new StreamResult(fileWtr);
              Transformer trans = tfac.newTransformer();
              trans.transform(new DOMSource(document.getDocumentElement()),strResult);
              Node rootNode = document.getDocumentElement();
              NodeList list = document.getElementsByTagName("Project");
    // Loop through the list.
              for (int i=0; i < list.getLength(); i++) {
              thisProjectNode = list.item(i);
              Node thisName1Node = thisProjectNode.getFirstChild();
              if (thisName1Node == null) continue;
              if (thisName1Node.getFirstChild() == null) continue;
              if (! thisName1Node.getFirstChild() instanceof
    org.w3c.dom.Text) continue;
              String data = thisName1Node.getFirstChild().getNodeValue();
              if (! data.equals("Process1")) continue;
              Node newCoffeeNode = document.createElement("Project");
              Node newName1Node = document.createElement("Process");
              Text tnNode = document.createTextNode("Process1");
              newName1Node.appendChild(tnNode);
              Node newName2Node = document.createElement("Process");
              Text tpNode = document.createTextNode("Process2");
              newName2Node.appendChild(tpNode);
              newProjectNode.appendChild(newName1Node);
              newProjectNode.appendChild(newName2Node);
              rootNode.insertBefore(newProjectNode, thisProjectNode);
              break;

  • How to Generate and Display SVG Graphics in ABAP

    Hi everybody,
    I tried to complete the Tutorial "How to Generate and Display SVG Graphics in ABAP, Part 1" by Siarhei Ulasenka (https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/ad83a990-0201-0010-d680-a189f8bc20fa).
    Unfortunately when I tried the example to display an SVG Drawing in an ABAP Report I get the error message "Es ist ein Laufzeitfehler aufgetreten, ungültiges Zeichen" (english should be something like "Runtime Error, unkown character"). But it works when I open the svgfile in a new IE Window (parameter in_place from cl_gui_html_viewer->show_url). Also when I open a svg file from the local disc it works fine.
    The code:
        CALL METHOD html_control->load_data
          EXPORTING
            url            = 'chart.svg'
            type         = 'image'
            subtype    = 'svg+xml'
          CHANGING
            data_table = lt_svg
          EXCEPTIONS
            OTHERS     = 1.
        CALL METHOD html_control->show_url
          EXPORTING
            url        = 'chart.svg'
            in_place   = 'X'
          EXCEPTIONS
            cntl_error = 1.
    Has anyone a solution? Thanks in advance for your help!
    Regards
    Kathrin

    Hello Alex,
    The Corel SVG viewer has problems loading and displaying the examples (see the list of limitations at their site). Try to use the Adobe viewer instead.
    Regards,
    Sergei Ulasenka

Maybe you are looking for

  • Not being recognized by Itunes for Windows. 0xE8000001 Error

    not being recognized by Itunes for Windows. 0xE8000001 Error I get this message when trying to sync my IPOD Touch 16GB after upgrading to 7.5. I have tried to remove 7.5 and reinstall 7.4 and still the same problem. I have it connected to the USB on

  • I can't open the application "TrueflowClient" because PowerPC applications are no longer supported. Please help?

    I have a bit of software that I really need to work "TrueflowClient" trouble is its not working think its a java  thing but any help would be greatly appreciated. think its a system issue going from Snow leopard to yosemite

  • (SD-ABAP-IDOC) Delivery Quantity change

    Hi, We have two material types i.e., Finished good and packaging material. we receive an inbound IDoc for picking with batch numbers for only finished goods. The incoming IDoc will have only finished goods, but not packaging materials. Once we receiv

  • Can I link to specific items in a Spry dataset?

    I have a website for a community festival.  I'm using a spry dataset for the festival events http://www.horizonfest.co.uk/programme/events.html .  Visitors click on an event in the left hand column and it appears on the right. The festival programme

  • Adobe form- image overlapping

    Hi , I have  got a scenario in with one image needs to be printed on top of other. 1) the seal of the company 2) on top of seal the signature of the enduser. the seal of the company will be one and the signature of the user will be changing based on