What is reason for cl_fpm_factory= get_instance( ) return initial value?

In DEV system, this piece of code is working fine. However when it moves to Testing system it dump due to cl_fpm_factory=>get_instance( ) return initial value. What could be the reason for this? Thanks!
  data lo_fpm  type ref to if_fpm.
  lo_fpm = cl_fpm_factory=>get_instance( ).
  wd_this->go_message_manager = lo_fpm->mo_message_manager.

Hi Anthony,
how sure are you that the DEV and Test system running the same Netweaver SP versions ?.  My doubt is that the test system is not NW7.01 (Ehp-1) . Or some thigs are not enabled in the configuration.
Regards
Senthi

Similar Messages

  • HT204003 if i open passbook on iphone 5, it always say cannot connect to itunes, any fix from apple tech support? and whats the reason for this problem? why do we have to figure it out and not even apple can give answer??

    if i open passbook on iphone 5, it always say cannot connect to itunes, any fix from apple tech support? and whats the reason for this problem? why do we have to figure it out and not even apple can give answer??

    actually i found out how to fix it
    1 sign out of apple account
    2 close down passbook app
    3 change year to 2013
    4 reopen passbook and sign in at the button with your apple ID
    5 change the time to auto update and it should work from now on.
    this worked for me let me know if it work for you:)

  • HT1338 Hi I am getting a light whitish bluish mark whenever i see any darker pictures. Whats the reason for it?

    Hi I am getting a light whitish bluish mark whenever i see any darker pictures. Whats the reason for it?

    Actually, here's a clearer image. The middle stroke is with 20% drawing smoothness, and 100% pressure strength.
    The top stroke is 100% both, and the bottom is 100% drawing smoothness with 20% pressure strength.
    In all three instances, the dark watercolorish ring persists.

  • What is the reson for Fun SAP_WAPI_WORKITEMS_TO_OBJECT returns no value

    Hi All
    call function 'SAP_WAPI_WORKITEMS_TO_OBJECT'
        EXPORTING
          objtype                  = 'ZAR'
          objkey                   = v_objkey
          top_level_items          = c_set
          selection_status_variant = 0001
          text                     = c_set
          language                 = sy-langu
        TABLES
          worklist                 = i_worklist
          message_lines            = i_message_lines.
    I am using Function SAP_WAPI_WORKITEMS_TO_OBJECT  by passing object type and object key and looking for top level items . I get values for i_worklist[] all the time but for one AR i dont see a value in i_worklist[] .
    I know that Functional ppl had messed up with the workflow status in IMA2N transaction by changing the status....
    I want to know what is the reason for not getting any value in i_worklist[] for some ARS and works fine for other ARS.
    I can see the work id in workflow header table but i dont get workid when i use this function .
    Could you all tell me whats the reason for not getting ,i appreciate all your help
    Thanks

    With parameter selection_status_variant = 0001, you will only get a list of active instances.
    The parameter can have the following values:
    0000     All Instances
    0001     Active Instances (Running, Ready, Committed,...)
    0002     Finished Instances (Completed, Cancelled)
    0003     Active Instances (All)
    Cheers,
    Ramki Maley.

  • Downloded apps are not workning after sync on PC on ipad 2 ! what is reason for this ?

    Hi,
    My Downloded apps are not workning after sync with PC on ipad 2 ! what is reason for this ?

    Download any free App and test if it'll get all the others Apps working.

  • GetSelectedRow( ) for JTable is returning a value of -1?

    getSelectedRow( ) for JTable is returning a value of -1?
    May I know what is the reason for this and what we can do to rectify it.

    I am selecting a row on the GUI side, but this method is returning -1. Post a SSCCE that demonstrates this.
    db

  • Whats the reason for taking more time

    Hi,
    I'm into production support, previously all loadings are fine from the past one month there is a problem in many infopackages taking more time for same no of records, normal wait time is 1 hr, but it is taking 2 to 3 hrs to complete.
    Can any body tell the reasons for this and any resolutions will be a graet help for me.
    Thanks in advance.
    Siddhu

    HI,
    Try to analyse those cube for which loading is taking more time by RSRV Transaction especially see whether dimension table size is more than 20% of fact table size.
    Another reason might be the Table Space Problem or also ask ur basis guys about the Redolog management , ask whether there is enough space while peak loading is going on....
    Assign points if helps....
    Regards,
    VIjay.

  • S.oder block - whats the reason for blocking material?

    Hi!
      Can any one tell me the reason for blocking particulat item.

    Hi
    There will be so many reasons for blocking a particular item  see the table TVFST
    01    Calculation missing
    02    Compl Confirm Missng
    03    Prices incomplete
    04    Check terms of paymt
    05    Check delivery terms
    08    Check credit memo
    09    Check debit memo
    41    not yet completed
    42    no price agreement
    43    new price as of....
    50    Authorisation Req
    51    Rejected
    There also many reasons to reject an item in sales order
    See the field ABGRU in VBAP table
    go to the table TVAG and see the values of ABGRU field in F4
    those are all the different reasons for rejecting a order item.
    Reward points if useful
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • What if a function doesn't return a value, and expected to hang.

    Hi, i'm using D2K, 6i forms.
    i've a function something like this:
    /* Function returns current slno for a transaction.
    create or replace function gen_auto_slno_fn
    (doc_vr varchar2,
    branch_vr varchar2)
    return varchar IS
    genslno VARCHAR2(15) ;
    BEGIN
    BEGIN
    SELECT lpad((nvl(SLNO,0)+1),5,0)
    INTO genslno
    FROM GEN_SLNO
    WHERE doc_name = doc_vr
    AND BRANCH_CODE=branch_vr;
    return(genslno);
    EXCEPTION
    WHEN no_data_found then
    Dbms_output.put_line('No data found in General Serial number for '||doc_vr);
    raise_application_error(-20100,sqlerrm);
    END;
    END;
    My problem is:
    suppose if such branch_code does not exist, then
    it will go exception part.
    I was expecting the 'No data ...error message ' in my forms.
    but Instead of that a message such as 'Unhandled exception occurs.
    I also tried returning a value like :
    EXCEPTION
    WHEN no_data_found then
    Dbms_output.put_line('No data found in General Serial number for '||doc_vr);
    return('ERROR');
    --raise_application_error(-20100,sqlerrm);
    END;
    It was working then.
    My question is: how do I display the whole error message on my form and raise form_trigger_failure ?
    ( also the one in the subject line!)
    Message was edited by:
    abhijithdev

    A comment on using exception handlers and raising exceptions.
    WHEN no_data_found then
      Dbms_output.put_line('No data found in General Serial number for '||doc_vr);
      raise_application_error(-20100,sqlerrm); DBMS_OUTPUT is superfluous and meaningless in production code. It should not be there... and if debugging is required, then it is easy to make it vastly superior than the very primitive DBMS_OUTPUT interface.
    Ditto for RAISE_APPLICATION_ERROR. Calling this system procedure directly, does not support logging and tracing and troubleshooting and debugging problems.
    One of the basic (I would call it the very most basic) rules in software development is to modularise. This includes wrapping system calls into wrappers - that allows additional flexibility and makes maintenance and development a lot easier.
    Instead of calling RAISE_APPLICATION_ERROR, create a wrapper PL/SQL procedure called something like RaiseException().
    Input parameters would typically be an error message number. The message for the error can also be passed.. though I prefer to have a message array (static PL/SQL var) that can be used to lookup the error message for that error code.
    As all exceptions are now raised via a single proc that you control, you can easily add debug information to it. Log the exception (using an autonomous transaction) in a log table. Add the PL/SQL call stack to the message. Write an error to the alert log for those real critical fubar errors. Call DBMS_OUTPUT if need be. Even send the error message to a DBMS_PIPE for an error console to pick up and display interactively.
    Designing and coding wrappers for system calls are a critical cornerstone of an application that is flexible and easy to maintain and extend.

  • Whats the reason for getting error this way

    when we compile a java program why do we get error like this. i am unable to find out where the problem is what could be the problem
    javac: invalid flag SimplePlayerAppelt.JAVA

    javac: invalid flag SimplePlayerAppelt.JAVA
    SimplePlayerAppelt.JAVAIt must be SimplePlayerAppelt.java (small case)

  • What is reason  for authrorization group field not showing in FD01 tocde

    Hi,
      The authrization group is showing  under Control data  when i am creating the customer manually by using the tcode FD01.but when i am creating the customer through BDC program  by using same tcode its giving the error message
    error message is aurization group( Field KNA1-BEGRU. does not exist in the screen SAPMF02D 0120  ).
    can any body  help on the above issue if knows.

    perhaps check field-sttuas of your account group
    tcodes: ob23 and obd3
    Message was edited by:
            Andreas Mann

  • Comma separated values for input and return multiple values

    Hello everyone,
    I have this simple package. Can someone suggest a way to accept multiple empno as input (comma separated) and to return set of salary values for the set of employee numbers (compatible to work with lower Oracle versions). Thanks much!
    CREATE OR REPLACE PACKAGE test_multi IS
    FUNCTION GET_sal(P_empno IN emp.empno%TYPE) RETURN NUMBER;
    END test_multi;
    CREATE OR REPLACE PACKAGE BODY test_multi IS
    FUNCTION GET_sal(P_empno IN emp.empno%TYPE) RETURN NUMBER IS
    V_sal NUMBER(10,2);
    MSG VARCHAR2(200);
    BEGIN
    SELECT sal
    INTO V_sal
    FROM emp
    WHERE empno = p_empno;
    RETURN V_sal;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    DBMS_OUTPUT.PUT_LINE('No data found.');
    IF (V_sal IS NULL OR V_sal = 0) THEN
    V_sal := 0;
    END IF;
    RETURN V_sal;
    WHEN OTHERS THEN
    MSG := SUBSTR(SQLERRM, 1, 70);
    DBMS_OUTPUT.PUT_LINE(MSG);
    END GET_sal;
    END test_multi; -- End package

    A way to do this in 10g or above...
    SQL> ed
    Wrote file afiedt.buf
      1  with e as (select '7499,7698,7654,7902' as enos from dual)
      2  --
      3  select empno, sal
      4  from emp
      5  where empno in (select regexp_substr(enos,'[^,]+',1,rownum)
      6                  from   e
      7*                 connect by rownum <= length(regexp_replace(enos,'[^,]'))+1)
    SQL> /
         EMPNO        SAL
          7902       3000
          7698       2850
          7654       1250
          7499       1600
    SQL>As for Oracle 8, .... well.... like Oracle, I no longer use unsupported versions, so I'd recommend you upgrade to something that is supported.

  • XDisplayHeight for Trusted JDS returning correct value?

    Does XDisplayHeight for Trusted JDS take into account the trusted path security bar?
    This applies to developing applications on Trusted JDS in Solaris 10 5/08 x86 with Trusted Extensions. The XDisplayHeight returns two different values for Trusted CDE and Trusted JDS. The values are:
    1024 x 744 for Trusted CDE
    1024 x 768 for Trusted JDS
    It seems that XDisplayHeight in TJDS does not subtract the trusted path bar height from the total. Is this correct. Is this associated with the fact that the trusted path bar should always be on top?
    Thank you
    Josh
    Edited by: fcbseci on Oct 6, 2008 9:35 AM

    This issue has been answered here: http://www.opensolaris.org/jive/thread.jspa?threadID=77800&tstart=0. The following bugs are also associated with this issue. Sun has been working this issue for some time now however a final decision has not be made on how to resolve it.
    6607645 [tjds] trusted stripe can sometimes cover the panel on logging into tjds
    6700652 [tjds][vermillion] trusted stripe moves to bottom of screen on changing screen resolution
    6617487 [nevada] trusted stripe disappears on changing resolution
    6699741 [vermillion tjds] creating new panel disappears behind stripe, cannot be moved
    6573285 TJDS Trusted Stripe should be at the bottom of the screen (configurable)
    Thanks Josh

  • TableCombos[finalj].getSelectedIndex() always returns initial value

    Hello.
    I have a JPanel class with an array of JComboboxes. The combos are filled in from an SQL database at the JPanel launch, and the indexes are selected also based on a database. However, when I change the combo selection, the action fires, but getSelectedIndex() on the combo just changed returns the original selection number.
    I tried using the code below to try and catch the loss of the selection:
    this.tableCombos[finalj].addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed (ActionEvent e){
    System.out.println(table.getColumnAt(finalj)+" (combo["+finalj+"]) changed: " + tableCombos[finalj].getSelectedIndex() + " selected");
    The selection item visually changes, while the selectIndex returns as the original selection, not the new one. what could be causing this?
    TIA,
    - aenik

    You should use an ItemListener (see attached sample working code) instead of overriding the actionPerformed() method. The following is an excerpt from the JComboBox class's actionPerformed() method:
    This method is public as an implementation side effect. do not call or override.
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    public class ComboTest {
    public static void main(String args[]) {
      new ComboTestFrame();
    class ComboTestFrame extends JFrame {
    JComboBox jcb = new JComboBox(new Object[] {"Red","Green","Blue","Yellow"});
    ComboTestFrame() {
      super();
      /* Components should be added to the container's content pane */
      Container cp = getContentPane();
      cp.add(BorderLayout.NORTH,jcb);
      jcb.addItemListener(new ItemListener() {
       public void itemStateChanged(ItemEvent evt) {
        Object obj = evt.getSource();
        if (evt.getStateChange() == ItemEvent.SELECTED)
         System.out.println("Selected index: " + ((JComboBox) obj).getSelectedIndex());
      /* Add the window listener */
      addWindowListener(new WindowAdapter() {
       public void windowClosing(WindowEvent evt) {
        dispose(); System.exit(0);}});
      /* Size the frame */
      setSize(200,200);
      /* Center the frame */
      Dimension screenDim = Toolkit.getDefaultToolkit().getScreenSize();
      Rectangle frameDim = getBounds();
      setLocation((screenDim.width - frameDim.width) / 2,(screenDim.height - frameDim.height) / 2);
      /* Show the frame */
      setVisible(true);

  • Error in phase: DISASSEMBLE Reason for error: PATCH_FILE_READ_ERROR

    Hello All
    I am applying support Package: SAPKB70009 on SAP ECC 6.0 for component SAP_BASIS with release 700.
    I am getting following error
    The import was stopped, since an error occurred during the phase
    DISASSEMBLE, which the Support Package Manager is unable to resolve
    without your input.
    After you have corrected the cause of the error, continue with the
    import by choosing Support Package -> Import queue from the initial
    screen of the Support Package Manager.
    The following details help you to analyze the problem:
         -   Error in phase: DISASSEMBLE
         -   Reason for error: PATCH_FILE_READ_ERROR
         -   Return code:  12
         -   Error message: OCS Package: SAPKB70009
    Guys can you please  shed some light on how to solve this issue.

    Hi,
    There might be 2 reaons for the error.
    1) corrupted files in EPS/in  or improper CAR of the files.
    2) the file permissions in EPS/in check whether the files are having proper permssions like 775 with owner <SID>adm
    -Srini

Maybe you are looking for

  • Incoming mail going into Drafts folder

    I don't have any mail rules set. I get hundreds of emails a day all going to my Inbox (or Junk). Mail from one particular sender goes into my Drafts folder so I usually miss it. How can I stop this?

  • Previewing HD in a third monitor

    Hi, I know this has been asked here before. I've searched for it in the forums but I still have some doubts about it. First of all. These are my specs: Windows 7 Mother Board: ASUS M4A77D AMD Phenom 9650 Quad-Core Processor: 2.30 Ghz RAM: 4.00 Gb Vid

  • Portal security import/export errors ORA-01653

    When doing a security export after a few attempts we are getting the following error ORA-01653: unable to extend table PORTAL30.WWUTL_SEC_TX_PERSON$ by 2362205 in tablespace PORTAL Details below We referred the note related to ORA-01653 on metalink N

  • Copy CS5 batch files to CS6

    Hi: Am in the process of upgrading from CS5 Design Standard to CS6 DS. I had no problem copying my custom InDesign workspaces from the earlier version to the new version. What I'm having a hard time with, is how can I get the batch files I use in Pho

  • Keyboard layout recognition

    Hi I am an italian user of FCS. As we know the program works by recognizing only the English keyboards. Every time I start the program I must set the keyboard layout in the Default US mode. Is there a way to avoid this? Or, at least, can automate thi