Help to get the logic

Hi, I have a table with below data
TableA
id   email
1   [email protected],bbb@abc,com,[email protected]
1   [email protected],[email protected],[email protected]
2   [email protected],[email protected]
2   [email protected],[email protected],[email protected]
now this email column if of 4000 chars.
the requirement is to take the distinct of the email.
i.e i want the output to be
1 [email protected]
1 [email protected]
1 [email protected]
1 [email protected]
1 [email protected]
2 [email protected]
2 [email protected]
2 [email protected]
can some one plz give suggestions how to implement this?

You could try benchmarking this:
WITH
  tbl AS (
    SELECT 1 id,'[email protected],bbb@abc,[email protected]' email FROM dual UNION ALL
    SELECT 1 id,'[email protected],[email protected],[email protected]' email FROM dual UNION ALL
    SELECT 2 id,'[email protected],[email protected]' email FROM dual UNION ALL
    SELECT 2 id,'[email protected],[email protected],[email protected]' email FROM dual),
number_list as (
   select rownum num
   from   dual
   connect by
     level <= (select max(length(email)-length(replace(email,','))) + 1 from tbl))
select
  id,
  substr(
    ','||email||',',
    instr(
      ','||email||',',
      ,1
      ,num)+1,
    instr(
      ','||email||',',
      1,
      num+1)-
    instr(
      ','||email||',',
      ',',1
      num)-1)
from
  tbl,
  number_list
where
  num <= length(email)-length(replace(email,','))+1Works by generating a list of integers from 1 to the maximum number of email addresses in any row (which is optionally really -- you could just generate a list from one to a reasonably large number), joining to the original table and pulling the string between the nth pair of commas.

