How to get result without single cotes in ''Cast(Multiset( '' Result.

select cast(multiset(select column_name
from user_tab_columns
where table_name = 'DAILY_PRODN_MIS'
and column_name like '%STOCK%'
order by column_name) as tab_type) result from dual;
RESULT
TAB_TYPE('BAGS_STOCK', 'BLUE_DUST_STOCK', 'CEMENT_STOCK', 'CEMENT_STOCK_33', 'CEMENT_STOCK_43', 'CEMENT_STOCK_53', 'CK_ADJ', 'COAL_IND_D_STOCK', 'COAL_IND_D_STOCK_ADJ', 'COAL_IND_E_STOCK', 'COAL_IND_E_STOCK_ADJ', 'COAL_IND_F_STOCK','OCK_ADJ', 'MTD_COAL_IMP_D_STOCK_ADJ', 'MTD_COAL_IMP_E_STOCK_ADJ', 'MTD_COAL_IND_A_STOCK_ADJ', 'MTD_COAL_IND_B_STOCK_', 'YTD_COAL_IMP_B_STOCK_ADJ', 'YTD_COAL_IMP_C_STOCK_ADJ', 'YTD_COAL_IMP_D_STOCK_ADJ', 'YTD_COAL_IMP_E_STOCK_ADJ')
How can i get result without single cotes for each column.

Your query currently returns a collection type (tab_type) whereas it appears you want to return a delimited string.
There are actually quite a few ways to achieve this - with your own function, with a user-defined aggregate functions (e.g. Tom Kyte's stragg), with the MODEL clause or with CONNECT BY, e.g.
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
SQL> SELECT table_name,
  2         SUBSTR (MAX (SYS_CONNECT_BY_PATH (
  3            column_name, ',')), 2) column_names
  4  FROM  (SELECT table_name, column_name,
  5                ROW_NUMBER () OVER (
  6                   PARTITION BY table_name
  7                   ORDER BY column_id) column_order
  8         FROM   user_tab_columns
  9         WHERE  table_name = 'BANK_ACCOUNT'
10         AND    column_name LIKE '%U%') utc
11  START WITH column_order = 1
12  CONNECT BY column_order = PRIOR column_order + 1
13  AND    table_name = PRIOR table_name
14  GROUP BY   table_name;
TABLE_NAME           COLUMN_NAMES
BANK_ACCOUNT         ACCOUNT_NAME,ACCOUNT_NUMBER
SQL>

Similar Messages

  • In Table Control How to get only a single row .

    Hi
    In Table Control How to get only a single row .I am able to decrease it its height to 4 but then 2 rows is getting dsplayed .I want only one row to be display and 2nd row should be deactivated or not visible.
    regards
    Avik
    Edited by: Julius Bussche on Jan 30, 2009 1:10 PM
    Removed friendly greeting from the subject title

    Hi Avik
    use this code it will help you.
    MODULE passdata OUTPUT.
      READ TABLE it_revision INTO wa_rev INDEX tab_clc-current_line.
      IF sy-subrc = 0.
        LOOP AT SCREEN.
          IF screen-group1 = '111'.      " 111 IS THE GROUP NAME
            screen-input = 1.          " input mode
            screen-active = 1.         " input mode.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSE.
        LOOP AT SCREEN.
          IF screen-group1 = '111'.       "GROUP NAME
            screen-input = 0.           " display mode
            screen-active = 1.          " DISPLAY MODE.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDMODULE.                 " PASSDATA  OUTPUT
    Make sure in group tou are passing the field name that you want in input mode on the base of other field
    Hope it will help you.
    Thanks
    Arun Kayal.

  • How to get list in single column in a query

    Hello.
    I wonder if there is a way of getting with one query (no pl/sql code) a whole list of columns with a separator between them.
    I know I can get that without the separators with a cursor expression:
    SQL> with test_table as (
      2  select 1 col1, 'a' col2 from dual
      3  union
      4  select 1 col1, 'b' col2 from dual
      5  union
      6  select 1 col1, 'c' col2 from dual
      7  union
      8  select 2 col1, 'a' col2 from dual
      9  union
    10  select 2 col1, 'c' col2 from dual
    11  union
    12  select 2 col1, 'd' col2 from dual
    13  union
    14  select 2 col1, 'z' col2 from dual
    15  )
    16  select col1, cursor (select b.col2 from test_table b where b.col1 = a.col1 order by b.col2) col2_list from test_table a
    17  group by col1
    18  /
          COL1 COL2_LIST
             1 CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    C
    a
    b
    c
             2 CURSOR STATEMENT : 2
    CURSOR STATEMENT : 2
    C
    a
    c
    d
    zBut the output that I want is (using the separator ';'):
          COL1 COL2_LIST
             1 a;b;c
             2 a;c;d;zI do not know how to handle a cursor expression without using a pl/sql block of function. Can it be done using analytic functions?
    Thanks in advance.

    Like this...
    SQL> ed
    Wrote file afiedt.buf
      1  with test_table as (
      2    select 1 col1, 'a' col2 from dual union
      3    select 1 col1, 'b' col2 from dual union
      4    select 1 col1, 'c' col2 from dual union
      5    select 2 col1, 'a' col2 from dual union
      6    select 2 col1, 'c' col2 from dual union
      7    select 2 col1, 'd' col2 from dual union
      8    select 2 col1, 'z' col2 from dual)
      9  --
    10  select col1, ltrim(sys_connect_by_path(col2,','),',') as col2
    11  from
    12    (select col1, col2, row_number() over (partition by col1 order by col2) rn
    13    from test_table)
    14  where connect_by_isleaf = 1
    15  connect by col1 = prior col1
    16  and rn = prior rn+1
    17* start with rn = 1
    SQL> /
          COL1 COL2
             1 a,b,c
             2 a,c,d,z
    SQL>

  • How to get POF object's field value from query result

    hi,all:
    I want to get field value from the query result, my code is below
    Set setResults = cache.entrySet(createFilter("homeAddress.state = 'MA'"));
    for (Iterator iter = setResults.iterator(); iter.hasNext(); )
    Contact c=(Contact)iter.next();
    System.out.println ("firstame####=" + c.getFirstName());
    * but I get error*
    Exception in thread "main" java.lang.ClassCastException: com.tangosol.util.ConverterCollec
    tions$ConverterEntrySet$ConverterEntry cannot be cast to com.oracle.handson.Contact
    at com.oracle.handson.QueryExample.printResults(QueryExample.java:159)
    at com.oracle.handson.QueryExample.query(QueryExample.java:86)
    at com.oracle.handson.QueryExample.main(QueryExample.java:43)
    who can tell me how to get POF object's field value from query result

    Hi,
    If you look at the Java Doc for the entrySet method here http://download.oracle.com/docs/cd/E15357_01/coh.360/e15725/com/tangosol/util/QueryMap.html#entrySet_com_tangosol_util_Filter_ you will see that it returns a Set of Map.Entry instances so you need to do this...
    Set setResults = cache.entrySet(createFilter("homeAddress.state = 'MA'"));
    for (Iterator iter = setResults.iterator(); iter.hasNext(); )
        Map.Entry entry = iter.next();
        Contact c=(Contact)entry.getValue();
        System.out.println ("firstame####=" + c.getFirstName());
    }JK

  • How to get where the search string appears in the results

    Hi every one
    i am new to Oracle Text
    this is my project environment "EJP 3.0+seam+JSF"
    in my part i need to implement smart searches within large text objects.
    So i planed to use Oracle text with context type indexing.
    I my search part i need to display where the search string appears in the results
    i don't know how to archive it,
    is it achived by CTX_DOC.GIST ?
    this is my table format
    Tbl_Book
    book_id Book_Title Book_description
    Tbl_Author
    author_id book_id author_name
    in my first table i index the Book_Title and Book_description columns
    EXEC CTX_DDL.DROP_PREFERENCE ('expert_concat_datastore')
    drop index Tbl_Book_Index force;
    BEGIN
    CTX_DDL.CREATE_PREFERENCE
         ('expert_concat_datastore', 'MULTI_COLUMN_DATASTORE');
    CTX_DDL.SET_ATTRIBUTE
         ('expert_concat_datastore', 'COLUMNS', 'Book_Title,Book_description');
    END;
    alter table Tbl_Book add (dummy varchar2(1))
    begin
    Ctx_Ddl.Drop_Section_Group
    group_name => 'my_section_group'
    exception
    when others then
    /* OK if DRG-12203: section group MY_SECTION_GROUP does not exist */
    if instr ( SQLERRM, 'DRG-12203' ) != 0 then null;
    else raise_application_error ( -20000, SQLERRM ); end if;
    end;
    begin
    Ctx_Ddl.Create_Section_Group
    group_name => 'my_section_group',
    group_type => 'basic_section_group'
    Ctx_Ddl.Add_Field_Section
    group_name => 'my_section_group',
    section_name => 'title',
    tag => 'Book_Title'
    Ctx_Ddl.Add_Field_Section
    group_name => 'my_section_group',
    section_name => 'description',
    tag => 'Book_description'
    end;
    create index Tbl_Book_Index on Tbl_Book ( dummy )
    indextype is ctxsys.context parameters (' datastore expert_concat_datastore section group my_section_group');
    begin
    Ctx_Ddl.Drop_Section_Group
    group_name => 'my_section_group'
    end;
    in my second table i index the author_name column
    drop index Tbl_Author_Index force;
    create index Tbl_Author_Index on Tbl_Author (author_name) indextype is ctxsys.context parameters('filter ctxsys.null_filter section group ctxsys.html_section_group');
    begin
    Ctx_Ddl.Optimize_Index (
    idx_name => 'Tbl_Author_Index',
    optlevel => Ctx_Ddl.optlevel_fast
    end;
    my search result is only in my Tbl_Book.
    Because it is my primary one.
    So this is my query in EJP 3.0
    select t from Tbl_Book t LEFT JOIN t.AuthorCollection c wherecontains(t.dummy, 'java within title or(java within description)',10) > 0 or contains(c.author_name ,'thiagu',20) > 0 ) ORDER BY SCORE(10), SCORE(20)
    here i need to get single SCORE how to do that ?
    i dont know how to highlight the search string in the result ?
    is it archived by CTX_DOC.MARKUP ?
    please any one help me
    By
    Thiagu.m

    Weird.  I have multuple monitors and the boot stuff always appears on my main monitor.
    See if smc and pram reset clears the problem.
    I have multiple screens on my Mac Pro. A normal screen, a projector and a USB-to-DVI converter.
    What video card are you using?  And USB-to-DVI is not the usual way for connecting monitors.  I wonder if that is confusing things.  So out of curiousity what happens if that monitor is not connected?

  • How to get the number of records of a streaming result set

    Hi guys.
    So if it wasn't a streaming result set, I would have done this:
    {noformat}myResultSet<code class="jive-code jive-java">.last();
    {color:navy}*int*{color} numResults = </code>myResultSet<code class="jive-code jive-java">.getRow();
    </code>myResultSet<code class="jive-code jive-java">.beforeFirst();
    </code>{noformat}
    but being a streaming result set, beforeFirst() throws an exception...
    So how do you get the number of records in that result set? I wanna avoid an extra count(*) query, so I would appreciate other solutions than that.

    JoachimSauer wrote:
    vanwil wrote:
    you see, for now I just use a count(*) query to get the number of records, but that's adding a lot of extra waiting time...Iterating over the result twice will surely be slower then doing the count(*).great! so what I got now is actually the fastest way there is... awesome...
    If you get an exception, then you surely have a stack trace. That should tell you what happens, or at least where.com.mysql.jdbc.MysqlIO.checkForOutstandingStreamingData(MysqlIO.java:2066)
    Why do you need to know the number of elements beforehand, anyway?I need to know the number of elements because the incoming data goes into a table. Now of course, I could use ArrayList<String[]> or something, but wouldn't that require more memory resources than Object[][] ?
    No one can tell you that, at least not without more information (say, the stack trace for example).Here's the exception message:
    java.sql.SQLException: Streaming result set com.mysql.jdbc.RowDataDynamic@10c0ef2 is still active. Only one streaming result set may be open and in use per-connection. Ensure that you have called .close() on  any active result sets before attempting more queries.

  • How to get option select single Values in select options

    Hello All,
    I have a requirement where, in select-options i should avoid the range selection and should have only select single values option. User wanted to give the list of 10000 materials by using copy and paste as we have in normal abap with pase clip board option.
    Please let me know if you need any further clarification. your quick response would be highly appreciated.
    Thanks
    Raj.

    Thanks for the reply, I have already done this but when you add values to it at a time 1000 material information we can not add.
    so you go to selection screen and you have only one input box with arrowe button. click on the arrow and then you will get the screen where it will ask you to add five records and that to ranges.
    but if you click the same arrow in normal selection screen of SAP you get 4 tabs in which first tab will be select single values.
    and there by using copy from notepad option we can add how many entries we want.
    Let me know if you need any further clarification to understant the requirement.
    Thanks,
    RaJ.

  • How to get repair without Apple Retail Store nearby?

    My daughter's Ipod Touch stopped working after 6 weeks.  Apple support tells me the only way I can get it repaired is by physically taking it to an Apple retail store or a UPS store, neither of which is within an hours drive of me.  Has anyone been able to get repairs done without physically taking it in?  They won't let me just ship it!!! I'll gladly pay for shipping....Thanks

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • How do get attachment without triggering flag chaging from unread to read?

    Hi all,
    In IMAP, is there anyway to get the attachment without flipping the flag from unread to read?
    here's my code:
    store = session.getStore(IMAP);
    store.connect("someHost", somePort, "someLoginName", "somePwd");
    folder = (IMAPFolder)store.getFolder(INBOX);
    folder.open(Folder.READ_WRITE);
    javax.mail.Message message = folder.getMessageByUID(someUID);          
    if (message.isMimeType("audio/wav")) {
        InputStream is = message.getInputStream();
             while (nBytesRead != -1) {
                nBytesRead = is.read(buffer); // read the attachment from stream
    ...here's the bodystructure of the email:
    comand:
    A6 FETCH 3 (BODYSTRUCTURE)
    response:
    * 3 FETCH (BODYSTRUCTURE ("AUDIO" "WAV" ("NAME" "AUDIO.WAV" "TYPE" "Unknown") NIL NIL "BASE64" 7874 NIL NIL NIL))
    command:
    A7 FETCH 3 (BODY[TEXT]<0.7874>)
    response:
    * 3 FETCH (FLAGS (\Seen VOICE) BODY[TEXT]<0> {7874}
    [binary data...]
    As you see, the server sets the message to Seen (which is read state). How do I not set the flag to Seen?
    Thanks.
    Grace

    Why not just set it back to Not Seen after you do that?

  • 10.2.0.4 patch set | How to get it without MetalinkId

    I am using Oracle 10.2.0.1.0 and wanted to upgrade to 10.2.0.4. But, I do not have Metalink Id, can I get the 10.2.0.4 patch set without Metalink Id?

    Yes, you can. Choose a plateform where the 10.2.0.4 patchset version is the based released (MacOSX, Vista or Windows 2008), install it, create a new db, then export your source 10.2.0.1 db, and import into this new one.
    Nicolas.
    PS: of course, if you want only the patchset to upgrade your db in place, then the answer is shorter : no.
    Edited by: N. Gasparotto on Aug 11, 2009 10:51 AM

  • How to get filechooser without default  design

    Hi,
    while i am using jfilechooser i am getting the default design as follows
    [click here to view the default_design of filechooser|http://www.mediafire.com/imageview.php?quickkey=qzmknjzon5y]
    but i don't want above one
    i want new design as follows
    [click to view the design i want|http://www.mediafire.com/imageview.php?quickkey=2o4mdbtzten]
    the above design is present in the swing gui in neatbeans ide, i drag and drop it but again when i click on button
    i am getting the default filechooser design.
    how can i achieve the above design please help me...........
    any ideas
    Thanks in advance,
    Nagaraju.
    Edited by: uppala on Nov 27, 2009 3:40 PM

    Try to add this at begin of main method:
    try {
        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } catch (Exception ex) {
        ex.printStackTrace();
    }

  • How to get links to single Outlook Elements

    When I drag any Outlook item (or any office document) to the Outlook journal folder I get a new journal entry with a link to the Outlook item. This link can be moved into the notes field of any other Outlook item. I love it to have such links.
    Is it possible to get this links another way? Inserting something? VBA?
    Greetings, Halweg
    Btw: Does this feature still exists in Outlook 2013? Is there any documentation about links to single Outlook elements? What happens with this links when changing pst-file?

    Hi Halweg,
    I'm not quite sure if I have understood you correctly. When you say "link to the Outlook item", do you mean the shortcut of the Outlook item?
    For example:
    If this is the case, I don't aware of any other way to obtain these "links" with any built-in options in Outlook. We probably need some VBA scripts to achieve this.
    In Outlook 2013, we've made some changes to the Journal feature. Journal doesn’t appear on the ribbon in the new Navigation Bar. The default special folder for Journal still exists and can be selected from the Folders view in the Folder
    Pane. In Outlook Options, the Notes and Journal is removed. The
    Journal Options button and related dialog box are no longer available.
    Here is the reference:
    https://support.office.com/en-au/article/Discontinued-features-and-changes-in-Outlook-2013-6fad16ab-b50b-4900-81b9-249c71f3027b
    "What happens with this links when changing pst-file?" - Journal entries are stored in your Outlook data file, you'd like to change your .pst file, you need to make a backup copy of these entries.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • HT4623 How to get sound without earphonees?

    I can't hear without using earphones, any suggestions welcome?

    1. If you have no sound at all, even in the Music App, try rebooting the iPad.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    2. If you lost sounds for keyboard clicks, games or other apps, email notifications and other notifications, system sounds may have been muted.
    System sounds can be muted and controlled two different ways. The screen lock rotation can be controlled in the same manner as well.
    Settings>General>Use Side Switch to: Mute System sounds. If this option is selected, the switch on the side of the iPad above the volume rocker will mute system sounds.
    If you choose Lock Screen Rotation, then the switch locks the screen. If the screen is locked, you will see a lock icon in the upper right corner next to the battery indicator gauge.
    If you have the side switch set to lock screen rotation then the system sound control is in the task bar. Double tap the home button and in the task bar at the bottom, swipe all the way to the right. The speaker icon is all the way to the left. Tap on it and system sounds will return.
    If you have the side switch set to mute system sounds, then the screen lock rotation can be accessed via the task bar in the same manner as described above.
    This support article from Apple explains how the side switch works.
    http://support.apple.com/kb/HT4085
    3. If you still have no sound at all - except when using headphones ....try cleaning the dock connector opening of the iPad with a soft brush and just a little bit of rubbing alcohol.

  • How to get this with Single query

    Friends
    I am sure using SQL analytical function, the following can be achieved using a single query:
    Date_value | Cust_id | Customer_tenue | avg_bal
    01-aug-09 | 111 | 0 | 1000
    01-aug-09 | 112 | 1 | 2000
    01-aug-09 | 113 | 2 | 900
    01-aug-09 | 114 | 3 | 1250
    01-sep-09 | 111 | 1 | 1200
    01-sep-09 | 112 | 2 | 2000
    01-sep-09 | 113 | 3 | 1900
    01-sep-09 | 114 | 4 | 1250
    01-oct-09 | 111 | 2 | 1100
    01-oct-09 | 112 | 3 | 2200
    01-oct-09 | 113 | 4 | 1900Expected result
    If customer’s tenure is 0 then mark as ‘New’,
    If customer’s balance is increased from last month then mark as ‘Augment’
    If customer’s balance is same as last month then mark as ‘Maintain’
    If customer’s balance is decreased from last month then mark as ‘Diminish’
    Else ‘Left’
    Help please....

    If customer’s tenure in last month is 0 then mark as ‘New’,There's not such case in test data... last month is October, isn't it?
    SQL> with t as (select DATE '2009-08-01' Date_value, 111 Cust_id, 0 Customer_tenue, 1000 avg_bal from dual union all
      2  select DATE '2009-08-01', 112 , 1 , 2000 from dual union all
      3  select DATE '2009-08-01', 113 , 2 , 900 from dual union all
      4  select DATE '2009-08-01', 114 , 3 , 1250 from dual union all
      5  select DATE '2009-09-01', 111 , 1 , 1200 from dual union all
      6  select DATE '2009-09-01', 112 , 2 , 2000 from dual union all
      7  select DATE '2009-09-01', 113 , 3 , 1900 from dual union all
      8  select DATE '2009-09-01', 114 , 4 , 1250 from dual union all
      9  select DATE '2009-10-01', 111 , 2 , 1100 from dual union all
    10  select DATE '2009-10-01', 112 , 3 , 2200 from dual union all
    11  select DATE '2009-10-01', 113 , 4 , 1900 from dual)
    12  select date_value, cust_id, avg_bal, oldbal, case when Customer_tenue=0 and nextbal is null then 'NEW'
    13                                                    when oldbal<avg_bal then 'Augment'
    14                                                    when oldbal=avg_bal then 'Maintain'
    15                                                    when oldbal>avg_bal then 'Diminish'
    16                                                    else 'Left' end status
    17    from (select date_value, cust_id, customer_tenue, avg_bal, LEAD(avg_bal) over (partition by cust_id order by date_value desc) oldbal,
    18                 LAG(avg_bal) over (partition by cust_id order by date_value desc) nextbal
    19            from t)
    20  order by cust_id, date_value;
    DATE_VALU    CUST_ID    AVG_BAL     OLDBAL STATUS
    01-AGO-09        111       1000            Left
    01-SET-09        111       1200       1000 Augment
    01-OTT-09        111       1100       1200 Diminish
    01-AGO-09        112       2000            Left
    01-SET-09        112       2000       2000 Maintain
    01-OTT-09        112       2200       2000 Augment
    01-AGO-09        113        900            Left
    01-SET-09        113       1900        900 Augment
    01-OTT-09        113       1900       1900 Maintain
    01-AGO-09        114       1250            Left
    01-SET-09        114       1250       1250 Maintain
    Selezionate 11 righe.Max
    [My Italian Oracle blog|http://oracleitalia.wordpress.com/2009/12/29/estrarre-i-dati-in-formato-xml-da-sql/]

  • HT3678 How to get Quicktime without a Snow Leopard Install Disc?

    I purchased Snow Leopard through apple as a download. So I never received a disk. And I deleted Quicktime because it would not play audio. I thought I could just fresh reinstall it and it might fix the problem. Where can I download it without the disc? I have scoured the forums, changed Text files to qtz (but since I do not have quicktime on my machine anymore I can't ask Apple to download it for me)... Any ideas? Thanks!

    Worth checking which version you deleted (deleting QT is never a good idea as it is an integral part of the operating system).
    Mac OS X 10.6 includes QuickTime versions 10.0 and 7.6.3. The QuickTime 7 player will only be present if a QuickTime Pro key was present at the time of installation, or if specified as part of a custom install, or individually downloaded:
    http://support.apple.com/kb/dl923
    Snow Leopard update 10.6.4 included an update to 7.6.6 (if installed). You can install it from the above link  even though it says for 10.6.3. It's the same version of QuickTime Player 7.6.6.
    (Only QuickTime Player 7.6.3 or 7.6.6 can be updated to "Pro".)
    A Mac OS X v10.6, OS X Lion, and OS X Mountain Lion-compatible version of QuickTime Player 7 is available for use with older media or with AppleScript-based workflows. QuickTime Player 7 can be used to playback formats such as QTVR, interactive QuickTime Movies, and MIDI files. Also, it supports QuickTime 7 Pro registration codes for access to QuickTime Pro functionality.
    How to install Quicktime Player 7 on Snow Leopard, Lion and Mountain Lion when it is not already present:
    http://support.apple.com/kb/HT3678?viewlocale=en_US&locale=en_US

Maybe you are looking for

  • "Logout' link is gone from IE8?  Workspace 11.1.2.1

    All of a sudden my 'Logout' link in workspace is gone. Any ideas? I suspect somehow my IE settings need tweaked?

  • Multi Language Description and Long description update.

    Hi Guru, I would like to know the possible ways to upload the description and long description in multiple languages for the existing items in mass.  For newly created items, we can enter the data in language form tied to the description. Is it possi

  • Request for the working of rollup

    hi gurus, can any body help me to understand how rollup in oracle works? thanks in advance... thanks and regards TLN

  • CS5 missing effect helpers

    Help... My CS5 After Effects is missing all of the little effect helpers that are used to drag effects around... I did a screen grab of CS4 with a solid with a 4 color gradient applied and one of the same thing in CS5 so you can see what I am missing

  • Idocs stuck in sm58

    Hi All, When I triggered Idocs in R3 ,they were stuck in sm58 with status : :000. I'm not able to release it. I checked with port information, everything is correct. When I checked with threads in SDN it says to check with authorization of userId in