PLEASE HELP IN ANSWERING FEW QUESTIONS

Hello Experts,
i have few questions, could you please help me in getting familiar to this:
1. What is Enterprise Structure?
2. What is Organisational unit for for all SAP modules?
3. can one chart of account can be assigned to more than one company code?
4. how many company codes can be assigned to single company?
5. All versions of SAP Till Now?
Thanks!!

Im pretty new to all this too, but this is how you validate an XML file against a XSD:
You need to set the features of youre parser so that it is ready to validate.
You will also need to extend the SAXErrorHandler with youre own CustomErrorHandler,
parser.setFeature("http://apache.org/xml/features/validation/schema", validate);
parser.setFeature("http://apache.org/xml/features/validation/schema-full-checking", validate);
parser.setProperty("http://apache.org/xml/properties/schema/external-noNamespaceSchemaLocation", schemaUrl);
CustomerErrorHandler handler = new CustomErrorHandler()
parser.setErrorHandler(handler);
parser.parse(xmlFiles);The XML file then needs t o have a reference to the XSD that is needs to be validated against at the top of the file:
xsi:schemaLocation="http://www.w3schools.com c:\\WINNT\Desktop\youreXSD.xsd
I think you will also need to catch and handle at least the SAXException....
Hope this helps,

Similar Messages

  • Please help : here a few questions about BLOBs

    I'm using Forms6i patch11. I've got a web application with a block based on a table like this :
    TMP_STORED_FILE(file_name varchar2(256),
    file blob)
    The application allow the user to select a picture on the hard disk, and to store it in the database.
    I use the read_image_file to show the picture in an Image item (based on the file column of the table).
    When the user perform a commit, I'm not sure that the file is correctly stored in the table... what do
    you think ?
    Now, I want to show in the image item the picture stored in the table when a record is queried. I saw many java sample code supposed to do that, but do I really have to use java ??
    I saw that if I want to show the picture, I have first to re-create the file, and then to use read_image_file again. So : why should I store the pictures ? I mean : I wanted to store the pictures so that I can control
    the access to them. I wanted to delete the files after they have been stored. But if I have to recreate them,
    what about keep the files on the server and never store anything but the pathname and the filename ???
    At least, I could control the security at the directory level, what do you think ?

    Yes, thanks. I tried to commit the pictures yesterday, and I thought it was ok, but in fact nothing was
    inserted in my blob. I thought it was ok, because I found in the metalink the following :
    fix: To read the image stored in BLOB column of some database table into an image item in forms block,
    the item should have property 'Database Item'= No Image items can only be populated in two ways:
    1. with read_image_file built-in In this case file needs to be read from a local filesystem (or from the middle- tier for webforms)
    Or
    2. directly from database table by fetching In this case the image item must be based on database column of BLOB or LONG RAW
    datatype, and cannot be a control item. There is no interface how to manipulate value of an image item programmatically.
    Possible solutions are:
    1. get file from BLOB column in database into local file system as some temporary file, then use read_image_file.
    <Note:66312.1> describes the steps for BFILEs, it needs to be modified for BLOB columns.
    Or
    2a) create temporary table with BLOB column, copy image from BLOB storage table into it using stored procedure with DBMS_LOB package.
    <Note:61737.1> describes using DBMS_LOB package in detail. In forms create a separate block based on this temporary table,
    only with image item visible, and display just copied image
    Or
    2b) have separate block based on BLOB storage table, only the image item visible, and always restrict where clause to select only the one
    particular image. The second way is probably easier to implement.
    Case 2a could be slower than the first one or 2b.
    Maybe I didn't understand it correctly (my english is not so good after all).
    Anyway, I finally succeed in inserting my pics.
    Thanks again !!

  • Hello I have a problem in calculating the apple id Can you help me please   I forgot answer security questions for your account How can knowledge Please help Please reply as soon as possible   I can not buy from camels Store And the rest of the account ba

    Hello
    I have a problem in calculating the apple id Can you help me please
    I forgot answer security questions for your account How can knowledge
    Please help
    Please reply as soon as possible
    I can not buy from camels Store
    And the rest of the account balance  $25
    Message was edited by: lingo azam

    I think you mean App Store.
    Rescue email address and how to reset Apple ID security questions

  • Please help me with this questions "if I purchased items through mac or windows is it possible to re-download those purchases on Apple TV though iCloud"

    Please help me with this questions "if I purchased items through mac or windows is it possible to re-download those purchases on Apple TV though iCloud"

    It depends on what country you're in and whether or not they're still available in the iTunes Store. Some purchased movies and all rentals won't be available.
    (108225)

  • Please help  me with some questions with batch input session?

    hello everyone.
      I come to some questions  like
    1 What is a batch input session ,
    2  What is the alternative to batch input session?
    3  An ABAP program creates a batch input session.   We need to submit the program and the batch session in back ground. How to do it? 
       would you please help me with the questions, couldn't thank you more.
       Best regards
                                                                          Frank

    Hi
    Batch Input Session:
    BATCH INPUT SESSION is an intermediate step between internal table
    and database table. Data along with the action is stored in session
    ie data for screen fields, to which screen it is passed, program
    name behind it, and how next screen is processed.
    Three processing modes of executing Batch Input Session :-
    Run Visibly : You can correct faulty transactions online & work step-by-step through  the transactions not yet executed.
    Display Errors only : You can correct faulty transactions online.   Transactions not yet executed, but without error, run in the background.
    Run in Background .
    2) What is the alternative to batch input session?
    Call transaction.
    3) An ABAP program creates a batch input session. We need to submit the program and the batch session in back ground. How to do it?
    go to SM36 and create background job by giving
         job name,job class and job steps (JOB SCHEDULING)

  • Can anyone help or answer this question for me. Is there a way to have a private album for pictures sent to my phone? Don't exactly want kids ( niece and nephew ) to play on my phone and see private pictures of my girlfriend

    Can anyone help or answer this question for me. Is there a way to have a private album for pictures sent to my phone? Don't exactly want kids ( niece and nephew ) to play on my phone and see private pictures of my girlfriend

    What about this?
    https://itunes.apple.com/ru/app/best-secret-folder/id488030828?l=en&mt=8

  • Fundamental questions in Java, please help to answer.

    I am a beginner of a Java Programming. Although I had few programming experiences on Java. But there are few conceptal questions. Hope every experts can help to explain more to me.
    1. How <b>Encapsulation</b> works in Java? Why is it needed? What benefits can be given from encapsulation? Can give some examples for me to know more?
    2. How <b>Overloading</b> works in Java? Why is it needed? What benefits can be given from it in the extensibility of programs? Can give some examples for me to know more?
    3. How <b>inheritance</b> works in Java? What benefits can be given from inheritance? Can give further explanation, such as class hierarchy for me to know more?
    4. What is <i>object class</i> and <i>object distances</i> ? What is their differences?
    5. What is <b>Reusability</b>? What benefits can it gives? Why it is needed? Can give me further examples?
    Thanks for help very much

    Maybe I'm not getting this, but you want one of us to give you a nice short answer convenient enough for you to copy down, right? Well, there aren't many people here that are willing to do that. There are many people who won't even bother answering homework questions. I don't mind, but you need to show us some work you've done, like the previous poster said. The effort has to come from you, not us. If you are learning Java, you must put some effort into it.
    How can you get an answer out of us?
    Example: I understand that inheritance is ..............., but I'm not sure about this part.............. Can anyone provide some clarification please?
    Anyway, this question has been crossposted on at least 5 forums already, which I'm sure is one of the reasons people aren't bothering with this question. Please DO NOT CROSSPOST, it's considered poor forum etiquette.
    Please don't take anything that I said negatively, but you have to understand that we are taking our time to respond to your queries, and asking us to provide short answers without doing any work on your part, and crossposting is not going to get you answers out of us.
    Cheers

  • HT5312 Please help forgot the security question.. And no list: forgot security question? Send to your rescue email to....  Please help me...

    Please help me... Just forgot my security question.. N no list  forgot security question? Send to email ....... Below.. Only the question sould answer..  Please help me...

    Try going to the ExpressLane at https://expresslane.apple.com and then iTunes, iTunes Store, Password and Security Questions and select the Rescue Email to have that resent to you.

  • Please help me with this question ftp

    please help me to continue i don't know how to finished
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.net.URL;
    public class myftp2 {
    static String host = null;
    static String path = "/";
    public static void main(String[] args) {
    if(args.length != 1) {
    usage();
    System.exit(1);
    host = "ftp://"+args[0];
    if( ! isOpen() )
    System.out.println("Cannot connect to "+host+path);
    System.exit(1);
    System.out.println("Connected to "+host+path);
    BufferedReader kb = new BufferedReader( new InputStreamReader(System.in));
    boolean finished = false;
    while( ! finished ) {
    String input;
    String[] cmdArgs;
    System.out.print("myftp> ");
    try {
    input = kb.readLine();
    cmdArgs = input.split("
    s");
    if(cmdArgs[0].equals("exit") ) {
    finished = true;
    else if( cmdArgs[0].equals("dir")) {
    dirCommand();
    else if (cmdArgs[0].equals("get"))
    else if( cmdArgs[0].equals("pwd")) {
    System.out.println(host+path);
    else if( cmdArgs[0].equals("cd")) {
    if(cmdArgs.length!= 2) {
    System.out.println("You must include the directory name");
    else
    cdCommand(cmdArgs[1]);
    else if (cmdArgs[0].equals("cd.."))
    //cdCommand(cmdArgs[1]);
    catch(IOException e){
    System.out.println("Goodbye");
    static void usage() {
    System.out.println("Usage: java myftp <hostname>");
    System.out.println("please write your username:password@<hostname>");
    static boolean isOpen() {
    try {
    URL url = new URL(host+path);
    InputStream in = url.openStream();
    in.close();
    catch(IOException e) {
    System.out.println(e.getMessage());
    return false;
    return true;
    static void dirCommand() {
    String line;
    try {
    URL url = new URL(host+path);
    InputStream in = url.openStream();
    InputStreamReader inStr = new InputStreamReader(in);
    BufferedReader inNet = new BufferedReader(inStr);
    while((line = inNet.readLine()) != null)
    System.out.println(line);
    catch(IOException e) {
    System.out.println("Error: cant list the directory");
    static void cdCommand(String directory) {
    static void cdCommandback(String dir)
    }

    Please stop crossposting this question.
    http://forum.java.sun.com/thread.jspa?threadID=5253698&messageID=10050532#10050532

  • My ipod touch is disabled. Please help me with my questions. It is my first apple device.

    My ipod is disabled. When i turn it on it says to connect to itunes. I can get to where the screen displays a cord and an itunes logo, but itunes does not pop up, nor display my devices. This is probably because I have not synced my ipod with this computer, nor with any computer. How do I sync my ipod with itunes when it is disabled? How do I get itunes to pop up when my ipod is connected to the computer? Please dont give me a link, i really would like a step by step guide. I have itunes downloaded on this computer, but it does not pop up or display my devices. Do I need to create an itunes account? I have so many questions because this is my first apple device. If you were wondering, my ipod touch is disabled because I forgot my passcode. PLEASE help, I dont care if I have to reset my ipod, I just want to be able to use it!

    Use Device Firmware Mode...
    1.     Turn off your ipod To do this, hold the home and sleep buttons for 10 seconds, ignore slide to power off message.
    2.     Release the power button when you see the apple logo (keep holding the home button)
    3.     Keep holding until you see a message.
    Now restore from a backup!
    Alternatively you can wait!

  • Please Help!! Two questions...balance on itunes & how to reinstall tunes

    My computer crashed recently and I just had to reinstall my operating system and all programs. These may be dumb questions but I'm not a computer guy...
    1) I had a $46 balance on itunes when this happened, now I have to redownload itunes, is my balance still saved in my account? How will I get to it?
    2) I was lucky enough to transfer my itunes music folders over to an external hard drive before the crash, but I'm a little concerned on how to get them back in my itunes library when I get itunes back up again. Is it as easy as the click and drag method I used to transfer all the songs to my back up hard drive? I know I'm a little screwed because I didn't tranfer my songs the way that I just read to on this website so I'm nervous. I have about 9000 songs to get back. Of course, I lost my playlists because I didn't do it correct but please tell me I still have all my songs.
    Thanks a lot whoever can reassure me and help out.

    i have no idea about the balance thing, but the music to library question is easy if i understand it right. just reinstall itunes, then select, on the itunes menu, file, add folder to library, and then browse through the computer for your external drive and select it. if your drive is partitioned or your music is in more than one folder, just add them one at a time. this wont move your music into the itunes folder per se; it'll just add them to your library and they'll remain in the external drive they were on. hope that actually answers your question and i didn't miss the point entirely.

  • Please help me with this question..

    Hi everyone,
    Sorry for asking the same question which was posted many times in this forum.
    I have the following scenario..
    Database name: database1
    schema names: schema1
                  schema2
                  schema3
                  schema4
                  schema5
                  schema6
                  schema7
    workspace is with: schema1
                       schema2
    1. can i create 1 application that need to access tables in both schema1 and schema2 ?
    comments: I think we have to choose "parsing schema" when i am creating an application.
              if i choose the parsing schema as "schema1".
    2.how can i create a "form on a table" or some other wizard based forms which is in schema2?
    3.what priviliges do i need to create "form on a table" or some other wizard based forms which is in schema2?
    4.As my workspace is with schema1 and schema2. How can i create "forms" on tables which are in
    schema3? do i need to "create a view of table in schema3"  in schema1?
    All the above question will raise if i have to create forms or reports with "wizards". Is this stmt correct?
    I mean if i create a form "manually" all i need to look whether i have insert,update and delete priv on
    that object? is it correct?i think this question was answered several times.sorry for the repost.
    Thanks

    It is not necessary to say "please help me" since help comes almost always. Maybe sometimes you need to bump your question after a while. However, back to your question. I can tell you how I solve that problem:
    granting select, insert, update, delete on all tables to the parsing schema
    granting select on all views to the parsing schema
    granting execute on all procedures and packages to the parsing schema
    creating synonyms in the parsing schema for all tables, views, sequences, etc.
    You can do all of this programatically in a loop instead of writing it for each object separatelly.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • Please HELP! Music Player Question!

    I have a music player that I am working on. Here is a link to
    the site
    Omyda Player. If you
    click the little blinking arrow it reveals a control panel. Then
    when you press track selector a window within the flash movie, you
    can then chose a track and it will play. Do to the players slim
    size the fonts have to be made small, so small its hard to read
    unless you have good eyes. What I wanted to do is make it so that
    if you hit track selector it pops up a html pop up window. You can
    then choose your track and it sends the request to the flash
    player. I was thinking of going about it this way!
    I have to use java to send a command to the flash player....
    here is the code.
    The code above actually sends commands to what ever flash
    movie you designate, problem is it is only made to send go to frame
    commands.
    Part 2 is the java button.
    Now how do I name the home.html page? I know how to do a
    window with in a window, but not a pop up to a page. Say for
    example the popup is popup.html, how do I name the home.html. Do I
    simply put home.html in target? Part 3 is an example, Is this
    correct? If not how do I do it?
    Now here comes an issue with the flash. The java code above
    goes to a frame within the movie. So now I have to make a script on
    frame 3 of the movie that tells it to make a button press, but I do
    not know how to do it. Originally the movie worked by pressing a
    button that was marked as a button set as a target called
    Selection1 and so on. How would I make a script on frame 3 that
    would press the button on its own? Kinda like a simulated user
    press. Or is there a way to edit the Java code to act as a button
    press? Please HELP! Part 4 is the coding used in the player!

    Its called telling you the forum rules.
    Now for your question, when you say the phone tells the caller that you are engaged, is it the "busy" tone or it diverts the caller to your voice mail box? 
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Please do NOT answer this question (so urgent it hurts)

    Why do so many people resurrect threads that have been dead for several months or years to post redundant (at the best of times) and wrong (at the worst) answers?
    Why do people keep posting in the forum that shall not be named because it will attract the flies like carrion if it is named? And why do people keep resurrecting ramsci's thread in there?

    #1 - I am a contrarian ... at least for the moment ... and so I am answering you question.
    #2. It's not one question, but several - so get it right, ok? ;-P
    #3. WHY!!!??? ... always with the WHY!
    Why do people hate each other is a more important question I should think ... and no, that has nothing to do with you - I was not addressing that to you with reference to your question/s.

  • Please help beginner! Few pong questions.

    So, I have just started creating my own pong game after
    learning the basics of Flash 8. Everything went perfectly until
    now, I got a bit stuck.
    I got to point where I have fully working menu, multiplayer
    and singleplayer, you can play against another person using mouse
    and arrows. The scoring system works too and I actually managed to
    get the computer to follow the ball but here comes the first
    problem. I found a whole actionscript for the ball on the internet
    here it is:
    onClipEvent(load){
    s = {l:10,r:490,t:20,b:405,w:10,h:10};
    function setSpeed(){
    xspeed = Math.round(Math.random()*5)+1;
    yspeed = Math.round(Math.random()*5)+1;
    xspeed *= Math.round(Math.random()*2)==1 ? -1 : 1;
    yspeed *= Math.round(Math.random()*2)==1 ? -1 : 1;
    setSpeed();
    _root.cscore = _root.pscore = 0;
    onClipEvent(enterFrame){
    _x += xspeed;
    _y += yspeed;
    if(_x+(s.w/2)+xspeed>s.r){
    _x = s.r/2;
    _y = s.b/2;
    setSpeed();
    _root.cscore += 1;
    if(_x-(s.w/2)+xspeed<s.l){
    _x = s.r/2;
    _y = s.b/2;
    setSpeed();
    _root.pscore += 1;
    if(_y+(s.h/2)+yspeed>s.b){
    _y = s.b-(s.h/2);
    yspeed *= -1;
    if(_y-(s.h/2)+yspeed<s.t){
    _y = s.t+(s.h/2);
    yspeed *= -1;
    if(this.hitTest(_root.player)){
    _x = _root.player._x - _root.player._width/2;
    xspeed *= -1;
    xspeed *= 1.08;
    yspeed *= 1.08;
    if(this.hitTest(_root.computer)){
    _x = _root.computer._x + _root.computer._width/2;
    xspeed *= -1;
    xspeed *= 1.08;
    yspeed *= 1.08;
    As I said I am a beginner and I dont really understand the
    code. The problem is that after every hit the ball gets faster and
    faster and faster until it is impossible to see it.
    Here comes another problem: I have got the enemy just
    following the ball so it is impossible to score the script for
    enemy is:
    onClipEvent(enterFrame){
    ydist = _root.ball._y - _y;
    _y = _root.ball._y;
    Now my question is can someone plese tell me what do I have
    to change in the ball code so it stays at the constant speed or it
    just increases a little bit. The second qustion is how can I make
    the enemy computer not perfect? So you can actually win the game?
    Something like hit it randomly.
    My last question is: The game should be quiz pong. So if you
    score a point a qustion will pop up and you will have to answer it.
    What is the best way to do that? I think it should mean somethin
    like this: If score=+1 gotoandplay(lets say the question will be at
    frame 20) I dont know if that is the way it should be formed in the
    action script it is just my guess.
    Please if someone can help me at least with one of those
    questions I would be incredibly oblidged. thanks

    hey, im not great at this easier, but i think the speed
    problem can be solved by getting rid of the 2 lines
    xspeed *= 1.08;
    yspeed *= 1.08;
    I think this increases the speed by 8% after every hit. You
    can also try lowering the number, but if you go elow 1 it will slow
    down.

Maybe you are looking for

  • Need help urgent!! regarding Database connection failure

    Hi Experts, when i try to login sqlplus...i came across with this error 'TNS adaptor error' as i try to restart the services i dont have the sufficient privilages to start. Mean while, i have another database in my another system. i know the port num

  • PS to PDF Conversion :  Encrypted contents

    My workflow dictates that I convert the input PDF job initially to PS and finally back to PDF. If the input PDF file is secure (it's not encrypted - you will still be able to open the document), the redistillation of PS to PDF fails while using Norma

  • Dashcode Web Widget - RSS feed only displays in Safari

    Created a simple web widget in dashcode (my first experience with it) and when I deploy to the web it only works correctly in Safari. The RSS feed does not display in Explorer or Firefox. Having trouble getting it work on a windows computer and acros

  • Height changed for automatic height iviews after upgrade

    Hi All, We have a strange issue. We upgraded recently from EP6 SP20 to EP7 SP16. After this, all the KM iviews which had the height type set as Automatic has the minimum height 150px, not in the iview settings, but in the actual display. In the setti

  • Pressed Enabled Button color

    Hi all, I would like to change the color of a "Pressed enable button". I see the possibility to change the color under the next option: "Simple Elements ->Buttons ->Standard Buttons ->Standard Backgroud Color" This option supposes changing the color