TAB character

Hello Gurus.
I am working with Oracle Reports 6i and I simply try to print a TAB char at the beginning of my paragraphs. Adding the chr(9) when needed does not work, it is replaced by a space. And space don't work for me as my text is justified.
Is there really no way to have a tab character (indentation) with report?
For example, how can I do this:
(TAB here) Dear Mister Scott,
(TAB here) I would like to indent the first line of my paragraph with Oracle Reports 6i. As the TAB character (chr(9)) does not work with Reports, how could I simply do this? My text is justified and each paragraph is linked to a field.
Thanks in advance!
Guille

I tried it in Report Builder 6.0.8.23.0.
DataModel
1. Query
select '*'||CHR(9)||'Dear Mister Scott,'||'*' My_Tab from dual;
2. Formula Column --> CF_TAB01
function CF_Tab01 return VARCHAR is
begin
RETURN('*'||CHR(9)||CHR(9)||CHR(9)||'Dear Mister Martin,'||CHR(9)||'*');
end;
3. Formula Column --> CF_TAB02
function CF_Tab02 return Char is
v_tab CONSTANT VARCHAR2(10):= CHR(9);
v_string VARCHAR2(80):= '*'||v_tab||v_tab||'Dear Mrs. Willson,'||'*';
begin
srw.message(1.00,'v_string: '||v_string);
RETURN(v_string);
end;
It works fine!
But I could be a problem with the current_character_set.
The following example assumes that the national character set is UTF16:
SQL> select '*'||CHR(9 USING NCHAR_CS)||'Dear Mister Robinson,'||'*' my_tab from dual;
MY_TAB
* Dear Mister Robinson,*

