How to open StarView editor ?

Hi,
Does anybody know how to open StarView editor ?
It can't be done accordingly to "Enterprise Link Design Studio User’s Guide".
The StarView editor doesn't exist in "Design Studio".
Regards,
Cezary

You should carefully read the Enterprise link user guide :-)
In the BaseView table list, place the cursor over the top edge it.
The cursor becomes a horizontal split arrow. drag down before you can see it.

Similar Messages

  • Open and editor windown from a dialog screen.

    Hi,
    Does anybody know how to open an editor window to write large text notes (1,000 chars or more) from a dialog screen?
    Then how this data is stored on a table?
    I need to save large amounts of text and I have seen this on SAP transactions.
    Any help will be appreciated.
    Thanks,
    Orlando.

    Oh, I see.  I would not suggest using a sapscript editor. I would use the text editor that I mentioned early.  If you really want that functionality of the sapscript editor, you can do that.  Either way you will need to create a custom text object/id to save your text to the db.  Here is an example of using the sapscript editor.
    report zrich_0002.
    data: header type THEAD.
    data: txt_lines type table of tline with header line.
    header-TDOBJECT = 'AUFK'.
    header-TDNAME   = '001000000001'.
    header-TDID     = 'LTXT'.
    header-TDSPRAS  = sy-langu.
    header-TDLINESIZE = 70.
    * First read the text, if there is any.
    call function 'READ_TEXT'
      exporting
    *   CLIENT                        = SY-MANDT
        id                            = header-tdid
        language                      = sy-langu
        name                          = header-tdname
        object                        = header-TDOBJECT
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    * IMPORTING
    *   HEADER                        =
      tables
        lines                         = txt_lines
    * EXCEPTIONS
    *   ID                            = 1
    *   LANGUAGE                      = 2
    *   NAME                          = 3
    *   NOT_FOUND                     = 4
    *   OBJECT                        = 5
    *   REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    * throw editor, allow user to change
    call function 'EDIT_TEXT'
      exporting
    *   DISPLAY             = ' '
    *   EDITOR_TITLE        = ' '
        header              = header
    *   PAGE                = ' '
    *   WINDOW              = ' '
        SAVE                = 'X'
    *   LINE_EDITOR         = ' '
    *   CONTROL             = ' '
    *   PROGRAM             = ' '
    *   LOCAL_CAT           = ' '
    * IMPORTING
    *   FUNCTION            =
    *   NEWHEADER           =
    *   RESULT              =
      tables
        lines               = txt_lines
    * EXCEPTIONS
    *   ID                  = 1
    *   LANGUAGE            = 2
    *   LINESIZE            = 3
    *   NAME                = 4
    *   OBJECT              = 5
    *   TEXTFORMAT          = 6
    *   COMMUNICATION       = 7
    *   OTHERS              = 8
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    * When user comes back from editor, save the text
    call function 'SAVE_TEXT'
      exporting
        CLIENT                = SY-MANDT
        header                = header
    *   INSERT                = ' '
    *   SAVEMODE_DIRECT       = ' '
    *   OWNER_SPECIFIED       = ' '
    *   LOCAL_CAT             = ' '
    * IMPORTING
    *   FUNCTION              =
    *   NEWHEADER             =
      tables
        lines                 = txt_lines
    * EXCEPTIONS
    *   ID                    = 1
    *   LANGUAGE              = 2
    *   NAME                  = 3
    *   OBJECT                = 4
    *   OTHERS                = 5
    if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    So for your case, you must create a custom Text Object and ID via SE75.
    REgards,
    Rich Heilman

  • How do I change the default programe for "open in editor"?

    Hello all,
    DVDSP4.03.
    In the assets tab if I ctrl+click on a Photoshop (.psd) file it gives the option to "open in editor". If I do this it opens the file in Preview, when I would like it to open the file with Photoshop. How do I change this so the "editor" become Photoshop?
    Many thanks
    Mark

    Try this:
    Quit DVDSP. Go to your PSD file and press Apple and "I" to open the info dialogue box. Under "open with" select Photoshop and select "Change All". Restart (just to be safe) and try again from within DVDSP.
    Hope this helps,
    Jeff

  • How to change Default editor in Linux for PL/SQL Programming

    Deare friends ,
    I am using oracle 8i (8.1.6) on RedHat Linux 7.2 , But i donot know how to change default editor for modify editor on sql prompt say ex:-
    In winodow
    SQL> ED
    it open nope pad to modify sql and pl/sql statement
    while in linux
    SLQ > ED
    it open one editor but it is not easy to work and i want to change that editor so could you tell me how to chane editor i want to use vi editor .
    if any boyd know reply me on :-
    [email protected]
    or on this forum
    Thanking you in advance
    Piyush Patel

    Either manually do a 'define editor=vi' when you log in through sql*plus, or put that in the glogin.sql in $ORACLEHOME/sqlplus/admin or put that in a login.sql in the directory you run sqlplus from.

  • For a SharePoint list LVWP - how to open links in new window? (Without SPD - Without access to server)

    Hi there,
    I canNOT use SharePoint Designer nor do I have access to server to change any 14 hive files.
    I have a SharePoint 2010 List with a field of type Hyperlink. I need these links to open in New Window. Only links with-in this LVWP should open in new window (and not links on Quicklaunch or top nav).
    Any clues how to achieve this please? JS is okay.
    Thanks.

    Hello,
    The good news is that you're not the first to have those requirements!
    Here's the JavaScript:
    <script>
    var allLinks = document.querySelectorAll("table.ms-listviewtable tr td a");
    for(var i=0; i<allLinks.length; i++){
    if(allLinks[i].onclick == null){
    var targetUrl = allLinks[i].href;
    targetUrl = targetUrl.indexOf("?") > -1 ? targetUrl + "&isDlg=1" : targetUrl + "?isDlg=1";
    allLinks[i].href= "javascript:var options = {width:500, height:300, url:'"+targetUrl+"'}; SP.UI.ModalDialog.commonModalDialogOpen('"+targetUrl+"', options);";
    </script>
    This script can be saved to a text file and uploaded to a document library. You can then add a content editor web part below your list view web part (so that it doesn't execute until after the list view has loaded) and set the "content link"
    property of the web part to be the path to the uploaded text file.
    The solution was originally posted here:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8ca275df-1d9c-4d0f-a624-c0531fda069a/how-to-open-model-dialog-onclick-of-list-item-hyperlink-column?forum=sharepointdevelopmentprevious

  • How to open a JSP page from a form ??? plz help

    hi ..
    i want to know how to open a jsp page from a oracle apps form using a button .
    the requirement is that whenever we click on the button created on the form, it opens a jsp page.
    plz help me ..its urgent !! :-(

    In portlet project, to navigate between pages, you should not use the URL property to link to a page. Instead, portlets use navigation via action handling. You use the Page Navigation editor to set up links to pages; that is, the navigation editor sets the action property.
    Here is an example to hyperlink ans button to open a new page:
    # From within the IDE, create a new portlet project. This action creates the project and one page, PortletPage1.jsp.
    # Create a second portlet page, called PortletPage2.jsp, for the project.
    # Drop a Hyperlink component onto the first portlet page, PortletPage1. (You can drop the Hyperlink on the page in the Design window or on the PortletPage1 node in the Outline window.) Change the Hyperlink's text property to Next Page.
    # Drop a Button component (found in the Basic section of the Palette) onto the second portlet page, PortletPage2.
    # Open the Page Navigation Editor. It displays the two pages (PortletPage1.jsp and PortletPage2.jsp) of the application.
    # Click the PortletPage1.jsp icon in the Navigation window to expand it, and then drag a connector from hyperlink1 to PortletPage2.jsp. Change the name of the connector from case1 to Page2.
    # Click the PortletPage2.jsp icon in the Navigation window to expand it, and then drag a connector from button1 to PortletPage1.jsp. Change the name of the connector from case1 to Page1.
    # Run and deploy the portlet. The browser displays PortletPage1 and you should see the Next Page hyperlink. When you click the Next Page hyperlink, the Apache Pluto Portal server displays PortletPage2. Click the Page2 button to return to PortletPage1.
    Sherry
    Creator Team

  • HELP - How to open IDML?

    How to open IDML in other editors, when I tried to open in Notepad it's showing as junk and also how to edit the IDML file?
    Pl. help.
    Thanks,
    ArcRaj

    IDML is a zip archive of a folder structure with an IDML extension. If
    you want to examine the contents, you can just change the extension to
    zip and decompress.
    If you want to actually do anything useful with it, you should do a
    proper expand and package of the IDML. The easiest way is with a script
    from within InDesign. Here's what I use:
    Script #1
    //DESCRIPTION: Expands an IDML file into folder format
    ExpandIDML();
    function ExpandIDML(){
    var fromIDMLFile = File.openDialog( "Please Select The IDML File to
    unpackage" );
    if(! fromIDMLFile){return}
    var fullName = fromIDMLFile.fullName;
    fullName = fullName.replace(/\.idml/,"");
    var toFolder = new Folder( fullName );
    app.unpackageUCF( fromIDMLFile, toFolder );
    Script #2
    //DESCRIPTION:Produces an IDML package from the contents of a directory:
    CreateIDML();
    function CreateIDML(){
    var fromFolder = Folder.selectDialog("Please Select The Folder to
    package as IDML");
    if(!fromFolder){return}
    var fullName = fromFolder.fullName;
    // var name = fromFolder.name;
    // var path = fromFolder.path;
    var toIDMLFile = new File( fullName+".idml" );
    app.packageUCF( fromFolder, toIDMLFile );
    Harbs
    http://www.in-tools.com

  • How to open Drafts file in Profile Folder Adobe says can't open HELP!

    Lately several drafts just disappear. Today a very important draft I was making/had finished, disappeared. Read in forum to shut down Thunderbird, go to Profiles then open the draft file, however when I try to open draft file Adobe PDF deal says it cannot open. Am desperate to get this draft that disappeared back ASAP!
    I am running Windows 7 and so need little step by little step instructions on how to accomplish this.
    BTW I see 2 draft files 1st appears like a blank page just says Drafts. The other says Drafts.msf and has the PDF logo within. Both of them, when I try to open I get error message from Adobe Reader saying " Adobe Reader could not open Drafts.msf because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)"
    Thanks in advance for ANY help in the matter ASAP as this particular draft is of great importance & sure don't want to have to redo such a very long detailed email!!!
    Ctipling

    You can check if the update was sucessfull b opening the Editor and clicking Help >>About Plug-in >>Camera Raw
    You should see this:

  • How to open a page  and closing source page in jdev 10.1.3.3

    how to open a page and closing source page in jdev 10.1.3.3.
    for example.
    From page 'A' , we are opening a page 'B' and closing the page 'A'. how this can achived.Please let me know

    Your question is totally not clear?
    What page? a JSF page? A code editor in JDeveloper?

  • How to open a "wav" file in Logic 7.2.1 and then remaster?

    A fellow musician wants to see if I can improve audio tracks his band recorded in Cubase SX. He has a CD with the WAV files of each of 12 audio tracks. First question - Could someone tell me how to open his files and then import them into Logic Pro so that his tracks 1-12 correspond to my audio tracks 1-12 and be in sync?
    Second question - assuming I can get his tracks going what are the key ways to boost volume or "master" his tracks so that the end result, a stereo mix, is loud vibrant and "radio ready"?
    I'm familiar with the mastering plug ins on the output channels of Logic. I've used "Soft Maximizer" but it seems to be compression related. Are these "rooms", available on the output channels, the only way to increase volume and aliveness?
    He's doing this because the studio he's at can't seem to make a mix that he's happy with. He says the mixes lack volume and vibrancy. Thanks in advance.

    Use the Audio Editor window to import the tracks. Then drag them one at a time onto Audio tracks in the Arrange window so they all align to Bar 1 1 1 1.
    The fun will start if they were not recorded simultaneously as you will need to align them manually to be in sync. Good luck with that it takes time but is not impossible. Use the moveable start point in the Audio Editor to adjust the start of each wav file until they are aligned.
    To improve the levels, probably the quickest way is to Normalize each track first in the Audio Editor window before you start mixing and EQ'ing them in Arrange.
    Rik

  • How to open CR2 files in photoshop elements 10

    Who knows how to open CR2-files from a Canon Powershot S100 in Photoshop Elements 10?

    Hi,
    The version of Camera Raw that you reported should support the S100 CR2 images.
    If you load the editor, go to the File menu and select Open, then point to the file, are you saying that it displays the error message?
    Have you tried opening the file with Canon's Zoombrowser?
    Which operating system are you running on?
    Brian

  • How to open XML files?

    Could someone suggest me how to open XML files? (Microsoft free XML converter doesn't work for all files)

    There are several XML editors available at VersionTracker or MacUpdate.

  • How to invoke system editor by double click a file(windows)?

    how to invoke system editor by double click a file(windows)?
    Just like that, double click a file named a.doc, windows will open it by word.exe.

    I try that:
    exec("cmd /c start winword \"c:\dir\a b.doc\"");
    like this posting(http://forum.java.sun.com/thread.jspa?forumID=57&threadID=634576 ), and It is ok.
    But now I make a file list with different files, .pdf,.xls,.doc and so on, I wanna double click to open one with its default system editor.
    if no space:
    exec("cmd /c start " + file);
    will invoke the default editor to open it. if space, it can't do it.
    And now I rename all files, replace space to _.

  • HOW TO OPEN MULTIPLE TABLES IN SQL DEVELOPER SIMULTANEOUSLY

    hello i m new to sqldeveloper so plz dnt laugh if m asking silly question
    HOW TO OPEN MULTIPLE TABLES IN SQL DEVELOPER SIMULTANEOUSLY

    Use the 'pin' on your table editor
    http://www.thatjeffsmith.com/archive/2011/11/sql-developer-quick-tip-pin-query-result-sets-and-plans/
    Then open your 2nd table. If you want to see both at the same time, right-click on the table editor tab and select 'New Editor Tab Group'
    Not a silly question, but no need to shout :)

  • Can I include both CSS and HTML codes in one Open HTML Editor.

    Somehow Cell phones are not properly reading css codes. Is there any way to include both CSS and HTML codes in one Open HTML Editor?

    Hammad, their code is fairly mobile friendly.  Per my other discussion with you ( http://topliners.eloqua.com/thread/8532 ), Eloqua's code is responsive for the most part.  Most of their issues lie with the styling of the email where you will get different fonts and different sized fonts throughout the email and some other minor display issues.
    What you are trying to accomplish is extremely difficult to do because you do not have the access to the HTML to better control how the responsive template works which is why the Eloqua templates (and most ESP templates) stick to the more basic side of emails.
    If you want to use Eloqua's WYSIWYG to make their responsive email you can do so, but I would recommend deleting all their body text before editing anything because of the inconsistencies in their code.  Otherwise, I think you would be better off coding the emails outside of Eloqua using a 3rd party editor whether it's something more robust like Dreamweaver or Coda, or whether you feel comfortable working in a more text environment with programs like Notepad++ or Brackets.
    At the end of the day remember you are paying Eloqua for these and if you choose to stick with the WYSIWYG and you are not getting the results you expect you need to tell Eloqua through your support channels.

Maybe you are looking for

  • Slow Internet download speed, OSX 10.9.5

    Since updated to 10.9.5, my Mac Pro Internet download speed down to 7 Mbps, and same on My MacBook Pro 10.9.5 too. both use to be 70 Mbps. I am paying $50.00 extra to get the highest speed from Time Warner. My iMac is 10.9.3, tops 70 Mbps. My iPhone

  • Autostart on lnux server 3

    Hi i m using oracle 9.2 on linux advance server 3 my autostart process is not working on this server. i did all configuration(given in documentation and given on some reknown websites) to autostart database and listener at system startup but its not

  • Conditions from the last PO to inforecord

    hi u can define that the conditions from the last PO: -are always copied -are not copied when entered manually -are never copied Can anybody tell me where can we find this? Thanks Prashant

  • Need Help on where clause condition

    Hello All, Thanks in advance:: I have below SQL query which is returning 1500 records when i dont use any condition in where clause(Please see the query below); SELECT POS_TYPE, POS_ID, SUB_ACNT_ID, CHRG, DOC, NULL, ACNT_RLN, ACCOUNT_FLODERS_VER, DM_

  • My "Leave this Conversation" isn't working...

    Everytime I try to leave a group conversation in messages, it is grayed out and not clickable. Sometimes the option isn't even there. What is wrong?