Use of an Editor

Can any body know the uses of an EDITOR?

I am using oracle 10. I need to invoke an external editor for a multiline text item. I try to invoke it as per the oracle forms help.It is not working. Can any one tell me an alternate way to invoke an editor for a text item in oracle forms. I am working in Windows platform.

Similar Messages

  • Unable to use B2B Document Editor tool to create guideline from data file

    Does anyone successfully used the B2B Document Editor tool to generate the guideline doc from an HL7 data file ?
    I attempted to use the SpecGenerator feature of this tool to create a guideline from the "a01.xml" sample file in the HL7 tutorials (came with the B2B installation" and the wizard kept on giving me "parsing errors" message below
    "The data in the file could not be parsed. Please check the file to verify that it is valid and formatted correctly. This error can occur for one of the following reasons: A) The data file may be a Word document or have some other binary format. B) The envelope data may not be formatted properly. If this is an X12 data file, please verify that the ISA segment is the correct size (exactly 106 characters). If this is an EDIFACT data file, it must have either a UNA or begin with UNB. For other standards, verify that the envelope segments conform to the specified rules. C) The segment/record delimiters in the file are incorrect."
    Any idea why ? I did not alter the sample file in anyway -- its format is exactly the same as when it was installed.
    Any helps are appreciate !!

    Hi,
    I would suggest that you learn the B2B product starting with the HL7 tutorial. Start by importing the export files and follow the instructions to make the system work end to end.
    Next, you want to configure for the HL7 tutorial manually using the ecs and xsd files provided in the HL7 tutorial directory. Again, ensure that the system work end to end after you have done the manual configuration.
    Next, you create a new ecs and xsd file using the Document Editor from scratch and use them in your manual configuration. You can use the same doctype and version as in the tutorial so that you can be familiar with the Document Editor and at the end of this exercise, you know you have done things properly if the system works end to end. The documentation for Document Editor is mainly in the Windows Help section.
    After the incremental steps above, you will have the knowledge to implement the document type and version of your project. Going straight into the requirements in your project makes it difficult to debug because they are too many moving parts.
    Hope this helps,
    Eng

  • When attempting to use Lightroom external editor program to edit a photo in Photoshop Elements 10, the photo does not open / appear on photoshop elements screen.  I don't have any problem with this when using Photoshop Elements 6 or Photoshop CS.  I'm usi

    When attempting to use Lightroom external editor program to edit a photo in Photoshop Elements 10, the photo does not open / appear on photoshop elements screen.  I don't have any problem with this when using Photoshop Elements 6 or Photoshop CS.  I'm using a Mac with Mountain Lion OS.  Any solutions?

    Adobe now hides the editor - what looks like it is not - you want the editor hidden in the support folder - see http://forums.adobe.com/message/3955558#3955558 for details
    LN

  • I need to use the PDF editor so I can sign or edit documents already on pdf format. Please advise?

    I need to use the PDF editor so I can sign or edit documents already on pdf format. Please advise?

    As per my understanding , To disable the field RV45A-KWMENG based on the condition for Transaction VA01/VA02.
    The conditions which i need to check is Order Type and item category.
    I understand that this is the code which i need to insert for disabling the field but i have a question here, where is the condition here and how the system understand for this field RV45A-KWMENG it has to disable. I think we need give the condition as if RV45A-KWMENG....... Another one if iam not wrong we need check that it has to be done in VA01 and VA02 then only this condition should be executed.
    IF VBAK-AUART EQ 'XXX' OR VBAP-PSTYV EQ TANN .
    IF SCREEN-NAME = 'XXX'.
    SCREEN-ACTIVE = 0
    ENDIF.
    ENDIF.
    Please suggest me the better way how can i do it in the coding.
    Awaiting for ur prompt reply.

  • Using Rich text editor appends br tag at the last to the content.

    Using Rich text editor appends <br> tag at the last to the content. This does not happen in chrome. I am using v31.0 on ubuntu which seems to be the latest.

    What editor are you using? What are you trying to edit?
    What web site?

  • Issue with Capturing Long text using CALL METHOD EDITOR- GET_TEXT_AS_STREAM

    HI Experts,
    Standard Long text is capturing using CALL METHOD EDITOR->GET_TEXT_AS_STREAM
         but not working for Custom Long text – Only changes
    Here is the Issue:
    1)      Created Custom Long text in TAB. --> Good
    2)      Entered few lines in custom Long text  --> Good
             Click on Standard Tab , Leaving Custom tab and Custom Long text-->Good
    4)      In PAI of Custom Tab – Changes captured using CALL METHOD 1 ( See below Code 1)--> Good
    5)      Entered few lines in Standard Long text in Standard Tab -->Good
    6)      Click another Standard Tab
    7)      In PAI of Standard Tab – Changes captured using CALL MEHTOD 2 ( See Below Code 2)-->Good
    8)      Come back to Standard Tab / Standard Long Text , Enter few more lines.
    9)      Change the Tab , IN PAI of Standard Tab/Standard Text , Changes Captured using CALL METHOD2 ( See Below CODE 3) --> Good
    10)   Go to Custom Tab , Custom Long text , Entered few more lines--> Good
    11)   Click on any other tab, Triggered again PAI of Custom tab / Custom Long text using Call Method1 ( See Below Code 4) -->Good triggered PAI same CALL METHOD TEXT_EDITOR1->GET_TEXT_AS_STREAM.
    12)   But additional lines are not captured , saying ZERO LINES in Internal Table and IF_MODIFIED = NO  -->Issues lies here.
    CODE1 ( Custom Long text entry capturing – First Few Lines )
    Custom Long text Entries are stored in LS_OUTTAB-TEXT first time when entered few lines and LV_MOD is 1.
    PAI of Custom tab
    CALL METHOD TEXT_EDITOR1->GET_TEXT_AS_STREAM
            EXPORTING
              ONLY_WHEN_MODIFIED     = CL_GUI_TEXTEDIT=>TRUE
            IMPORTING
              TEXT                                       = LS_OUTTAB-TEXT ( FIlled with Lines entered in custom long text )
              IS_MODIFIED            = LV_MOD ( Value 1 , Modified )
            EXCEPTIONS
              ERROR_DP               = 1
              ERROR_CNTL_CALL_METHOD = 2
              OTHERS                 = 3
    CODE2 ( Standard Long Text Entry Capturing – First Few Lines )
    Standard Long text Entries are stored in SELECTED_TEXT first time when entered few lines and FLAG_MODIFIED is 1.
    PAI of Standard tab
       CALL METHOD EDITOR->GET_TEXT_AS_STREAM
          EXPORTING
            ONLY_WHEN_MODIFIED = YTRUE ( Value 1 , Modified )
          IMPORTING
            TEXT                               = SELECTED_TEXT ( FIlled with Lines entered in standard long text )
            IS_MODIFIED        = FLAG_MODIFIED.
    CODE 3 ( Standard Long Text Entry Capturing – Second time Few Lines )
    Standard Long text Entries are stored in SELECTED_TEXT  second  time when entered few lines and FLAG_MODIFIED is 1.
    PAI of Standard tab
       CALL METHOD EDITOR->GET_TEXT_AS_STREAM
          EXPORTING
            ONLY_WHEN_MODIFIED = YTRUE
          IMPORTING
            TEXT                               = SELECTED_TEXT ( FIlled with Lines entered in standard long text )
            IS_MODIFIED        = FLAG_MODIFIED. ( Value 1 , Modified )
    CODE4 ( Custom Long text entry capturing – Second Time Few Lines )
    Custom Long text Entries are not stored in LS_OUTTAB-TEXT Second Time when entered few lines and LV_MOD is 0.
    PAI of Custom tab
    CALL METHOD TEXT_EDITOR1->GET_TEXT_AS_STREAM
            EXPORTING
              ONLY_WHEN_MODIFIED     = CL_GUI_TEXTEDIT=>TRUE
            IMPORTING
              TEXT                                       = LS_OUTTAB-TEXT  ( ZERO ENTRIES )
              IS_MODIFIED            = LV_MOD   ( NOT MODIFIED Flag )
            EXCEPTIONS
              ERROR_DP               = 1
              ERROR_CNTL_CALL_METHOD = 2
              OTHERS                 = 3
    Can anyone help me out of this.
    With Regards,
    Bala M

    Excellent Eitan,
    Here is what I am trying to Achieve.
    In Create Notification IW21 , They need 5 Long Text in Custom Tab ( Say Tab Name is MBR ).
    TAB1 NOTIFICATION Standard Information , TAB2 REFERENCE OBJ , TAB 3 MalFunction , Breakdown Standard one...... TAB 7 ( Custom Tab ).
    In Custom Tab , I added 5 LONG TEXT ( its 5 WHY Concept ).
    When the User enters data in 5 Long text , it should store long text along with Notification number when save.
    But Notification number will be generated @ the time of SAVE , but before that its just shows as
    %0000000001 ( and Number will be generated 1000065479) at Save.
    How to achive this .
    I did this:
    Added 5 Custom Container. and In PBO / PAI
      PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
    IN PBO
       CREATE OBJECT TEXT_EDITOR1 ,    CREATE OBJECT TEXT_EDITOR2,    CREATE OBJECT TEXT_EDITOR3 like wise 5
       CALL METHOD TEXT_EDITOR1->SET_TEXT_AS_R3TABLE ,    CALL METHOD TEXT_EDITOR2->SET_TEXT_AS_R3TABLE .. Like wise 5 , So when the user Click on Custom Tab ( MBR ).
    It give 5 Long text.
    When he click tab1 or tab2 or tab3 .. and again tab MBR , still data is available.
    How to store this data for future retrival ( IW22 or IW23 ) ?
    Its working fine when I enter first time and goes here and there and finall save .
    IN SAVE BADI , I imported the Long text and created Standard Text SO10 with Notification Number with LONG1 , LONG2 .. means 1000065479LONG1 as standard text.
    But not working when I entered first time and go to tab1 and tab2 and then to MBR tab and added few more lines , its not exporting full lines and in IMPORT ( SAVE BADI ) giving ZERO Lines.
    Please help and thanks for your quick response.

  • How to re-use the Property Editor in a custom development?

    Hi,
    I would like to re-use the Property Editor in a new project.
    Is this possible and where do I have to start?
    Is it possible to use the enhancement technology on this new editor?
    thanks for your help,
    Jan

    Hi
    [Click Here|https://www.sdn.sap.com/irj/sdn/articles-topic?rid=/webcontent/uuid/7082f9fc-070d-2a10-88a2-a82b12cea93c&startindex=121]
    Reagrds
    pavan

  • How can I use the Formula Editor?

    When I click on the "Insert" menu and try to insert a function, every option is grayed out. What additional software is needed to use the function editor in Pages?

    I'm nbot sure of what you try to achieve.
    The Insert Function menu item is designed to enter functions used in table's formulas.
    So it's active only if the cursor is in a table's cell.
    Maybe you are trying to draw an equation and this tyask requires the availability of the third product entitled MathType.
    Yvan KOENIG (VALLAURIS, France) mercredi 30 décembre 2009 22:18:09

  • When do I need to use a cell editor in a JTree?

    I'm currently trying to add checkboxes to nodes in a JTree. I use a panel containing the check box and a label for rendering. I did this because I want only the checkbox to respond to a mouse click and not the text associated with it. I've read several articles online (including the tutorial) and seen sample code as well. Do I need a cell editor or just have a cell renderer with a mouse listener? I've seen it done both ways.

    Let me rephrase the question.
    If I want to display a checkbox and a label as a node in a Jtree, which way should this be done (with or without a cell editor)? What are the advantages/disadvantages to each approach and what is recommended by Sun?
    I ended up not using a cell editor, but I've read posts on various sites where it was stated that if the user has interaction with the node then an editor should be used (with no other explanation as to why). I guess my main concern is that there might be a down side from not using a cell editor that I'm not aware of.

  • Where to apply input verifier using netbeans IDE editor

    hello frenz,
    could anyone guide me on how to applying input verifier using netbeans IDE editor?

    You should ask your problem in the netbeans forum or just set the input verifier manually.

  • [jsp]can i use a simple editor in stead of an input  zone?

    hello friends,
    am developping a web site with the framework struts and jsp and in one part that deals with news i use an input zone(in my .jsp) to put my news in the right table like this :<input type="text" >.
    I would like to ask you if it's possible to use a simple editor ( that allows me to modify the size ,the color oh the text for exemple ,..)instead of the input zone.
    Thank you in advance.

    there are open source editors, like tinymce that allow you to do html editing.
    http://tinymce.moxiecode.com/

  • How do you use Camera Raw Editor to open jpeg files by default, not using "Open As"?

    I've searched for the Camera Raw setting that is available from the Photoshop (not PSE8) menu but it is not even available in Photoshop Elements 8 that I've been able to see.  Does anyone know where this setting is?

    I had PSE8 set to open any file (tiff, jpeg and cr2) with the camera raw editor.  I can not figure out how it got changed or remember where to make this a default option in PSE8.  I found a video showing it available in Photoshop, main menu, camera raw and then you just check the boxes.  I've been looking for the similar setting in PSE8 again because I'm working through some exercises in a book and it is a nuisance to navigate to the image using the "open as" command every time.  I figured it would be just as easy to set the option by default, then, if I didn't want to use the raw editor, I could just click open from there.  Help?  Thanks so much!

  • I have always used Nero wav editor to add eq, add volume and noralize recordings....do I have that feature in premier elements? and if so, where do I find it?

    I have always used Nero wav editor to add eq, add volume and noralize recordings....do I have that feature in premier elements? and if so, where do I find it?

    Zillenwater said: You can export a FLIP video clip using Picasa 3, and then bring it into Premiere Elements. The video and audio will successfully come in.
    Thanks much - this worked very well and was so easy. After spending hours looking at a lot of different converters and getting nowhere, I spotted this solution.
    I used Flip avi files directly from the camera, copied them into a folder that Picasa 3 could find, and then exported them. They showed up in my /My Documents/My Pictures/Picasa/Exported Videos folder as Windows Media Files (.wmv). I brought my test files into Premiere Pro 1.5, previewed them, placed them in the timeline and rendered them. they looked good here, so I exported my movie and the video looks pretty good, considering it was from the Flip.
    Picasa did something that a dozen other conversion programs couldn't get right (or at least I couldn't find the right combination of codecs and settings). It's a relief, alright, and information I'm happy to share.

  • Why use an external editor?

    I have done a search on this basic question, but everyone is at least one step ahead of me. I found lots of questions about using external editors, but none on why to use one if the first place.
    It's self-evident that the basic answer is to extend Aperture's capabilities. So let me narrow the focus of my question as follows:
    1. Just out of curiousity, there must be at least some overlap in things that Aperture does and what the external editor can do, correct?
    2. Can you share some guidelines as to when you would stay in Aperture itself and when you would  use the external editor through Aperture?
    3. An obvious question is why use Aperture when you have an external editor?  The most likely answer is that Aperture does some things better, and the external editor does other things better. So does it come down to experience in deciding which program to use for what? As someone whose post processing has, for years, been limited to cropping, that's a pretty daunting reality. Any advice anyone can offer to offset my inexperience would be appreciated. For example, someone on a share-your-image type forum just blasted me when I posted something labled as my first effort at using a RAW file. I made "local" changes here and there in the image. He told me I'm doing things "totally wrong" and I should make global changes, and avoid making local changes. I don't know if he's right or not, but if he is, how was I to know that? So again, any advice for a PP newb would be great.
    Thanks!
    Ben

    Good questions, Ben!
    And probably the answers are a matter of taste and personal preferences, and depending on the workflow we are using.
    2. Can you share some guidelines as to when you would stay in Aperture itself and when you would  use the external editor through Aperture?
    For me, the escape to an external editor is an occasionally necessary evil, if I really need to do things well, that Aperture cannot do.  The problem is, that using an external editor will break Aperture's lossless workflow; it will create an additional original image file, and Aperture cannot undo the edits done in the external editor. And the additional original files will be gigantic 16bit tiffs or PSD files. So I would never use the external editor without a pressing need.
    I use an external editor, if I need to create images with transparency or do advanced retouching that requires the composition of two or more images. That are things that Aperture cannot do.
    Or, if I have images that need lens correction or perspective correction.
    3. An obvious question is why use Aperture when you have an external editor?
    I use Aperture first of all, to keep my images organised - my Aperture library is my database of all photos I have taken during my lifetime.
    And I use Aperture to edit the images and to keep track of the edited image versions and how they relate. For 99% of my image processing needs Aperture is sufficient and great.
    -- Léonie

  • Sluggish problem with using an external editor

    Whenever I use an external editor (CS5 now) and also Nik software, when I return to Lightroom with the edited file, the problem occurs if I want to do further editing on the picture back in Lightroom. The resonse when I click on something (contrast, saturation, or anything) is sluggish. The screen blinks momentarily, as though blacking out, and then comes back on. If I switch ot a new picture, unedited, it's fine. Can anyone offer any solutions?  Thanks in advance

    There is a Windows based utility that will allow one to change the location of the 'My Music' folder, but you appear to be running a Mac.
    You may find more appropriate help in the iTunes for Mac Discussions.
    If you are running Windows, post back and some info can be provided.
    Best of Luck

Maybe you are looking for

  • Pop up on clicking a button

    Hi All, Problem : There is a custom screen in a CRM Transaction. In the screen there is a table which displays data.and there are a few buttons which provides a few functionalities like delete records, display attachments etc. The functionality is pr

  • Oracle UCM folder level access on the fly

    Our requirement is like this. We have a folder named Projects. One user with Project Manager role will create a new folder within the Projects folder and give access to this new folder to one user from the Project Team Member role. No other member fr

  • File adapter stops pulling files from ftp

    hi, i defined a communication channel in this way: adapter type:  File Sender transport protocol: FTP message protocol: file content conversion data connction: passive connect mode: permanently Quality of service: exacly once. somtimes the channel st

  • How do i add a photo to an email as an attachment and not an image?

    How do I add a photo to an email as an attachment? Everytime I try to and the attachment it puts the photo in the email as an image not a file attachment.

  • I want to open a new tab by double click the space beside the tabs.

    Not on the "new tab button", I meen the rest of the free space beside it. This is annoying me, on my other computer this is working fine. And its the same version (23.0.1) on both my computers.