Problem with program RAPOST2000

During the execution of the amortization using the program RAPOST2000, the job log displays a error, but in the table T093D, AFBLPE field indicates the last depreciation is accounted for this period (2) and exercise (2010), however I don't have any financial documents
I don't know what to do
Please help me

Hi again,
I want to share with you more information about error KI235 which usually is related to wrong CO Object determination for posting.
You have actived the CO objects in AACCOBJ, but not on the individulal asset.
Please change your screen layouts to have this activated on the asset.
Please have a look on the following tips to solve this issue:
1. Check the settings in the following IMG path:
   SPRO -> Asset Accounting -> Integration with the General Ledger -> Additional Account Assignement Objects (AACCOBJ)
   -> In there you must find Cost Center / Internal Orders.
2. All asset masters must have defined a cost center / internal order in table ANLZ.
   -> You can check this information via transaction SE16.
3. In "field status group" of account assignment, cost center and internal order must be optional.
   -> To check this information, you can go to transaction AS02, double click on account determination, then select tab
      "Create/bank/interest".
4. Check if you have set additional cost center determination via transaction OKB9 that can be affecting the cost center derivation.
5. If company code has been defined as "Balances by Business Areas" then Cost Center won't be derivated from Asset Master.  -> transaction OB65 -> 'Business area FS' is indicated. The same indicator an be set also in customizing Financial Accounting- Financial Accounting Global Settings-Company Code-Enter Global Parameters -> 'Business  area fin.statement'
6. Please be sure of your customizing in:
  Asset Accounting -> Integration with the General Ledger -> Additional Account Assignment Objects -> Specify Acct Assignment Types for Acct Assignment Objects (ACSET) -> There for your company code all transactions (*) the cost
     center must be active, so it will be derivated from Asset Master.
I'd also like you to have a look on the following SAP notes:
049127: Cost center account assignmnts in Asset Accounting
489816: Incorrect update of account assignment objects
516909: FI-AA: Changes in IS-PS Release 4.62
684659  FAQ concerning account assignment objects a
548735  FAQ note account assignment objects
As of release 4.7*, it's not possible anymore to make account assignments to CO from transaction OAYR, like in previous releases.
As can you see in note 683313 RAPOST2000 reads ACSET to find the relevant additional account assignments for asset accounting.
You can find ACSET in IMG: Asset Accounting   > Integration with the General Ledger   > Additional Account Assignment Objects.
This new customizing transaction is linked to the CO logic described in note 41103. So you can control via field status group if an assignement is required or not. Then the derivation will follow your settings in OKB9 and OKC9.
I believe that this will help you to solve your issue.
Best Regards,
Vanessa.

