Concacenate Many Columns text into one Column

Hi,
I have many columns with text in it. I would like to ideally concatenate these column content into just ONE column.
Please help work out how to do this as I have no idea.
I am somewhat familiar with CMD so if you can help with this urgently that would be SO awesome.
Thanks
:)

890635 wrote:
Thanks again...
So I want to display this data eventually on forms. So I think I do need to create a blank column.
so let's say I want the concatenated data to end up in "Final_Delivery".
How to do that?
Thank youI dont have any idea about Forms...But just a guess that for form as well you must be writing some SQL, and you can use the sql there directly. Otherwise if you want to get it inserted into new column in existing table....First you have to add a new column to your table and then run update Statement to populate that data..similar to this
SQL> select * from emp;
     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO       TEST INFO
      7369 SMITH      CLERK           7902 17-DEC-80        800                    20
      7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
      7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
      7566 JONES      MANAGER         7839 02-APR-81       2975                    20
      7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
      7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
      7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10
      7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
      7839 KING       PRESIDENT            17-NOV-81       5000                    10
      7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
      7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO       TEST INFO
      7900 JAMES      CLERK           7698 03-DEC-81        950                    30
      7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
      7934 MILLER     CLERK           7782 23-JAN-82       1300                    10
14 rows selected.
SQL> update emp set info=to_char(empno)||' '||ename||' '||job;
14 rows updated.
SQL> select * from emp;
     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO       TEST INFO
      7369 SMITH      CLERK           7902 17-DEC-80        800                    20            7369 SMITH CLERK
      7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30            7499 ALLEN SALESMAN
      7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30            7521 WARD SALESMAN
      7566 JONES      MANAGER         7839 02-APR-81       2975                    20            7566 JONES MANAGER
      7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30            7654 MARTIN SALESMAN
      7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30            7698 BLAKE MANAGER
      7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10            7782 CLARK MANAGER
      7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20            7788 SCOTT ANALYST
      7839 KING       PRESIDENT            17-NOV-81       5000                    10            7839 KING PRESIDENT
      7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30            7844 TURNER SALESMAN
      7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20            7876 ADAMS CLERK
     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO       TEST INFO
      7900 JAMES      CLERK           7698 03-DEC-81        950                    30            7900 JAMES CLERK
      7902 FORD       ANALYST         7566 03-DEC-81       3000                    20            7902 FORD ANALYST
      7934 MILLER     CLERK           7782 23-JAN-82       1300                    10            7934 MILLER CLERK
14 rows selected.
SQL>Regards,
Navneet

