Reading and Wrting CSV format data

I am trying to read in a file in CSV form and to store the data separately in a set of arrays, and by using the ordinary System.out output, print out to screen a summary report of the form. Can anybody please assist me in this please...any help would be very much appreciated.

don't understand your question.
Just read the file, using StringTokenizer to create tokens, .... print out what you want

Similar Messages

  • Read and write excel sheet data from uploded file in sharepoint site programmatically 2013

    hi team,
    I am working on sharepoint 2013.I want to read and write data in excel sheet (micrsoft excel) from stored file in shrepoint docoumnt library .please suggest me
    vijay

    Hi
    Vijay,
    check those links
    http://www.sharepointwithattitude.com/archives/61
    https://social.technet.microsoft.com/Forums/en-US/e760051b-a92f-473c-9ec9-0f0c36c99e40/read-and-write-excel-sheet-data-from-uploded-file-in-sharepoint-site-programmatically-2013?forum=sharepointdevelopment
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation. Please remember to mark the reply as answer if it helps.

  • Reading and saving real time data

    Hi,
    I would like to read and save real time data using DAQ card 6004 with my PDA device. There is no problem with reading real time data, I can see it on the PDA's screen successfully. But, when I'm trying to save this real time data, I have the following problem:
    -It continuosly asks for file name.
    -It only saves the data instaneously,i.e. it only saves the data at the moment.
    I'm stuck with this problem, could you please help me?  I attached my vi doc.
    By the way, I'm using Labview PDA 8.5 version. 
    Attachments:
    Acq&Graph&Save Voltage-Int Clk.vi ‏32 KB

    oozdemir,
    >> -It continuosly asks for file name.
    You are prompting the user for a file name each time through the loop.  Do this before you enter the loop and pass that file ref in.
    >> -It only saves the data instaneously,i.e. it only saves the data at the moment.
    By this, I am going to assume you want to append to the file as you go.  Two problems, 1.  you are saving an array to the file and additional info about the array structure is being saved.  You would essentially be creating a binary file filled with array "records" (for lack of a better term) appended one after another.  2.  If you want to append to the file, you will need to use the "Set File Position.vi" to locate the file pointer to the end of the file.
    This task looks like it runs once per second until the stop button is pressed.  You could build an array of all acquired data in the loop and then write it when the loop exits.  Just a thought.  This app could create a lot of data though.
    -cb

  • Java XML-Reader (SAX)--How to read and display xml-element-data???

    hello all,
    i would like to display just some xml-data
    Which methods in java should i use to select just one character-data of this (for example: "deu" from the element <Language> or the attribut "version" of the element <catalog>).
    Here is the XML-document i want to parse and display it with System.out.print() :
    <BMECAT version="1.2">
         <HEADER>
              <GENERATOR_INFO>
                   e-proCat 2.1, e-pro solutions GmbH
              </GENERATOR_INFO>
              <CATALOG>
                   <LANGUAGE>deu</LANGUAGE>
                   <CATALOG_ID>Katalog 01</CATALOG_ID>
                   <CATALOG_VERSION>001.000</CATALOG_VERSION>
                   <CATALOG_NAME>ETIM</CATALOG_NAME>
                   <DATETIME type="generation_date">
                        <DATE>2002-05-22</DATE>
                   </DATETIME>
                   <TERRITORY>DE</TERRITORY>
                   <CURRENCY>EUR</CURRENCY>
                   <MIME_ROOT>ETIM-Daten</MIME_ROOT>
              </CATALOG>
    </HEADER>
    </BMECAT>
    Here is the java application i wrote and which doesn t work:
    import org.apache.xerces.parsers.SAXParser;
    import org.xml.sax.Attributes;
    import org.xml.sax.ContentHandler;
    import org.xml.sax.Locator;
    import org.xml.sax.SAXException;
    import org.xml.sax.XMLReader;
         public class XmlLeser implements ContentHandler {
    public XmlLeser(String fileName) {
    try {
    XMLReader myParser = new SAXParser(); // SAXParser (Xerces)
    myParser.setContentHandler(this);           
    myParser.parse(fileName);      } catch (Exception e) {
         System.out.println("Erreur " + e);     }
    }// End of constructor
    public void startDocument() {
         System.out.println(" start to parse " );
    } // startDocument()
    public void endDocument() {
    System.out.println(" End of Parse ");
    } // endDocument()
    public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException {
         System.out.println(localName) ;
    public void endElement(String namespaceURI, String localName, String qName) throws SAXException {           
    }// Endelement()
    public void characters(char ch[], int start, int length) {
    } // endCharacters(char[],int,int);
    public void processingInstruction(String target, String data) {
    } // processingInstruction(String,String)
    public void ignorableWhitespace(char ch[], int start, int length) {
              characters(ch, start, length);
    } // ignorableWhitespace(char[],int,int);
    public static void main(String args[]) {
    String xmlFileName = "";
    if (args.length == 0) {               
    System.out.println("Usage::java XmlLeser path/xmlFilename");
    System.exit(0);      } else {
    xmlFileName = args[0];
    XmlLeser pux = new XmlLeser(xmlFileName);
    }// end main()
    }//endClass

    You need to pass your filename String as a parameter to your functionality. It depends how you're currently set up though. We can't really see the top of your call so it's difficult to determine what you are calling and we don't really know from where you're calling either.
    If you're running standalone, then on launch of the application, you can feed in a file name as an argument that you can read in in String args[] in the main function and pass down to your XML splitter.
    If you're a method in a class that's part of a bigger pile, you can feed the file name as a String to the method from wherever you call from if it makes sense architecturally.
    You might also want to pass down a File object if that makes sense in your current code (i.e. if you're using your file for other purposes prior to the split, to avoid recreating closing/opening for no reason).
    Depends what you're trying to do. If I put together a piece like this, I would probably create an <yourcurrentrootpackage>.xml.splitter package.
    Also, on a side note, you're problem isn't really reading and writing XML in java, but seems more to be making your functionality generic so that any XML file can be split with your code.
    Regards
    JFM

  • Reading and wrting with selectors

    Heres the code is used for Reading. The problem is that when the client send the server some bytes it goes into the loop and exits which is good however it does not delete the Selected Keys set from the selector. I thought that after ever slection process it deletes the set of selectedkeys however I cant seem to get that to work. =/ This is causing the server to keep going through the loop every time the method is invoked =/
         private void ReadMessages() throws IOException {
              int ReadyUsers = Select.selectNow();
              if (ReadyUsers <= 0) {
                   return;
              } else {
                   Set<SelectionKey> Keys = Select.selectedKeys();
                   Iterator<SelectionKey> i = Keys.iterator();
                   while (i.hasNext()) {
                        SelectionKey Temp = (SelectionKey) i.next();
                        i.remove();
                        SocketChannel SChan = (SocketChannel) Temp.channel();
                        System.out.println("Finished Reading and writing");
         }Edited by: NavjotMinhas on Sep 16, 2008 3:44 PM

    Heres the code is used for Reading.There is no code here that does a read.
    The problem is that when the client send the server some bytes it goes into the loop and exits which is good however it does not delete the Selected Keys set from the selector.Your it.remove() does that. The real trouble here is that you are never doing any reads, so the same keys are selected next time around, because they are still ready.
    System.out.println("Finished Reading and writing");This printout is lying to you! You haven't finished anything at this point.

  • Working CSV formatted data in Numbers

    I am trying to read a CSV file in Numbers 09.  Is there a quick way to reformat the file to Numbers format?

    What is the problem ?
    As it was explained hjerte many times,
    if your system uses the period as decimal separator, the file name must end with ".csv" and the values must be separated by commas
    if your system uses the comma as decimal separator, the file name must end with ".csv" and the values must be separated by semi-colons
    There is an annoying problem: from time to time, users receive files whose name ends with ".xls" which are in fact csv ones,
    others receive files whose name ends with ".csv" which are in fact html tables or other formats.
    When you get a wrong behavior, drag and drop the document's icon on the application TextEdit.
    Doing that, you will quickly know which is the structure of your document.
    If it's really a csv one with the 'wrong' separator, the best scheme is to change temporarily your system setting so that it matches the separators used.
    If it use commas, set the system to country/region : USA
    If it use semi-colons, set the system to country/region :France.
    Numbers will run according to this setting so it will open the doc correctly.
    Save as is.
    Reset the system to your standard setting and open the new file in Numbers.
    This time it will be OK. Maybe you will have some problems with numbers using thousand separators or with dates.
    In other cases,you may send the file(s) to my mailbox.
    I will look at its internal structure. With a bit of luck, I have a script ready to decipher it.
    In other cases, I will do my best to write a new script.
    If you must send a file, click my blue name to get my address.
    Yvan KOENIG (VALLAURIS, France) 6 mai 2011 16:34:20

  • How to backup and restore alien formatted data from/to a CF card - just binary data, not mountable

    I'm trying to make a safety backup of data from a Compact Flash card and be able to restore this data to the CF card again in the event of disaster.
    The data on the CF is in a non-standard filesystem format - I just want to make a 'bit-for-bit' copy of the data on the CF to a backup of some sort held on the Mac and be able to put it back on the CF again if need be.
    I connect the CF card to the Mac using a USB type external adapter box.
    I have tried using Disk Utility. I made a ".dmg" Disk Image from the CF apparently OK, but it will not restore the image back to the CF. I get message "Restore failure. Could not validate source - device not configured".  I've not managed to find any
    After much fruitless digging it's in danger of turning into a second career trying to sort out how to do this - so a cry for help...

    Thanks jsd2 - that did help with one part of the puzzle - how to find what the 'dev' was to use in the 'dd' command! When I listed the /dev dir I couldn't see clearly what was what, and could feel a load more googling coming on, but this tool made it clear the CF I wanted was identified as '...disk2'.
    I'm trying "dd-ing" a .bin file I extracted from the .dmg backup onto the CF using the dd-GUI tool  - but it is very slow, currently indicating another 4 hours to finish the write!  I'm not sure the best way to abort.
    I wonder if it could be made to go faster if I used the actual dd command from the console, with the right parameters.
    Unfortunately I'm also not convinced that the ".bin" format will be any good - it was a choice between that and ".img" so I tossed a coin, for the sake of trying something.
    I think it is more likely to work if I used the 'dd' command (via the tool or from the command line) in both directions, ie. to make the copy and then to copy it back - that way presumably the raw byte format should be consistently packaged in each direction at least - but if it takes >4 hours each way with this 32GB CF card then it's not bearable!

  • My SuperDrive reads and writes these formats. Is this right?

    OK, another SuperDrive thread, I'm sorry! After some experimentation last night, I came up with this list of what my drive does.
    Read Verbatim 4x DVD-RW movie - All OK (didn't see it first time though)
    Erase Verbatim 4x DVD-RW - Toast & DU says Incompatible Format! Erased it in my external instead.
    Write Verbatim 4x DVD-RW - Drive spits it out. So no erase or write, just read.
    Read Imation 4x DVD+RW - Doesn't recognise there's a disk in there
    Erase Imation 4x DVD+RW - No (see above)
    Write Imation 4x DVD+RW - No (see above)
    Write Imation 8x DVD-R - OK
    Write Verbatim 16x DVD+R - Failed in Toast
    So I can read DVD-RW, DVD-R, and write to DVD-R. That's it!
    Mr drive is this according to System Profiler:
    PIONEER DVD-RW  DVR-106D:
      Firmware Revision: A612
      Interconnect: ATAPI
      Burn Support: Yes (Apple Shipped/Supported)
      Cache: 2000 KB
      Reads DVD: Yes
      CD-Write: -R, -RW
      DVD-Write: -R, -RW, +R, +RW
      Burn Underrun Protection CD: Yes
      Burn Underrun Protection DVD: Yes
      Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
      Media: No
    So it doesn't do what it should do. Any clues? Can I upgrade the firmware? Or when I sell the iMac do I just include a list of what the drive is capable of?
    iMac G4   Mac OS X (10.4.6)   1.25ghz, 17" USB2

    David, rather than expieriment your Provile from your Pioneer tells it all except a couple of very important things.
    The Media quality, in other words
    The problem is multi-dimensional.
    First check in your particular profiler on EXACTLY what type(FORMAT) of DISK's your burner will burn.
    Next please do not just randomly go out and buy a spool of 30 50 or 100 disc's because they are on sale.
    There is a HUGE difference in the type format disc's you buy
    There is also a HUGE difference in the BRAND you choose, some are junk.
    There is also a HUGE Difference in the SPEED of the media you choose.
    If any one or a combination of any of the 3 mentioned above can cause burn error's or no burn at all or spit the disk out.
    So it is a good idea to do a little homework on your Optical Drive and see just exactly what it is capable of and what it will use for media.
    (ONE LAST NOTE)
    Many of the Media Manufactures are becomming aware that many of the Apple Burners are having trouble with there Media. Maxell has just come out with a brand new one that is. Maxell 16X DVD-R.
    The key is read the packaging. this new media tells you that it will burn at any speed from 1X through 16X, and it works very well on the older Optical Drives. I also opt to use the individual that include the cases there seems to be much better quality, not like that of the spools.
    Remember Apples Drives to date are much pickier than those used in the PC community.
    Cheers Don

  • Reading and processing high freq data in different processes

    I am trying to create a program to receive raw data from UDP - EGD protocol, process the raw data then write data to file. The max transfer rate is 100 Hz and when running at this frequency the program cannot seem to process the data quicly enough to maintain a constant timestep ie the interval between data samples is not constant. Any suggestions how I can overcome this problem? I can post the VI if it will help...
    Thanks

    This is an example of how you can use a queue to move data from one loop to another. I created it from the producer/consumer template in labview. While this solution may work for you right now, I would suggest reading more on the forums about good architecture.
    Attachments:
    UDP_EGD producer consumer design.vi ‏15 KB

  • Application to Read and Write the Configuration Data from a xml file

    Hi,
    I have to develop a Webdynpro application that will do the following:
    Read the Configuration data from an xml file
    If stored in a file , and the file is not found, prompt the user to provide the file location.
    Pre-Populate the screen(table) with the configuration data
    Allow the user to edit the data
    Store the configuration data when the user hits the Save button
    The config xml file details are as follows:
    Regardless of the location of the configuration data, the following fields will be stored
    Application (string) will always contain u201CSFA_EDOCSu201D
    Key (string) eg LDAP_USER, DB_PREFIX, etc.
    Type (character)  u201CPu201D = Plain Text, u201CEu201D = Encrypted
    Value (string)
    Since I am new to WD, I would require help on this.
    Please help.Its Urgent.
    Regards,
    Vaishali.
    Edited by: vaishali dhayalan on Sep 19, 2008 8:29 AM

    Hi,
    I have to develop a Webdynpro application that will do the following:
    Read the Configuration data from an xml file
    If stored in a file , and the file is not found, prompt the user to provide the file location.
    Pre-Populate the screen(table) with the configuration data
    Allow the user to edit the data
    Store the configuration data when the user hits the Save button
    The config xml file details are as follows:
    Regardless of the location of the configuration data, the following fields will be stored
    Application (string) will always contain u201CSFA_EDOCSu201D
    Key (string) eg LDAP_USER, DB_PREFIX, etc.
    Type (character)  u201CPu201D = Plain Text, u201CEu201D = Encrypted
    Value (string)
    Since I am new to WD, I would require help on this.
    Please help.Its Urgent.
    Regards,
    Vaishali.
    Edited by: vaishali dhayalan on Sep 19, 2008 8:29 AM

  • How can I export to Text and/or CSV format and get correct page info?

    I am using CRVS2010 to upgrade an application from CRXI RDC to .Net.  When at runtime I generate the report and export to Text or CharacterSeparatedValues my page footers show Page -1 of 1.  Using the CRXI RDC, I see the correct page info in the footers.
    When I export to Text, I get the Page -1 of 1 for every page.  If I set LinesPerPage to zero, then I get it all on one page, which still has Page -1 of 1 at the end.
    If I export to CSV, I get Page -1 of 1 for every line.  If I use the viewer to review the report at runtime, and export from there, I cannot export as Text so I have no comparison.  However, the Export to CSV from the Viewer as Page -1 of 1for every entry just as my export does.
    What do I need to do to get the correct line info?  What is that is different from CRXI RDC and CRVS2010 .net that would impact this behavior?

    Yes, I am using SP2 for VS 2010 and I'm using the Page N of M formula in the page footer.  While my export code was not quite as simple as yours, I did it both ways in my test program with the same results.  A one page report whose footer says Page -1 of 1.
    Here's the relative code snippet:
    #if 0
        CrystalDecisions::Shared::ExportOptions ^exportOptions = gcnew CrystalDecisions::Shared::ExportOptions();
        exportOptions->ExportDestinationType = CrystalDecisions::Shared::ExportDestinationType::DiskFile;
        exportOptions->ExportFormatType = CrystalDecisions::Shared::ExportFormatType::Text;
        TextFormatOptions ^textFormatOptions = exportOptions->CreateTextFormatOptions();
        textFormatOptions->LinesPerPage = 0;
        textFormatOptions->CharactersPerInch = 11;
        exportOptions->FormatOptions = textFormatOptions;
         CrystalDecisions::Shared::DiskFileDestinationOptions ^diskFileDestinationOptions = exportOptions->CreateDiskFileDestinationOptions();
         diskFileDestinationOptions->DiskFileName = gcnew System::String("c:\temp\test.txt");
         exportOptions->DestinationOptions = diskFileDestinationOptions;
        thisReport.Export(exportOptions);
    #else
        thisReport.ExportToDisk(CrystalDecisions::Shared::ExportFormatType::Text, gcnew System::String("c:\temp\test.txt"));
    #endif
    Edited by: nlDevotie on Jan 9, 2012 11:59 PM

  • Read and Write files to data base throught Oracle Forms 6i

    Hello, please help me!
    How to attach or insert file into DB throught Oracle Forms and later open it ?
    Is there any possibilities to do that?
    Would be very appresiative!
    Solveiga

    Sorry forgot to add, Below is the code
    BEGIN
      A:=:EXP.D_DIR||'\'||'ACTIVITYS.TXT';
       hFile := Text_IO.Fopen(A, 'w');
      iCount := 1;
      OPEN cData;
      LOOP
    FETCH cData
      INTO  F1;
    EXIT WHEN cData%NOTFOUND;
      IF iCount <> 1 THEN
      Text_IO.New_Line(hFile, 1);
      END IF;
      Text_IO.Put(hFile, F1 );
      SYNCHRONIZE;
      message(to_char(iCount)||' Of '||TO_CHAR(:B1.CCOUNT),no_Acknowledge);
      set_item_property('spin.pro',width,2*round((iCount*100)/NVL(:B1.CCOUNT,1)));
      iCount := iCount + 1;
      END LOOP;
    CLOSE cData;
      Text_IO.Fclose (hFile);
    END;

  • Read and write a .CSV file contains cirillic characters issue

    Hi guys,
    I am a developer of a web application project which uses Oracle Fusion Middleware technologies. We use JDeveloper 11.1.1.4.0 as development IDE.
    I have a requirement to get a .csv file from WLS to application running machine. I used a downloadActinLinsener in front end .jspx in order to do that.
    I use OpenCSV library to read and write .csv files.
    Here is my code for read and write the .csv file,
    public void dwdFile(FacesContext facesContext, OutputStream out) {
    System.out.println("started");
    String [] nextLine;
    try {
    FileInputStream fstream1 = new FileInputStream("Downloads/filetoberead.CSV");
    DataInputStream in = new DataInputStream(fstream1);
    BufferedReader br = new BufferedReader(new InputStreamReader(in,"UTF-8"));
    CSVReader reader = new CSVReader(br,'\n');
    //CSVReader reader = new CSVReader(new FileReader("Downloads/ACTIVITY_LOG_22-JAN-13.csv"),'\n');
    List<String> list=new ArrayList();
    while ((nextLine = reader.readNext()) != null) {
    if(nextLine !=null){
    for(String s:nextLine){
    list.add(s);
    System.out.println("list size ; "+list.size());
    OutputStreamWriter w = new OutputStreamWriter(out, "UTF-8");
    CSVWriter writer = new CSVWriter(w, ',','\u0000');
    for(int i=0;i<list.size();i++){
    System.out.println("list items"+list.get(i));
    String[] entries = list.get(i).split(",");
    writer.writeNext(entries);
    //System.out.println("list items : "+list.get(i));
    writer.close();
    } catch (IOException e) {
    e.printStackTrace();
    say the filetoberead.CSV contains following data,
    0,22012013,E,E,ASG,,O-0000,O,0000,100
    1,111211,LI,0,TABO,B,M002500003593,,,К /БЭ60072715/,КАРТЕНБАЙ
    2,07,Balance Free,3
    1,383708,LI,0,BDSC,B,НЭ63041374,,,Т /НЭ63041374/,ОТГОНБААТАР
    2,07,Balance Free,161
    It reads and writes the numbers and english characters correct. All cirillic characters it prints "?" as follows,
    0,22012013,E,E,ASG,,O-0000,O,0000,100
    1,111211,LI,0,TABO,B,M002500003593,,,? /??60072715/,?????????
    2,07,Balance Free,3
    1,383708,LI,0,BDSC,B,??63041374,,,? /??63041374/,???????????
    2,07,Balance Free,161
    can somone please help me to resolve this problem?
    Regards !
    Sameera

    Are you sure that the input file (e.g. "Downloads/filetoberead.CSV") is in UTF-8 character set? You can also check it using some text editor having a view in hex mode. If each Cyrillic character in your input file occupies a single byte (instead of two), then the file is not in UTF-8. Most probably it is in Cyrillic for Windows (CP1251).
    If this is the case, you should modify the line
    BufferedReader br = new BufferedReader(new InputStreamReader(in,"UTF-8"));toBufferedReader br = new BufferedReader(new InputStreamReader(in,"windows-1251"));Dimitar

  • ORDER BY FORMAT(Date, 'mmmm')

    i wonder how can i order my statement interm of "ORDER BY FORMAT(Date, 'mmmm')" with using this it will order by alphabethical but i want it order by month... i had try "ORDER BY FORMAT(Date, 'mm')" but due to at the begining i have "SELECT FORMAT(Date, 'mmmm')FROM TABLE"
    my actual statement will look like this
    "SELECT FORMAT(Date, 'mmmm')AS DateMonth, COUNT(x) AS CounterX FROM Table WHERE FORMAT(Date, 'mmmm') BETWEEN 'January' AND 'August' GROUP BY FORMAT(Date, 'mmmm') AND ORDER BY FORMAT(Date, 'mmmm')ASC"...
    i want it order by month not alphabetical....
    pls adviced... thanks in advanced.

    SQL> select a, cnt
      2  from (
      3  select to_char(hiredate, 'month') a, to_char(hiredate, 'mm'), count(*) cnt
      4  from emp
      5  group by to_char(hiredate, 'month'), to_char(hiredate, 'mm')
      6  order by 2
      7  );
    A               CNT
    january           2
    february          2
    april             1
    may               1
    june              1
    september         2
    november          1
    december          4
    8 ñòðîê âûáðàíî.
    SQL> 

  • Process using Webservice in Reader and Writer becomes slow while connecting processors

    Hi,
    I have a process that reads from a web service and writes to a web service. When I try to modify the code(after stopping the running process) by adding new processors or change the current connections, the connecting arrows take forever to connect and sometimes the director hangs for a long time. There is no issue in other processes where I read and write from staged data.
    How to overcome this isue?
    Appreciate the help!
    Regards,
    Ravi

    Hi Nick,
    Thanks for the advice. In the scenario where upgrade is not an option, is there any workaround to this issue?
    What I've found is if I strip the next processor of all its connections, then it gets connected to the previous processor pretty quick.
    EDQ hangs if the processor has other input/output connections and I try to connect it to another processor)
    P1>---<P2>    <P3 ---------- P2 to P3 connects fast as P3 is standalone
    P1>---<P2>    <P3>---<P4> ---------- In this case,  when I try to connect P2 to P3, it hangs forever.
    I've a complex process and just for adding a few processors in between, I will not be able to connect the rest of the processors all over.
    Regards,
    Ravi

Maybe you are looking for

  • Support IPSec VPN Client in ASA Multiple Context Mode

    I've looked at under "Cisco ASA Series CLI Configuration Guide, 9.0" on "Configuring Multiple Context Mode", it says "IPsec sessions-5 sessions. (The maximum per context.) ".  Does it mean in ASA Multiple Contest Mode support IPSec VPN Client? I just

  • How to Batch Export Wide Still images

    Hello, I'm currently working on a project that uses Widescreen. I have no problems exporting the movie project to DVDstudio pro file, but when I try to Batch Export the Still Clips I took, it makes it into 4:3 size, rather than 16:9. Because of this,

  • Consumption of Configurable SFG into Configurable FG

    Hi Gurus, Below are the table in which I have created the FG, SFG, Charaterisctis, class, , Startegies and relationship Material FG SFG Charateristics  Created IM4, IM5, IM6 IM4,IM5,IM6 Class used 300 300 Relationship If Sales Order is created for FG

  • HT204053 HELP!!  I am stuck in iCloud limbo!

    I accidentally used a different email address for iCloud which I forgot the password for.  I want it to be the same Apple ID as my iTunes.  I have a 5th Gen iPod. I have tried all the advice on Apple and community and nothing I try works.  I can't re

  • Bapi to change "assignment" field on acct doc

    Hi, After the check run creates accounting docs, we want to update the "assignment" field on the accounting document (BSEG-ZUONR) with the check number.  Is there a BAPI I can use?  Or is this a job for a call transaction program? Thanks, Dennis