OADP View Translations

Hi All,
I want to know how OADP column headers get translated on MSS screen.
The field names appear translated in backend but doesnt appear in PCR screen. Is there any special configuration needed to support language translation for OADP views
Thanks,
Archana

Hi Archana,
Are you login with language set in your IE? And are JCo maintained in as blank for the language translation.
Thanks
Arun

Similar Messages

  • Unable to view translation options in v_512w_t table

    Hi,
    When I try to translate text to other languages say French and Norwegian I am not able to view them in the drop down.
    Please let me know any setting to view all other languages available for translation in v_512w_t table

    You have to select Language option from SAP Logon.
    1st login: if keep blank Language on Sap Logon, system normally get default from your account in T-code SU3 (almost it's English )
    2nd login: select your French => you can maintain wt text in French. ... etc.
    Good luck.
    In SE11, you can see table T512T, there is field Language Key there => of course you can maintain multi language for your wt.

  • Culled 3D object not transparent for all views/translations

    This code displays a tube that is stored in a VRML file.  I modified the 'open WRL file' to import the object as a single color (green) with a alpha (transparency) value of 0.5.  The vi also draws an opaque sphere.  The sphere can be seen through the tube, but for only certain locations/viewpoints.
    This discussion (http://forums.ni.com/ni/board/message?board.id=170&thread.id=280607&view=by_date_ascending&page=2) suggests duplicating the object and culling the front/back faces, which I've also done.
    Please look at the code.  '3D Control Main' is the main vi.  You should notice as the sphere moves through the tube that transparency dissapears.  All I need is for the transparency to remain constant.  Any suggestions are welcome.
    -Joe
    Attachments:
    3D tube.zip ‏375 KB

    Hi peabody,
    I've tried running your code, but I'm missing C:\Documents and Settings\Smile\My Documents\My Pictures\crosshatch.jpg file. Also, is it possible for you to simpify your code to illustrate the issue better?
    Regards,
    Stanley Hu
    National Instruments
    Applications Engineering
    http://www.ni.com/support

  • English to Japanese Language Translation

    Hi experts,
    Does anyone know if it is possible in 2007 A to translate English to other 2007 B languages such as Japanese, Chinese or Korean?  Example: printer in US = プリンター in Japanese... when I try to enter the Japanese text in B1, all I get is boxes appearing.
    Also - if I go to Administration -> Setup -> General -> Languages I do not have these options show up in "related system languages".
    If not possible are there any other solutions?
    Thanks for your help,
    Aaron

    Hi Aaron ,
    So far I have information, japanese language will be added  in 2008 version ,So you donot have that .
    in 2007A .
    If you are talking about setup language support :
    Administration -->System Initialisation >Company detail->Basic Initialisation --->Click on multilanguage support .
    Open the window from which you would like to translate field values. For example, Item Master Data.
    Choose from the menu bar  View  Translatable Fields  to display the icon next to fields that can be translated.
    Place the cursor in the required field and choose from the menu bar  Goto  Translate .
    The Translations window appears.
    Hope this anwers your question .
    Bishal
    Edited by: BIshal Adhikari on Nov 17, 2008 5:14 PM

  • Japanese language translation

    Living in Okinawa, my itunes opens japanese version, cannot seem to turn it off in the preferences section under EDIT??

    Hi Aaron ,
    So far I have information, japanese language will be added  in 2008 version ,So you donot have that .
    in 2007A .
    If you are talking about setup language support :
    Administration -->System Initialisation >Company detail->Basic Initialisation --->Click on multilanguage support .
    Open the window from which you would like to translate field values. For example, Item Master Data.
    Choose from the menu bar  View  Translatable Fields  to display the icon next to fields that can be translated.
    Place the cursor in the required field and choose from the menu bar  Goto  Translate .
    The Translations window appears.
    Hope this anwers your question .
    Bishal
    Edited by: BIshal Adhikari on Nov 17, 2008 5:14 PM

  • Hierarchy translate

    I have hierarchy in table looking like:
    ID    PARENT_ID
    1     null
    2     1
    3     1
    4     2
    5     2
    6     3I need to turn it into level hierarchy (branches in separate rows):
    LVL1     LVL2    LVL3
    1        2       4
    1        2       5
    1        3       6I'm looking for way to create view translating one hierarchy into another (according to fact that it wouldn't be more than 5 levels in hierarchy - 5 cols are needed). Did anybody has any idea?

    I know this is not the best solution, but was just playing around and got this.
    SQL> with t as
      2  (
      3  select 'A' id,     null parent from dual
      4  union all
      5  select 'B',     'A' from dual
      6  union all
      7  select 'C',     'A' from dual
      8  union all
      9  select 'D',     'B' from dual
    10  union all
    11  select 'E',     'B' from dual
    12  union all
    13  select 'F',     'C' from dual
    14  ), t_hier as
    15  (
    16  select id, level lvl, parent, rownum rn
    17  from t
    18  connect by parent = prior id
    19  start with id = 'A'
    20  ), t_hier2 as
    21  (
    22  select decode(lvl, 1, id, NULL) lvl1,
    23         decode(lvl, 2, id, NULL) lvl2,
    24         decode(lvl, 3, id, NULL) lvl3, rn, lvl
    25  from t_hier
    26  ), t_hier3 as
    27  (
    28  select decode(sign(lvl - lead(lvl) over (order by rn)), -1, NULL, last_value(lvl1 ignore nulls) over (order by rn rows unbounded preceding)) val1
    29       ,decode(sign(lvl - lead(lvl) over (order by rn)), -1, NULL, last_value(lvl2 ignore nulls) over (order by rn rows unbounded preceding)) val2
    30       ,decode(sign(lvl - lead(lvl) over (order by rn)), -1, NULL, last_value(lvl3 ignore nulls) over (order by rn rows unbounded preceding)) val3
    31  from t_hier2
    32  )
    33  select *
    34  from t_hier3
    35  where val1 is not null
    36  and val2 is not null
    37  and val3 is not null
    38  /
    V V V
    A B D
    A B E
    A C F
    SQL> with t as
      2  (
      3  select 'A' id,     null parent from dual
      4  union all
      5  select 'B',     'A' from dual
      6  union all
      7  select 'C',     'A' from dual
      8  union all
      9  select 'D',     'B' from dual
    10  union all
    11  select 'E',     'B' from dual
    12  union all
    13  select 'F',     'C' from dual
    14  union all
    15  select 'G',     'F' from dual
    16  union all
    17  select 'H',     'G' from dual
    18  ), t_hier as
    19  (
    20  select id, level lvl, parent, rownum rn
    21  from t
    22  connect by parent = prior id
    23  start with id = 'A'
    24  ), t_hier2 as
    25  (
    26  select decode(lvl, 1, id, NULL) lvl1,
    27         decode(lvl, 2, id, NULL) lvl2,
    28         decode(lvl, 3, id, NULL) lvl3,
    29         decode(lvl, 4, id, NULL) lvl4,
    30         decode(lvl, 5, id, NULL) lvl5, rn, lvl
    31  from t_hier
    32  ), t_hier3 as
    33  (
    34  select decode(sign(lvl - lead(lvl) over (order by rn)), -1, NULL, last_value(lvl1 ignore nulls) over (order by rn rows unbounded preceding)) val1
    35       ,decode(sign(lvl - lead(lvl) over (order by rn)), -1, NULL, last_value(lvl2 ignore nulls) over (order by rn rows unbounded preceding)) val2
    36       ,decode(sign(lvl - lead(lvl) over (order by rn)), -1, NULL, last_value(lvl3 ignore nulls) over (order by rn rows unbounded preceding)) val3
    37       ,decode(sign(lvl - lead(lvl) over (order by rn)), -1, NULL, last_value(lvl4 ignore nulls) over (order by rn rows unbounded preceding)) val4
    38       ,decode(sign(lvl - lead(lvl) over (order by rn)), -1, NULL, last_value(lvl5 ignore nulls) over (order by rn rows unbounded preceding)) val5
    39  from t_hier2
    40  )
    41  select *
    42  from t_hier3
    43  where val1 is not null
    44  and val2 is not null
    45  and val3 is not null
    46  and val4 is not null
    47  and val5 is not null
    48  /
    V V V V V
    A C F G H
    SQL>Cheers
    Sarma.

  • Access migration - handling really silly field and table names

    Hi All,
    I'm working through migrating an ** interesting ** Access database that has been hacked together over the years by a number of ... talented amateurs.
    I've noticed a difference in the way the migration wizard translates some of the really silly names it's got, between creating the table script and creating view scripts.
    It seems to manage the silliness better when creating the tables, but it doesn't quite catch up when creating the views.
    For example the main table in this application is called (believe it or not):
    "T - This Appn Detail - MAIN TABLE"
    Note that it's 33 characters long as well as including spaces and hyphens.
    The table creation script creates a table called T___This Appn_Detail___MAIN_TA (which works)
    But the translation of a query off this table to a view is looking for a table named T___This Appn_Detail___MAIN_TABL
    Which is (a) different and (b) too long
    It does a similar thing with our exciting field names. We have a field in the Access database called "Net Rate (twin share)"
    The table script calls this "Net Rate _twin share_" but the view script sticks with "Net Rate (twin share)" - which causes "FROM keyword not found where expected"
    Does anyone know if there's a way to nudge the view creation process in the right direction?
    I guess the most sensible thing is to go into Access and correct the field names, but I don't want to spend a great deal of time updating the Access database so all the references to the fields get fixed, when I'm about to ditch it anyway.
    Thanks,
    Greg H

    Hi Greg,
    The Access SQL translator should be referencing the SQL Developer Migration Workbench repository to find the correct migrated name of your tables, columns. Thereby producing PL/SQL which references the correct table name. :(
    I have logged this as a bug to be fixed in our next release.
    6647344: ACCESS VIEW TRANSLATION REFERENCES OLD OR INCORRECT TABLE NAMES
    I can try and replicate your issues as described, but would it be possible for you to send in your access databases so we can test it here?
    You may delete the data if you wish, its the schema of the database I'm interested in.
    Unfortunately this is not an offer to complete the migration :)
    But it would better help us understand the exact issues you are experiencing and help us better our product.
    Thanks
    Dermot.
    Message was edited by:
    dooneill

  • MSS reports displaying Employee Information iView

    Hi all,
    I'm currently working on MSS project where I'm trying to show reports on MSS portal.
    I have done the neccessary configurations regarding tables:
    T77MWBS (Manager's Desktop Senarios)
    T77MWBFCD (Function Code Definitions)
    T77MWBFCO (Object-dependent Function Codes)
    T77MWBFCH (Function Code Hierarchies)
    and also converted MDT data to MSS Reporting Launch Pad using RPT0 senario.
    The reports are showing in the MSS portal but when i click on for instance Birthdays, a new window pops up showing Launchpad for Reports page but I'm not able to define selection criteria i.e. select an employee from a list but instead I'm redirected to General Information page where General Data and Personal Data iViews are displayed. I clicked the Options button on the popup window to view Details and I'm able to see:
    Portal Components: com.sap.portal.wdintegrator.WebDynproIntegratorPage
    Object ID:  pcd:portal_content/com.customer.customer_content/com.customer.customer/com.customer.roles/com.customer.mss/com.sap.pct.erp.mss.general_information
    A theori i have is that Launchpad for Reports is redirecting me to General Information page and maybe the issue lies here. If that's the case, where do i change the pcd path to the correct Launch pad?
    I'm missing some configuration but can't seem to figure out what.
    Now, I'm hoping for you experts to guide me and show me the way to a successful and working portal solution.
    Points will be rewarded to helpful answers.
    Thanks in advance.
    Regards,
    Messay
    Can somebody please help me with this issue, it's urgent!!
    Edited by: Messay on Dec 1, 2011 11:09 AM

    Hello,
    Yes, you can build a WDA application to pick up the events from the WDJ application if and only if the events are portal events - quite a few of the WDJ apps actually share information through using a common component - not events.
    I would also check however, that there is not an easier way of picking up which employee has been selected - you may be able to within the RFCs that are being called add an enhancement to export the selected person to a shared memory object, which could be read by the WDA component.
    I've used this in the past to allow a WDA report to be launched from a WDJ application - taking the details of the selected item (in particular this was for WDA reporting on MSS ECM).
    Not sure what you mean with respect to the eventing of the FPM.
    You cannot include a WDA component as a Java FPM VC - so there is no way of having the WDA within your Java FPM application - events you raise to the FPM are only handled within the application.
    An alternate approach is to use the OADP views for selection and configure the columns to have links that open new windows, use the proxy class of the HPF link to embed in each link the personnel number of the employee selected - pass this as a URL parameter to the new page, this can then be picked up by both WDA applications.
    Hope this helps,
    Cheers,
    Chris

  • Teamviewer with Navigation rule in WD Abap application

    Hi,
    We are facing a problem with the team viewer on MSS in one of the WD Abap based application.
    we are using our own custom built function modules in the root/navigation/target object rules. But there is no output in the teamviewer when this option is selected.
    But the same works fine in a Java based application on MSS.
    Any separate coding required for abap based teamviewers ?
    Pls. help.
    Thanks
    SK

    Do you know if ypur WD abap application is using team viewer Views ? Are you pass custom OADP view as parameter to WD A ? Which are of MSS you are referring to and what is the WD A application ?
    regards
    Sridhar Kandisetty

  • Swing text wrapping

    Hello,
    I have an app thats makes use of an extended WrappedPlainView to add syntax highlighting. Everything works great except when I use bold fonts in random spots. When WrappedPlainView is asked to draw the text
    swing does not allow enough room for the line with bold words.With bold words the line needs to be a bit
    wider at times to not cut off any letters. Any ideas on how I can fix this ? On a side note , works fine
    with fixed width fonts..
    Thanks,
    jd

    I've actually done this before. Instead of subclassing WrappedPlainView though, I subclassed BoxView (WrappedPlainView's parent class). This had to be done because WrappedPlainView has too much data hidden via package private/private methods, to the point where you cannot modify it for your multi-font needs. Besides, WrappedPlainView states in its documentation that it only supports rendering a single font. Hacking it to support multiple fonts (plain, bold, italic) may have unforseen consequences. Subclass BoxView instead.
    It's a lot of work to do what you want to do, probably more than you realize. You have to write code to calculate where the wrapped lines should be broken apart (must be fast too), override modelToView/viewToModel to take into account different fonts, etc. Use WrappedPlainView as a guide, but change the parts that do things such as compute break locations, model-to-view translations, etc. to handle your font size data.
    But in all seriousness, you probably should use JEditorPane for this. Here's my attempt to talk you into using one :)
    mohadib_ wrote:
    Also JEditorPaneWhat are you using to render a multi-font view, if not JEditorPane? JTextArea? You do realize that JTextArea and its associated views are designed to render only 1 font? While this can be done, it's not simple, as several parts of JTextArea and its associated views make assumptions about using a single font for performance reasons. You'll have to seriously study the Swing text package code, and make your own View subclasses for JTextArea that handle rendering multiple fonts, computing text widths, etc.
    is horribly slowOf course it's slower than rendering a single font with JTextArea. Again, that's because JTextArea can take advantage of the fact that it's using a single font, which allows it to greatly speed up modelToView/viewToModel calculations, rendering, etc. JEditorPane is not slow because it's poorly designed or inefficient; rather, it's slow because of the extra work it's doing. It's mature enough to the point where it's probably difficult to make it faster without a redesign. Do you honestly think you can create a Swing text component that has all of the features of JEditorPane, but performs better?
    and eats memeory.It consumes more memory than, say, JTextArea, because it's caching the fonts/colors used to render its document. If you want to support multiple fonts and syntax highlighting, you'll have to do the same thing. Can you cache this information in a more efficient way than JEditorPane does? Have you tried using JEditorPane and run into memory problems?
    Again, this can be done, but really shouldn't. The perceived benefits don't really pan out, especially when weighed against the development and maintenance costs. More code => more bugs. Why not use the support already provided to you in the JDK?

  • Documentation on Team Calendar

    Hello all,
    I'm using EP 5 SP 5 with KM 5.0. I'm trying to get the Team Calendar iView (based on master com.sapportals.pct.troom.teamcalendar.default) working with a collaboration room. Does anyone know where I can find documentation on this iview? I've looked in the KM administration guide, but it's not listed in it's list of iviews.
    I'm trying to figure out if you can change the calendar so that the first day of the week is Sunday, not Monday. Also, I'd like to see some doc on what the rest of the java iview settings are. Can anyone point me in the right direction?
    Thanks!
    Stephen Spalding
    Web Developer
    Graybar

    Hi,
    I beg to differ here.
    Team calender uses OADP views. All standard OADP views show only active employees.
    However, you can use custom OADP configuration. You can specify a custom function module to return objects (employees) in this OADP configuration. Since you are using your own function module, you can display any employee reporting to the manager.
    Regards
    Ashutosh

  • MSS reports configuration

    Hi all,
    I am following the MSS configuration document to set up the reports. One of the step is described as below in the document:
    You must also configure certain parameters in the Portal Content Directory (PCD). The parameters relevant for reporting include:
    ●        scenario
    Define the scenario that creates a list of available reports. In the standard delivery, the standard scenario is RPT0. The value of the scenario parameter is the MDT scenario. If you want to use the standard scenario, set the parameter scenario=RPT0.
    ●        viewgroup
    Parameter viewgroup defines the Object and Data Provider (OADP) view group. The view group contains at least one view ID. View IDs determine the list of Organizational Management objects such as employees and organizational units.
    My problem is I can not find the parameter either in individual iView or anywhere in portal, can anyone tell me where I can find the iView parameters listed above and change the value to my own customized scenario?

    Currently we are bulding a MSS scneario which contains the iView sap.com/mssrpt/Reporting for HCM (MDT) reporting and multiple HCM ERP 6.0 backends where the reports should be executed. We have provided the iView in the application parameter with the new JCO connections parameters (like sap-wd-arfc-useSys=SAP_R3_HumanResources_MetaData:001 etc.) This part works fine. We have the right MDT scenario on the assigned ERP backend and the org. structure and the people on the assigned ERP backend system. But the selected report will be always executed on the wrong system - means on the system which is behind the system standard system alias SAP_R3_Human Resources. Is there some customizing table where the ALIAS could be stored - for the LPA-Reporting iView via the Launchpad there is the table FPB_LP6_R_MDT_C but this table is obviously not processed with the iView mssrpt/Reporting.
    Kind Regards,
    Harald

  • HCM Self Services FPM Webdynpro Portal PCD - Selfservice Properties

    Hi,
    we have different FPM/Self-service scenarios installed.
    With FPM it's possible to define some FPM application using existing visual and non visual components from SC ESS or MSS.
    The problem:
    we tried to define a new FPM-application in PCD having FPM-Views (visual components) from standard (e.g. teamviewer/TMV) and a new self developped one.
    FPM-App-Customer
    --> FPM-View-MSS/TMV (having FPM-View-Properties)
    --> FPM-View-Customer
    FPM-App-Customer get's instantiated in WD-IView in Portal, and normally mentioned FPM-View-Properties can be definied in an IView-Property-Category named Self-Services.
    Within our IView there is no Property-Category Self-Service, even if the Properties from MSS/TMV are visible in FPM-View.
    What are the preconditions to enable the input of Self-Service Properties in IView?
    Thanx, A.Lorinser

    Unfortunatedly no.
    We never got an answer.
    Instead of using tmv vc, we decided to develop new vc, which embedds oadp-view directly.
    Yours A.Lorinser

  • N79 calendar on pc suite (nokia comunication centr...

    I can't use N79 calendar from pc suite. When I open Nokia Communication Centre i receive this error "can't read device entries in calendar view" (translated from italian "Impossibile leggere le voci sul dispositivo tramite la vista Calendario")
    Nokia N79
    Firmware 11.049 (same problem with previous version)
    PC Suite 7.1.18.0 on Windows SP3
    Connected via Bluetooth or cable

    Hi,
    Similar to your issue was already discussed in the following post
    /discussions/board/message?board.id=pcsuite&thread​.id=31211
    Its seems there is some issue with Nokia N 85 & nokia N 79 calender entries with Nokia  Communication Centre

  • LOV in different languages

    Hi,
    I need to list the values for the segments are available in two languages (Polish and English). So after changing the English language version of segments should show up in English. Is this possible? and how to do that?.
    Thanks for any tips
    Lena

    Hi Lena,
    Whenever an entity is translatable (i.e. values in value sets assigned to DFFs), you will be able to translate it to the languages you have installed in your system by going to the record you want to translate and clicking the menu option View > Translations... (there is also an icon in the toolbar for that function).
    Hope it helps.

Maybe you are looking for

  • Variance Report between G/L Actual Balance v/s G/L Budgeted amount.

    Dear Sir, I have G/L Account wise company budget. I want to compare the same with G/L actual balance and arrive at a variance report. While executing the financial report at F.01 if I select Plan version as 0 the report is displaying the actual figur

  • E71 cable connectivity

    when i connect my phone to pc through data cable .In phone the options pops out.but in comp it does not show anything......it doesnot work with niether of the options...neither mass storage nor pc suite.nor modem...but if i connect my e63 y cable wor

  • Transferring music from an ipod classic to another ipod using itunes

    help! im not technical minded so please be gentle! I have an ipod classic which I need to transfer all the music content to another ipod which I bought second hand.  I cant seem to establish how to do this - im trying to drag them to a playlist in my

  • How to manage large Remote Sensing image in oracle

    I want to manage many Remote Sensing images in Oracle database. Which model is more reasonable? Please all my friends give me your suggestions.

  • Dropped Frame Errors When Time Remapping DVCPRO HD 720p60 Clips

    Wondering if this is common due to FW800 throughput limitations or abnormal behavior. I'm editing several DVCPROHD 720p60 projects and cutting them in FCStudio is like butter on a Dual 2 G5 connected to a FW800 G-Raid. I needed to time remap a clip a