Configure BTF editor

Hi all,
I can't run the BTF editor on a CRM system. I try to edit a email forms with this editor, but not run. Or I don't know how can I configure it.
I can see the BTF test bsp page, but not the BTF integrated on GUI,
how can I run this editor?
thanks in advance,
david

have you seen this weblog
/people/thomas.jung3/blog/2005/04/25/btf-in-the-real-world
Regards
Raja

Similar Messages

  • BTF Editor: Capturing Data

    I have a BSP application with a BTF Editor in it. Now, i have to get the data from BTF Editor in order to save it. I am not able to do it. Please help.
    <u>Here is the code i used in Input processing</u>
      data: s_docdata type BTFDOCUMENTDATA.
      data: editor TYPE REF TO cl_btf_bsp_editor.
      editor ?= cl_btf_bsp_manager=>get_data( request = request name = 'editor' id = 'btf1' ).
      IF editor IS NOT INITIAL.
        s_docdata-btf_doc = editor->document.
      ENDIF.
    let me know please how to get the Xstring text here.
    Thanks.
    Antonny

    Hi,
    Did you check these web logs:
    /people/thomas.jung3/blog/2004/12/15/bsp-developers-journal-part-xvi--using-the-btf-editor
    /people/thomas.jung3/blog/2005/04/21/bsp-btf-editor-example-non-model-view-controller
    /people/thomas.jung3/blog/2005/04/25/btf-in-the-real-world
    Eddy
    PS. Reward the useful answers and you will get <a href="http:///people/baris.buyuktanir2/blog/2007/04/04/point-for-points-reward-yourself">one point</a> yourself!

  • Performance Issue with BTF editor( BSP application when Calling in WD ABAP)

    Hi All,
    In one of the requirement, I am trying to call the BTF Editor From WD ABAP application.
    When i am trying to open the BTF Editor, it is taking time to load.
    Can any one help men on this ....What I need to do in BTF Editor / WD ABAP application to improve the performance.
    Thanks in Advance,
    Aneel

    These really aren't web dynpro abap questions.  Web Dynpro ABAP is just the frame around the BSP and you are really asking questions about the use of the BTF within BSP. I think these questions would be better suited to the BSP forum.  I will move this thread to that forum.  However before I do, I should warn you that such iFrame integrate is not recommended.  The iFrame is actually deprecated in 7.0 and 7.01 (but does return to support in 7.02).  You should note that the iframe has no session management and the BSP within the iFrame will have a separate user session from the surrounding Web Dynpro ABAP.  The recommendation for such integration is to use the Portal or the NWBC and integrate these ase two different iViews within one Portal Page.  In 7.02, you could also use the Page Builder and a URL CHIP to perform this integration.

  • BTF : Add Image in BTF editor in WebUI

    Hello Everyone,
    I have added a view as a assignment block in standard component, everything is working fine, the text gets added to the BTF editor, however, When i insert the image, it shows up as a empty box with nothing inside it.
    Although this is working in the standard mail component, i have noticed that the link which gets created when clicking on HTML code, when an image is added as
    <HTML><HEAD>
    <META content="text/html; charset=utf-8" http-equiv=content-type></HEAD>
    <BODY>
    <P>Test</P>
    <P><IMG alt="" src="/sap/bc/contentserver/810?get&amp;pVersion=0046&amp;contRep=CRMFILESYSTEM&amp;docId=535544E2AA367F60E10000000A3C2861&amp;compId=manoj.jpg&amp;accessMode=r&amp;authId=CN%3DKCL&amp;expiration=20140422112113&amp;secKey=MIH3BgkqhkiG9w0BBwKggekwgeYCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBxjCBwwIBATAZMA4xDDAKBgNVBAMTA0tDTAIHIBMREyBRBTAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTQwNDIyMDkyMTEzWjAjBgkqhkiG9w0BCQQxFgQUt2vLLx6bbf5mUpbt09CcyczIugYwCQYHKoZIzjgEAwQuMCwCFE53hCWxhYgv0N2ky80blV7wcjRBAhQBWV41%2B1Gu9UpJmFWRqn68C2YB9w%3D%3D"></P></BODY></HTML>
    However, when I look at my code the link gets created like this
    <P>lets add<STRONG> picture of <FONT color=#009900>Manoj. </FONT></STRONG></P>
    <P><IMG alt=file://C:\Users\pradeep\Desktop\test.jpg></P>
    <P> </P>
    <P> </P>
    <P> </P></BODY></HTML>
    It seems like I am not able to add the image in the content server and fetch it again to display it in my view.
    here is my HTML code in the view
    <%@page language="ABAP" %>
    <%@extension name="btf" prefix="btf" %>
    <%@extension name="thtmlb" prefix="thtmlb" %>
    <%@extension name="thtmlbx" prefix="thtmlbx" %>
             <thtmlbx:btf id                 = "BTFEditor"
                         document            = "<%= s_documentdata-btf_doc %>"
                         height              = "400"
                         width               = "95%"
                         onClientInsertImage = "InsertImage_BTFEditor(id);"
                         onClientInsertLink  = "InsertLink_BTFEditor(id);"
                         sourceView          = "<%= sourceview %>"
                         secureInsertImage   = "X"
                         />
    So my question is, do we have to write separate code to add image, as i am set and getting the text successfully from the content server.
    Could someone please throw a light on this and help with some code logic.
    Regards,
    Pradeep

    Hi Hammad,
    You can do this by adding a text box to your landing page, right clicking it, and selecting "Edit Source". In the source code, you can specify the link of your image, like this:
    <img src="http://imageurlgoeshere.jpg">
    You'll need to make sure the dimensions of the text box are as big as or bigger than the dimensions of your image so the image doesn't get cut off.
    Hope this helps!
    Ida

  • BTF : Add Image BTF editor in WebUI

    Hello Everyone,
    I have added a view as a assignment block in standard component, everything is working fine, the text gets added to the BTF editor, however, When i insert the image, it shows up as a empty box with nothing inside it.
    Although this is working in the standard mail component, i have noticed that the link which gets created when clicking on HTML code, when an image is added as
    <HTML><HEAD>
    <META content="text/html; charset=utf-8" http-equiv=content-type></HEAD>
    <BODY>
    <P>Test</P>
    <P><IMG alt="" src="/sap/bc/contentserver/810?get&amp;pVersion=0046&amp;contRep=CRMFILESYSTEM&amp;docId=535544E2AA367F60E10000000A3C2861&amp;compId=manoj.jpg&amp;accessMode=r&amp;authId=CN%3DKCL&amp;expiration=20140422112113&amp;secKey=MIH3BgkqhkiG9w0BBwKggekwgeYCAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGBxjCBwwIBATAZMA4xDDAKBgNVBAMTA0tDTAIHIBMREyBRBTAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTQwNDIyMDkyMTEzWjAjBgkqhkiG9w0BCQQxFgQUt2vLLx6bbf5mUpbt09CcyczIugYwCQYHKoZIzjgEAwQuMCwCFE53hCWxhYgv0N2ky80blV7wcjRBAhQBWV41%2B1Gu9UpJmFWRqn68C2YB9w%3D%3D"></P></BODY></HTML>
    However, when I look at my code the link gets created like this
    <P>lets add<STRONG> picture of <FONT color=#009900>Manoj. </FONT></STRONG></P>
    <P><IMG alt=file://C:\Users\pradeep\Desktop\test.jpg></P>
    <P> </P>
    <P> </P>
    <P> </P></BODY></HTML>
    It seems like I am not able to add the image in the content server and fetch it again to display it in my view.
    here is my HTML code in the view
    <%@page language="ABAP" %>
    <%@extension name="btf" prefix="btf" %>
    <%@extension name="thtmlb" prefix="thtmlb" %>
    <%@extension name="thtmlbx" prefix="thtmlbx" %>
             <thtmlbx:btf id                 = "BTFEditor"
                         document            = "<%= s_documentdata-btf_doc %>"
                         height              = "400"
                         width               = "95%"
                         onClientInsertImage = "InsertImage_BTFEditor(id);"
                         onClientInsertLink  = "InsertLink_BTFEditor(id);"
                         sourceView          = "<%= sourceview %>"
                         secureInsertImage   = "X"
                         />
    So my question is, do we have to write separate code to add image, as i am set and getting the text successfully from the content server.
    Could someone please throw a light on this and help with some code logic.
    Regards,
    Pradeep

    Sunenny,
    Yes, it would take something like that. Another option, although not any easier really, it to use the latest CKEditor.
    Regards,
    Dan
    Blog: http://DanielMcGhan.us/
    Work: http://SkillBuilders.com/

  • BTF Editor -disable buttons

    Hi ,
    I want to disable some standard buttons (like bold button) which were displayed in BTF editor toolbar.
    Are there any options to do it.. i have search the class cl_btf , cl_btf_editor  for this..but couldn't make out.
    Thanks,
    Sandy.

    Hi,
    you have to comment the lines:
      str = me->render_default_button( function = 'bold'            tooltip = '013     ' ).
      CONCATENATE html str INTO html.
    in method RENDER_DEFAULT_START of class CL_BTF_BSP_EDITOR.
    For do that you can copy the bsp extension btf into a custom one and then copy the handler class CL_BTF_BSP_EDITOR into a custom one editing the method

  • BTF Editor - where to find it?

    Hi,
    Thomas Jung posted a weblog recently on the marvels of something he calls the "BTF editor". I've tried to find this brand new feature, but have failed so far. Could anyone provide me the menu path or transaction code to start this thing?
    Naturally, help.sap.com does not come up with anything related to "BTF"... but that's as you would expect, or...?
    Trond

    > ...help.sap.com does not come up with anything
    > ... but that's as you would expect, or...?
    Of course, I am the first to admit that often there are bits and pieces of new features that are just not documented in the heat of the moment. These "trivial" aspects (from developer's viewpoint) are left for last and then forgotten. We fight against this everyday.
    But there is also another reason, which is equally, if not more, relevant for many of the situations we see. Due to "market driven" requirements (means we liked the ideas:), we are often forced to develop features into a specific service pack or another. Typical example design2003 and phtmlb library.
    But the documentation is closed in a very early stage, usually within the first few service packs. And thereafter it is never updated again. Even although we make changes in docs, these are only publishes with next major release.
    In case of this control, I do not know the true story, as it was developed by an expert in another group.
    bye, brian

  • BTF editor

    Hi,
    Thomas Jung posted a weblog recently on the marvels of the "BTF editor". I've tried to find this new feature, but have failed so far. Could anyone provide me the menu path or transaction code to start this thing?
    Sometimes the most beautifully complex and feature-full articles fail to mention the first fumbling yet mandatory steps; probably what my old maths teacher used to call "intuitive" to us bewildered students...
    Trond

    Do you mean where do i find the BSP application BTF_EXT_DEMO?
    If yes go to transaction <b>SE80</b>-> from the dropdownlist box choose <b>BSP application</b> and in the input field type if <b>BTF_EXT_DEMO</b> and then click on the <b>display button</b>.
    Does this answers your question or were you looking for something else?
    Regards
    Raja

  • BTF Editor Default Language

    Hi,
    I had issue with BTF Editor multi language.
    I set my default browser language as Japaneese.
    when I am adding text through the Keyboard, it is taking in English. But when I am trying to copy and paste the text in to the editor from other document (which is in Japaneese )... it is accepting in Japaneese language.
    Is there any spectific setting I need to set in the Browser / any code I need to add in the program.
    Thanks In advance,
    Aneel

    Hi Aneel,
    When you type the text in notepad what language it displays?
    I mean what is the layout of your key-board, if its English-US setting, you need to make changes to the same.
    How to achieve this?
    [changing language in windows (link outside SDN)|http://www.conversationexchange.com/resources/keyboard-language.php]
    Regards,
    Ravi

  • BTF Editor and pasting graphics

    When using the BTF Editor, it seems I can only paste pictures/graphics from my web browser and not from the clipboard. If I copy a picture on my harddrive it will not paste to the BTF editor. But if I copy a picture from the internet, it will paste to the BTF editor. Is this true or am I missing something?

    answered in this thread
    CL_GUI_TEXTEDIT and graphics
    Regards
    Raja

  • Configure HTML editor Minimal

    The HTML Editor Standard takes up a large space for a text field. I need only the "Insert Special Character" for many text fields on a form in the event the text needs diacritical marks. Is it possible to configure the "HTML Editor Minimal' to add the ""Insert Special Character" or is it possible to just use "Insert Special Character" alone with nothing else?

    Hallo,
    This is exactly what I need. Did you ever find a soltion for this?
    Thx, Willi

  • Configuring external editor in sunstudio IDE

    Hello,
    I have decided to try and switch to sunstudio IDE as my main development environment. I'd like to configure it to use xemacs as an editor (instead of using the default editor). However, I couldn't easily figure out how to do this. If you could point me in the right direction, I'd greatly appreciate it.
    Thank you.

    If you want to connect xemacs to the Sun Studio 12 IDE, - sorry, there is no such feature anymore.
    The xemacs editor is included in the Sun Studio 12 product, but there is no way to connect it to the Sun Studio IDE.
    Sorry about that. Can you try to use the Sun Studio 12 built-in editor? It is much better than it was in previous versions.
    Thanks,
    Nik

  • Help configuring dashboard editor to be read-only for shared dashboards

    Hi,
    Can someone help me configure my Oracle BI user group permissions so that...
    my dashboard developers to be able to see the reports and prompts make up our shared dashboards (ie. use the "Page Options>Edit Dashboard..." menu option). But I'd like to stop them from being able to save changes to shared dashboards.
    Thanks,
    Darcy

    Not quite.
    I want my users to be able to use the "edit dashboard...." menu option so they can see the reports, prompts,... that make up the dashboard. My challenge is I don't want them to be able to use the "save" button and make changes to the dashboard though.
    Darcy

  • Configuration Property Editor

    I'm wondering if anyone elses has seen this problem with using the Configuration Property Toolset:
    When implementing with the ConfigTool (v3) "Get Subproperties" subVI with settings of  "Get Property => get subproperties", I've discovered a bug in the software for configurations numbers greater then or equal to 10:
     [DataClass.CC-ATE-TPS-726860-WalkingZeroInputs.Instrument.PXI#IP409#1.Configuration#1]
    ClusterCriticalElements_I32=4
    ChanDirection_U32=31361
    ChanMask_U32=31361
    ChanValue_U32=321
    ResetCard_BOOL=TRUE
    [DataClass.CC-ATE-TPS-726860-WalkingZeroInputs.Instrument.PXI#IP409#1.Configuration#17]
    ChanValue_U32=31360
    ClusterCriticalElements_I32=1
    What will happen is if I request just the "...Configuration#1",   I end up getting both the subproperties for Configuration#1 and Configuration#17?
    Is there a correction to this problem???
    Regards - Jeff

    FWRay-wjbroc wrote:
    NI coded it as I got the download from their site....  
    Coulde you give the link?
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Compatibility of an editor made in javascript with WebDynpro

    Currently we are using a textarea for the content for the text of a chapter in an application. Of course end-users would like to have a rich text editor since the result is stored as PDF file, so since we use MVC and BSPs our first thought was to use the BTF editor but it seems that this editor is not planned to be replaced with an equivalent in WebDynpro.
    So we have found a nice editor called FCKEditor (see http://www.fckeditor.net/) done in JavaScript but with java integration possibilities, it is under LGPL open source license.
    So my question is, would it be compatible with WebDynpro ?

    but they say that you can integrate it with java:
    Installing FCKeditor in a JSP environment is quite easy:
    Unzip the Java Integration Library in a directory named "FCKeditor".
    Unzip the content of the FCKeditor release of your choice inside the "FCKeditor\web" folder.
    Then you have to create in tomcat (or any servlet container) a new context named "FCKeditor" that points to the previously created "FCKeditor\web" folder.
    Point your browser to http://domainName.ext/FCKeditor/_samples/index.jsp for the list of the samples.
    Usage
    Take a look at the test files and in the javadoc API provided in the distribution. Here is a simple example.
    First put this taglib definition at the top of the JSP page:
    <%@ taglib uri="http://fckeditor.net/tags-fckeditor" prefix="FCK" %>
    Then the tag:
    <FCK:editor
    id="EditorAccessibility"        //Unique name of the editor
        width="80%"                 //Width
        height="120"                //Height
        toolbarSet="Accessibility"  //Toolbar name
    >This is another test. <BR><B>The "Second" row.</B></FCK:editor>
    A more advance example, that show how to use the inner tags to overrides any of the settings specified in the config.js file:
    <FCK:editor id="EditorDefault" basePath="/FCKeditor/"
        styleNames=";Style 1;Style 2; Style 3"
        fontNames=";Arial;Courier New;Times New Roman;Verdana" >
        This is some <B>sample text</B>.
    </FCK:editor>
    Building
    Inside the files there is the source files for the tags (/src) and the ant build file (build.xml).
    The ant build file provides the following tasks:
    all: Clean build and dist directories, then compile
    clean: Delete old build and dist directories
    compile: Compile Java sources
    dist: Create binary distribution
    javadoc: Create Javadoc API documentation
    release: Create Release Distribution
    Plus some Tomcat managing tasks (to make this tasks work you need to copy inside the "web" folder the FCKeditor package):
    install: Create a web application pointing to the build directory
    reload: Recompile and reload the web application
    remove: remove the web application
    To start building the class you first need to modify the "catalina.home" property inside the build.xml, then type "ant dist" to compile, create the javadoc API description and generate the jar library to be copied in the WEB-INF.
    Or more easily, type "ant install" after setting the right username and password for the tomcat manager application.

Maybe you are looking for