Similar Messages

  • How to merge many XML files into one?

    Hi: I got a small project to combine many XML files into one and convert the combined XML file in Excel using AppleScript. My XML files look like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <Metadataobject>
        <from>[email protected]</from>
        <jobname>B3_IM09MBDUF</jobname>
        <pages>2</pages>
        <priority>3</priority>
        <timezone>CEST</timezone>
        <year>2013</year>
        <month>7</month>
        <day>15</day>
        <hour>11</hour>
    </Metadataobject>
    and like this...
    <?xml version="1.0" encoding="UTF-8"?>
    <Metadataobject>
        <from>[email protected]</from>
        <jobname>P1_FR1330G006007_Kate_van der Vaart</jobname>
        <pages>2</pages>
        <priority>1</priority>
        <timezone>CEST</timezone>
        <year>2013</year>
        <month>7</month>
        <day>12</day>
        <hour>16</hour>
    </Metadataobject>
    I get many XML files like this. And I want them to be combined and shown like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <Metadataobject>
        <job id="1">
        <from>[email protected]</from>
        <jobname>B3_IM09MBDUF</jobname>
        <pages>2</pages>
        <priority>3</priority>
        <timezone>CEST</timezone>
        <year>2013</year>
        <month>7</month>
        <day>15</day>
        <hour>11</hour>
        </job>
        <job id="1">
        <from>[email protected]</from>
        <jobname>P1_FR1330G006007_Kate_van der Vaart</jobname>
        <pages>2</pages>
        <priority>1</priority>
        <timezone>CEST</timezone>
        <year>2013</year>
        <month>7</month>
        <day>12</day>
        <hour>16</hour>
        </job>
    </Metadataobject>
    And finally the combined XML file converts in Excel sheet with column headings "Job ID", "From", "Job Name" and so on...
    Or there is another best way to get the same result...
    Thanks

    That is just an intermediary state to get to the excel version. Actually I get many small XML files (as shown above) from client and I want them all combined in an excel sheet with common column headings... like this...
    from
    jobname
      pages
    priority
    timezone
    year
    month
    day
    hour
    id
    [email protected]
    B3_IM09MBDUF
       2
    3
    CEST
    2013
    7
    15
    11
    1
    [email protected]
    B3_IM09MBDUF
       2
    3
    CEST
    2013
    7
    15
    11
    2
    Thanks for your response.

  • When converting dvds to ipod, how do you combine many video files into one?

    Hello everyone! When i convert dvds to Ipod format (on windows using videora) the converter seperetly re-encodes severeal (about 4) .99 Gig files into smaller ipod videos. each file is about 30 minutes long, and i was wondering if all of them could be converted into one 2 hour movie file(star wars III if you're wondering). If there is a free way to do this (not quicktimePro)I would find that extreemly helpful.

    As TSN has indicated we have no idea what program you are using, other than you posted in the Acrobat forum. In Acrobat you go to File > Create > Combine (varies with version of Acrobat). You can also open one and then use the pages>Insert to add the others.

  • Combining many small projects into one large project/executable - avoid VI conflicts

    I have multiple small projects that have been done, and oru customer now wants them combined into a single executable, where you'd select which program you want to run and have it be launched. My initial thought was no big deal, create a new VI on which the user selects which program to run, and I just call that main.vi for whichever particular program they selected.
    But wait, not so fast.
    As soon as the particular smaller programs' main VIs are placed on a block diagram of a VI in this master project, all their dependencies are loaded into the project. Well, a lot of these smaller projects have typedefs with the same name, or even classes with the same name because they were all developed separately. It could be a mess and very time consuming to resolve all these conflicts right now.
    I was thinking of doing something "plugin-like" where I include the smaller main VIs in the install, in some folder on disk, and they get called dynamically. Would this work? I have never tried it. Is there a better way?
    There is also the idea of shipping multiple executables, and my "master program" calls a particular one using a command line prompt to run the exe. 
    Thoughts and suggestions appreciated.
    CLA, LabVIEW Versions 2010-2013

    tst wrote:
    Another option which should be simple in theory is setting up each project to build its VI as a packed library instead of an EXE. That way, all the VIs it calls should be fully namespaced and included and you can statically call the main VI in each packed library in your master project.
    I have no practical experience with this, but it will mean that single EXE will now have to load copies of all the shared VIs.
    Hm, this may work. I think I will take the exe approach for now and can adjust as necessary. Either way it's no different for the programmer, they still have to do two builds if a VI changes (the small project, then the main one). The separate exe's also solve the issue of config files which may or may not have the same names I can't remember. This way they are all in their own data directories instead of one top level data directory which could cause issues post-install.
    CLA, LabVIEW Versions 2010-2013

  • How to extract many procedures data into one procedure.

    Hi all,
    I have about 16 procedures which extracts a csv files every time we run
    Exec package.procedure1;
    Exec package.procedure2;
    Exec package.procedure3;
    I wish to stop doing this tedious operation(-_-)
    How to put all these procedures in an EXTRACT_ALL procedure.
    I tried something like this.But I think i am getting it all wrong.
    PROCEDURE extract_all_states
         IS
          outfile     UTL_FILE.file_type;
             curr_curs1   varchar2(4000);
             curr_curs2   varchar2(4000);
         BEGIN
         extract_Penang (curr_curs1);
                    extract_Selangor (curr_curs2);
         UTL_FILE.fclose (outfile);
       EXCEPTION
          WHEN UTL_FILE.invalid_mode
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'Invalid Mode Parameter' || '  -  ' || (SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.invalid_path
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'Invalid File Location' || '  -  ' ||(SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.invalid_filehandle
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'Invalid Filehandle' || '  -  ' ||(SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.invalid_operation
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'Invalid Operation' || '  -  ' || (SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.read_error
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'Read Error' || '  -  ' || (SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.internal_error
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'Internal Error' || '  -  ' || (SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.charsetmismatch
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message :=
                   'Opened With FOPEN_NCHAR But Later I/O Inconsistent'
                || '  -  '
                || SQLERRM;
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.file_open
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'File Already Opened' || '  -  ' ||(SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.invalid_maxlinesize
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'Line Size Exceeds 32K' || '  -  ' ||(SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.invalid_filename
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'Invalid File Name' || '  -  ' ||(SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.access_denied
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'File Access Denied By' || '  -  ' ||(SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN UTL_FILE.invalid_offset
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'FSEEK Param Less Than 0' || '  -  ' || (SQLERRM);
             RAISE gv_exp_generate_error;
          WHEN OTHERS
          THEN
             UTL_FILE.fclose (outfile);
             gv_error_message := 'Unknown UTL_FILE Error' || '  -  ' || (SQLERRM);
             RAISE gv_exp_generate_error;     
         END extract_all_states; 
       END states_pkg;Error(321,3): PLS-00306: wrong number or types of arguments in call to 'EXTRACT_PENANG'
    Error(321,3): PLS-00306: wrong number or types of arguments in call to 'EXTRACT_SELANGOR'
    null

    Why is it that your "tedious" manual operation shows no parameters to the procedures while your extract_all procedure has parameters?
    You need to call each of the individual procedures in exactly the same way as you do when you execute them individually at the command line. In your extract_all procedure, you are clearly not doing so, hence the "wrong number or types of arguments in call to"
    John

  • Breaking up of, One IDoc to many IDocs & combing Many IDocs into one IDoc?

    Does anybody have any sample code of:
    Splitting an IDoc into multiple IDocs and
    Combining many similar IDocs into one IDoc
    Any pointers will be appreciated.
    Regards
    Mahesh

    This is the code for splitting of an inbound idoc into multiple idoc
    REPORT ztemp no standard page heading .
    ******************Data Declaration for selection screen***************
    TABLES: edidc,edidd.
    CALL SELECTION-SCREEN 9000.
    SELECTION-SCREEN: BEGIN OF SCREEN 9000,
                      BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS: idocno FOR edidc-docnum.
    SELECTION-SCREEN:END OF BLOCK b1 ,
                      END OF SCREEN 9000.
    *******************Data Declaration ************************************
    DATA : it_contrl LIKE TABLE OF edidc WITH HEADER LINE,
           it_hdata     LIKE TABLE OF edidd WITH HEADER LINE,
           it_fdata  LIKE TABLE OF edidd WITH HEADER LINE,
            it_gdata  LIKE TABLE OF edidd WITH HEADER LINE,
           it_data LIKE TABLE OF edidd WITH HEADER LINE,
           it_status LIKE TABLE OF bdidocstat WITH HEADER LINE,
           it_bdwfretvar LIKE TABLE OF bdwfretvar WITH HEADER LINE,
           it_bdi_ser LIKE TABLE OF bdi_ser WITH HEADER LINE,
           it_ldata LIKE TABLE OF edidd WITH HEADER LINE,
           it_tede2  LIKE  tede2,
           vbeln LIKE vbak-vbeln,
           idocnum LIKE  edidc-docnum,
           result LIKE bdwfap_par-result,
           it_stat LIKE edids.
    DATA : count TYPE i ,
           counter TYPE i ,
           temp TYPE i VALUE 1 ,
           line TYPE i ,
           tab LIKE sy-tabix.
    *********************passing values to control record*****************
    it_contrl-direct = '2'.
    it_contrl-rcvprn = 'ID3IDES802'.
    it_contrl-rcvprt = 'LS'.
    it_contrl-doctyp = 'ORDERS05'.
    it_contrl-idoctp = 'ORDERS05'.
    it_contrl-sndpor = 'ZSOFI'.
    it_contrl-sndprt = 'LI'.
    it_contrl-sndprn = '1000'.
    it_contrl-mestyp = 'ORDERS'.
    APPEND it_contrl.
    ************************Select query for data*************************
    SELECT   * FROM edid4 INTO CORRESPONDING FIELDS OF TABLE it_fdata
    WHERE   docnum IN idocno.
    SELECT   * FROM edid4 INTO CORRESPONDING FIELDS OF TABLE it_data
    WHERE   docnum IN idocno AND segnam NOT LIKE 'E1EDP%'  .
    SELECT   * FROM edid4 INTO CORRESPONDING FIELDS OF TABLE it_hdata
    WHERE   docnum IN idocno AND segnam  LIKE 'E1EDP%'.
    **************select query to count the no of E1EDP01 segment*********
    SELECT COUNT( * ) FROM edid4 INTO count  WHERE docnum IN idocno AND
    segnam = 'E1EDP01'.
    *************to determine the no of idocs to be generated************
    count = count / 5.
    PERFORM datasplit.
    **********************************for remaining idocs*****************
    counter = count MOD 5.
    IF counter NE 0.
      PERFORM dataremain. .
    ENDIF.
    *&      Form  datasplit
          text
    -->  p1        text
    <--  p2        text
    FORM datasplit  .
      LOOP AT it_data.
        MOVE-CORRESPONDING it_data TO it_gdata.
        APPEND it_gdata.
      ENDLOOP.
      DO count TIMES.
        PERFORM split.
        perform idoccreate.
        enddo.
    ENDFORM.                   " datasplit
    *&      Form  SPLIT
          text
    -->  p1        text
    <--  p2        text
    FORM split .
      LOOP AT it_hdata.
        IF temp <= 5.
          ON CHANGE OF it_hdata-segnam.
            IF it_hdata-segnam = 'E1EDP01'.
              MOVE-CORRESPONDING it_hdata TO it_gdata.
              APPEND it_gdata.
            ELSE.
              MOVE-CORRESPONDING it_hdata TO it_gdata.
              APPEND it_gdata.
              temp = temp + 1.
            ENDIF.
          ENDON.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " SPLIT
    *&      Form  dataremain
          text
    -->  p1        text
    <--  p2        text
    FORM dataremain .
      CLEAR it_gdata[].
      LOOP AT it_data.
        MOVE-CORRESPONDING it_data TO it_gdata.
        APPEND it_gdata.
      ENDLOOP.
      LOOP AT it_hdata .
        IF sy-tabix  > 10.
          MOVE-CORRESPONDING it_hdata TO it_gdata.
          APPEND it_gdata.
        ENDIF.
      ENDLOOP.
      perform idoccreate.
    ENDFORM.                    " dataremain
    *&      Form  idoccreate
          text
    -->  p1        text
    <--  p2        text
    form idoccreate .
    ***********************for creating the inbound idocs****************
    CALL FUNCTION 'IDOC_INBOUND_WRITE_TO_DB'
       EXPORTING
         pi_status_message             = it_stat
         pi_do_handle_error            = 'X'
       PI_NO_DEQUEUE                 = ' '
         pi_return_data_flag           = 'X'
      PI_RFC_MULTI_CP               = '    '
       IMPORTING
         pe_idoc_number                = idocnum
         pe_state_of_processing        = sy-subrc
         pe_inbound_process_data       = it_tede2     "for process code
        TABLES
          t_data_records                = it_gdata
      T_LINKED_OBJECTS              =
        CHANGING
          pc_control_record             = it_contrl
    EXCEPTIONS
       IDOC_NOT_SAVED                = 1
       OTHERS                        = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      COMMIT WORK.
    *it_contrl-status = '64'.
    modify it_contrl index 1.
    ****************for posting the idoc**************************
      CALL FUNCTION 'IDOC_INPUT_ORDERS'
        EXPORTING
          input_method                = 'A'
          mass_processing             = '1'
       IMPORTING
         workflow_result             = result
      APPLICATION_VARIABLE        =
      IN_UPDATE_TASK              =
      CALL_TRANSACTION_DONE       =
       DOCUMENT_NUMBER             = vbeln
        TABLES
          idoc_contrl                 = it_contrl[]
          idoc_data                   = it_gdata[]
          idoc_status                 = it_status[]
          return_variables            = it_bdwfretvar[]
          serialization_info          = it_bdi_ser[]
      EDI_TEXT                    =
      EDI_TEXT_LINES              =
       CLEAR : it_contrl-docnum.
      COMMIT WORK.
    endform.                    " idoccreate

  • Error when pasting 1K of text into a text area of tabular form

    This appears to be a bug to me, put please offer suggestions if you have them....
    Using apex with XE, I have created a table with two varchar2(4000) columns in them. The user will paste large blocks of text into one or both of them (e.g paste text copied from e-mail).
    I created a tabular form and set the two fileds to display as "text area". Insert and/or update works fine unless I paste more than about 1 to 1.5 kbytes of text into one of these fileds, in which case I get a page not found error with the following URL:
    http://127.0.0.1:8080/apex/wwv_flow.accept
    After the error page displays, I can hit the back button and then remove just enough text to get it to under the 1 to 1.5 kbytes and then either insert or update works fine.
    One more bit of info. If I create a single row form then it works fine, it is only the multi-row tabular form that seems to have this issue.

    I don't think the character set is the problem. I used a string of numbers 0123456789 and just copied and pasted it repeatedly to build up the text. The database character set is WE8MSWIN1252.
    Regarding the apache log. I have to admit that I don't even know if I'm running apache. I am using a newly installed Oracle XE on a laptop in order to get some experience with application express. This app is the first one I've done. If someone will direct me to the log then I'll be glad to check it and post the relevent contents.
    I signed up for an apex workspace and intend to see if I can recreate the error from there so I can see if the problem is just in the free version of apex that comes with the Oracle Express Edition for windows database.

  • How load text into dynamic text boxes from external file?

    hi all,
    my animation is very simple - a background image and 2 text boxes.  one of the textboxes shows a large word, which crossfades to another word, with a total of about 12 words (showing one at a time in different text boxes fading in & out in the same spot).
    i need a way to have the text be imported dynamically via xml or json (xml preferred).  this article is a good start, but i noticed he's putting all of the text into one box - i need separate strings put into separate boxes from the xml.
    Chris Gannon - Loading XML via AJAX into Adobe Edge
    he uses
    var outputField = $(this.lookupSelector(“xmlOutput”));
    for his text box.  what would be the best way to revise this code to include all my individual strings to be loaded into my individual text boxes?  thinking an array might work, but my js skills are limited.
    any other suggestions or tutorials you could point me to would be appreciated.
    thanks!!

    thanks joel_pau !
    this is helpful in seeing how the array is created, but after giving it a go I became a little confused.
    i wound up trying it again based on the example i linked out to previously, but it's not adding the text from my xml file when previewing.
    here's the code i'm using in edge animate on my stage.  something must be wrong somewhere.  let me know if you have any suggestions on this.
    // insert code to be run when the composition is fully loaded here
    // here i'm assigning a variable to each one of my textboxes at they're named in my edge animate comp
    var outputField1 = $(this.lookupSelector("helps2"));
    var outputField2 = $(this.lookupSelector("communicate"));
    var outputField3 = $(this.lookupSelector("experience"));
    var outputField4 = $(this.lookupSelector("interact"));
    var outputField5 = $(this.lookupSelector("understand"));
    var outputField6 = $(this.lookupSelector("overcome"));
    var outputField7 = $(this.lookupSelector("flourish"));
    var outputField8 = $(this.lookupSelector("collab"));
    var outputField9 = $(this.lookupSelector("trust"));
    var outputField10 = $(this.lookupSelector("grow"));
    var outputField11 = $(this.lookupSelector("engage"));
    var outputField12 = $(this.lookupSelector("survive"));
    var outputField13 = $(this.lookupSelector("thrive"));
    var outputField14 = $(this.lookupSelector("evolve"));
    var outputField15 = $(this.lookupSelector("connect"));
    var outputField16 = $(this.lookupSelector("achieve"));
    $.ajax({   
        type: "GET",
        url: "myxmlfile.xml",
        dataType: "xml",
        success: function(xml) {
    //here i'm trying to load the the text in my xml file into my textboxes in edge animate.  'txt1, txt2, txt3' are the tags in my xml file
            outputField1 = $(xml).find('txt1').text();
            outputField2 = $(xml).find('txt2').text();
            outputField3 = $(xml).find('txt3').text();
            outputField4 = $(xml).find('txt4').text();
            outputField5 = $(xml).find('txt5').text();
            outputField6 = $(xml).find('txt6').text();
            outputField7 = $(xml).find('txt7').text();
            outputField8 = $(xml).find('txt8').text();
            outputField9 = $(xml).find('txt9').text();
            outputField10 = $(xml).find('txt10').text();
            outputField11 = $(xml).find('txt11').text();
            outputField12 = $(xml).find('txt12').text();
            outputField13 = $(xml).find('txt13').text();
            outputField14 = $(xml).find('txt14').text();
            outputField15 = $(xml).find('txt15').text();
            outputField16 = $(xml).find('txt16').text();
    but nothing happens on preview.  my textboxes still contain the original text that lives in my comp.

  • Uploading long text as one long text for the same records.

    Hi,
    i am uploading long text into one custom application.in that i had one issue,
    I am uploading long text with the combination of material,palnt,division,sales organization and distribution channel.
    Now my reqiurement is when ever two or more than two records are same for the material,palnt,division.The respected text shulod be created as a single text.
    will any body suggest me with logic, how to handle it?

    Hi,
    i am having records like this...
    MATNR    VKORG    VTWEG    TEXT
    865498    0012        00654       test1
    865498    0012        00654       test2
    865498    0012        00654       test3
    865498    0012        00654       test4
    865498    0012        00654       test5
    865498    0012        00654       test6
    865498    0012        00654       test7
    in the above test data MATNR , VKORG, VTWEG records are same but TEXT is different.
    Now my requirement is , i need to upload the data in to application as
    MATNR    VKORG    VTWEG    TEXT
    865498    0012        00654       test1test2test3test4test5test6test7
    how can i handle it?

  • When I import a text file(comma separated )into a numbers spread sheet all the data goes into one column. Why does the text not go into separate columns based on the commas.

    When I import a text file(comma separated) into a numbers spreadsheet all the data goes into one column instead of individual columns based on the comma separators.  Excel allows you to do this during the import..  Is there a way to accomplish this in numbers without opening it in Excel and the importing into Numbers.

    Your user info says iPad. This is the OS X Numbers forum. Assuming you are using OS X… Be sure the file is named with a .csv suffix.
    (I don't have an iPad, so I don't know the iOS answer.)

  • Text flow into one or two column text boxes depending on the number of text lines

    Question InDesignCS3
    Is it possible to let text flow into one or two column textboxes depending on the number of text lines?
    Example 1)
    --Default text box--|
    | Text line 1 |
    | Text line 2 |
    | Text line 3 |
    | Text line 4 |
    ------------------- |
    If there are more than 4 text lines in the in the text box, this box has to become a two column box. like example 2
    example 2)
    |Text line 1 | Text line 4 |
    |Text line 2 | Text line 5 |
    |Text line 3 | Text line 6 |

    if (myTextFrame.lines > 4) {
    myTextFrame.textFramePreferences.textColumnCount = 2;
    } else {
    myTextFrame.textFramePreferences.textColumnCount = 1;

  • Table has too many columns for one pg in InDesign document. How do I force a break?

    I have imported an Excel table into my InDesign document.  The table is 598 columns wide.  Obviously this isn't fitting on one page.  I want it to just keep flowing from page to page, keeping one same column at the beginning of each page (like "freeze panes" does in Excel) but it's not doing that.  Is this possible in my InDesign document or will I have to manually copy and paste 10 columns at a time, which is about how many are fitting on one page?  Any searches I do on this subject just talk about flowing rows but nothing about columns. 

    As far as I know there's probably no way ID is going to do what you want.
    You can place a table across a multiple page spread, but the odds of being able to do that and still keep the file printable are marginal, at best. You can't for example, leave blank space at the gutters unless you are able to add a blank column that spans the gutter, and the limt for multipage spreads is 10 pages wide, whcih doesn't sound like it's probably enough to hold almost 600 columns.
    Perhaps placing the table using named ranges of appropriate widths would work...

  • How can I select rows of cells and merge them vertically into one cell in each column?

    I'm working in CS4 and need to be able to select 2 to 6 rows of cells (with many columns) in a table and then merge the selected cells vertically into one cell in each column. A few cells in the chart will not need to merge so I must select the ones that do. I have almost 100 pages of charts with cells that need merged this way by Tuesday. Please help!
    Top chart example needs to change to the bottom example.
    Header 1
    Header 2
    Header 3
    Header 4
    Header 5
    Header 6
    100
    600
    300
    600
    20000
    120000
    2000
    500
    400
    50000
    10000
    5000
    3000
    200
    700
    67
    122
    600
    900
    100
    2
    7
    123
    1110
    Header 1
    Header 2
    Header 3
    Header 4
    Header 5
    Header 6
    100
    500
    200
    100
    600
    400
    700
    900
    300
    5000
    30000
    2
    600
    10000
    67
    7
    20000
    2000
    122
    123
    120000
    5000
    600
    1110

    SmartCellMerge may help you:
    http://www.indiscripts.com/post/2012/04/improve-the-way-you-merge-cells-in-indesign
    @+
    Marc

  • Merging rows into one row but into SEPARATE Columns

    Hello Gurus,
    I have searched alot on OTN and many other places, but no where I could get the solution of how can we merge rows into one row but separate column. For example
    Consider the below scenario
    "DEPARTMENT", "EMP","NAME","SUBJECT"
    "Electronics","1","Sam","LIC"
    "Electronics","2","Pam","VLSI"
    "Electronics","3","Tom","C"
    "Mech","1","Abu","Thermo"
    "Mech","4","Lina","Machines"Now, I need the output like
    Based on Department as Group By Clause
    "DEPARTMENT", "EMP1","NAME1","SUBJECT1","EMP2","NAME2","SUBJECT2","EMP3","NAME3","SUBJECT3"
    "Electronics","1","Sam","LIC","2","Pam","VLSI","3","Tom","C"
    "Mech","1","Abu","Thermo","4","Lina","Machines"
    The row data to be loaded into separate columns. Name of the column is not an issue... can be anythingIn all the forums which I went through I could find them loading into a single column, but not into respective separate columns.
    Any help would be much appreciated.
    Thanks

    848265 wrote:
    Frank,
    I saw your name nearly n number of times, as I went through many forums today... And the link which you have just posted, I went through it today afternoon.
    Could you please explain this bit taken from your dynamic pivot post.
    SELECT     DISTINCT
         ',     COUNT (CASE WHEN job = '''
    ||     job
    ||     ''' '     AS txt1
    ,     'THEN 1 END)     AS '
    ||     job
    ||     '_CNT'     AS txt2
    FROM     scott.emp
    ORDER BY     txt1;Many Thanks.You only need that when you need column aliases based on the actual data (and you explicitly said you don't need that) or when can't put an upper bound on the number of columns to be displayed. If that doesn't apply to this problem, then don't use any kind of dynamic SQL (like the code above); it makes the job much more difficult, less efficient and less robust.
    Here's what the code above is doing.
    If you were hard-coding a query that showed the number of people in each job, and you knew that the possible jobs were 'ANALYST', 'CLERK' and 'MANAGER', then you might hard-code a query like this:
    SELECT    deptno
    ,       COUNT (CASE WHEN job = 'ANALYST'  THEN 1 END)     AS analyst
    ,       COUNT (CASE WHEN job = 'CLERK'    THEN 1 END)     AS clerk
    ,       COUNT (CASE WHEN job = 'MANAGER'  THEN 1 END)     AS manager
    FROM       scott.emp
    GROUP BY  deptno
    ;If the jobs had different names, or if there were not 3 different jobs, then you would have to change the lines in the SELECT clause that start with ", COUNT ( CASE ...".
    The code you posted is from an example of dynamic SQL, where you first run a Preliminary Query . (What you posted above is, in fact, the complete preliminary query.) The output of that preliminary query is exactly the variable part of the real query, such as:
    ,       COUNT (CASE WHEN job = 'ANALYST'  THEN 1 END)     AS analyst
    ,       COUNT (CASE WHEN job = 'CLERK'    THEN 1 END)     AS clerk
    ,       COUNT (CASE WHEN job = 'MANAGER'  THEN 1 END)     AS managerYou then use this output as part of your main query. In other words, you can write something today that will generate exacrly as many columns as you need next year, with names from the data as it is next year. How? because you're not writing the full query today. The variable part will be written by the preliminary query when it runs next year.

  • Divide text into columns

    I imported a tab delineated file into numbers and it put it into 1 column. The manual shows a menu bar Item "Divide text into columns" that doesn't appear on my tool bar. What now?

    Mac,
    Got it. Thanks for the explicit reference, that really helps.
    I think the User Guide is a bit misleading there. The Guide is referring to the text in a Text Box and how you can format the box to display text in multiple columns, as in a newspaper page.
    This feature doesn't parse your data into table columns, sorry. If you want to describe your data, we may be able to help with that.
    It may be simple. Let's try the simple approach. If you Select and Copy the tab delimited data, then switch to a Numbers Table, click ONCE in a table cell and Command-V. Your data should spread across columns. If you click twice in a cell all your data will go into one column when you paste.
    Jerry

Maybe you are looking for

  • Problem with tooltip

    Hi all, I have a problem with tooltip: 1. In Explorer 7.0 when the text is too long, the tooltip is trancated. 2. In Explorer 6.0 in the same case the tooltip is not trancated, but is flickering. How can I solve it? Any ideas? Thanks, Michael Beilin

  • Client application freezes permanently when one user logoff and another user take that session on windows server 2008 r2

    Hi, we have windows server 2008 r2 and In our application there are three server and on e client application. My client application freezes on a specific scenario. Steps taken to hang are following:- 1. start client application 2. open an module name

  • How to record two mics on separate tracks in GB?

    So I've got the Mackie 820i, and two Shure sm58 mics hooked up. I'm able to record, and everything seems fine, but at the moment it's on one track. How do I set it up so that each mic records on a separate track? Thanks in advance for any help.

  • Printing BARCODES in a scriptform

    Hi Gurus, Please do let me know how to print BARCODES in Script forms. Right now I am having Production Order number which should be printed as BARCODE. As of now it is just printing Prod. order number but it is not printing BARCODE in alloted place.

  • Macbook pro constantly shuts down randomly

    Hi all, this has been happening for a while. But lately, it's been happening very regularly and I'm getting really annoyed about it. I don't know what's wrong with my macbook. It's not overheated. Can someone help? I've copied and paste the latest cr