FPINTM1 Mass Interest problem

Hello,
I have a problem with transaction FPINTM1, calculation of mass interest. I want to do as many documents as interest FICA documents to the pre-selection of the transaction. The case is that if the same or VKONT GParted, I just type a document generated interest with the total amount, the sum of the documents selection.
Case Study, 20% interest in with the same contract (VKONT1)
Now I calculated like this:
Doc1 of 5000 u20AC
Doc2 u20AC 4000
Result: Doc (INT) 1 of 1800 u20AC
I want to calculate this:
Doc1 of 5000 u20AC
Doc2 u20AC 4000
Result: Doc (INT) 1 of 1000 u20AC
                     Doc (INT) 2 800 u20AC
I thought of using the 1788 event, but can not find where to modify it to generate the documents by me separately and I do not unify them.
thanks

Hi,
thanks for the response,
i checked the field icond of table TFK056A.
the function (EVENT 2085) return Two items, because i want to calculate two interest for two documents, for the same vkont.
  CALL FUNCTION 'FKK_RESTRUCTURE_ITEMS_FOR_INT'
    EXPORTING
      i_rfki1                = i_rfki1
    TABLES
      t_fkk_int_item_chosen  = t_fkk_int_item_chosen
      et_fkk_int_item_compos = et_fkk_int_item_compos.
