Help for development Using Urdu

Hi,
I want to build oracle/developer application using Urdu language. I want to store the data in such a manner that i may also see it in reports in urdu.
can any one help me?
Regards
Kashif

Arabic is supported in oracle databases. but remeber that as many as you select language fo your database the size of database will be multiple to the number of language.

Similar Messages

  • Looking help for developing labview code [Urgent]

    Hi,
    I need help in developing labview code. I am new to labview and will appreciate if someone can help me in this matter. I need to control the intensity of AC load (halogen lamp with 2kW,230V,50Hz) using Labview and Arduino. But my project using interrupt in Arduino, so it is not possible to use Labview Interface For Arduino(LIFA).  I searched and it might be possible to use VISA serial in this matter. Attached is the circuit and the code of Arduino. Someone who is expert in this matter can help me?
    The concept of my project is almost same with https://www.youtube.com/watch?v=oeVJ5bs6E8M&feature=youtu.be
    Solved!
    Go to Solution.
    Attachments:
    Zero Cross Circuit.docx ‏203 KB
    Triggering Circuit.docx ‏48 KB
    Coding for Arduino.txt ‏7 KB

    Hi,
    You will find all information you need and LabVIEW VI examples on the LabVIEW Interface for Arduino
    LabVIEW Interface for Arduino
    Regards,
    Valentin
    Certified TestStand Architect
    Certified LabVIEW Developer
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Travaux Pratiques d'initiation à LabVIEW et à la mesure
    Du 2 au 23 octobre, partout en France

  • Good start to a .gitignore file for development using VS2010 and GitHub commits

    I apologize if this has already been answered; I searched and did not find any pointers to the information that I am looking for, but my google-fu is not always the best.
    After recently getting back into C# development and restarting using Virtual Studio, I've realized that, using the standard GitHub GUI client, I'm committing a huge amount of binary files.  Obviously, being as I'm just committing the top-level project
    directory and everything including build trees underneath it.
    Does anybody know of a good source to find a .gitignore file that will exclude most, if not conclusively all, of these files?  I only want the files essential to develop the project on the repository; I have a free account, I can't handle the amount
    of space being used.  Basically whatever is the bare minimum source and directory hierarchy required to rebuild the project in a new instance of Virtual Studio.
    Thanks for your time and consideration on this matter.  Any pointers to relevant links or direct help appreciated.
    -Damon Getsman

    Hi Damon,
    I am glad that you have solved the problem and thanks for your share us the solution here, so it would be helpful for other members who get the same issue.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Help for development.........

    Hi developers......
    Which tool is best for develop beans and jsp.
    Thank u
    sure....:)

    How about your brain? It's probably the best tool for the job.
    Oh you mean an editor? Well, if you want fast and no bullsh1t editing I'd say go with UltraEdit or JEdit, they are both very capable text editors. There are loads of other texteditors available, whole flamewars have been waged over which one is best.
    If you want a little more help and a little less typing, go with an IDE such as NetBeans or Eclipse. And don't even think about asking which one is best: the answer is neither. You'll just have to try them both.

  • Oracle OSB - Tutorial for development using Eclipse Plugin

    Hi,
    1. I need a tutorial to develop a simple application using file adapter. For example it was very easier in Oracle ESB 10.3 version where I can drag and drop adapters and configure. What should I do if I have to create similar adapters in OSB. Can you provide documentation. For Oracle ESB(old version) there was ESB Quick Start guide and it was very useful. Do we have some thing similar for OSB?
    2. Most of the tutorials that are in Oracle website points to using JDeveloper. When I download the JDeveloper I no longer get those option. When I browsed I found that we should use Eclipse Plugin for OSB development. Is it true.
    Thanks for your help.
    Thanks,
    Uma

    Hi Uma,
    You may find OSB samples and tutorials at below links -
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/examples/samples.html
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/tutorial/tutGettingStarted.html
    http://www.oracle.com/technology/sample_code/products/osb/samples/osb_examples_tutorials_0.pdf
    http://www.oracle.com/technology/products/soa/service-bus/collateral/osbsamples.html
    http://www.oracle.com/technetwork/articles/jumpstart-for-osb-development-page--084104.html
    Oracle service bus installer comes with a eclipse plugin which can be used to develope OSB applications using Eclipse. Refer installation guide to know more.
    You should post OSB related questions in Oracle SOA Suite forum to get better and faster response -
    SOA Suite
    Regards,
    Anuj

  • Need Help For Developing Java Network RPG

    Greetings,
    Did anyone develop any similar game?I'm developing one for my final year project and i need some guidelines on that.
    Thanks for your help in advanced.
    Cheers,
    yc

    Since you are making a 2D game I suppose that speed is not really important. Don't make it too hard on yourself and use objectstreams.
    first thing you need is a class which holds all the variables you want to send (like position, health, whatever) and let it implement the "Serializable" interface.
    next stop: the client side connection
    socket     = new Socket(ipaddress, port);     
    obi = new ObjectInputStream(socket.getInputStream());
    obu = new ObjectOutputStream(socket.getOutputStream());and the server side connection:
    ServerSocket s = new ServerSocket(port);
    while(true) { // keep accepting new connections
    socket = s.accept();
    obu = new ObjectOutputStream(socket.getOutputStream());
    obi = new ObjectInputStream(socket.getInputStream());
    }make sure you turn around output and input. The server won't continue unless his output has input on the clientside.
    with the objectoutputsstream you can send the objects:
    obu.writeObject(netData);
    obu.flush();
      // make sure you flushreceiving the object:
    netData = (YourNetData) oi.readObject();so what you need is a client side function that sends objects, a client side thread that handles received objects.
    The easiest way to make a server is making an array of client threads and put the socket and the objectstreams in the thread. The thread can read an incoming object and send it to all clients in the array. This way you never have to change your server, you only have to change the object you send.

  • Best practice for development using REST API - OData

    Hi All, I am new to REST. I am a developer who works mostly in server-side code using Visual Studio. Now that Microsoft is advocating to write code using REST API instead of server-side code or client side object model, I am trying to use REST API.
    I googled and most of the example shows to write a code and put it on Content Editor/Script Editor. How to organize code and deploy to the staging/production in this scenario? Is there any Best Practice or example around this?
    Regards,
    Khushi

    If you are writing code in aspx or cs it does not mean that you need to deploy it in the SharePoint server, it could be any other application running from your remote server. What I mean it you can use C# & Rest API to connect to SharePoint server.
    REST API in SharePoint 2013 provides the developers with a simple standardized method of retrieving information from SharePoint and it can be used from any technology that is capable of sending standard HTTP requests.
    Refer to the following blog that provide your more details about comparison of the major features of these programming choices/
    http://msdn.microsoft.com/en-us/library/jj164060.aspx#RESTODataA
    http://dlr2008.wordpress.com/2013/10/31/sharepoint-2013-rest-api-the-c-connection-part-1-using-system-net-http-httpclient/
    Hope this helps
    --Cheers

  • Forms Help for Multiple Use Forms

    I need some help on a forms question. I have created several forms that I wanted to use in Adobe Pro for email based review. I have been using the base forms, adding the information (these are budget forms)then saving the forms with a different name. The problem I have just run into is that I have several of the forms under review. When I open the "template" form, it asks if I want to merge the comments. Can anyone help in directing me on how to save these forms so I can use them?

    I believe the OP is talking about the "Merge Comments?" pop-up that i'm getting as well.
    I can't figure out how to stop it from prompting people to do this... it's causing quite a lot of confusion!!
    I attached a screen shot of it so we can get rid of any ambiguity =P
    Thanks,
    Alice

  • I have looked through the video tutorials for CS6 and cant find any help for PHP using SQL.

    Where is a good place that I can go to learn more about using dreamweaver and different languages than html.  Is there a service that adobe offers that I could buy that would take me from rookie all the way to professional with a good easy to use structure such as adobe tv but more advanced and thorough?  I am trying to build a website with a log in page and registration.  I have the HTML part down well enough but need help writing the php scripts and using SQL to store the user info

    I'm moving this to the main Dreamweaver support forum.
    In answer to your question, you need to be aware that the PHP server behaviors in Dreamweaver CS6 use the original MySQL functions that are scheduled to be removed from a future version of PHP. The server behaviors have already been removed from Dreamweaver CC. If you are planning to create a site using PHP and MySQL, do not rely on Dreamweaver's server behaviors. You must use either MySQLi (MySQL Improved) or PDO (PHP Data Objects) instead.
    If you're looking for video tutorials, you might be interested in the courses I have created for lynda.com. As a beginner, a good place to start would be PHP for Web Designers or Introducing PHP (there are several sample videos that you can watch for free on my website). Both courses were recorded on Dreamweaver (PHP for Web Designers on Dreamweaver CS6, Introducing PHP on Dreamweaver CS5.5). PHP for Web Designers shows how to connect to MySQL with MySQLi. You need a subscription to lynda.com to watch the complete courses, but you can get a seven-day free trial by following the links on my website.
    If you don't want to commit to a subscription service, I have also written a book called PHP Solutions, which covers MySQLi and PDO in depth. It also shows how to build a login system. At the moment, the second edition is available, but a revised third edition is due to go on sale in December.
    There are also a lot of free resources on the web that you can find. The important thing to beware of is that a lot of old material relies on the original MySQL functions. Whichever resource you use, make sure it shows how to use MySQLi or PDO.

  • Need help for develop websevice on weblogic

    Hi to all,
    I created a webservice.ear, using servicegen and I've deployed it on Weblogic with success. But when I try to use the test-link I receive some server errors.
    I use this task in my build.xml file :
    <target
    name="ear-webservice"
    depends="ejb-jar" >
    <servicegen
    destEar="${build_ear}/${ear-file}"
    warName="${war-file}"
    contextURI="${ws-context-uri}">
    <service
    ejbJar="${dist}/${ejb_jar_file}"
    targetNamespace="my-webservice"
    serviceName="MYWebService"
    serviceURI="/MYWebservice"
    generateTypes="True"
    expandMethods="true">
    </service>
    <classpath refid="webservice.classpath"/>
    </servicegen>
    <wsdlgen     ear="${build_ear}/${ear-file}"
              warName="${war-file}"
              serviceName="MYWebService"
              wsdlFile="${build_wsdl}/${wsdl-file}"/>
    </target>
    and the first exception in weblogic's logs is
    javax.naming.NamingException: Could not lookup EJB home, tried .....
    Can you help me ?
    I have only avaible the ejb.jar
    Thanks very much in advace.
    best regards
    francy

    Hi,
    You should use afterrange with the combination of EVSUM function. EVSUM function will show the totals, before sending the data to the database. Please refer to the below links from help.sap:
    http://help.sap.com/saphelp_bpc75_nw/helpdata/en/66/a04d49392d401382d0dc1b099acad0/content.htm
    http://help.sap.com/saphelp_bpc75_nw/helpdata/en/b2/f117dd464b4252a279ab7f67b4436d/content.htm
    Hope this helps.

  • How to "save with options" for development using a different version of LV

    Hello,
    I have an application written in LV 6.0 on a different computer. I am upgrading the program on my computer also using LV 6.0 ( I also have LV 8.5).  When I try to open the file that I saved on original computer on my computer it tries to open it with verion 8.5, but I want to use 6.0. How can I modify the original program using the same and only version that is on original computer on my computer? Once modified I want to run on the original computer which only has version 6.0. Hope this is clear.
    Thanks,
    JS

    Be careful, once a VI is saved in 8.5 you can't save it back to 6.0. You'd have to go through several versions of LabVIEW to do that.
    To make sure a VI is opened in 6.0, launch LV 6.0 first and then open the VI (by double-clicking on it in explorer or via file open in LV).
    If LabVIEW is not running and you double-click a VI it will start the last LV version used.
    Hope this helps,
    Daniel

  • "For Developer" in Update & security crashes

    Whenever I try to click on the "For Developer" section (to enable development mode) the settings app crashes. I am running 10074 core.
    Not sure if this is related but the gpedit.msc file is missing from the system32 folder.
    Thanks

    Whenever I try to click on the "For Developer" section (to enable development mode) the settings app crashes. I am running 10074 core.
    Not sure if this is related but the gpedit.msc file is missing from the system32 folder.
    Thanks
    Excerpt from
    Blogging Windows on build 10074:
    Here are some known issues
    Developers cannot enable Developer Mode in the Settings app for installing and testing apps on this build. We’ll enable this in an upcoming build. In the meantime, you will need
    enable your device for development using the Group Policy Editor.
    Unfortunately the info won't help you much if you are missing the gpedit.msc

  • F help for objects

    Hi all,
          can any body tell to get F4 help for object attributes in table controls.
      actually i got f4 help for object using SWO_DIALOG_OBJTYPE_VAL_REQUEST.
    like this i want function module to get f4 help for attributes.

    Hello,
    Please check the roles related to the below authorization object.
    Authorization Object  
    S_WFAR_OBJ          
    Value  
    NV          
    Value  
    VBRK          
    Value  
    YP3INVOICE          
    Value  
    03          
    archiving Related role will give you access to View the billing document in PDF.
    Thank you
    Regards
    Bala

  • Known issue: How to enable your Windows 10 device for development (Windows 10 Insider Preview SDK and tools, April 2015 release)

    With the current release of Windows 10 Insider Preview, you cannot enable developer mode using the System Setting Developer Mode control. This feature will be enabled in a future release of Windows 10. 
    Editing for clarification:
    If you try to Developer unlock your Windows 10 system by going to (Search) Settings --> Update & Recovery --> For Developers, you will notice that the "Settings" window closes. You cannot set these Settings through the UI in the current
    Build due to the known issue.
    VT Mobile Application Development

    To enable your device for development, please follow the links below:
    Windows 10 Mobile: Register your phone to
    enable developer mode using the existing Windows Phone 8.1 tools
    Windows 10 Desktop: Enable your device
    for development using the Group Policy Editor
    VT Mobile Application Development

  • F4 Help for Territory Attribute - BAdi CRM_TERRMAN_ATTRIB (CRM 7.0)

    Hi,
    I have a Z field in my Territory. I am trying to implement F4 help for that using BadI CRM_TERRMAN_ATTRIB. Method : GET_F4_HELP_CUSATTR .
    But, I am not able to understand how can I impement this method to get F4 help. as It is returning One Interface which has no attributes , no methods.
    Please help me to implement this method such that I can get F4 help for my Custom attribute.
    Thanks,
    Sandeep

    Hi,
    I hope this might help you start with.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/840ad679-0601-0010-cd8e-9989fd650822#q-5
    Follow this link, and search for "Using a variable from a calling program without passing it in parameter ".
    Regards,
    Susanta

Maybe you are looking for