Similar Messages

  • FM for getting the logical file name

    Hi,
    is there any FM for getting the logical file name.
    Thanks
    Vikranth

    Hi,
    CONSTANTS: c_mask          TYPE char9      VALUE ',.,..'.
          Pick up the file path from the application server
    FORM f1001_browse_appl_file .
      DATA:  lcl_directory  TYPE char128.
      lcl_directory  = p_direct.
      CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
        EXPORTING
          directory        = lcl_directory
          filemask         = c_mask
        IMPORTING
          serverfile       = p_f2  " Parameter File
        EXCEPTIONS
          canceled_by_user = 1
          OTHERS           = 2.
      IF sy-subrc <> 0.
       MESSAGE e000(zmm) WITH text-039.
       flg_app = 'X'.
      ENDIF.
    Then use  OPEN DATASET for data reading
    Hope this Helps.
    Manish
    Message was edited by:
            Manish Kumar

  • Getting the logical system from where RFC is being called

    Hi All,
    How can we get the logical system name from where RFC is being called?
    Regards,
    Akshay

    Hi Akshay,
    If your company follows the SAP recommendations on naming [logical systems|http://help.sap.com/SAPHELP_NW70/helpdata/EN/da/5990df015b5b43a36f6ce7fa1ee8c0/content.htm] <b>&lt;SystemID&gt;"CLNT"&lt;Client&gt;</b> then you should get away with a simple call to RFC_GET_ATTRIBUTES (and even if they don't, the function module might possibly provide other clues required to build the logical system name).
    There might be other ways, but I'm kind of suspecting that the logical system name of the calling system might not be part of the communication data (like other readily available data as IP address etc.). So if this solution doesn't work, it might be helpful to understand how the naming conventions for logical systems used by your company.
    Cheers, harald

  • F4 Help to get the path for a File source directory

    There are numerous function modules for browsing a particular file in desktop and getting the file path (including the fine name)  , like F4_FILENAME , KD_GET_FILENAME_ON_F4 , WS_FILENAME_GET etc. But can anyone tell me how to fetch only the directory path to the field were the F4 help is given. Actually the filename has to come in some other field in the selection screen. Is there separate funtion modules for these OR will changing parameters in the above function modules work?
    Pls Help....
    Also are there function modules for providing F4 help for getting the path to a file in application directory?

    Try this method CL_GUI_FRONTEND_SERVICES.
    It is a Global CLASS which is having different methods for different purposes
    see the documentation of it and use the methods of it
    see
    CL CL_GUI_FRONTEND_SERVICES
    Short Text
    Frontend Services
    Functionality
    The class CL_GUI_FRONTEND_SERVICES contains static methods for the following areas:
    File functions
    Directory functions
    Registry
    Environment
    Write to / read from clipboard
    Upload / download files
    Execute programs / open documents
    Query functions, such as Windows directory, Windows version, and so on
    Standard dialogs (open, save, directory selection)
    Example
    Determine the temp directory on your PC:
    DATA: TEMP_DIR TYPE STRING.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>GET_TEMP_DIRECTORY
    CHANGING
    TEMP_DIR = TEMP_DIR
    EXCEPTIONS
    CNTL_ERROR = 1
    ERROR_NO_GUI = 2.
    IF SY-SUBRC 0.
    Error handling
    ENDIF.
    flush to send previous call to frontend
    CALL METHOD CL_GUI_CFW=>FLUSH
    EXCEPTIONS
    CNTL_SYSTEM_ERROR = 1
    CNTL_ERROR = 2
    OTHERS = 3.
    IF SY-SUBRC 0.
    Error handling
    ENDIF.
    WRITE: / 'Temporary directory is:', TEMP_DIR.
    Notes
    The class CL_GUI_FRONTEND_SERVICES is based on the Control Framework. See the documentation for more information, in particular on CL_GUI_CFW=>FLUSH which must be called after many CL_GUI_FRONTEND_SERVICES methods.
    Migration Information
    The old file transfer model was based on function modules of the function group GRAP. The old features have been replaced by the class CL_GUI_FRONTEND_SERVICES. The following list contains the old function modules (italic) and the new methods (bold) that replace them:
    CLPB_EXPORT
    CLIPBOARD_EXPORT
    CLPB_IMPORT
    CLIPBOARD_IMPORT
    DOWNLOAD
    GUI_DOWNLOAD, dialog replaced by FILE_SAVE_DIALOG
    PROFILE_GET
    No replacement, use REGISTRY_* methods instead
    PROFILE_SET
    No replacement, use REGISTRY_* methods instead
    REGISTRY_GET
    REGISTRY_GET_VALUE, REGISTRY_GET_DWORD_VALUE
    REGISTRY_SET
    REGISTRY_SET_VALUE, REGISTRY_SET_DWORD_VALUE
    UPLOAD
    GUI_UPLOAD, dialog replaced by FILE_OPEN_DIALOG
    WS_DDE
    Obsolete: This function is no longer supported.
    SET_DOWNLOAD_AUTHORITY
    Obsolete: This function is no longer supported.
    WS_DOWNLOAD
    GUI_DOWNLOAD
    WS_DOWNLOAD_WAN
    Obsolete: This function is no longer supported.
    WS_EXCEL
    Obsolete: This function is no longer supported.
    WS_EXECUTE
    EXECUTE
    WS_FILENAME_GET
    FILE_SAVE_DIALOG, FILE_OPEN_DIALOG
    WS_FILE_ATTRIB
    FILE_SET_ATTRIBUTES, FILE_GET_ATTRIBUTES
    WS_FILE_COPY
    FILE_COPY
    WS_FILE_DELETE
    FILE_DELETE
    WS_MSG
    Obsolete: This function is no longer supported.
    WS_QUERY
    CD (current directory)
    DIRECTORY_GET_CURRENT
    EN (read/write environment)
    ENVIRONMENT_GET_VARIABLE
    ENVIRONMENT_SET_VARIABLE
    FL (determine file length)
    FILE_GET_SIZE
    FE (check if file exists)
    FILE_EXIST
    DE (check if directory exists)
    DIRECTORY_EXIST
    WS (determine Windows system)
    GET_PLATFORM
    OS (operating system)
    GET_PLATFORM
    WS_UPLDL_PATH
    Obsolete: This function is no longer supported.
    WS_UPLOAD
    GUI_UPLOAD
    WS_VOLUME_GET
    Obsolete: This function is no longer supported.
    Reward points if useful.

  • HT5568 when i try to install the Safari 6.0.2 update i get the message an error has occured The operation couldn't be completed. (NSURLErrorDomain error -3001.)(102) - can anyone help my get the update please

    when I try to install this update I get the message an error has occured The operation couldn’t be completed. (NSURLErrorDomain error -3001.)(102) - can anyone help my get the update please?

    There are problems with the servers. Download and install that update > http://swcdn.apple.com/content/downloads/53/02/041-8081/2jwp4wjrwygtm4lc608qy4h0 n4a9yyq37g/Safari6.0.2Mountain.pkg

  • PLEASE HELP ME GET THE SOFTWARE TO INSTALL ON MY COMPUTER SO I CAN HAVE WIRELESS INTERNET

    Okay i know this is off the tangent but i am losing my mind i have a wireless B broadband router model number befw11s4 and i lost the cd upon a long tideous move so can you please anyone PLEASE HELP ME GET THE SOFTWARE TO INSTALL ON MY COMPUTER SO I CAN HAVE WIRELESS INTERNET i am losing my mind i callled linksys and they were no help telling me i had two option to either buy a 29.99 plan or a 39.99 plan and i couldnt get  the help i needed unless i bought the **bleep** plans so i said kindly thank you for your time ...I figured i would post a thread up asking if someone anyone can please help me get this software or cd so i can install it on my computer !! THANK YOU FOR YOUR TIME !!!!!
    Message Edited by kent07 on 11-20-2009 05:46 PM

    You don't need any software to run the router at all.  Connect with your wired computer to 192.168.1.1 username blank, password admin and configure your router manually like everyone else. 

  • Please help me get the download to start again

    please help me get the download to start again

    In adobe download assistant.
    Select the product and start.
    If still not working
    delete the adobe download assistant.
    From c:/>program files>adobe>adobe download assistant .
    And redownload

  • I ordered mac OS and I got the email for License and I didnt get the attachement for content code. Please help me getting the content code.

    I ordered mac OS and I got the email for License and I didnt get the attachement for content code. Please help me getting the content code.

    It's a two email process, one email has a locked pdf with the redemption code. The second email has the password to unlock the pdf. They come separetly, so you may have to wait for the 2nd to arrive.

  • Help needed on the logic used to display ERP Sales order in CRM WEB UI

    Hi,
    I have a requirement where i need to trigger an activity/workflow in CRM for orders that are created through ERP Salesorder functionality. In the workflow list, we need to give the order description and provide an hyperlink to the order number. on selection of order number, it should display the ERP sales order. To achive this in workflow, i am trying to understand the as-is standard functionality which is available in Agent Inbox search on ERP sales order.This search is getting the ERP orders and on selecting the order it is opening the ERO sales order page. I tried debugging the method GET_MAINCATAEGORY available in the component iccmp_inbox and in the view Inboxsearch.But couldnt really able to crack the logic how it is retrieving the ERP sales order from inbox search. Any pointers on how this is achieved will be of great help.
    Thanks,
    Udaya

    Hi Denis,
    very good idea. I thougt myself about that workaround, but it is not really that for what I searched.
    I mean the "SAP Query" is a really good standard tool, that are used by many customers. That is why think there must be a standard way to display the SAP Query in the Web UI without using Transaction Launcher.
    But it seems that there is no way, except of the transaction launcher or by using an additional analyse system like SAP BI.
    By the way do you know a Web UI compoment which enable the user to start reports like SE38?
    Regards
    Fabian

  • I need help in getting the Enduser requirment collection in Quries..!

    Hello all,
          I am needed to go to the client site to get the end-user requirement on quires...!they have already sent me an xls file which has all the names/Descriptions of the reports they needed in BW module by module wise. These are not the SAP BC reports. now this something i have never worked on..(Gathering the requirement)...!and then when i come back form the site (1week)..we actually need to develop the BW modeling (from the scratch)to meet this. My client already has few other rollouts in BW like..Eg Europe/Asia ,this will help me 40% only and now this is a new rollout.
    I need ur help seriously to light success in my trip...
    1)What kind of information should i need to gather from end-user?(tell me in detail)
    2)there are around 180reports from all the modules...!and they may be or may not meet up the SAP BC.
    3)how to do the modelling based on this information?
    4)when i should go for Business contant Objects (Cubes/Datasources...etc)
    It will be kind enough for you all....!please share your experience with me..!I need it !
    Thanks to All.....!
    Have a nice day. ([email protected])

    Hi,
    For each and every report , try to get what are the restrictions to be consider and what is the logic of programming behind in the calulation of performance
    indicators.
    If you are able to get any relavent R/3 report take a look on that . and analyze the logic being used in the calcuations.
    Let us take report for Net sales(this is billing report):
    And assume the client wants to consider (total sales - value of returns) as net sales.
    So here all types of billing documents(wheher it may be sold document or return) will be extracte to BW.
    But in the report we need to differentiate the these billing documents on basis of Billing type or Billing category or Etc, to find out the value of net sales.After differentiating few documents come under sold documents and few comes under returns.
    So to differentiate the documents we should aware of what are the characterstics are crucial.
    And the logic in assigning the value of any document , each organization follows their own logic. So ask them how they are calculating them. This is important when they are following different calculation or logic for displaying values in any R/3 reports . It is important , because they will compare R/3 reports with BW reports later.
    And also try to tell them that BW is For analysis reports. It is very difficult(almost not possible) some times to built a report if they are looking pure OLTP oriented report in BW. So examine each report possibilities in BW.
    And donot worry for any thing . You will do it easily. Try to do the job with all your efforts.Then you will get success in that.
    with rgds,
    Anil Kumar Sharma .P

  • Could you please help me understand the logic behind certain things in OSX?

    Ok, so I try to be an open-minded guy, and I bear no particular allegiance to either OS. I own a Sony TZ and a Mac mini, and my wife has a MacBook Pro. I use both Oses.
    There are certain things I have trouble understanding in th Mac OS, so what I'd really like to understand the logic behind certain design decisions in the OS, and why these might be better ways of accomplishing things. I know how to get around all of the things I mention, so I'm not looking for instructions; rather I'm looking for well-thought out explanations for why these features are the way they are.
    *1. Programs don't quit when you close the window.*
    - This totally puzzles me. Why design it so that program windows are independent are from the running program itself? There must be a reason, cold someone explain how this is more efficient? To me, it's simpler to click an X on the window you are working on to completely shut down a program, rather than to either mouse through menus to select quit, or be obligated to using Command Q keyboard shortcut.
    *2. Menu bars are on the desktop.*
    - Related to the first point, why make the main thing framing your desktop be something which is always changing depending on the program? Why have file menus outside the main window of the program. Having the menu bar on the desktop then necessitates an additional area, the dock, which has to be used as a launch bar and to tell you what programs are currently running. That obligates you to having 3 different areas of screen: 1 for program menus, 1 for running programs, and the program window itself. This seems very inefficient to me. Not to mention all the messy-looking floating palettes all over the place, again because everything is separated and not nicely contained in a single program window.
    - Really, having a changing menu bar that frames the desktop isn't even consistent wth the whole desktop metaphor, which is that you place things on a desktop, like programs, files, etc. Are you changing the whole desk everytime you load a new program, yet the wallpaper stays the same? Doesn't seem to be logically consistent to me.
    *3. No delete key.*
    - This one really gets me. Why make such a commonly used key be a function key (Fn + Backspace)? Why make the user press a secondary key for a major function?
    *4. No Cut command.*
    - I read something about how Cut doesn't actually make sense when moving files around, but I obviously didn't fully understand it. Why make the user command drag, when you can just do Ctrl X??.
    *5. Launching Apps from the Finder.*
    - This seems weird to me, that you find and launch applications from the same thing you use to view files. Program icons in the finder are placeholders for the entire program, not files, yet they are found in the file viewer. Again, to me this seems logically mixed. I really dislike scrolling through Finder to look for apps. I know there is Spotlight and the dock (used as a quicklauncher), but these are really just workarounds for a setup which seems inherently illogical. To me at least, a menu of applications make more sense, ie, the start menu.
    Anyway, those are all I can think of now, although there are other things aout OSX that don't make sense to me.
    Thanks in advance! If I can understand Apple's reasoning and it is convincingly better, that will go a long way towards making me more comfortable with this OS.

    1. Programs don't quit when you close the window.
    That's really more a matter of what you're used to. It comes down to a programming decision as to what Apple and Microsoft considered to make sense. MS thinks that if there are no open windows, you're done using the app. Apple thinks you aren't necessarily done yet, as others have mentioned. I certainly wouldn't want Photoshop to quit every time I closed the last open image I was working on. Would be nice though if Safari would quit when I close the last open browser window. It's quick to relaunch if you really weren't done with it, so wouldn't be much of a bother to have it shut down with the last window.
    2. Menu bars are on the desktop.
    Makes way more sense the Microsoft's approach of repeating the same file menu on every open document in a program. How many places do you need to see File, Options and other common menu headings?
    2. Menu bars are on the desktop.
    Related to number two. The forward app is the only one you can directly work in, so why not have the menu bar change to reflect the choices for that application? When you go back to the previous app you were in, the menu bar changes back. So what loss of functionality is there? It comes back to not having menu bars on every single open window. There's no need or purpose for it.
    3. No delete key.
    Backspace does the same thing.
    4. No Cut command.
    Command+X, not Ctrl+X. This is Mac, not Windows. There's also very little need to ever do this from the keyboard. If you're moving files that are on the same drive/partition, then just drag and drop from the target folder window to the source. It's automatically a move. If going from one physical drive or partition to another, it's automatically a copy. Press and hold the Command key during the drag to make it a move.
    Besides, you don't really think Windows cuts the entire folder or file contents into RAM, do you? If your computer has 4 GB of RAM, and you cut 12 GB of data, it of course can't possibly fit in the clipboard. All Windows does when you do a cut is visually remove the files and folders from the screen. If the items are going to a location on the same drive/partition, it does the same thing as if you did a drag and drop move. The file table is simply updated to reflect the new file or folder locations. If it's to a different drive/partition, it then performs a copy then delete action, same as OS X.
    5. Launching Apps from the Finder.
    A program is just as much a file as any other file. It takes up space on the drive. The OS of course knows what to do with it when you double click an app. Same as it knows what to do when you double click a document related to an app. Windows is no different. An .exe file is also just as much a file as a .doc file. The .exe extension tells Windows to try and treat it as a program to load into RAM. It's not just a simple placeholder. The program has to be made up of something.

  • Help, i get the 'error downloading purchased music.' what do i do?

    i can download music and podcast fine but when i try to purchase a tv show i get the error message "there was an error downloading purchased music. the disk could not be read from or written to" i went to the purchases command in the advanced menu several times with no luck. i have purchased three seperate shows and get the same message. i'm tired of wasting money and would like some help.
    thanks

    Hmm... I've never seen a issue exactly like this before personally, but usually you get the "Disk Locked" error when installing iTUnes or adding anything, songs or videos to iTunes folder. go here and follow the instructions http://docs.info.apple.com/article.html?artnum=302398
    You may have to uninstall/reinstall iTunes AND quicktime if this does not work. Uninstlling iTunes DOES NOT delete any music, playlist, ratings ect ect

  • Laptop went for a swim, Help me get the contents of my time machined/boot camped hard drive back!

    So unfortunately my old 13" MacBook Pro got a drink spilled across it a few months back. Mr Genius at the Apple store took one look inside and shook his head "Catastrophic failure, It's hit the fan and gone everywhere". But it wasnt all bad news, He did pull the hard drive out and told me to get an enclosure for it. So I have My hard drive in an enclosure and all the contents are there, I now have a new 13" Macbook Pro sitting in front of me which i purchased yesterday but its not all going to plan... I need help with 2 things.
    1. My Home folder on the mac side had file vault turned on.
    It was running snow leopard OS X but I cant remember what version it was on at the time. What ever was out in March would be close enough. So I was hoping to boot from an external drive by restarting the computer, holding down option and then selecting which drive to boot from. It looks promising as I restart the computer with the hard drive unplugged and hold down option. Macintosh HD, Recovery HD come up, I plug in the external drive and Macintosh HD1 and Windows then appear as Yellow USB drives. BUT when I click on the Macintosh HD1 i get the grey screen with an apple on it but thats it.
    Insert Ideas For Problem 1 Here.....
    2. The other half of the hard drive was dedicated to windows.
    I'm an Engineer by trade and a lot of the software I use is windows based so I ran Windows 7 on half the hard drive. Booting from the external drive and selecting windows getsd a fair way into the start up process before i get a flicker of a blue screen and the whole computer re starts. What Im wondering is can I create a partition the same size as the old one and then just drop the contents of the external drive which was windows running on a partition in? It would be way easier than trying to start from scratch. I had all kinds of stuff going on in the windows side relating to connecting to the neetwork at work and I'd rather not go through it all again.
    Any help or advice is much appreciated!

    LOL
    Water ingress is a nasty thing, which is why it tends to do things like void warranties for example.
    When a device like this gets fully immersed in water and is subsequently dried out, there can remain deposits of gunk on the circuit boards, which conduct electricity and thus contribute to discharging the battery much faster.
    Water can even seep inside integrated circuits and wreak havoc in there.
    Sooner or later your phone is going to give up the ghost so I suggest you start reading through the fine print on your home insurance policy to see if it covers appliances going for a swim without a swim suit.
    A last-ditch operation you can try in an attempt to clean any impurities that may have deposited inside the phone, and I know this sounds nuts, is to drown it again, but this time in demineralized water (like the stuff you're supposed to put in your iron).
    Take the battery out, dunk the phone in the water for a few minutes. Then take it out, drain it, stick it in a bowl and cover it in uncooked rice, put the bowl of phone risotto in a warm place (such as an airing cupboard) and leave it there to simmer for 48 hours.
    One of three things will happen:
    1) Nothing. No better, no worse. At least you tried.
    2) Problem solved or at least situation improved. Yay!
    3) Phone worse off or maybe even completely dead. This was going to happen anyway sooner or later.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Please help me get the pictures of the puppies I selected off the back of my tool bar. Thank you.

    I'm disabled, I did the FF update, I quickly picked the puppies I find it to be a huge distraction need it OFF, please help me get if off, regular toolbar background is what I need. Puppies are causing seizures Please help and thank you.

    Tools > Add-ons > Themes, click "Default", click "Use Theme"
    See:
    http://support.mozilla.com/en-US/kb/Using+themes+with+Firefox#Managing_themes_and_personas

  • Need Help in Getting the below output

    Hi All,
    The below is the table data.
    col1     col2     col3     col4     col5     col6
    Aa     1     Con     100     10     -1
    Ba     2     Cam     50     2     33
    Aa     1     Con     200     20     -2
    Ca     3     val     2     5     -10
    Aa     1     Con     150     30     -3
    Ba     2     Cam     20     3     11
    Ca     3     val     3     5     -20
    Ba     2     Cam     30     5     22
    Ca     3     val     5     4     -30
    I need the output as below. Please help me in getting the output.
    col1     col2     col3     col4     col5     col6
    Aa     1     Con     100     10     -1
    Aa     1     Con     200     20     -2
    Aa     1     Con     150     30     -3
    Aa-Con Subtotal          450     60     -6
    Ba     2     Cam     20     3     11
    Ba     2     Cam     30     5     22
    Ba     2     Cam     50     2     33
    Ba-Cam Subtotal          100     10     66
    Ca     3     val     2     5     -10
    Ca     3     val     3     5     -20
    Ca     3     val     5     4     -30
    Ca-val Subtotal          10     14     -60
    I am using Oracle 10g. Let me know if other details required.
    Thanks in Advance.
    Regards,
    Ravi Kumar Ankarapu.

    You can try using ROLLUP and GROUPING SETS like how some of the other forum members have suggested. Another way of getting the desired output would be :
    with t as
    select 'Aa' col1, 1 col2, 'Con' col3, 100 col4, 10 col5, -1 col6 from dual
    union all
    select 'Ba', 2, 'Cam', 50, 2, 33 from dual
    union all
    select 'Aa', 1, 'Con', 200, 20, -2 from dual
    union all
    select 'Ca', 3, 'val', 2, 5, -10 from dual
    union all
    select 'Aa', 1, 'Con', 150, 30, -3 from dual
    union all
    select 'Ba', 2, 'Cam', 20, 3, 11 from dual
    union all
    select 'Ca', 3 ,'val', 3, 5, -20 from dual
    union all
    select 'Ba', 2, 'Cam', 30, 5, 22 from dual
    union all
    select 'Ca', 3, 'val', 5, 4, -30 from dual
    select * from
        select * from t
        union all
        select distinct * from
            select col1 || '-' || col3 || ' Sub-total' col1, null col2, null col3,
            sum(col4) over (partition by col1 order by col1) col4,
            sum(col5) over (partition by col1 order by col1) col5,
            sum(col6) over (partition by col1 order by col1) col6
            from t
    order by col1, col2, col3
    Output:
    "COL1"     "COL2"     "COL3"     "COL4"     "COL5"     "COL6"
    "Aa"     "1"     "Con"     "150"     "30"     "-3"
    "Aa"     "1"     "Con"     "100"     "10"     "-1"
    "Aa"     "1"     "Con"     "200"     "20"     "-2"
    "Aa-Con Sub-total"     ""     ""     "450"     "60"     "-6"
    "Ba"     "2"     "Cam"     "50"     "2"     "33"
    "Ba"     "2"     "Cam"     "20"     "3"     "11"
    "Ba"     "2"     "Cam"     "30"     "5"     "22"
    "Ba-Cam Sub-total"     ""     ""     "100"     "10"     "66"
    "Ca"     "3"     "val"     "5"     "4"     "-30"
    "Ca"     "3"     "val"     "2"     "5"     "-10"
    "Ca"     "3"     "val"     "3"     "5"     "-20"
    "Ca-val Sub-total"     ""     ""     "10"     "14"     "-60"