Similar Messages

  • How do I insert the tab character in a table cell in Pages 5.2?

    I'm typing text in a table cell.  I need to insert a tab in the text.  I've tried all of the modifier keys with the tab.  I read somewhere it would be CTRL>TAB, like Word, but that navigates to the Inspector.

    You will need to add a Unicode keyboard. System Preferences > Keyboard > Input Sources. Click the + button in the lower left. Scroll all the way to the end and select Others > Unicode Hex Input. Select and Add this. Check the box that says Show input menu in menu bar. Exit System Preferences.
    From the Finder menu, select your recent Unicode Hex Input source (it is a black box with white U+ in it). Now, position your cursor in your table cell between the characters where you want to insert a tab character. Press and hold your option key, then type 0009 (zeroes). This is the Unicode sequence for the tab control character. Space will open in your text. Tabs in table cells survive PDF export. The tab mark will not appear with Show invisibles enabled.
    Switch back to your normal country input source in that Finder input source menu.

  • Tab character missing in the end of the line in file2file scenario?

    Hi,gurus:
    Our scenario is file to file,and both transport protocols are FTP.
    We are using content conversion both in sender and recevier side.
    But when we test the scenario,we found the tab character('0x09') is missing if the tab character is in the end of a line.
    Can you tell me how to keep these tab characters the same as sender file?
    Thanks in advacne.
    ps: in the content conversion,the parameter fieldSeparator and endSeparator are both '0x0A'.
    Edited by: xinjiang li on Jul 31, 2009 10:53 AM

    Hi,
    The source data is as below:
    H     0000140898     0     UCP31300     20090715     20090715     2     1     UCP31310     
    D     0000140898               00001                    
    After the record '00001',thare are some tab parameter,but after send content conversion,the payload is below:
      <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MT_3PL_SAP2PF_ST02_SENDER xmlns:ns="http://www.unicharm-china.com/3PL">
    - <Recordset>
    - <Line>
      <Line>H 0000140898 0 UCP31300 20090715 20090715 2 1 UCP31310</Line>
      </Line>
    - <Line>
      <Line>D 0000140898 00001</Line>
      </Line>
      </Recordset>
      </ns:MT_3PL_SAP2PF_ST02_SENDER>
    The tab parameters are missing.
    Our sender content conversion is below:
    Line.endSeparator:'0x0a';
    Line.fieldSeparator:'0x0a';
    Line.fieldNames:Line
    Any ideas?

  • Weird square like Tab Character in Multiline Text

    ebs version 11.5
    forms 6i
    I have a multiline text item that allows the user to keep hitting an “add to text box” button to append to the text in the box. Every time they click the “add to text box” button, the new text should be placed on a new line. To accomplish this, I just do textitem:=textitem||CHR(13)||CHR(10);
    This causes a tab character (little square) to be displayed on each line. What can I do to get rid of this? Is there a setting on the text item I can set or is there a different way to accomplish this?

    The square is how the new line character (chr(13) or chr(10)) is shown. I don't think there is much you can do.
    One thing to try is see if the following works
    textitem := textitem || '
    ';Sandeep Gandhi

  • How to type "tab" character in terminal?

    Hi,
    In the terminal, I would like to be able to simply type a literal "tab" character. I know, by default, the tab key is used for auto-completion based on file system (I would like to keep it that way).
    I tried several things, nothing seems to work for me:
    - Copy-paste an existing tab character within the terminal
    - Add keyboard shortcut in the Terminal preferences > Settings > Keyboard (/011)
    - Insert 'LINE TABULATION' character from the Terminal > Edit > Special Characters... window
    Hopefully, someone has done this before?

    You can type any character that has a special meaning in the terminal by preceding it with ^V. So to type a tab character, just type ^V followed by the tab.

  • Replace tab character from string in ABAP

    hi experts,
    I have a string like this "a<tab character>b<tab character>c<tab character>d". for my processing i want the output like "abcd". How can i replace all occurances of this tab character from my string.
    tab character = a hexa decimal character. I dont know the hex value for this.
    regards
    Raghav

    hi you joined SCN in 2007 its a way long time to say.. ur new.. any ways.
    after declaring the lv_tab as I said...
    REPLACE ALL OCCURRENCES OF lv_tab in <string> with space.

  • Tab character into an output file

    Hi all,
    I need to put a tab character into an output file in abap.
    I want to create an output file that can be opened in excel, but i dont want to call excel from abap, just create the file and open later.
    the tab is what automatically delimits the columns in excel
    Any Ideas ??
    Please  do let me know
    Thanks,
    Dan

    Hi daniel,
    1. while calling fm GUI_DOWNLOAD
    2. if we give
    WRITE_FIELD_SEPARATOR = 'X'
    3. then TABS will automatically come.
    4. or else u can use the tab character with
    5. CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
    regards,
    amit m.

  • How to change display width of TAB character in a TextArea?

    Is it possible to change the width of an insert TAB character in a Flex TextArea?
    I'm capturing FocusEvent.KEY_FOCUS_CHANGE events and manually inserting a "\t" into a text area styled with an embedded monospace font. By default, the TABs are being displayed two and a half monospace characters wide. I need them to display five monospace characters wide.
    Any ideas on how to do this?

    Try doing something like this:
    class MyJTextArea extends JTextArea {
        public boolean keyDown(Event evt,int key) {
            if(key == 13 || key == 10) { // or whatever ascii codes enter may have
                // move carret to next line
            } else {
                super.keyDown(evt, key);
    }which means you have got to catch the enter-key before the actutal JTextArea does this.
    p.s. look at my post, maybe you can help me, too.
    http://forum.java.sun.com/thread.jsp?forum=5&thread=465803&tstart=0&trange=100

  • 'Tab' character used in the Message Built-in

    Hi. I know you can concatenate a chr(10) function into the Message built-in, but is there a similar way to concatenate a 'tab' into the Message built-in or an Alert? Basically I want to pop-up a message and use the 'tab' character to seperate 2 columns of text. Like this:
    "This a message to the user:
    VarName1 <tab> VarValue1
    VarName2 <tab> VarValue2
    VarName3 <tab> VarValue3
    VarName4 <tab> VarValue4"
    Any help would be greatly appreciated.

    Hello,
    Can we see any example how in different ways/value you want to display in message?
    For keep the orignal formatting/spacing in the forum page you can use tags before and after the example/coding section.
    All small letters in curly brackets. See the FAQ on right corner of page for more clarification.
    -Ammad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Tab character to the left of an auto-number

    I have InDesign CS4 documents with numbered lists in various places in the documents. I've been numbering them manually because I can't find a way to insert a tab character in front of an autonumber. The Bullets and Numbering settings dialog won't let me insert a tab at the beginning of an auto-number -- gives an error message. The reason for the tab in front of the number is so that the numbers will align right when there are 10 or more items in the list.

    Jay,
    You don't need to insert tabs, you set everything in the "Bullet and Number Position" section of the bullets -and-numbering tab. These values work for 10 points Minion:
    Alignment: Right
    Left indent: 6 pt
    First line indent 6 pt
    Tab position: 18 pt
    Peter

  • Tab character in variable declaration

    Hello,
    I have a little problem with declaration of variables in scripts. I get an error when there is a TAB character between the variable name and its data type:
    VARIABLE var_name     number;
    Bind Variable "var_name     number" is NOT DECLARED
    This error occur only when I try it in SQL Developer - other tools accept it. Any suggestions how to get rid of this error?

    Couldn't find any prior bug for this, so I logged it:
    Bug 12409565 - TAB CHARACTER NOT RECOGNIZED AS WHITESPACE IN SQL*PLUS BIND VARIABLE DECLARATION
    It seems limited to SQL*Plus syntax, perhaps just the VARIABLE command, and does not replicate in PL/SQL blocks.
    Adding a blank after the tab works around the error, but won't be enough if the tab remains as part of the variable name.
    -Gary Graham, SQL Developer Team

  • Problem printing TAB character in Oracle Report Concurrent

    Hi All!!
    I have a problema with my Oracle Report Concurrent. I made a simple example:
    DATA MODEL: select '@' || fnd_const.tab || '@' from dual;
    Then i did a layout for this report with this field.
    The problem is that when i do a "View Output" from the Requests Form the TAB character does not being showing and it's being replaced with spaces.
    What could be the problem ??
    The system is Oracle E-Businnes Suite 11i, Oracle Report Builder 6.0.8.27l. OS = SunOS
    Thanks!!
    Pablo.

    What is the value of "fnd_const.tab"? Does it contain any special characters?
    Is the issue with viewing only, or with printing only or with both?
    What if you download the concurrent request output file from the server, can you see the value in the file?
    What is you print the concurrent request output file from the server using lp command, can you see the value in the print out?
    Thanks,
    Hussein

  • [svn] 3313: Fix for SDK-16981 - @ param tag does not recognize tab character as delimiter between paramName and paramDescription

    Revision: 3313
    Author: [email protected]
    Date: 2008-09-23 10:02:50 -0700 (Tue, 23 Sep 2008)
    Log Message:
    Fix for SDK-16981 - @param tag does not recognize tab character as delimiter between paramName and paramDescription
    QA: Yes
    Doc:
    Tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16981
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

  • Grep to add tab character after first character?

    Hello
    Are any GREP wizards able to help with a question?
    I am trying to add a tab character after the very first character in a line in a paragraph style. So for example I would like a tab after the I, D, O and N in the following poem ...
    Incy Wincy spider climbed up the spout
    Down came the rain and washed the spider out
    Out came the sun and dried up all the rain
    Now Incy Wincy spider went up the spout again
    Thanks!

    No worries, GREP is greedy by default as well
    Use the same 'find' but change to
    \t$0\t
    -- where each "\t" is a Tab and "$0" is 'the text just found', i.e., what gets highlighted when you press "Find next".

  • Can swing handle Tab Character?

    I output a Message Box using swing like this:
    String s = new String("Sun \tMon \tTue \tWed \tThu \tFri \tSat\n");
    JOptionPane.showMessageDialog(null, s, "The Date!", JOptionPane.PLAIN_MESSAGE);But seems like it cannot print the Tab Character.

    JTextAreas can read tab characters, you might try
    JTextArea textArea = new JTextArea("Sun \tMon \tTue \tWed \tThu \tFri \tSat\n");
    JOptionPane.showMessageDialog(null, textArea, "The Date!", JOptionPane.PLAIN_MESSAGE);

Maybe you are looking for

  • Is there a command line method for publishing/deploying reports?

    Is it possible to publish/deploy reports using the command line?  Also, it is possible to change the datasource for a report via some command line option? I am developing the reports locally (Win XP), and then checking them into source control.  They

  • Connecting 3rd screen

    Well hello everyone, I've been trying for some time to connect a third screen to my computer. Currently I'm working on two screens. I'm using a HP pavillion g7 with an Intel HD Graphics 4000 graphics card. This graphics card should be able to handle

  • In support project which type of requests can be send by users.

    Hi All,      Give me some examples of user requests and solutions.      Thank You.

  • My cursor disappears after waking from sleep

    After awaking my MacBook pro from sleep the cursor will disappear. I can still hover over things and see them change but the cursor pointer isn't there and doesn't register a click. It's on all programs. Restarting is the only thing that solves it bu

  • Submit Form button won't email form

    Hi, I've made a form and followed a few different tutorials to put a submit button on the form so that my customers can email the form back without saving it separately etc. I've used the 'mailto:emailaddress' bit but it won't send. I'm getting this