Help required to recognize the correct language import package

Hi friends,
I am trying to import ukranian(UK) language to SAP system using SMLT transaction.Please help me to identify the correct 'language import package'
from the DVD dump.I cannot recognize the correct DVD .I am not clear how do I realize the exact package from the DVD dump.Kindly help me.
Regards,
Syam krishnan

Hi Syam
Please refer the TWO notes for clarity
Note 97476 - Language availability R/3 4.0x - 4.7x, ECC500
Note 517310 - Ukrainian language import has been filled w/ Russian
Cheers,
Shyam

Similar Messages

  • The document could not be saved. The server said: "The operation failed because an unexpected error occurred. (Result code 0×80020005)" Please ensure you have completed all required properties with the correct information and try again.

    I am having problems  saving documents back to SharePoint when any of the document properties (metadata columns) are set to be "managed metadata". The check-in/save fails with error:
    The document could not be saved. The server said:
    “The operation failed because an unexpected error occurred. (Result code 0×80020005)”
    Please ensure you have completed all required properties with the correct information and try again.
    I have seen similar threads that suggest this is a known issue with this version of Acrobat but I would like conformation from Adobe that this is a known issue and whether it is fixed in a newer version?
    Adobe Acrobat version 10.1.13
    SharePoint 2010

    Hi quodd,,
    We are sorry for the issue being faced by you. I need some information from you so that I take further steps:
    1. Which Adobe product are you using Acrobat or Adobe reader- what is the complete version?
    2. How are you opening and saving the PDF, the exact workflow?
         Are you doing it from within Adobe Reader/Acrobat application or opening it from browser, doing changes and saving it using browser itself.
    3. Can you try to save a PDF to library with Custom template and managed metadata columns using browser directly.
    4. Please verify that columns name do not contain spaces or some other special characters.
       Can you try to save PDF to library with Custom template and just a single managed metadata column  with a simple name
    Thanks,
    Nikhil Gupta

  • Error message when trying to add signature. An error has occurred that may be fixed by installing the latest version of the Japanese Language Support package.

    Error message when trying to add signature. An error has occurred that may be fixed by installing the latest version of the Japanese Language Support package.  How can I fix this?
    Thanks
    [email protected]

    What is your operating system?  Reader version?

  • Help required in understanding the flow of control in working with EJB 3.0

    *1. Can anyone help me in understanding the flow after getting an object of InitialContext in using Stateless/Stateful in EJB 3.0 from client i.e. what we are getting in the step Object ref=jndiContext.lookup("CalculateBean/Remote) .*
    *2. What is the use of INITIAL_CONTEXT_FACTORY*
    *3. PROVIDER_URL*
    *4. Java.naimg.factory.url.pkgs*
    *5. why org.jboss.naming and org.jnp.interfaces separated by semi colon.*
    *6. Why we dont require INITIAL_CONTEXT_FACTORY, PROVIDER_URL and Java.naming.factory.url.pkgs if the client is a web client.*
    Properties p=new Properties();
              p.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
              p.put(Context.PROVIDER_URL,"jnp://localhost:1099");
              p.put("java.naming.factory.url.pkgs","org.jboss.naming:org.jnp.interfaces");
              Context jndiContext = new InitialContext(p);
         Object ref = jndiContext.lookup("CalculateBean/Remote");
    Calculate c = (Calculate)ref;
    int sum=c.add(3,4);
    System.out.println(sum);
    Thanx in advance........

    Annotations can also be processed at run time using the core reflection API (java.lang.Class & java.lang.reflect.*), so you might want to explore down that path. I have no idea how JBoss actually does it, but annotation processing at build time and core reflection at runtime are the two most obvious possibilities.
    Bruce

  • Help Required in Migrating the Dev to Test Instance

    Hi
    Am very new to SOA platform, i developed one project in dev instance. now i would like to move this project to test instance.
    can any one help me to migrating the project.
    So I Need sample document with step by step instruction. i have 5 days only to migrate, i gone through so many blogs and post in metalink, but i didn't understand the concept exactly.
    Santhosh Kumar. K

    Hi K,
    There are many ways to do it, it will all depend on your environment.
    The way that works for me is:
    1. Deploy your project to SAR (it will actually generate a jar file)
    2. Copy the generated file to the environment where it will be deployed
    3. Use the ant-sca-deploy.xml to deploy it
    ant-sca-deploy.xml will be located at $BEA_HOME/Oracle_SOA1/bin
    and you can call it from your own ant build.xml like this:
         <target name="deploy-app">
              <ant
                   antfile="${beaHome}/Oracle_SOA1/bin/ant-sca-deploy.xml"
                   target="deploy"
                   dir="${beaHome}/Oracle_SOA1/bin"
                   >
                   <property name="serverURL" value="${scaDeployUrl}"/>
                   <property name="sarLocation" value="${appEarDestDir}/${sca.jar}"/>
                   <property name="overwrite" value="true"/>
                   <property name="user" value="${domainUser}"/>
                   <property name="password" value="${domainPwd}"/>
                   <property name="failOnError" value="true"/>
                   <property name="partition" value="${partition}"/>
              </ant>
         </target>
    Cheers,
    Vlad
    Give points - it is good etiquette to reward an answerer points (5 - helpful; 10 - correct) for their post if they answer your question. If you think this is helpful, please consider giving points

  • Help required in implementing the algorithm

    Actually I am brand new to the java programming, and i need some help to implement the algorithm below in java.
    I have the dataset required for the execution,
    Can any body please help me?
    Input: (1) a source database D,
    (2) a min support,
    (3) a min confidence,
    (4) a set of recommended items Y
    Output: a transformed database D, where rules containing
    Y on RHS will be hidden
    1. Find large 1-item sets from D;
    2. For each hidden item y �� Y
    3. If y is not a large 1-itemset, then Y := Y &#8722; {y};
    4. If Y is empty, then EXIT;// no AR contains Y in RHS
    5. Find large 2-itemsets containing items in Y from D;
    6. For each y �� Y {
    7. For each large 2-itemset containing y {
    8. Compute confidence of rule U, where U is a rule likex �� y;
    9. If confidence(U) �� min conf, then { //Calculate # of transactions required to lower the confidence of U
    10. Calculate iterNumConf = _|D|&#8727;(supp(xy) &#8722; minconf &#8727;supp(x))_;
    //Calculate # of transactions required to lower the support of U
    11. Calcualte iterNumSupp = _|D|&#8727;(supp(xy)&#8722; min supp)_;
    12. Calculate k = minimum (iterNumConf, iterNumSupp);
    13. Calculate |TR| = |xy|; //|TR|: # of transactions inTR
    14. if k > |TR|
    15. Can not hide U;
    16. else {
    17. Find T kR = first k transactions that contain xy;
    18. Sort T kR in ascending order by the number of items;
    19. for i = 1 to iterNum do { 20. Choose the first transaction t from T kR ;
    21. Modify t so that y is not supported, the RHS(U);
    22. |xy| = |xy| &#8722; 1; // update support count of xy
    23. confidence(U) = |xy|/|x|; // update confidence
    24. Remove and save the first transaction t from T kR ;
    25. }; // end for iterNum
    26. }; // end if confidence(U)
    27. }; // end of each large 2-itemset
    28. Remove y from Y;
    29. } // end of for each y
    30. Output updated D, as the transformed D;

    The way you post that, it looks very much like "Do my work for me". Nobody around here likes that kind of post, they consider it lazy and selfish. But perhaps you didn't mean it that way? Why don't you explain what you have done and what parts of it you are having problems with. Explain those problems in detail.

  • Help required in getting the header details.

    Hi All ,
    In my first WDA , I am showing the header details of Purchase Order for a input parameter  in table
    and now I want to show the items details for that particular PO on lead selection of the the PO details
    in my second application . How can I achieve the desired functionality .
    Please help , any pointers regarding this ..
    Thanks in Advance.

    Hi ,
    U need tto get the URL of the called application through method
    construct_wd_url and generate the popup window for the second application with the above URL .
    in ur first app , crate an event on lead selection of the table and write the following piece of code :
       DATA:
          w_url   type string,
          w_value type string.
             call method cl_wd_utilities=>construct_wd_url
            exporting
            application_name              = u2018 u2018 // here specify the name of the called application
          importing
            out_absolute_url              = w_url.
       * make the Value type compatible that has to be passed with the URL
      w_value = lv_ebeln.
    * Attach the parameters and its value with the URL that
    * have to be passed to the 2nd application
      call method cl_http_server=>append_field_url
        exporting
          name  = ' '   // input parameter here
          value = w_value
        changing
          url   = w_url.
    * generate a popup window for the 2nd application with the above URL
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component  TYPE REF TO if_wd_component.
      DATA lo_window         TYPE REF TO if_wd_window.
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      lo_window         = lo_window_manager->create_external_window(
                       url = w_url ).
      lo_window->open( ).
    Now in the doinit of ur called application , u can get the value for that particular input parameter
    [code}
    DATA:
      lv_param type string.  
    lv_param = wdr_task=>client_window->get_parameter( ' u2018  ).  // paramtr name
    Now select the appropriate values in internal table for this and bind it to ur context node ..
    I hope this helps..

  • How can I ensure that iTunes recognizes the correct feed?

    I'm in the process of transfering my podcast to a new website. I've been using podpress, so I had my web team enable the iTunes:New-Feed-Url option and enter the new feed url. After a week it still hadn't worked, so I uploaded one more episode to the old site hoping that would kick it over. Another week passed with no luck.
    Then I realized my team had entered the wrong url! I changed it to the correct url, and waited another week but it didn't work. I uploaded one more short file to the old site and after two days the iTunes store hasn't picked it up. I fear that somehow the iTunes store sync'd up with that incorrect url. 
    To complicate matters further, I also replaced the mp3 of the episode which appears in the store with a new mp3 telling users about the feed change. Now that episode won't download or stream throug hthe store.
    So how can I get the proper feed url synced with iTunes? How can I tell what url is currently feeding iTunes? And if that feed doesn't exist, does that mean I will need to create it and set up another iTunes:New-Feed-Url thing using podpress?
    (PS- It would be great if iTunes allowed us to simply update the url manually ourselves!)
    Link to my podcast in iTunes: https://itunes.apple.com/us/podcast/maxwell-institute-podcast/id666445688?mt=2
    Old feed: maxwellinstituteblog.org/feed/podcast
    New feed: maxwellinstitute.byu.edu/feed/podcast

    iTunes is using the feed at http://maxwellinstituteblog.org/feed/podcast/
    This does have the 'itunes:new-feed-url' tag but it reads:
    <itunes:new-feed-url>http://maxwellinstituteblog.org/feed/podcast/</itunes:new-feed-url>
    which is therefore redirecting to itself and as a result having no effect. The announcement about transferring the feed appears when subscribing but it was only posted yesterday so it's not surprising that it isn't in the Store yet. In any case you don't need it; just put the correct URL in the redirection tag and make sure to leave the original feed in place for a couple of weeks to give your subscribers plenty of time to check it. They will be transferred to the new feed and won't even notice; the Store checks feeds periodically so will transfer to the new feed on the next check. This transfer is permanent, so don't make a mistake in the URL!
    To check on the status of the feed, subscribe from the 'Subscribe' button in the Store page. Control-click (Mac) or right-click (Windows) on the title of the podcast in the 'Podcasts' section of iTunes and choose 'Copy podcast URL'.
    This will show the new feed URL if you have entered the redirection tag correctly, but it doesn't necessarily mean that the Store itself is using that feed. You will know when it does because episodes not in the old feed will show in the Store. It usually takes a couple of days or so for the Store to catch up.

  • Help required to understand the concepts for data files in tablespace

    Hi Guys!
    Conceptual understanding for data files.
    A tablespace is having 2 datafiles.
    What once the data files will get full? I know we can create data files but what if there is no space on the server for any additional file to be created?
    Do we require to make the oldest file offline and move outside the environment?
    Thanks

    782790 wrote:
    Hi Guys!
    Conceptual understanding for data files.
    A tablespace is having 2 datafiles.
    What once the data files will get full? I know we can create data files but what if there is no space on the server for any additional file to be created?
    Do we require to make the oldest file offline and move outside the environment?
    ThanksIf the datafiles are full, there is not much that you would get from the "defragmentation" of the datafiles. It would be sort of like this in the start,
    FFFFFFFFFFFFFFFFFFFFFFFFFF
    Then it will be ,
    FFFFFFFUUUUUFFFFFUUUUUU
    So what you are going to get is something like this, (if would be done),
    FFFFFFFFFFFFFUUUUUUUUUU
    So that's how the datafile would like. But that won't give you much of the space anyways still. The option to add a storage must be there with you. The file being offline wont take away the space that it has already allocated. And moreover, doing so, would also impact the access to the data that it would be storing within it.
    HTH
    Aman....

  • Language Imported Package

    Hello SAP GURUS
    In my Language Management Screen (SMLT)
    ENGLISH
       Import Package
          INITIAL with green icon appearing
    can anyone explain me why does appearing INITIAL entry..and what does means of that
    my primary langauge is Arabic
       secondary and system  language is English which has been supplemented
    Regards
    Anwer Waseem
    SAP BASIS

    Hi Anwer,
    INITIAL means this language was installed as default language (English and German), the green light means the language is installed correctly
    Hope this help!
    Juan

  • Urgent help required to write the code in  update routine

    Hi all,
    i want to calculate open purchase order qty in update routine
    formula is
    open purchase order qty = scl qty - rec qty
    where schd line date is less then or equal to 90 days from the current date.
    I have written one code : but its giving error that comm_structure is not defined in abap dictionary,can any body help to write appropriate routine. this calculation i am making for MM, and data source and cube are 2lis_02_scl and cube is zc_pur01 ( made by coping the 0pur_c01), data source scl has all fields required in the foumula...here is my code
    DATA:  COMM_STRUCTURE LIKE  /BIC/CS2LIS_02_SCL.
    DATA: SCL_QTY LIKE COMM_STRUCTURE-/BIC/ZK_SCLQTY.
    DATA:      GR_QTY LIKE COMM_STRUCTURE -/BIC/ZK_GRQTY.
    DATA: SCL_DATE.
    SCL_DATE = SY-DATUM + 90.
    SELECT COMM_STRUCTURE -/BIC/ ZK_SCLQTY COMM_STRUCTURE -/BIC/ ZK_GRQTY FROM
    /BIC/CS2LIS_02_SCL INTO   SCL_QTY     GR_QTY  
    WHERE
    COMM_STRUCTURE -/0SCHED_DATE LE SCL_DATE.
    IF SYSUBRC  = 0
    RESULT = SCL_QTY - GR_QTY.
    ELSE = NOVALUE.
    ENDIF.
    Can any body help me soon its very urgent.
    thanks

    Hi Anupam,
    I am not a very good ABAP Programmer, but found some things to notify u inyour code..
    DATA: COMM_STRUCTURE LIKE /BIC/CS2LIS_02_SCL,
          SCL_QTY LIKE COMM_STRUCTURE-/BIC/ZK_SCLQTY,
          GR_QTY LIKE COMM_STRUCTURE -/BIC/ZK_GRQTY.
    DATA  SCL_DATE LIKE SY-DATUM.
    SCL_DATE = SY-DATUM + 90.
    SELECT COMM_STRUCTURE -/BIC/ ZK_SCLQTY COMM_STRUCTURE -/BIC/ ZK_GRQTY FROM
    /BIC/CS2LIS_02_SCL INTO SCL_QTY GR_QTY
    WHERE
    COMM_STRUCTURE -/0SCHED_DATE LE SCL_DATE.
    IF SYSUBRC = 0
    RESULT = SCL_QTY - GR_QTY.
    ELSE.
    What should be the return value if you dont have to    calculate the result."
    ENDIF.
    try it.. and see..
    regards,
    kishore.

  • Urgent HELP required on forming the Matrix of data using PL/SQL

    Hi All,
    I'm new to this thread and require your urgent help in this regard.
    I've got a requirement for building a 5000 X 5000 matrix using PL/SQL. My original data tables have 5000 rows each and I need to do a correlation analysis using this data and need to store in a physical table and not in-memory. Is this feat achievable using mere PL/SQL? I understand that Oracle DB has a limitation of 1000 columns(but not sure) and hence I'd like to know whether there is any work-around for such scenarios. If not, what are the other alternative method(s) to achieve this feat? Do I need to use any 3rd party tools to get this done? An early reply from the experts is highly appreciated.
    Thanking you all Gurus in advance.
    Rgds
    Sai

    Welcome to OTN!
    I'll get to your quesiton in a moment, but first some welcome information. Many OTN posters consider it impolite to mark threads as "urgent". We are volunteers and have jobs of our own to do without people we don't know making demands. You are brand new and deserve some patience but please understand this. It is very likely before I finish this post someone will complain about the word "urgent" in your subject.
    On to more interesting things :)
    You can do the matrix, but are out of luck with a 5000 x 5000 table because Oracle only allows 1000 columns per table. There are ways to work around this.
    How do do the matrix depends on what you want to do. You can do this different ways. You can create a table beforehand and use PL/SQL or simple SQL to populate it, or use the CREATE TABLE AS syntax to create and populate it in one step if you can get the underlying SQL to work the way you want, something like
    create table my_table as
      select a.*, b.*
        from table1 a, table2 bcan populate a matrix from 2 tables with an intentional cartesian join (the WHERE clause was left out intentionally, provided your data is already in the data base.
    If not you can use a PL/SQL routine to populate the data.
    There are a couple of ways to solve the 1000 column limit. The easiest way might be to have 5 collections of 1000 columns each. A more complicated but more elegant soltion would be to have nested collections, allowing 2 colliections that you can loop through - a collection of collections. Nested collections can be hard to work with. A third way would be to use nested tables in the database but I personally do not like them and the insert, update, and delete statements for nested tables are hard to use.
    I'm not going to give a code example because I am not sure which solution is best for you. If you have further questions post them.

  • Urgent Help required! - Storing the XML as String instead as a file

    Hi,
    I need urgent help on this.
    I have an XML file. I have used org.w3c.dom to build dom and manipulate the XML file.
    I have updated the values for some of the nodes and I have deleted some of the unwanted nodes.
    I am able to save the output of the DOM as another XML file using
    either transform class or XMLSerializer with OutputFormatter class.
    But my requirement is to save the output of the DOM into a String instead of a file.
    When I save it in String, I need to have the following XML decalration and DOCTYPE declration also with it.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE Test SYSTEM "Test.dtd">
    Can anyone pls help me in this??
    Thanks in Advance. Expecting some inpputs pls....!
    Regards,
    Gayathri.

    hi,
    i think this is what u want
        public static String getXmlString(Document d) {
          StringWriter strResponse = null;
          try {
             OutputFormat format  = new OutputFormat(d);
             strResponse = new StringWriter();
             XMLSerializer serial = new XMLSerializer( strResponse, format );
             serial.asDOMSerializer();
             serial.serialize(d.getDocumentElement());
          catch (Exception e) {
            System.out.println(e.toString());
          return strResponse.toString();
    }HTH
    vasanth-ct

  • Help required in exectuting the Planning Function

    Hello All,
    I need help in fulfilling the following requirement through planning functions in IP:
    I have 4 keyfigures as Actual Value,Actual Quan,Plan Value and Plan Quan.
    Now what I want to do is to COPY:
    1)Actual Value>>> PLan Value and then revaluate the Plan Value
    2)Actual Quan>>  Plan Quan and then revaluate the Plan Quan
    How to Copy the values?????
    Characteristic available are
    1) RDS
    2)Dealer
    3)Material  Category

    The way you post that, it looks very much like "Do my work for me". Nobody around here likes that kind of post, they consider it lazy and selfish. But perhaps you didn't mean it that way? Why don't you explain what you have done and what parts of it you are having problems with. Explain those problems in detail.

  • Help required in identifying the admin groups for a IT Resource

    I would like to pick up the user details of the members in the admin groups of a particular IT resource.
    Can anyone help me in this regard..???
    Thanks in advance

    If you can replace <SMALLIMAGE with <IMG then I am not
    sure why you couldn't include the SRC="charcothip.jpg" with the
    <IMG portion?
    How are you replacing it currently? Could you store the
    replacement string in a variable and use it instead.
    var replacementString:String = "<IMG
    SRC=\"charcothip.jpg\"";
    Then you could do something like this (assume the myStr holds
    the XML String):
    var myArr:Array = new Array();
    myArr = myStr.split("<SMALLIMAGE");
    myStr = myArr.join(replacementString);
    Obviously, this will only work if you are replacing all of
    the <SMALLIMAGE pieces with the same image. If not then you
    could use the following:
    var searchFor:String = "<SMALLIMAGE";
    var newString:String = myStr.substring(0,
    myStr.indexOf(searchFor));
    newString += replacementString;
    newString +=
    myStr.substr(myStr.indexOf(searchFor)+searchFor.length);
    You can keep the width and height attributes since Flash will
    recognize those when rendering the HTML.
    Tim

Maybe you are looking for