Maybe you are looking for

  • Can't connect to wireless network with "conflicting" essid

    Hello, My wireless card works perfectly (actually I am using ndiswrapper, but anyway) on Arch and I can connect to my home wireless network. I use iwconfig to connect. In my office we have a wireless network. It's essid is "default" and it uses WEP.

  • Creation of Shipment Document after Saving the Material Document in SAP ETM

    Hi, The SAP ETM (Equipment Tools Management) is active in the system. As per the process flow We need to create a material document say with movement type 501. The moment we save this document the system should create the Shipmenty Document in ETM. T

  • Print the Long text in Smartform

    Hi all, I designed a Work order document using Smartform for the T-Code 'IW32'. I am able to print the Operation short text, but there is one more provision for the user to enter long text also. I am not getting where this text gets stored in the dat

  • Help converting Mac iTunes files to PC iTunes files

    I have an iBook with lots of songs, both bought from iTunes and copied from my own CD's, and I would like to move all these files onto my new Sony Viao. I have tried to be very matter of fact by coping the files from my Mac to my thumbdrive in order

  • BD64 - generate partner profile - outbound parameter; wrong receiver port

    Hi all, I'm using a distribution model (transaction BD64) for creating partner profiles in my system. This works fine, exept for one thing. The receiver port used in the outbound parameter is wrong. It's using the tRFC port of the destination system