Problem with text direction in table component for text with two language!

Hi,
I want to display text in table component by binding to the one property,and also the language of this text is farsi that must be in the RTL direction.
so i defined a direction in style of staticText component in the table.
when the text is only in farsi language ,it works correct but when the text has one or more words in english language ,format of the text changed and the words moved in text.
thanks

I can not understand relation between COM and HTML elements .
can you elaborate more ?
All HTML elements are accesable via DOM in browsers.
Indeed to change an element attribute in html files (in browser without server interaction) we use scripts to access DOM tree and then we change the element attribute.
for example when you write
document.forms[1].submit()
you accessing the element using DOM tree.
About Farsi problem , I think there is no solution for this problem , as you may know , when we mix RTL and LTR languages in one element text attribute , we have no control over its appearance.
If i understand your post , you want to show both rtl and ltr in one static Text , which is not doable in simple manner.
At least i can not offer you a simple way to solve this.

Similar Messages

  • How to maintain PO Header Text entry in table T166K for different PO Type

    Hi,
    Can anyone tell me if there is a config transaction ( or path ) to maintain PO Header Text entry in table T166K for different PO Types
    Thanks
    Shrikant

    Spro->Material Management->Purchasing->Purchase Order->Texts for Purchase Orders.
    There are 4 config setting to do for this.
    Read information text.
    regards,nishant
    please reward if this helps

  • How to maintain PO Header Text entry in table T166K for different PO Types

    Hi,
    Can anyone tell me if there is a config transaction ( or path ) to maintain PO Header Text entry in table T166K for different PO Types
    Thanks
    Shrikant

    Resolved.

  • Table relation for CDPOS with AUSP?

    Hi All,
    I have CDPOS table entries for ABAUSP (i.e. AUSP table). Now i need to relate this CDPOS with AUSP.
    For example, to relate CDPOS with ESTVH, i can use table relations CDPOS-OBJECTID = ESTRH-SUBID and get ESRTH-RECNROOT and ESTRH-RECNROOT = ESTVH-RECNROOT.
    CDPOS              ESTRH                  ESTVH
    OBJECTID------>SUBID                  
                              RECNROOT------->RECNROOT                                                                               
    Similarly, Please let me know the table relation for CDPOS with AUSP. Your help would be highly appreciated.
    Thanks in advance,
    Srilakshmi.
    Edited by: Srilakshmi Moola Ram on Dec 16, 2009 11:57 AM

    Hi,
    To find a relation you first get the change number from CDHDR table. The object ID is your AUSP-OBJEK and
    OBJECTCLAS =    'CLASSIFY'
    Also use TABNAME  =     'ABAUSP' in your query. hope this helps
    Regards
    Prasenjit

  • Will somebody provide me with a QBASIC 4.5 PROGRAM for Interfacing with a Anritsu make(model-MS710) Rf spectrum analyser through GPIB ( NI-488.2 ) in DOS environment? I would like to aquire from the instrument and save the data in PC.the data

    Will somebody provide me with a QBASIC 4.5 PROGRAM for Interfacing with an Anritsu make(model-MS710) RFspectrum analyser through GPIB ( NI-488.2 ) in DOS environment? I would like to aquire data from the instrument and save it in PC for printing purpose.

    Hello,
    Unfortunately I was unable to find a driver for this instrument. This leaves you with one of a couple options. First, I would like you to submit a request for this driver at:
    http://www.ni.com/devzone/idnet/other.htm
    We develop drivers in CVI and LabVIEW based on demand and popularity so the more requests we have for it, the greater the possibility that we will develop one. While this would not provide you with a QBASIC program, you may be able to create a DLL that you could call from QBASIC.
    If you would like to try developing your own instrument driver (or modify the existing one), we have documentation, model instrument drivers, and driver templates to help at :
    http://www.ni.com/devzone/idnet/development.htm
    We also have a syndica
    te of third party vendors that specialize in National Instruments' products and services. Some of the vendors specialize in driver development. I would suggest contacting one of the Alliance members at:
    http://www.ni.com/alliance
    Good Luck,
    Kim L.
    Applications Engineer
    National Instruments

  • Problem with No entry in table T591B for 0015 08 E101

    Hi all,
    This is our first year using SAP and we're approaching our first Year End and so want to make the E Wage Types available for us in IT0015, E121 is already OK and I can enter data in IT0015 for that WT no problem. I've added WT E101 to the 0015 Additional Payments in the IMG and it shows as being allowed for IT0015, this has created entries in the Permissability, etc. in the IMG and I've updated permisability for the ESG to allow for all ESG / PS, etc. - so all looks fine when I work through the steps for Additional Payments in the IMG, but when I try to save E101 in IT0015 I get a message about 'No entry in table T591B for 0015 08 E101' .
    When I look at this table it's called 'WT dependent retroactive accounting trigger' and I've not seen it before despite setting up many Wage Types and I can see E121 is in this table but E101 isn't - but I can't see how I can add or copy anything in this table - there are no options. So I'm assuming this is usually auto updated by creating an entry in another table but I have no idea how to find where and can't find any documentation or other forum messages for this table.
    Has anyone else come accross this before or know anything about this table - has anyone else had trouble when wanting to allow E Wage Types to be used for Year End adjustments?
    Thanks in advance for any advice anyone can give me
    Nyree

    Olnly wt configured to be permissibled on a few infotypes (e.g. 0014, 0015, 0267) would need to be configured in V_T591B. The purpose of this is to control whether these wt are allowed to be changed after payroll is already run for the ee.
    All you need to do is maintain this entry through view V_T591B - add entry for wt 'E101'  for infotype 0015 / country '08'. The indicator (V5591B-ABWRU) can be '' (allow change to wt after proll is run), 'X' (warning if change after proll is run), 'E' (hard-error if change after payroll is run) .
    Rgds.

  • Problem with JDev 10g ADF table component and rangeChangeListener

    Hi,
    I'm populating an ADF table component from a backing bean and would like the range of rows be changed using custom method on the backing bean.
    I have declared table on page as shown below and the table is populated correctly. However the onRangeChanged method in the backing bean never fires when
    user hits previous or next. Any ideas of what I missed ?.
    Thanks,
    Kenneth
    <af:table emptyText="No items were found"
    value="#{companySearchBean.companies}"
    var="company" rows="20"
    first="#{companySearchBean.firstCompany}"
    rendered="#{companySearchBean.queryExecuted}"
    rangeChangeListener="#{companySearchBean.onRangeChanged}">
    <af:column sortable="false" headerText="Company Name">
    <af:outputText value="#{company.partyName}"/>
    </af:column>
    <af:column sortable="false" headerText="Party Number"
    formatType="number">
    <af:outputText value="#{company.partyFileNo}"/>
    </af:column>
    </af:table>

    Hi,
    I'm populating an ADF table component from a backing bean and would like the range of rows be changed using custom method on the backing bean.
    I have declared table on page as shown below and the table is populated correctly. However the onRangeChanged method in the backing bean never fires when
    user hits previous or next. Any ideas of what I missed ?.
    Thanks,
    Kenneth
    <af:table emptyText="No items were found"
    value="#{companySearchBean.companies}"
    var="company" rows="20"
    first="#{companySearchBean.firstCompany}"
    rendered="#{companySearchBean.queryExecuted}"
    rangeChangeListener="#{companySearchBean.onRangeChanged}">
    <af:column sortable="false" headerText="Company Name">
    <af:outputText value="#{company.partyName}"/>
    </af:column>
    <af:column sortable="false" headerText="Party Number"
    formatType="number">
    <af:outputText value="#{company.partyFileNo}"/>
    </af:column>
    </af:table>

  • Dealing with Check in a table component

    In my application I have a table component that display data from the database and a submit button outside the table component,the first column in the table component is a checkbox ,How can i uncheck the checkbox in the table component when the submit button is clicked?
    Thanks in advance.

    Hi!
    Try to read this:
    http://blogs.sun.com/winston/entry/button_header_table
    I hope it will help You.
    Thanks,
    Roman.

  • Dictation is not working for texts., Dictation is not working for texts.

    My dictation feature is not working.  The line is not very "wavy" when I speak.  How can I rectify this problem?

    Hello, alicefay50. 
    Thank you for the question.  Try closing all open applications and power cycle the device.  Test the results after processing these steps.  If the issue persists, try going through the troubleshooting steps in the second article below.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    iOS: Troubleshooting Siri
    http://support.apple.com/kb/ts4079
    Cheers,
    Jason H.

  • Filling of S table fails for fields with free form text or description

    Hello Everyone,
    We are trying to rollup a new InfoCube into our BWA system and it fails with a short dump CONVT_CODEPAGE with exception being CX_SY_CONVERSION_CODEPAGE when filling up S table for a description field.
    The only difference between the new InfoCube we are trying to load and the other existing InfoCubes is that, the new InfoCube we are trying to load has a field/InfoObject which is free form description for a line item field.
    Also, when I checked the application log the system gives out the message "A Character Set conversion is not possible".
    Did anyone encounter this issue when trying to create BWA indexes for InfoCubes which have text columns in the InfoCube.
    We are currently at revision 52.
    Thanks in advance.

    Hi Dharma,
    It's an interesting and new BWA case for me, so sorry no direct answer. I'll try to replicate it in free time I hope you opened a message with SAP Support for this.
    From pure BW modeling perspective I normally model this in a way that this "description" Characteristic A is marked as "Attribute-only" and then used as a display attribute of another Characteristic B, e.g. Line Item Number. From BWA perspective it means that A is not indexed into the accelerator and joined only for display during OLAP time.
    Regards,
    -Vitaliy

  • Table Name for Text in E Recruitment

    Hi All,
    I am working on E Recruitment and I have an issue with the table names. I have created created various activity types of which I is Interview feedback. The recruiter will initiate an approval process so that the panel can provide their feed back. The panel has an option to approve or reject the candidate and they can also update a note.
    This approval and rejection of the candidate is available in Table HRP 5143. But the note entered by the panel is not available.
    Can anyone help me from where I can get the note entered.
    Thanks in advance.
    Regards,
    Vijay.

    Hello,
    I am not sure of your EREC version but if EHP4/5, you can check in class CL_HRRCF_ACTIVITY_MGMT_PL method READ_OVERALL_CNF_ACT or READ_INDIV_CNF_ACT. For example in READ_INDIV_CNF_ACT you can see
    *--   NOTE_TXT
          IF NOT ls_record-note IS INITIAL.
            CALL METHOD lo_activity->read_text
              IMPORTING
                text = es_activity-note_txt.
          ENDIF.
    which is used to retrive the note when you display the activity. It already uses the filedname as "NOTE" which is the docid. You could use the same logic to get the notes by using these methods through your report.
    Regards,

  • Sapinst stops with error while installing ess component for Java AS

    Dear experts,
    I really hope you can help me with this one,
    We are installing a ABAP/Java AS development system and sapinst has gone through 75% of all execution tasks nicely,
    but then stopped with error while deploying components for the Java AS:
    ERROR 2009-03-30 13:01:27
    CJS-30156  SDM deployment failed for at least one of the components to deploy.<br> SOLUTION: Check 'C:\Program Files/sapinst_instdir/ERP/SYSTEM/ORA/DISTRIBUTED/AS/CI/callSdmViaSapinst.log' for more information.
    ERROR 2009-03-30 13:01:28
    FCO-00011  The step enableUsageTypes with step key |NW_Doublestack_CI|ind|ind|ind|ind|0|0|SAP_Software_Features_Enablement|ind|ind|ind|ind|15|0|enableUsageTypes was executed with status ERROR .
    Any help would be really appreciated as I am stuck with this and dont seem to be able to find any information on this one.
    Thanks a lot for your help in advance.
    Here is the crucial part of callSdmViaSapinst.log:
    Mar 30, 2009 12:55:18... Info: Starting: Initial deployment: Selected development component 'ess/bp_ess'/'sap.com'/'MAIN_ERP05VAL_C'/'788220'/'0' will be deployed.
    Mar 30, 2009 12:55:18... Info: SDA to be deployed: D:\usr\sap\DE1\DVEBMGS00\SDM\root\origin\sap.com\ess\bp_ess\MAIN_ERP05VAL_C\0\788220\sap.com_ess~bp_ess.sda
    Mar 30, 2009 12:55:18... Info: Software type of SDA: J2EE
    *Mar 30, 2009 12:55:18... Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) ******
    Mar 30, 2009 1:00:21 PM  Info: Begin of log messages of the target system:
    *09/03/30 12:55:19 -  ************************************************************
    09/03/30 12:58:07 -  Start updating EAR file...
    09/03/30 12:58:07 -  start-up mode is lazy
    09/03/30 12:58:08 -  EAR file updated successfully for 578ms.
    09/03/30 12:58:08 -  Start deploying ...
    09/03/30 12:58:42 -  EAR file uploaded to server for 30641ms.
    09/03/30 13:00:20 -  ERROR: Not deployed. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Cannot deploy application sap.com/ess~bp_ess..
                         Reason: <--Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='Exception during deploy: Failed to deploy archive D:\usr\sap\DE1\DVEBMGS00\j2ee\cluster\server0\.\temp\deploy\work\deploying\reader1238414327258\sap.comessbp_ess.epa
                   The following objects could not be locked: [pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess**.iviews/com.sap.pct.erp.ess.personal_information/com.sap.pct.erp.ess.mx/com.sap.pct.erp.ess.addr/com.sap.pct.erp.ess.addr|pcd_service], [pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.iviews/com.sap.pct.erp.ess.personal_information/com.sap.pct.erp.ess.de/com.sap.pct.erp.ess.addr|pcd_service], [pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.ess.bp_folder/com.sap.pct.erp.ess.iviews/com.sap.pct.erp.ess.personal_information/com.sap.pct.erp.ess.id/com.sap.pct.erp.ess.addr/com.sap.pct.erp.ess.addr|pcd_service], [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.jp/com.sap.pct.erp.ess.addr/com.sap.pct.erp.ess.addr|pcd_service], [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.de/com.sap.pct.erp.es

    Thanks Désirée for your answer and apologies for the late update on this one.
    This issue is resolved now, the reason for the error was a lack of memory which probably triggered a timeout in sapinst. After upgrading the memory to 7GB and re-starting the ABAP+Java AS and resuming sapinst everything went through fine. However, this was hard to spot because the logs wouldn't tell you about the lack of memory but about everything else!
    regards,
    Manfred

  • Unable to highlight text in ibook table (on Ipad ) created with ibook author

    Text I enter onto table   is not highlitable when viewed on iPad.
    Suggestions?

    The way i enter text onto table:
    select table cell, double click, enter text, press tab.
    It looks its a standard procedure
    export as ibook
    many thanks

  • I have a problem with slow to timed out upload for emails with attachments.

    Hi,
    I hope I have landed in the right place?
    The problem is relvatively new not linked to any specific upgrade event that I can recall.
    I have an iMac in small office net, hard wired to a fritzbox.
    1. The slow upload is independent of email software (Thunderbird and OS Mail) - slow for both (account data has been checked and re-checked and is OK).
    2. Uploads from Ipad via WiFi appear normal and acceptable.
    3. Uploads from my mac mini in the office are OK, for all accounts.
    4. Sophos anti-virus reveals nothing sinister.
    Does anyone have any ideas of what might be casuing this tardy and very frustrating functionality?
    I must apologize if I have landed in the wrong place and would some kind soul might guide me to where I should be.
    Many thanks
    Mevado

    What app are you using? From the message it sounds like a specific site problem.. For general wifi problem:
    Try:                  
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.

  • Help with sequence settings in final cut for project with 2 different frame rates.

    I really need help with this one! I finished editing a wedding video and realized after exporting that it was filmed in two different frame rates. This has happened before but I converted the footage to match and fixed the problem. In this case, the footage is part 30fps and part 60fps. The majority of it was filmed in 30fps. I cannot convert the 60 to 30 without the slow motion effect which I do not need so I have to find a way to burn this to a DVD without it looking messed up! The video was shot with two Canon 7ds if that helps anything. The first sequence I set at 29.97 and exported as a quicktime movie and all the footage filmed in 60 looked perfect and the footage in 30 looked jittery. Then I tried the sequence at 59.97 and it switched. The footage filmed at 30 looked good and the 60 was cropped in. I am so confused! Any advice or suggestions would be greatly appreciated!!

    Thanks for your help Michael! The frame rates are 29.97 1920 x 1080 and 59.94 1280 x 720. I did a control click on the clips in final cut and viewed the item properties/format to find this info. The Canon 7d is a DSLR but we use it for video. As for my workflow, the first thing I do is import the footage onto my computer and then drag the clips into mpeg streamclip. I choose apple prores 422 and uncheck the interlaced box. Once this is done I import the .mov files into final cut. The sequence automatically sets itself to whatever clip I drag in first so it originally set as 29.97. When I finished editing wedding video, I export it to a quicktime movie and choose whatever settings match the sequence, in this case apple prores 422 1920 x 1080 30p. Once that is done I use iDVD to burn the discs.
    I knew something was wrong when I watched the quicktime movie and all the 30fps footage was jittery and most of the cross dissolves looked strange. That's when I figured out the footage was at two different frame rates. What I don't understand is why whatever the sequence is set at in final cut, the clips of the opposite frame rate look right but the clips set at the matching frame rate don't???

Maybe you are looking for