And the result is the same...:( i don't achieved yet...

Similar Messages

  • Interesting problem for all students and programmers Have a look!

    Hello. This is a very interesting problem for all programmers and students. I have my spalsh screen class which displays a splash when run from the main method in the same class. However when run from another class( in my case from my login class, when user name and password is validated) I create an instance of the class and show it. But the image in the splash is not shown. Only a squared white background is visible!!!.
    I am sending the two classes
    Can u tell me why and propose a solution. Thanks.
    import java.awt.*;
    import javax.swing.*;
    public class SplashScreen extends JWindow {
    private int duration;
    public SplashScreen(int d) {
    duration = d;
    // A simple little method to show a title screen in the center
    // of the screen for the amount of time given in the constructor
    public void showSplash() {
    JPanel content = (JPanel)getContentPane();
    content.setBackground(Color.white);
    // Set the window's bounds, centering the window
    int width = 300;
    int height =400;
    Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (screen.width-width)/2;
    int y = (screen.height-height)/2;
    setBounds(x,y,width,height);
    // Build the splash screen
    JLabel label = new JLabel(new ImageIcon("logo2.gif"));
    JLabel copyrt = new JLabel
    ("Copyright 2004, Timetabler 2004", JLabel.CENTER);
    copyrt.setFont(new Font("Sans-Serif", Font.BOLD, 16));
    content.add(label, BorderLayout.CENTER);
    content.add(copyrt, BorderLayout.SOUTH);
    Color oraRed = new Color(100, 50, 80, 120);
    content.setBorder(BorderFactory.createLineBorder(oraRed, 10));
    // Display it
    setVisible(true);
    // Wait a little while, maybe while loading resources
    try { Thread.sleep(duration); } catch (Exception e) {}
    setVisible(false);
    public void showSplashAndExit() {
    showSplash();
    // System.exit(0);
    // CLASS CALLING THE SPLASH
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.JMenu;
    import javax.swing.*;
    import java.applet.*;
    import java.applet.AudioClip;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.net.URL;
    public class login extends JDialog
    String username;
    String password;
    JTextField text1;
    JPasswordField text2;
    login()
    //super("Login To TIMETABLER");
    text1=new JTextField(10);
    text2 = new JPasswordField(10);
    text2.setEchoChar('*');
    JLabel label1=new JLabel("Username");
    JLabel label2=new JLabel("Password");
    label1.setFont(new Font("Garamond",Font.BOLD,16));
    label2.setFont(new Font("Garamond",Font.BOLD,16));
    JButton ok=new JButton(" O K ");
    ok.setActionCommand("ok");
    ok.setOpaque(false);
    ok.setFont(new Font("Garamond",Font.BOLD,14));
    ok.setBackground(SystemColor.controlHighlight);
    ok.setForeground(SystemColor.infoText);
    ok.addActionListener(new ActionListener (){
    public void actionPerformed(ActionEvent e)
    System.out.println("ddddd");
    //validatedata();
    ReadText mytext1=new ReadText();
    ReadText2 mytext2=new ReadText2();
    String value1=mytext1.returnpassword();
    String value2=mytext2.returnpassword();
    String user=text1.getText();
    String pass=text2.getText();
    System.out.println("->"+value1);
    System.out.println("->"+value2);
    System.out.println("->"+user);
    System.out.println("->"+pass);
    if ( (user.equals(value1)) && (pass.equals(value2)) )
    System.out.println("->here");
    // setVisible(false);
    // mainpage m=new mainpage();
    // m.setDefaultLookAndFeelDecorated(true);
    // m.callsplash();
    /// m.setSize(640,640);
    // m.show();
    //m.setVisible(true);
    SplashScreen splash = new SplashScreen(5000);
    // Normally, we'd call splash.showSplash() and get on with the program.
    // But, since this is only a test...
    splash.showSplashAndExit();
    else
    { text1.setText("");
    text2.setText("");
    //JOptionPane.MessageDialog(null,
    // "Your Password is Incorrect"
    JButton cancel=new JButton(" C A N C E L ");
    cancel.setActionCommand("cancel");
    cancel.setOpaque(false);
    cancel.setFont(new Font("Garamond",Font.BOLD,14));
    cancel.setBackground(SystemColor.controlHighlight);
    cancel.setForeground(SystemColor.infoText);
    cancel.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e)
    dispose();
    System.exit(0);
    JPanel pan1=new JPanel(new GridLayout(2,1,20,20));
    JPanel pan2=new JPanel(new GridLayout(2,1,20,20));
    JPanel pan3=new JPanel(new FlowLayout(FlowLayout.CENTER,20,20));
    pan1.setOpaque(false);
    pan2.setOpaque(false);
    pan3.setOpaque(false);
    pan1.add(label1);
    pan1.add(label2);
    pan2.add(text1);
    pan2.add(text2);
    pan3.add(ok);
    pan3.add(cancel);
    JPanel_Background main=new JPanel_Background();
    JPanel mainpanel=new JPanel(new BorderLayout(25,25));
    mainpanel.setOpaque(false);
    // mainpanel.setBorder(new BorderLayout(25,25));
    mainpanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder
    ("Login To Timetabler Vision"),BorderFactory.createEmptyBorder(10,20,10,20)));
    mainpanel.add("West",pan1);
    mainpanel.add("Center",pan2);
    mainpanel.add("South",pan3);
    main.add(mainpanel);
    getContentPane().add(main);
    void validatedata()
    ReadText mytext1=new ReadText();
    ReadText2 mytext2=new ReadText2();
    String value1=mytext1.returnpassword();
    String value2=mytext2.returnpassword();
    String user=text1.getText();
    String pass=text2.getText();
    System.out.println("->"+value1);
    System.out.println("->"+value2);
    System.out.println("->"+user);
    System.out.println("->"+pass);
    if ( (user.equals(value1)) && (pass.equals(value2)) )
    SplashScreen splash = new SplashScreen(5000);
    splash.showSplashAndExit();
    dispose();
    else
    { text1.setText("");
    text2.setText("");
    //JOptionPane.MessageDialog(null,
    // "Your Password is Incorrect"
    public void callsplash()
    {SplashScreen splash= new SplashScreen(1500);
    splash.showSplashAndExit();
    public static void main(String args[])
    { login m=new login();
    Dimension screenSize=Toolkit.getDefaultToolkit().getScreenSize();
    int screenPositionX=(int)(screenSize.width/2-390/2);
    int screenPositionY=(int)(screenSize.height/2-260/2);
    m.setLocation(screenPositionX, screenPositionY);
    //m.setResizable(false);
    m.setSize(600,500);
    m.setSize(390,260);
    m.setVisible(true);

    Hi Luis,
    Use tcode XK99 for vendor mass change, select the Fax no field. You have to take note that this changes will be only 1 fax number for all vendors.
    Else you have to use BAPI for mass change.
    regards,
    maia

  • Dynamic SQL and Bulk Bind... Interesting Problem !!!

    Hi Forum !!
    I've got a very interesting problem involving Dynamic SQL and Bulk Bind. I really Hope you guys have some suggestions for me...
    Table A contains a column named TX_FORMULA. There are many strings holding expressions like '.3 * 2 + 1.5' or '(3.4 + 2) / .3', all well formed numeric formulas. I want to calculate each formula, finding the number obtained as a result of each calculation.
    I wrote something like this:
    DECLARE
    TYPE T_FormulasNum IS TABLE OF A.TX_FORMULA%TYPE
    INDEX BY BINARY_INTEGER;
    TYPE T_MontoIndicador IS TABLE OF A.MT_NUMBER%TYPE
    INDEX BY BINARY_INTEGER;
    V_FormulasNum T_FormulasNum;
    V_MontoIndicador T_MontoIndicador;
    BEGIN
    SELECT DISTINCT CD_INDICADOR,
    TX_FORMULA_NUMERICA
    BULK COLLECT INTO V_CodIndicador, V_FormulasNum
    FROM A;
    FORALL i IN V_FormulasNum.FIRST..V_FormulasNum.LAST
    EXECUTE IMMEDIATE
    'BEGIN
    :1 := TO_NUMBER(:2);
    END;'
    USING V_FormulasNum(i) RETURNING INTO V_MontoIndicador;
    END;
    But I'm getting the following messages:
    ORA-06550: line 22, column 43:
    PLS-00597: expression 'V_MONTOINDICADOR' in the INTO list is of wrong type
    ORA-06550: line 18, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 18, column 5:
    PLS-00435: DML statement without BULK In-BIND cannot be used inside FORALL
    Any Idea to solve this problem ?
    Thanks in Advance !!

    Hallo,
    many many errors...
    1. You can use FORALL only in DML operators, in your case you must use simple FOR LOOP.
    2. You can use bind variables only in DML- Statements. In other statements you have to use literals (hard parsing).
    3. RETURNING INTO - Clause in appropriate , use instead of OUT variable.
    4. Remark: FOR I IN FIRST..LAST is not fully correct: if you haven't results, you get EXCEPTION NO_DATA_FOUND. Use Instead of 1..tab.count
    This code works.
    DECLARE
    TYPE T_FormulasNum IS TABLE OF VARCHAR2(255)
    INDEX BY BINARY_INTEGER;
    TYPE T_MontoIndicador IS TABLE OF NUMBER
    INDEX BY BINARY_INTEGER;
    V_FormulasNum T_FormulasNum;
    V_MontoIndicador T_MontoIndicador;
    BEGIN
    SELECT DISTINCT CD_INDICATOR,
    TX_FORMULA_NUMERICA
    BULK COLLECT INTO V_MontoIndicador, V_FormulasNum
    FROM A;
    FOR i IN 1..V_FormulasNum.count
    LOOP
    EXECUTE IMMEDIATE
    'BEGIN
    :v_motto := TO_NUMBER('||v_formulasnum(i)||');
    END;'
    USING OUT V_MontoIndicador(i);
    dbms_output.put_line(v_montoindicador(i));
    END LOOP;
    END;You have to read more about bulk- binding and dynamic sql.
    HTH
    Regards
    Dmytro
    Test table
    a
    (cd_indicator number,
    tx_formula_numerica VARCHAR2(255))
    CD_INDICATOR TX_FORMULA_NUMERICA
    2 (5+5)*2
    1 2*3*4
    Message was edited by:
    Dmytro Dekhtyaryuk

  • Very Interesting problem, need urgent resolution

    Hi Guys,
    I have very weird and interesting problem which I have to fix urgently. Appreciate any help you guys can provide.
    I have one query which runs in All our database enviornments but Prod. Our UAT is refreshed by Prod Fortnightly so I am sure that it is not a data problem. I even tried for very small dataset making sure to select same data in UAT and Prod.
    Error:
    ORA-00932: inconsistent datatypes: expected NUMBER got -
    Query:
    select level ,--works if we reomve this
    xmlelement("L1", XMLATTRIBUTES(resource_name as "L1" ,resource_id as "p_resource_id",resource_manager_id as "p_rm_id",FTE, project_hrs ,
                 misc_hrs , total_hrs, avg_tot_hrs, Perc_utilization))
          from (  SELECT   resource_id,
               resource_name,
               resource_manager_id,
               trim(to_char(round(SUM (FTE),1), '999,999,999,999.9')) FTE,
               trim(to_char(round(SUM (project_hrs),1), '999,999,999,999.9')) project_hrs,
               trim(to_char(round(SUM (misc_hrs),1), '999,999,999,999.9')) misc_hrs,
               trim(to_char(round(SUM (total_hrs),1), '999,999,999,999.9')) total_hrs,
               trim(to_char(round(SUM (total_hrs)/decode(SUM (FTE),0,1,SUM (FTE)),1), '999,999,999,999.9')) avg_tot_hrs,
               trim(to_char(ROUND (SUM (project_hrs) * 100 / decode(SUM (expected_project_hrs),0,1,SUM (expected_project_hrs)), 1), '999,999,999,999.9'))
                  perc_utilization
        FROM   (    SELECT   CONNECT_BY_ROOT resource_name AS resource_name,
                             CONNECT_BY_ROOT resource_id AS resource_id,
                             CONNECT_BY_ROOT resource_manager_id AS resource_manager_id,
                             employee_type_code,
                             FTE,
                             project_hrs,
                             misc_hrs,
                             total_hrs,
                             avg_tot_hrs,
                             expected_project_hrs
                      FROM   (    SELECT   r.username resource_name,
                                           resource_id,
                                           resource_manager_id,
                                           employee_type_code,
                                           fte,
                                           project_hrs,
                                           misc_hrs,
                                           total_hrs,
                                           avg_tot_hrs,
                                           expected_project_hrs
                                    FROM   TIME_UTILILIZ_ORG_SUM_L3M_MV r
                              START WITH   resource_id = 129523
                             CONNECT BY   PRIOR r.resource_id = r.resource_manager_id)               
                CONNECT BY   PRIOR resource_id = resource_manager_id)
    GROUP BY   resource_id, resource_name, resource_manager_id)
              start with resource_id =129523 connect by prior resource_id=resource_manager_id; --works if we remove thisIf we remove outermost connect by, it runs so not a xmlelement problem as well. Any idea?
    Edited by: 783830 on Jul 22, 2010 6:58 AM

    I'm not sure if this will help you, but:
    with my_tab as (select 1 resource_id, 0 resource_manager_id, 1 project_hrs from dual union all
                    select 2 resource_id, 1 resource_manager_id, 1 project_hrs from dual union all
                    select 3 resource_id, 1 resource_manager_id, 1 project_hrs from dual union all
                    select 4 resource_id, 2 resource_manager_id, 1 project_hrs from dual union all
                    select 5 resource_id, 2 resource_manager_id, 1 project_hrs from dual union all
                    select 6 resource_id, 0 resource_manager_id, 2 project_hrs from dual union all
                    select 7 resource_id, 6 resource_manager_id, 2 project_hrs from dual union all
                    select 8 resource_id, 7 resource_manager_id, 2 project_hrs from dual),
    --- end of mimicking some data
        results as (select resource_id,
                           project_hrs,
                           prior resource_id prev_resource_id,
                           level lvl,
                           sum(project_hrs) over (partition by connect_by_root (resource_id)) tot_project_hrs
                    from   my_tab
                    connect by prior resource_id = resource_manager_id),
       results2 as (select resource_id,
                           connect_by_root resource_id top_resource_id,
                           project_hrs,
                           prior resource_id prev_resource_id,
                           level lvl
                    from   my_tab
                    connect by prior resource_id = resource_manager_id
                    start with resource_manager_id = 0)
    select r1.resource_id,
           r1.project_hrs,
           r1.tot_project_hrs,
           r2.top_resource_id,
           r2.prev_resource_id,
           r2.lvl
    from   results r1,
           results2 r2
    where  r1.resource_id = r2.resource_id
    and    r1.lvl = 1
    order by resource_id;
    RESOURCE_ID PROJECT_HRS TOT_PROJECT_HRS TOP_RESOURCE_ID PREV_RESOURCE_ID        LVL
              1           1               5               1                           1
              2           1               3               1                1          2
              3           1               1               1                1          2
              4           1               1               1                2          3
              5           1               1               1                2          3
              6           2               6               6                           1
              7           2               4               6                6          2
              8           2               2               6                7          3

  • Interesting problem in HK wording

    Hi experts,
    i get a interesting problem for handling HK wording.
    i am doing a project which take input from the web by using JSP and store the result to Oracle DB(charset UTF8).
    i found that some character is change to something like this
    "# & 3 7 0 3 2 ;" rather that a a unicode character like \u90A8
    Do any expert tell me why it change to a string rather that a unicode character?
    From Timothy

    &#37032 is the unicode in html/JSP for browser display,
    it is a unicode too.
    in java, /u37032 is used instead.
    so they are the same.

  • Interesting problems with the 1.2.2 Debugger and String.substring(int)

    Guys/Gals,
    Here's an interesting problem to ponder...
    I define the following values in my class:
    private String descriptorClassName = null;
    private String userObjectClassName = null;
    private String name = null;
    I run the following piece of code as part of the constructor:
    descriptorClassName = this.getClass().getName();
    userObjectClassName = descriptorClassName.substring(0, descriptorClassName.indexOf("Descriptor"));
    name = userObjectClassName.substring(userObjectClassName.lastIndexOf(".")+1);
    The first line assigns the value of "com.foo.user.UserDataDescriptor" to descriptorClassName.
    The second line assigns the value of "com.foo.user.UserData" to userObjectClassName.
    The third line assigns the value of "UserData" to name.
    As I step through the code, I see the first two values being set, and yet the third value for name is reported by the debugger as:
    "name = null".
    I added a call to log4j, which reports that that value of name has been correctly set!
    This seems to be a result of the String.substing(int) call, as the call to Sring(substring(int, int) is fine.
    Has anyone come accross this one before?
    Does anyone have any workarounds other than:
    name = userObjectClassName.substring(userObjectClassName.lastIndexOf(".")+1, userObjectClassName.length());
    Cheers all.
    Regards,
    Chris.

    I've been trying to reproduce this problem and it always works perfectly. The debugger tells me that name = "UserData". I'm using JDev 3.2.2 and my project is using JDK1.2.2_JDeveloper. Here's the exact source code I'm trying.
    package com.foo.user;
    public class UserDataDescriptor {
    private String descriptorClassName = null;
    private String userObjectClassName = null;
    private String name = null;
    public UserDataDescriptor() {
    descriptorClassName = this.getClass().getName();
    userObjectClassName = descriptorClassName.substring(0, descriptorClassName.indexOf("Descriptor"));
    name = userObjectClassName.substring(userObjectClassName.lastIndexOf(".")+1);
    System.out.println("end of constructor");
    public static void main(String[] args) {
    UserDataDescriptor userDataDescriptor = new UserDataDescriptor();
    null

  • Interesting Problem to Solve

    Hello all,
    I have an interesting problem to solve. We are building a
    kiosk like screen that loads websites live from their url, then we
    need to overlay a Flash movie with some bullet points and
    description of the content / site underneath.
    The pages change every couple minutes to a new website, then
    put up new Flash describing it.
    Some of the sites take over the browser if attempting to load
    through frames, so frames are out.
    Even if I try and load through an iFrame still takes over
    parent browser.
    Suggestions?
    Thanks in advance,
    Hunter

    when the song is playing tap near the top of the album cover and it will bring up a small menu with a repeat and shuffle icon if shuffle is on it will be blue click it then it will go white and should be off
    hope this works for you i had the same prob and it took me ages to get it off

  • Ipod not being recognized...Windows XP Mass Storage Problem

    I'm like many of you who installed the new Itunes 7 and is having the same connection problems. My 30g video Ipod will not be recognized on my laptop and itunes. I believe my usb cord is working properly because when I connect my ipod into the laptop it charges.
    I've tried everything that was said on this forum: the five r's, disk mode, updating drivers, etc.
    But I was wondering: I have the iCarPlay FM Transmitter Has anyone noticed, that when they connect their ipod into it, a error pops up on the screen: "USB Connection and Firmwire are not compatible"...something along that line. And now when I connect my ipod, the sound is absoultely terrible! It only comes out of one speaker in my car. My friend owns an ipod nano and hers works perfectly with my transmitter.
    Now my other question: I don't see my ipod in the device manager...but I do see is Mass Storage Controller highlighted with a big yellow exclamtion triangle. I click on it and try to install from the ipod cd and nothing happens, I can't even uninstall it. Do you think that's my ipod not working?
    Also, I've tried connecting my ipod to my two computer desktops and it's not recognized either and I also tried connecting my ipod to my sister's Mac computer and nothing happens.
    Any other suggestions to help my ipod? When the heck is Apple going to respond with a new update?
    I should of just bought the Zune instead of the iPod!
    Dell Inspiron 700m   Windows XP   laptop

    Follow the instructions in this link: http://docs.info.apple.com/article.html?artnum=305136 Even if there are no updates available, follow the instructions to reload your USB driver. After that, go into Device Manager, right click on your iPod and reformat it (FAT32). After this go into iTunes and Restore your iPod.
    "I should of just bought the Zune instead of the iPod!"
    I know you are frustrated, but statements like this don't exactly motivate others here to help you. And if you think that would solve your problem, go to the Zune discussion groups.

  • An interesting problem for HP All-in-one machines

    I posted a problem Sunday about my system freezing during boot. It was suggested that my power supply was probably underpowered. See link below for the thread:
    https://forum-en.msi.com/index.php?threadid=43996&sid=
    I bought a new 480W power supply (see specs at bottom) to resolve the problem. After installing it, I was surprised to see it freeze at boot-up again. So, this time I unplugged each USB individually. It turns out the device causing the problem was my new HP all-in-one printer/scanner/copier.
    I checked HP's site to find out that interestingly enough the computer was trying to boot from the digital camera card slots! Anyway, I downloaded the new firmware for my printer and everything is working great now.
    I am glad I replaced my power supply though, now I can overclock without worrying too much. Plus, the PS that came with my case was a piece of junk .

    Yep you Must watch those Do It All USB Devices, And you are 100% Correct Getting rid of the PSU that came with your Case, is the BEST Upgrade that you could have made Period!............Sean REILLY875

  • Interesting Problem in VA4Java: Using POST with forward(req, res)

    I am trying to use POST Metod with forward(request, response) in VisualAge for java using webSphere test environment and getting an error page. Interesting thing is that if I set a breakpoint then I get the desired page otherwise an error page. However, if use GET Method everything works fine. What confuses me is that why POST method is not working without setting a breakpoint and running the code in debug mode? Does it has to do with WebSphere test environment or problem of using POST method with requrest forwarding in servelt API?

    Hi there,
    I am beginning in developping jsp / servlet in VAJ3.5 and Websphere Test Environment.
    i manage to run the servlet properly. unfortunetely the jsp is not working properly : in my hello.jsp (this example is coming from tomcat4.0), there is a method 'request.getContextPath()'
    WTE send me a message : 'method not found in interface javax.servet.http.HttpServletRequest'
    Any idea hox to solve this?
    VAJ3.5, WTE use JSP1.0, is it something linked to this?
    Thanks to you.
    Regards
    Hugues

  • N96 mass storage problem

    Hi my friends
    I have nokia n96 (RM-247) not branded and I experienced some problems after I install the new firmware 30.033. When I connect the phone in mass storage mode I am receiving the following message: Exception Processing Message c0000013 Parameters 75b6bf7c 4 75b6f7c 75b6bf7c with options Cancel, Try Again, Continue. I tried all of them but after few seconds the message appears again. I tried this on several computers all of them using windows xp, still the same. When I connect the phone in PC Suite then everything is OK. Any solutions??? Thanks in advance! 

    Sounds like something has messed up somewhere and created a memory problem
    Try taking your memory card out then connecting in mass storage, does the problem persist, 
     If it does then try the reset factory settings, and see if that helps,
     If that doesn't work then go for a format of the mass memory followed by a
    hard reset (remember to back up all of your data first)
    To format the mass memory, tools, file manager ,E:Mass Memory, options, format
    To hard reset.
    1. Switch off the phone.
    2. Hold down the following three buttons: Green (the call answer button), * button, and '3' button.
    3. While holding these buttons, hold the power button for a second to switch on the phone.
    4. Release when the phone shows the nokia hands logo or shows other signs of life like the language selection screen.
    It may take a few attempts and very flexible fingers.

  • Help: Interesting Problem

    I need help. If any compationate soul is willing to help, I would appreciate it greatly!!! Please reply here or send the code to [email protected]
    Problem: A palindrome problem
    Study the following interesting fact:
    (1)Take any number N,
    (2) reverse it to get another number NN,
    (3) add N and NN: NNN = N + NN
    See if the resulting number NNN in (3) is a palindrome.
    If not, keep doing steps 1 and 2 to NNN.
    Write a program to generate a number less than 10000 and keep doing steps (1), (2) and (3), until in step (3) you get a palindrome.
    Print the how many steps were needed to stop the process.
    Thanks!!!

    public static void main(String[] args) {
    for (int count = 0; count < 10000; count++) {
    int N = anyNumber;
    int NN = Magic.reverseIt(N);
    int NNN = N + NN;
    if (Magic.isPalindrome(NNN)) {
    System.out.println(NNN);
    break;
    }

  • Mass maintenance problem

    Hi all,
    I'd like to execute a mass copy for purchasing info records (transaction code: MEMASSIN).
    Comparing with another mass maintenance transaction such as XK99, why there is no mass creation for the info records? Is it configurable?
    Thanks

    I checked the log in t-code SLG1 but couldn't find too much more information in there..
    Changes could not be saved
    Message no. M&106
    Diagnosis
    Due to inconsistencies, your changes could not be saved in the database.
    Procedure
    To find out why the error occurred, try changing a single data record using the normal change transaction and not in this transaction.
    With txn XK06 the user didn't have problems.
    Also, while checking again the information provided by user I realized that she's also trying to update field LFA1-LOEVM.
    I checked there in that table... and that field was not visible, does this mean it's not Mandatory?
    We made a little debug and found out that to update this field the txn checks for other fields and documents...

  • A very interesting problem with metadata...

    Hello, this issue has us contemplating leaving the IT environment to open a food joint. I hope this is the right place for this question.
    Background:
    We have hundreds of thousands of PDF files created over a 12 year span; all of these files contain no metadata whatsoever and are of the historical kind so OCR is nearly non-existent. The files are named using naming conventions given by historians, so each “collection” has its own naming structure completely different from the others.
    The Task:
    To automatically (thru batch, script or third party software), utilize the existing naming convention of each individual collection and files and populate its own basic metadata fields.
    The problem(s):
    I could create a script that transposes the directory structure into a CVS file, from there, not sure if I can parse it on to an XML file or if is even possible to make an XMP or FDF file. And assuming that it can be done, how do you make a batch that reads from the file containing the directory structure and incorporates it into the PDF file itself.
    Examples
    Collection 1: YYYYMMDD-Pub_Type-Pub_Number
    Collection 2: Pub_Number- Pub_Type-Author-Desc- YYYYMMDD
    From both examples the data can be manually entered into the metadata fields, but since each file is different, it will take forever and a day to accomplish that.
    I am not looking for a cookie cutter solution, I know that the parameters will change from collection to collection, but when you consider that a collection can have over 10k PDF files, a script is the only way to go, and is definitively a lot easier to modify the scripts to fit the collection.
    We also contemplated mass murder/suicide but figure it was better to ask for ideas/help… :-)

    Mmmh,
    I saw the answer you got. Looks a little bit complicated.
    I think the answer depends on you scripting knowledge.
    The more simple way seems to me to use vbs (or vba or.....what you know) and acrobat SDK IAC section.
    So you can use file/folder statements and special metadata (IAC) commands in one script
    and there is no need to use special structured files like xml, simple csv or txt should be enough.
    HTH, Reinhard

  • My 701 mass memory problem

    my nokia 701 is showing mass memory unavailable after formarting it with a pc

    Hi chijiokejason, 
    Welcome to Nokia discussions board! 
    I advise you to perform a soft reset on your phone to refresh the settings and this will make the mass memory available again. If the issue persists, please update your device using Nokia Suite.
    Let us know how you get on and feel free to post any other questions you may have.
    Regards,
    astra2025 
    Press the 'Accept Solution' icon if I have solved your problem, Kudos my post if my advice has helped you!

Maybe you are looking for

  • Delete mail from server

    I use a pop3 account for mail. Can I set up the mail program to delete mail from server when I delete mail locally?

  • Field's content is not fully  visible in  Sap Transaction iview

    Hello Friends,                 I have deployed a Sap Transaction iview on my portal. I am facing a issue.  When i do F4 help on a field, the content of columns is not fully visible in the opened up popup window.     Is there any way to adjust the col

  • How do I trash mail in iOS 7.0.3?

    Just updated to iOS 7.0.3 on iPad and cannot delete read mail without going to edit mail.  Not sure I want to up date iPhone 5 until this is resolved. 

  • A problem using MobileMe mail with new Firefox upgrade?

    I can no longer attach photos/documents to my MobileMe outgoing messages. This problem seems to have coincided with the recent Firefox "upgrade" 7.0.1?

  • Display all objects used in a program

    Hi guys, i want to create a Zprogram to Display all objects used in a program. is there any class that can help me plzzz. CL_WB_PGEDITOR CL_WB_TBEDITOR. CL_WB_EDITOR..... thks