Similar Messages

  • Problem with program hanging randomly on certain commands from win 7 pro client to SB Server

    Having a problem with program hanging randomly on certain commands from Win-7 Pro Client to SB Server Both 64-Bit
    Five other slower XP-Pro 32 Bit systems though they are older and slower systems do not seem to hang as readily if at all.
    It has been very frustrating as the Client-System, SB-Server and Program should work w/o any hitches, but this seems to work fine @ times and then hang randomly.
    Would appreciate any and all suggestions in assisting.... JimBAgde-MSS  

    You can try this, as I have had similar problems with another MS Access .MDB file and slow access before. This fixed my problem for me. On the slow computer, make sure the program is set to see the .mdb file via UNC path, not a mapped drive letter. ex.
    USE:  \\yourserver\shared\dental\file.mdb
    DO NOT: S:\\shared\dental\file.mdb
    hope this helps

  • I have ipad 2 and facing problem with programs swtching off

    I have ipad 2 and facing problem with programs it's swtching off while working and turn to home page. Am using ios 5

    If it's happening on all the apps that you've downloaded from the App Store, but not the Apple built-in ones, then try downloading any free app from the store (as that appears to reset something) and then re-try them - the free app can then be deleted.
    If it's happening on all apps then try closing them all completely and then see if they work when you re-open them : from the home screen (i.e.not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close them, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Lots of problems with program

    Guys,
    I really am having a lot of problems with a program. I got the program to compile but it looks absolutely nothing like it is supposed to look. I have a deadline for tomorrow and sent my teacher an email but the chances of him getting back to me by tomorrow night for a weekend is pretty much slim to none. Anyways I am sending my output and if anyone could give me advice or feedback on why it does not look right if it is something small and if its alot of things go ahead and call me dumb.
    here is my code:
    import javax.swing.JOptionPane;
    import java.awt.*;
    import java.awt.event.*;
    public class Checkerboard extends Frame implements ActionListener
         private Panel topPanel;
         private TextArea topDisplay[];
         private Panel bottomPanel;
         private TextField startField = new TextField(10);
         private TextField stopField = new TextField(10);
         private TextField stepField = new TextField(10);
         private Label startLabel = new Label ("Start");
         private Label stopLabel = new Label ("Stop");
         private Label stepLabel = new Label ("Step");
         private Button goButton;
         private Button clearButton;
         private boolean clearText;
         private boolean first;
         private int start;
         private int stop;
         private int step;
         //constructor methods
         public Checkerboard()
              //construct components and initialize beginning values
              topPanel = new Panel();
              topDisplay = new TextArea[16];
              goButton = new Button("Go");
              clearButton = new Button("Clear");
              first = true;
              bottomPanel = new Panel();
              int start = 0;
              int stop = 0;
              int step = 0;
              bottomPanel.add(startField);
              bottomPanel.add(stopField);
              bottomPanel.add(stepField);
              bottomPanel.add(startLabel);
              bottomPanel.add(stopLabel);
              bottomPanel.add(stepLabel);
              bottomPanel.add(goButton);
              goButton.addActionListener(this);
              bottomPanel.add(clearButton);
              clearButton.addActionListener(this);
              clearText = true;
              //set layouts for the Frame and Panels
              setLayout(new BorderLayout());
              topPanel.setLayout(new GridLayout(4, 4, 10, 10));
              bottomPanel.setLayout(new GridLayout(3, 3, 5, 5));
              //construct the Display
              for(int i = 1; i <= 15; i++)
                        topDisplay[i] = new TextArea(null, 3, 5, 3);
              //set color to the panel
              //row 1
              for(int x = 1; x <= 4; x++)
              //set color for
              setBackground(Color.white);
              //row 2
              for(int x = 5; x <= 8; x++)
              //set color for
              setBackground(Color.white);
              //row 3
              for(int x = 9; x <= 12; x++)
              //set color for
              setBackground(Color.white);
              //row 4
              for(int x = 13; x <= 16; x++)
              //set color for
              setBackground(Color.white);
              //add components to frame
              add(topPanel, BorderLayout.NORTH);
              add(bottomPanel, BorderLayout.CENTER);
              //allow the x to close the application
              addWindowListener(new WindowAdapter()
                        public void windowclosing(WindowEvent e)
                                  System.exit(0);
                   } //end window adapter
         public static void main(String args[])
              Checkerboard f = new Checkerboard();
              f.setTitle("Checkerboard Array");
              f.setBounds(50, 100, 300, 400);
              f.setLocationRelativeTo(null);
              f.setVisible(true);
         } //end main
         public void actionPerformed(ActionEvent e)
              //convert data in TextField to int
              int start = Integer.parseInt(startField.getText());
              int stop = Integer.parseInt(stopField.getText());
              int step = Integer.parseInt(stepField.getText());
              for(int i = 1; i <=16; i++)
              setBackground(Color.blue);
              for(int i = start; i <= stop; i++)
              setBackground(Color.yellow);
              //test clear
              String arg = e.getActionCommand();
              //clear button was clicked
              if(arg.equals("Clear"))
                   clearText = true;
                   start = 0;
                   stop = 0;
                   step = 0;
                   first = true;
                   setBackground(Color.white);
                   startField.requestFocus();
              } //end the if clear
         }//end action listener
    }//end classThis will incorporate arrays, for loops, and Frames all in one.
    Create a panel containing an array of 16 TextArea components that change color to correspond with the start, stop, and step values entered by the user. Perform the following tasks to create the Checkerboard Array application shown below. When the user enters the start, stop, and step fields and then clicks the Go button, the results are also shown below.
    1.     Call your application Checkerboard.java
    2.     You will need the following variables� declare them as private:
    a.     16 component TextArea array
    b.     a Panel to hold the array
    c.     3 TextField components with length of 10
    d.     3 int variables to receive the start, stop, and step values
    e.     3 Labels to display the words Start, Stop, and Step
    f.     a Go button
    g.     a Clear button
    h.     a Panel to hold the 3 TextFields, 3 Labels, and the 2 Buttons
    3.     Create a constructor method to:
    a.     construct each of the components declared above and initializes the start, stop, and step variables to zero (when constructing the TextArea components, use the following parameters: null, 3, 5, 3)
    b.     set the Frame layout to BorderLayout
    c.     write a for loop to loop the array and set each of the 16 TextArea components in that array so they cannot be edited. In the same loop, set each of the TextArea components text to be 1 more than the index number. Also in this same loop, set the background of each of the TextArea components to white.
    d.     set the Panel for the TextArea components to GridLayout with 4 rows, 4 columns, and both gaps set to 10
    e.     set the Panel for the TextFields, Labels, and button to GridLayout with 3 rows, 3 columns, and both gaps set to 5
    f.     add the components to their respective Panels
    g.     make the buttons clickable
    h.     place the Panels in the Frame� put one in the NORTH and one in the CENTER
    i.     Enter the addWindowListener() method described in the chapter� this is the method that overrides the click of the X so it terminates the application
    4.     In your actionPerformed() method:
    a.     convert the data in your TextFields to int and store them in the variables declared above
    b.     write a loop that goes through the array setting every background color to blue
    c.     write another loop that�s based on the user inputs. Each time the loop is executed, change the background color to yellow (so� start your loop at the user�s specified starting condition. You�ll stop at the user�s specified stopping value. You�ll change the fields to yellow every time you increment your loop based on the step value. REMEMBER: Your displayed values are 1 off from your index numbers!!)
    5.     Write a main() method that creates an instance of the Checkerboard Frame.
    a.     set the bounds for the frame to 50, 100, 300, 400
    b.     set the title bar caption to Checkerboard Array
    c.     use the setVisible() method to display the application Frame during execution
    6.     After you get all of this complete, include error handling to make sure:
    a.     the values entered in the TextFields are valid integers
    b.     the start value is greater than or equal to 1 and less than or equal to 16
    c.     the stop value is greater than or equal to 1 and less than or equal to 16
    d.     the step value is greater than or equal to 1 and less than or equal to 16
    e.     the start condition is less than the stop condition
    f.     when an error occurs, give an error message in a dialog box that is specific to their error, remove the text from the invalid field, and put the cursor in that field so the user has a chance to re-enter� this can be accomplished by using multiple try/catch statements
    g.     only change the colors if the numbers are valid
    7.     Create a clear button as seen in the example below. This button should:
    a.     clear out all 3 TextFields
    b.     change the background color of all TextArea array elements to white
    c.     put the cursor in the start field
    8.     Document!!
    I know you guys are probably busy with your own stuff but any help and I would certainly appreciate it

    got the yellow boxes to come up but just one box.....so is there something wrong with my yellow set background because I am not seeing any more errors
    //packages to import
    import javax.swing.JOptionPane;
    import java.awt.*;
    import java.awt.event.*;
    public class Checkerboard extends Frame implements ActionListener
         private Panel topPanel;
         private TextArea topDisplay[];
         private Panel bottomPanel;
         private TextField startField = new TextField(10);
         private TextField stopField = new TextField(10);
         private TextField stepField = new TextField(10);
         private Label startLabel = new Label ("Start");
         private Label stopLabel = new Label ("Stop");
         private Label stepLabel = new Label ("Step");
         private Button goButton;
         private Button clearButton;
         private boolean clearText;
         private boolean first;
         private int start;
         private int stop;
         private int step;
         //constructor methods
         public Checkerboard()
              //construct components and initialize beginning values
              topPanel = new Panel();
              topDisplay = new TextArea[16];
              goButton = new Button("Go");
              clearButton = new Button("Clear");
              first = true;
              bottomPanel = new Panel();
              int start = 0;
              int stop = 0;
              int step = 0;
              bottomPanel.add(startField);
              bottomPanel.add(stopField);
              bottomPanel.add(stepField);
              bottomPanel.add(startLabel);
              bottomPanel.add(stopLabel);
              bottomPanel.add(stepLabel);
              bottomPanel.add(goButton);
              goButton.addActionListener(this);
              bottomPanel.add(clearButton);
              clearButton.addActionListener(this);
              clearText = true;
              //set layouts for the Frame and Panels
              setLayout(new BorderLayout());
              topPanel.setLayout(new GridLayout(4, 4, 10, 10));
              bottomPanel.setLayout(new GridLayout(3, 3, 5, 5));
              //construct the Display
              for(int i = 0; i <= 15; i++)
                        topDisplay[i] = new TextArea(null, 3, 5, 3);
                        topDisplay.setText(String.valueOf(i+1));
                        topDisplay[i].setEditable(false);
                        topPanel.add(topDisplay[i]);
              //add components to frame
              add(topPanel, BorderLayout.NORTH);
              add(bottomPanel, BorderLayout.CENTER);
              //allow the x to close the application
              addWindowListener(new WindowAdapter()
                        public void windowClosing(WindowEvent e)
                                  System.exit(0);
                   } //end window adapter
              public static void main(String args[])
                        Checkerboard f = new Checkerboard();
                        f.setTitle("Checkerboard Array");
                        f.setBounds(50, 100, 300, 400);
                        f.setLocationRelativeTo(null);
                        f.setVisible(true);
                   } //end main
                   public void actionPerformed(ActionEvent e)
                        boolean done = false;
                        //test go
                        String arg = e.getActionCommand();
                        //go button was clicked
                        if(arg.equals("Go"))
                   //convert data in TextField to int
                   int start = Integer.parseInt(startField.getText());
                   int stop = Integer.parseInt(stopField.getText());
                   int step = Integer.parseInt(stepField.getText());
                   while(!done)
                        try
                             if((start <= 1) && (start > 16)) throw new NumberFormatException();
                             else done = true;
                        } //end try
                        catch (NumberFormatException f)
                             JOptionPane.showMessageDialog(null, "You must enter start between 1 and 16", "Error", JOptionPane.ERROR_MESSAGE);
                             startField.setText(" ");
                             startField.requestFocus();
                        } //end catch
                        try
                             if ((stop < 1) && (stop > 16)) throw new NumberFormatException();
                             else done = true;
                        } //end try
                        catch (NumberFormatException f)
                             JOptionPane.showMessageDialog(null, "You must enter stop between 1 and 16", "Error", JOptionPane.ERROR_MESSAGE);
                             stopField.setText(" ");
                             stopField.requestFocus();
                        } //end catch
                        try
                             if ((step < 1) && (step > 16)) throw new NumberFormatException();
                             else done = true;
                        } //end try
                        catch (NumberFormatException f)
                             JOptionPane.showMessageDialog(null, "You must enter step between 1 and 16", "Error", JOptionPane.ERROR_MESSAGE);
                             stepField.setText(" ");
                             stepField.requestFocus();
                        } //end catch
                        try
                             if (start > stop) throw new NumberFormatException();
                             else done = true;
                        } //end try
                        catch (NumberFormatException f)
                             JOptionPane.showMessageDialog(null, "Stop cannot be larger than start", "Error", JOptionPane.ERROR_MESSAGE);
                             startField.setText(" ");
                             stopField.setText(" ");
                             stepField.setText(" ");
                             startField.requestFocus();
                        } //end catch
              } //end while
                        for(int i = 0; i <=15; i++)
                        topDisplay[i].setBackground(Color.blue);
                        for(int i = start; i <= stop; step++)
                        topDisplay[i].setBackground(Color.yellow);
                   } //end the if go
                   //clear button was clicked
                   if(arg.equals("Clear"))
                        clearText = true;
                        startField.setText("");
                        stopField.setText("");
                        stepField.setText("");
                        first = true;
                        setBackground(Color.white);
                        startField.requestFocus();
                   } //end the if clear
         }//end action listener
    }//end class

  • Problem with Program RSEOUT00

    Hi,
    Im executing RSEOUT00 to process all outbound idocs with status 30. The problem is if I only have one idoc to be processed, the status remains 30 while if I have for example 5 outbound idocs, all idocs EXCEPT the last are processed. Processed Idocs would have status 03.
    How come this report does not process the last IDOC? Is this a problem with selection parameters?
    Thanks in advance.
    Kenny
    Message was edited by:
            Kenny  Martinez

    Hi kenny,
    What selection parameters you have given on screen?
    You can give idoc number or time of change or msg type or execute in background setting some variants...
    There is no chance to leave the last idoc unprocessed.
    Try to execute once again.
    There might b a chance, when you execute the program,last idoc might not be created.
    Regards,
    Ponraj.s.

  • After Effects Crash Problem With Program?

    Hi Adobe Staff. I have a problem with Adobe After Effects. The Program always Crashes. Is there a way to fix this problem. so the program does no longer crash. when I use the program. If you guys can help me I would greatly appriciate it. Thank You.
                                                                                                                                                                         Thank You,
                                                                                                                                                                       Nicholas Ricci  

    The latest version of After Effects CC is 12.2.1 - you are missing an update. I would recommend installing the latest version.
    LOLOLOLOLOLO wrote:
    When I start Adobe After Effects the program Comes up with a message that says this Ray Tracing on the GPU requires an approved Nvidia Graphics Card and Cuda 5.0 or later.
    This error message only really matters if you use the ray-traced renderer. Do you use it? Most people do not use it anymore. It was a way for After Effects to have 3d before they started including Cinema 4D. If you do not use the ray-traced renderer, you can click the button that says for this message to not pop up anymore. It does not matter. Make sure that in the advanced settings for your compositions you are using the standard renderer.
    If you do use AE's ray-traced renderer, this message is letting you know that your existing graphics card is not going to work to accelerate the ray traced renderer. This just means that it is going to be very slow. Unless you have some ray-traced 3d effect happening in your scene, make sure your compositions are using the standard renderer.
    Is this error message the only thing that is happening when you say it crashes? If so, that is not a crash. A crash is something that stops the program from working or sometimes closes the program entirely. This is just an alert message.

  • Huge problems with Programs crashing on quit!!

    Is anyone else having an issue with programs like Logic Pro 8, Firefox and other widely used programs that crash when you do a command-q to quit?
    Mine does this all the time. I have re-installed Snow Leopard 3 times now. I have re-installed all my programs I use fresh as well, yet almost every program I close locks up the machine or just sits there and does nothing at all.
    I am beginning to think I have a hardware issue on my new iMac.

    UncleMarcus wrote:
    Is anyone else having an issue with programs like Logic Pro 8, Firefox and other widely used programs that crash when you do a command-q to quit?
    no.
    Mine does this all the time. I have re-installed Snow Leopard 3 times now.
    did you do an erase and install or did you install snow leopard on top of your current install? if the latter make a new user account and log into it. do you have the same problem there? if you did do an erase and install then it may be hardware related as you suspect.
    I have re-installed all my programs I use fresh as well, yet almost every program I close locks up the machine or just sits there and does nothing at all.
    I am beginning to think I have a hardware issue on my new iMac.

  • HT1918 Hello! I Have very much problem with programs App Store! Refund please money too my account!!! Xilisoft dvd maker 7 don't work,Adobe Premiere editor 11 don't work!!! I fear purchase content out of App Store!!!

    Hello! I Have very much problem with contents and programms App Store! Refund please me money to account!
    1.Xilisoft DVD Creator 7 Dont Work
    2.Adobe Premier Editor 11 Dont Work
    I fear purchase yet programms out your App Store!!!!! Realy!!!
    Wery Much ''go begging'' refund money Adobe Premier Editor 11! Best Regrads,Alexandr Cherepennikov! Sorry,wery bad my english!

    We are fellow users here on these forums, you're not talking to iTunes Support (this is the iTunes Store forum), nor Mac App Store Support.
    You've tried deleting and redownloading those programs, and tried contacting their developers ? If you have, and you haven't had a reply, then you can try contacting Mac App Store Supportv via this page : http://www.apple.com/support/mac/app-store/

  • Problems with program not finding Fonts

    Problems with Fonts on new iMac.
    I'm not sure if this is a problem because I switched to Snow Leopard or because I ported all my information using Migration assistant to the new iMac.
    Every time I open Firefox 3.6, I get the same annoying popup messages that Firefox can't find Arial and Times New Roman and wants to allow Firefox to use those fonts on my backup hard drive (which is actually the hard drive I was running Leopard on on my previous computer) I have checked my new computer, and yes the fonts are installed on my new computer. I have used FontBook to resolve duplicate fonts. When I tried to search on Firefox issues, people have problems with the wrong fonts rendering on the screen, which I don't have. For some reason, Firefox is looking in the wrong place. I don't think this is a Firefox issue, as I'm running the same version of Firefox on the new computer as I did on the old computer and I didn't have any problems on the old computer. Is there anything I should be checking in FontBook to make this problem go away?

    Can't address your FireFox issues, since I use Safari and these forums are for solving issues with Apple's products. You might try the FireFox forums. Additionally, give Font Management in OS X a look see.

  • Unable to download a pdf file. received message-problem with program with acrobat reader-103-103

    unable to download a pdf file using acrobat reader X. received message-there is a proble with program with acrobat reader 103-103.

    Download the file with your web browser (Safari, Firefox, Chrome). Then attempt to open the PDF file in Reader or Acrobat.
    It may not be a real PDF file, or it may be damaged.

  • Problems with programming submit button and attachment upload

    i have a problem programming the upload "athachments" and i
    would like to know how to program the submit button to go to an
    email address. once the form is filled out i want the information
    to go into my email inbox. what script or coding to i need to add
    to the page to make these two things i mentioned above happen?the
    code for the page and where does it go. that is the reason for my
    questioning on how to program the two buttons and place the code in
    the html where it belongs so the page will function right and go to
    the email adress that i need it to go in.
    http://worldofexotics.com/submit.htm

    > There are only two ways to process form data -
    You understand that, right? You are asking about how to
    process form data -
    and I am saying that there are only 2 ways to do that.
    > 1. Use mailto:[email protected] as the action of the form
    You understand that? Each form has an action -
    <form action="..."
    --------------------^^^
    The contents of that action attribute tells the browser what
    to do when the
    form's submit button is successfully pressed.
    In other words, you could have <form
    action=mailto:[email protected]
    That would be ONE way to do it - but there are many
    disadvantages, as
    explained further in my post. The other way is method 2 -
    > Use a server-side scripting method to a) harvest the
    form's data, b)
    > process it in some manner, e.g., enter it into a
    database, c) formulate
    > and
    > send an email to one or more email recipients, and d)
    redirect the visitor
    > to some ending page
    To do that, you'd have to *have* some server-side script -
    there are quite a
    few of them to choose from but the normal host usually also
    supplies one as
    part of your hosting package.
    > You would have to decide which of these methods is best
    for your needs,
    > but if it's Method 2, then start by asking your host
    what they provide for
    > form processing.
    Do you undertand that?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "jayney" <[email protected]> wrote in message
    news:[email protected]...
    > Hi I have been sent this answer but i am still none the
    wiser
    >
    > Can you work it out? this is the answer
    > below.............................
    >
    > There are only two ways to process form data -
    >
    > 1. Use mailto:[email protected] as the action of the form
    > 2. Use a server-side scripting method to a) harvest the
    form's data, b)
    > process it in some manner, e.g., enter it into a
    database, c) formulate
    > and
    > send an email to one or more email recipients, and d)
    redirect the visitor
    > to some ending page
    >
    > Method 1 is quite simple, and is also the least
    reliable. It depends both
    > on your visitor having an email client already installed
    on their
    > computer -
    > this eliminates public computers, or home users without
    email clients
    > installed (more and more it seems) - and on the
    installed email client
    > responding to
    > the mailto call. It is not possible to use this method
    *and* send the
    > visitor to a
    > thank you page as well.
    >
    > Method 2 is the preferred method, since it eliminates
    the problems of
    > method
    > 1, but it means that you have to grapple with
    server-scripting somehow
    > (ASP,
    > CF, PHP, perl, etc.).
    >
    > You would have to decide which of these methods is best
    for your needs,
    > but if it's Method 2, then start by asking your host
    what they provide for
    > form
    > processing.
    >

  • Problem with Program RMCX0013 while executing  transaction : VL01N

    Hi All,
    We have a problem while creating a delivery and also while Posting the Goods issue. A dump occurs while creation of delivery. The delivery gets created but it creates a dump.
    PFA the dump details:
    <b>Runtime Error          PERFORM_PARAMETER_MISSING
    Except.                CX_SY_DYN_CALL_PARAM_MISSING
    Date and Time          25.06.2007 15:51:26
    ShrtText
         Missing parameter with PERFORM.
    What happened?
         A routine call specifies fewer parameters than the number
         given when defining the routine.
         Error in ABAP application program.
         The current ABAP program "SAPLMCS5" had to be terminated because one of    the     statements could not be executed.
         This is probably due to an error in the ABAP program.</b>
    The problem is the Subroutine F0002_UPDATE in the program RMCX0013 requires 13 input whereas only 9 inputs are passed.Please find the details from the dump.
    But the program RMCX0013 seems to be a standard program and the version comparision shows some change between this system and another system.
    Any inputs regarding this dump would be helpful.Thanks in advance.
    Regards,
    Raj

    Hi,
      check the note 99507.
    with regards,
    Vamsi

  • Problem with program SWN_SELSEN

    Hi ,
    I am using the program SWN_SELSEN to send my workitems to outlook. but the problem is .. My subject line is also reflecting in the body the mail.
    I mean to say.. my subject is coming twice i.e. on both subject and body of the workitem can any one let me know on how to restrict this (to remove the subject info from the body)
    Thanks
    Vamsi

    Hello Suresh,
    oot
    this is called an Expert Forums, because experts can give answers here.
    This answer again underlines the overall niveau the SDN has come downto. Suggesting to debug the application to possibly find the error is probably applicable to all problems of the R/3 system. Gaining a new number of posts by such a message is in my opinion just malicious and is not helpful at all.
    In the particular case of the program SWN_SELSEN, debugging it down to all code lines (I already have done so), the very particular section is embedded in an internal BSP call, where the debugger is not jumping into. So even when one would follow the silly advice to debug the complete report, one still wouldn't find the error.
    So here it is:
    Hello Vamsi
    The subject (workitem header line) is repeated in the body text of the eMail, when choosing "Invididual mai per work item" or "Multiple workitems per eMail". This is SAP Standard.
    The eMail body text is composed in the BSP application swn_message1 (This can be found, using SE80 selecting "BSP application" and from the SICF service tree default hos->sap->bsp->sap->swn_message1
    For each selection of the SWNSELSEN, a separate HTML template is processed
    For individual mails, the template "html_individ.htm" is used (when choosing HTML as the eMail format, otherwise it is "plain_indiv.html".
    The content of the html template shows the section, where the subject line is hard coded:
    <htmlb:documentBody>
          <htmlb:textView wrapping="TRUE" >
            <%= TEXT_PROLOG_INDIV %>
            <p>
          </htmlb:textView>
          <htmlb:group design="SECONDARYBOXCOLOR" >
            <htmlb:groupHeader>
              <%= wa_details-subject %>
            </htmlb:groupHeader>
            <htmlb:groupBody>
              <%= wa_details-body %>
              <p>
    In order to remove the subject line, you may have to comment the line <%= wa_details-subject %>, or you copy the complete service implementation to another BSP application and then re-link the other service in the SWNCONFIG parameter, where the message composition service is maintained. I have done so, and it sounds complicated and yes, it is indeed. So I suggest to comment the line(s) out.
    With the very best wishes,
    Florin

  • Problem with program logic

    hi, me havin a very funny prob w one of my mtd. here's a mtd from my bean class.
    public boolean checkForEvent (String searchdate) {
    boolean hasEvent = true;
    try {
    // This is the sql statement to modify.
    sql = "select * from event where eventstart <= to_date('" +
    searchdate + "','dd-mon-yy') and eventend >= to_date('" +
    searchdate + "', 'dd-mon-yy') and eventoption = 'yes' order by eventname asc";
    stmt = conn.createStatement ();
    rs = stmt.executeQuery (sql);
    if(rs.next())
    hasEvent = true;
    else
    hasEvent = false;
    rs.close ();
    } // end try
    catch (SQLException e) {}
    catch (Exception exp) {}
    return hasEvent;
    } // end method
    the thing i dun understand is that my program will return whatever boolean i initialise hasEvent to, regardless of what goes on inside the resultset. i'm quite sure that it's not problem of database or the if-else part. it just seems like the program dun enter the if-else condition statement. i have debugged many many times but still same old prob. any1 has any idea wat is wrong with my program logic?thks

    Looks like your getting some exceptions.
    Try to see that by putting some print statements in your catch blocks.

  • PPro CS4: Problem with program monitor widescreen video

    Hi Guys
    I shot my video in 16:9 aspect ration. I created a new project with "widescreen 48KHz DV-PAL" in PPro and I was ready to go.
    I imported the video in avi format and all was OK. Now, I opened my first avi video file from the project panel in the source monitor: the video aspect ratio was still OK.
    Now, I dragged the video from the source monitor to the sequence and the video aspect ratio was OK in the program (as far a I remember), i.e. the video in the source monitor was the same as in the program monitor. I then inserted a short mpg video in the project panel > source monitor > sequence. Then I realised the mpg aspect ratio was not the same as my avi video asoect ratio, so I decided to take out the mpg file from the whole project altogether.
    Now I'm left with a problem: the video aspect ratio in the program monitor is stuffed up... Instead of having black bars only above and below the video as in the source monitor, I now have extra black bars on the left and right of the video!
    If I already did some editing for an hour or so & realised this problem then, it would have been worse. I'm happy that I picked it up in the first 5 monutes of editing.
    I have attached a screen print of this problem - please help me guys on how fix the video in the program monitor.
    Many thanks in advance.
    Walter

    Thanks Harm & Jim
    Hmmm... so this means that the camcoders (I shot using a camcoder) cannot shoot in REAL 16:9? Even if I change the aspect ratio on my camera to be 16:9, the actual shooting is in fact 4:3. This is interesting...
    Just a matter of interest, what sort of video cameras can shoot in real 16:9?
    OK, I created a new project in standard 4:3 DV-PAL preset and imported my old PPro project file and the video in the program monitor much, much better.
    You know that's what I love about PPro: one can import a PPro project into another PPro project!
    Also, that's what I love these Adobe forums - you guys are really helpful. I wish the Ruby on Rails forums were this good as well. Anyway, thanks to all you guys!
    Walter

Maybe you are looking for

  • Excel web app Review tab with SharePoint 2013

    Is there a way to get the review tab to show up in Excel web app with SharePoint 2013 on-prem?  Users want to be able to use the "add comments" feature while in the excel web app.

  • Weird characters appear after write to a file

    Here is my story: I open a file using RandomAccessFile to replace some characters inside it. Let's say I have in the file string 4000, I replace it by string 400. It works fine. Now if I replace this number by string 40000, when I check the text file

  • Stopping a movie generating shapes

    Hi.  I'm hoping someone can help me stop this.  Any help getting this thing woring would be much appreciated.  The code comes from this site: http://www.pixelhivedesign.com/tutorials/Realistic+Flash+Smoke+Effect/ He creates a movieclip called aPuff a

  • Handling custom mouse interaction/inserting unique links

    HI All, I would like to insert links to the text, but not the html formatted one. I would like to add a handler function to the link and when the link is pressed the function could do whatever it is needed. It would be great if the link could have an

  • How parse xml in java

    i wrote java client to invoke webservice(TIBCO) as a result i am getting back xml. now i have to parse xml and use the information. can anyone pls advise on this. thanks