How can we transport the standard changed OTR texts w.r.t translation?

How can we transport the standard changed OTR texts with out effecting the translation concept.?
means i need to see the text in different languages which ever logged in.

using the function module SOTR_API_WB_TRANSLATE you can maintain translation in different languages for the OTR texts maintained in your WDA.
No need to transport,you can directly execute this FM by passing the below parameters:
SOURCE_LANGU                    EN
TARGET_LANGU                    FR
PGMID                           LIMU
OBJECT                          WDYV
OBJ_NAME                        %
FLAG_STRING
EDIT_MODE                       T

Similar Messages

  • How can we Customise the standard tool bar ??

    Can any body tell em how can we customise the standard tool baar in the forms. ie is there any way by which we can enable or disable few of its button.
    do reply
    thanx in advance
    amyt

    Hi,
    I have accomplished through the creation of a Menu in oracle Forms. After setting up your menu options, go to the "Visible In Horizontal Menu Toobar" property and set to YES. Then change the "Icon Filename" property to whatever your icon file is.
    Good luck!
    Bob

  • How can we transport the partner profiles and Port configurations

    Hi everybody,
    How can we transport the partner profiles and Port configurations. While creating these , system will not ask for Dev class and we cant assign any Transport request number. Then How can we transport these settings?
    Your replies are really apreciable.
    Thanks and Regards,
    Vijay.

    Hi,
    please have a look of the OSS note: 182172
    >>
    The partner profiles are stored in the following tables:
    Table EDPP1: General partner profile
    Table EDP12: Partner profile outbound, additional data NAST
    Table EDP13: Partner profile outbound
    Table EDP21: Partner profile inbound
    Table EDIPHONE: Connection to SAP telephony (optional)
    You can use R3TR TABU to manually set the tables into a Customizing request (as of Release 46, into a SYST-type request).
    <<
    Rgd
    Frédéric

  • How can I save the jpg change the compression?

    how can I save the jpg change the compression fpr smaler files?

    Sorry, this can not be changed.
    You may want to change the image dimension.
    Thanks!

  • How can I get the standard Adobe CS4 sample templates, like the photo slideshow?  Thanks

    I just got Flash CS4.  I think it is supposed to have several categories of templates.  I only have the advertising category. How can I get the standard Adobe CS4 sample templates, like the photo slideshow? I cannot find anyplace on the Adobe.com site for template downloads.
    Thanks
    Mark

    I have the same question-- I don't see any template categories apart from "Advertising"-- where are they?
    - Jesse

  • How can we use the standard LDB in custom program.

    Dear all,
    can you please tell me the way , how can we use the standard LDB in custom program.
    Thanks & Regards,
    Jyothi.

    Hi
    You can use the Function module LDB_PROCESS to use the Standard LDB in your Z custome program for further details about using the Standard LDB and accessing the LDB in to the program search SDN
    http://help.sap.com/saphelp_nw04/helpdata/en/64/237f8cd43711d1950b0000e8353423/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/97/b3edb8163111d2953c0000e8353423/frameset.htm

  • How can i replace the standard ESS iview with my own iview

    I want to replace standard ESS addr iview with my own WD developed by ABAP
    I added the iview(my WDA) into standard ESS addr page.
    (pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.pages/com.sap.pct.erp.ess.personal_information/com.sap.pct.erp.ess.cn/com.sap.pct.erp.ess.addr/com.sap.pct.erp.ess.addr)
    And make it visible.
    But I got this error in ESS PA addr :
    WebDynpro Exception: Application PER_ADDRESS_CN Does Not Exist
    Here is the error code :
    Error code&#65306;ICF-IE-http-c:100-u:AC_WANGFZ-l:1-s:CE1-i:SAPCE101_CE1_01-w:0-d:20070514-t:172301-v:RABAX_STATE-e:UNCAUGHT_EXCEPTION
    So , how can i replace the standard ESS iview with my own iview?
    Thanks

    Can you see any Javascript EPCF code in the old iView  ?  You are surely just going to have to find it  (if our hunch is correct) and analyse it and copy it into your new iView so that it functions in some way that at least does not error

  • How can I set the width of a Text element?

    Hello! I have created a custom button with this class:
    import javafx.scene.Node;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Cursor;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.paint.Color;
    import javafx.scene.paint.LinearGradient;
    import javafx.scene.paint.Stop;
    import javafx.scene.effect.DropShadow;
    import javafx.scene.text.Text;
    import javafx.scene.input.MouseEvent;
    public class Button extends CustomNode {
        public var text: String;
        public var x: Integer = 0;
        public var y: Integer = 0;
        public var width: Integer = 90;
        var height: Integer = 25;
        override public function create(): Node {
            return Group {
                content: [
                    Rectangle {
                        cursor: Cursor.HAND;
                        x: this.x;
                        y: this.y
                        width: this.width;
                        height: this.height;
                        arcWidth: 15;
                        arcHeight: 15;
                        effect: DropShadow {radius: 6};
                        fill: LinearGradient {
                            startX: 0.0, startY: 0.0, endX: 0.0, endY: 1.0
                            stops: [
                                Stop {offset: 0.0, color: Color.WHITE}
                                Stop {offset: 1.0, color: Color.LIGHTGRAY}
                        onMouseEntered: function(e: MouseEvent): Void {
                            (e.node as Rectangle).fill = LinearGradient {
                                startX: 0.0, startY: 0.0, endX: 0.0, endY: 1.0
                                stops: [
                                    Stop {offset: 0.2, color: Color.WHITE}
                                    Stop {offset: 1.0, color: Color.LIGHTGRAY}
                        onMouseExited: function(e: MouseEvent): Void {
                            (e.node as Rectangle).fill = LinearGradient {
                                startX: 0.0, startY: 0.0, endX: 0.0, endY: 1.0
                                stops: [
                                    Stop {offset: 0.0, color: Color.WHITE}
                                    Stop {offset: 1.0, color: Color.LIGHTGRAY}
                        onMousePressed: function(e: MouseEvent): Void {
                            (e.node as Rectangle).fill = LinearGradient {
                                startX: 0.0, startY: 0.0, endX: 0.0, endY: 1.0
                                stops: [
                                    Stop {offset: 0.0, color: Color.LIGHTGRAY}
                                    Stop {offset: 1.0, color: Color.WHITE}
                        onMouseReleased: function(e: MouseEvent): Void {
                            (e.node as Rectangle).fill = LinearGradient {
                                startX: 0.0, startY: 0.0, endX: 0.0, endY: 1.0
                                stops: [
                                    Stop {offset: 0.0, color: Color.WHITE}
                                    Stop {offset: 1.0, color: Color.LIGHTGRAY}
                    Text {
                        x: this.x + 5, y: this.y + 16
                        content: this.text
    }But, how can I set the Text element centered into the button?

    Stack {
                        layoutInfo: LayoutInfo {
                            width: bind width;
                            height: bind height;
                        content: [Rectangle {
                                width: bind width, height: bind height
                                //fill: bind color;
                                fill: Color.GREEN
                                arcHeight: 20; arcWidth: 20;
                            Text {
                                font: Font {
                                    size: 24
                                textAlignment: TextAlignment.CENTER;
                                wrappingWidth: width;
                                boundsType: TextBoundsType.VISUAL;
                                fill: Color.WHITE;
                                content: bind text;
                    }wrappingWidth: Sets the maximun width of the text
    boundsType: If you put the wrappingWidth var and you want to center a text you MUST set this var to VISUAL

  • How can I sync the standard Outlook calendar with the "Calendar in iCloud"? I just get 2 calendars which are not synchronized.

    I am using a PC with Windows 7 and MS Office/Outlook 2007 together with the latest iCloud control panel.
    Everything seems to be fine, but the synchronization works only for the calendar "Calendar in iCloud". Which is the one coming from my iPhone.
    Which means the iCloud function is working from the iPhone.
    When I update my standard Outlook calendar "Calendar" on the PC it is not getting transferred to the "Calendar in iCloud".
    How can I "merge" them?
    I have to use the standard Outlook Calendar because it is the one connected to the Exchange server and shared among my colleagues.

    same issue, looks like nobody answered you from last JULY....

  • Where & How can I find the Language Change option,similler to Google's Chrome.Thanks !

    Respected Sir/Madam,
    Recently ,when I was browsing a German site,all & every information was given in German & not in English.Since I do not know,how to read,German,I couldn't browse & therefore wasted my time & energy.
    I would like you,to install, Change Language option in your latest version 26,which I have Downloaded & installed,yesterday.
    I am using,Windows XP & want you ,to act upon it,under intimation ,please.
    Thanks & Regards,
    Shrinivas Sant,Nasik -India

    You can also use the Google Translate site to translate pages.
    *http://translate.google.com/translate?hl=en&sl=fr&tl=en&u=http://
    As a keyword bookmark:
    *http://translate.google.com/translate?hl=en&sl=fr&tl=en&u=%s

  • How can i see the document change for project in CN60

    Dear all,
    i want to see the project change in the report.
    i know i can see it using cn60
    but now, the system states that there is no data.
    i have ticked document change in the project profile.
    it seems useless.
    could anyone tell me how i can see the change documents?
    is there anything else i shall config?
    thanks a lot.
    Judy

    Hiu2026.
    Regardingu2026.cn60
    Tick change documents in the project profile on the right side.
    Not in the under status management. Section.
    Run transaction CJEN for project
    And check in cn60.
    Regarding checking changes in cj20n.
    Cj20nu2026.click on the WBS/Activity(which one u want to see).
    Editmenuu2026.status.....systemstatus/userstatus.
    Go to extramenuu2026..change documentsu2026.all.
    Check in Allchangesu2026.and history.
    I hope it will reach your req.
    Experts....plz correct me if im wrong.
    Regards
    Chandra

  • How can we control the standard filed using CUF?

    Hello
    We use SRM Server 5.5 (SP 07)
    We want to make the Price field as display on shopping cart screen.
    We created CUF for PR type. We have PR01 and PR02.
    If PR type is PR01, we want to make Price field as display.
    So We tried to use BBP_UI_CONTROL_BADI. But this BADI is not working.
    We found notes for this badi and applied this note to our system.
    Notes number:
    1053594
    1046796
    1040879
    1058238
    1021742
    But we still have problem. The parameters IS_HEADER and IS_ITEM are not filled.
    How can we control price field as display, when we choose the PR type with PR01?
    Thank you,
    Best Regards,
    SH.

    Hi,
      You can use the BADI BBP_DOC_CHANGE_BADI along with BBP_UI_CONTROL_BADI.Check the Transaction type calue in BBP_DOC_CHANGE_BADI  badi and acc set a flag(using SET stmt) and pass this flag to the BBP_UI_CONTROL_BADI(using GET parameter) and then change the Field property for PRICE field.
    BR,
    Disha.
    Pls reward points for useful answers.

  • How can we delete the standard Interface (IF_EX_WV_SET_CALC_TYPE_INT) provi

    Hello All,
    I had created an Interface using SE24 by taking teh access key, but to my mistake i had misintrepretd that i have to create it by taking the access key. now i am trying to create a BADI definition which is also standard ( the same way i will get the key and will create it ) but teh interface that i have created earlier is not getting deleted, whne i am trying to delete it, it is throwing an error message that " You can not perform this action in modification mode" . i want to know how to delete it and let me know how i can again create the BADI, which in turn creates the Interface, the same one which i deleted. please provide me a appropriate solution with your experiences

    Maybe it's just me, but I'm  bit confused here.
    What standard interface were you trying to create? IF_EX_WV_SET_CALC_TYPE_INT? How is that possible, since it is a standard interface which is already available in the system.
    Now you are trying to delete this again? Why, the BaDI definition you are trying to create will need this interface anyway. And again my question, why are you trying to create a standard BAdI definition, if it is already available? Are you getting this info from a note or something?

  • How can we maintain the Standard domain Domain ABLESGRE values

    Hi friends,
    In my SAP ECC 6.0 system, For the Standard Domain ABLESGRE
    I can See the below Domain values maintained
    01 Periodic meter reading
    02 Interim meter reading with billing
    05 Service territory transfer with billing
    08 Meter reading upon technical installation
    09 Interim meter reading
    10 Control reading
    If we maintain the new MR reasons
    98 EBT MROu2013Specified Meter Reading Date
    99 EBT MRO
    as Domain Values,
    when we go for F4 help in the Standard Tcode EL28
    then do those entires reflect in the selection-screen ???
    and do the system allow me to go furthur for working on the New Meter Reading Reasons entered with the Standard Tcodes EL28 and EL01 ???
    Kindly guide me, this must be solved ASAP.
    Thanks in Advance,
    Ganesh

    Hi,
    If you add the values in domain, then it will definately reflect in your selection screen. And you can process with it as per your requirement.
    REWARD IF USEFUL.

  • How can i stop the time changing on my iphone when i sync it with my laptop?

    Each time I sync my iphone the tie jumps forward an hour.
    How can i stop this as it is causing me no end of trouble with alarms and work appointments. I have doubled checked the time and date is correct on my laptop and all is spot on.
    Any help appreciated.

    I had the similar problem last night and found a solution (although it takes more than a few clicks).  Highlight all the album tracks in itunes on the pc and right click "get info". Check the artwork box in this window.  I found that the now playing art was showing up in the itunes window, but on songs that were missing artwork showed nothing in the get info box.  When I replaced the artwork by using the artwork command, or manually adding it into the "get info" window.  It was annoying but my iphone updated every album.

Maybe you are looking for

  • I'm trying to erase everything but it's been loading all day. Help pls

    Hi, I'm trying to erase everything from my iPhone so I can sell it and I selected the erase and everything (I know I sound very technical) and after clicking confirm the black screen with the white spinning circle came on. I left it for a couple of h

  • Deploying the fop.war file for PDF printing

    I suppose this should maybe be in the App server thread but im following instructions from here to enable PDF printing in APEX http://www.oracle.com/technetwork/developer-tools/apex/application-express/configure-printing-093060.html#05 The instructio

  • Problem with Black Point adjustment

    When making Black Point adjustments (with hot and cold highlights enabled) my photos suddenly turn completely blue. If I hold click the slider button, I can see the photo again as expected. I also notice this histogram is empty. I have the same probl

  • Handling session in ADF application

    We're going to develop an application using ADF BC, JDev 11.1.1.2.0 and Weblogic 10.3. My idea is to put user specific information in a bean with session scope. I have couple of stored procedures to do some DML operations for user related data like p

  • Imac OS X mavericks 10.9.3 black screen problems

    Every 15 min I use my computer it turns out black screened and I can still hear my buddies talking in skype and my music. I must then restart my computer but then it happens the same thing all the time.