Help needed to find out BADI's for Transaction "PECM_CHANGE_STATUS"

Hi folks,
I was told to use BADI "HRECM00_ACTIVATION" and code in the Method "CALC_SAL_ADJUSTMENT" within it. After coding and executing my Transaction "PECM_CHANGE_STATUS" it does'nt stop at the method (inspite of keeping a breakpoint).
So, after suggestions from some of you folks i tried the below 2 methods to find out the relavant BADI's
1) First way, putting a breakpoint at "CALL METHOD cl_exithandler=>get_class_name_by_interface" via SE24 and found only one BADI in exit_name which is "HRPAD_SUBTY_CHECK".
2) Other way i checked the Package of suggested BADI "HRECM00_ACTIVATION" , which i found as "PAOC_ECM_ADM_BL". ANd when i go to SE80, for this package when i check the Enhancements section->Classic BADIs. i found about 15 BADI's ..Is this the right way to check for a BADI ? If not, how to know the relavant BADI's for my transaction "PECM_CHANGE_STATUS"
Awaiting for response. Thanks!

Hi,
  1. The BADI "HRECM00_ACTIVATION" does exist in this transaction, did you activate the implementation after writing the code?  The method is called in the FM HR_ECM_CALC_SAL_ADJUSTMENT.  You can try executing with breakpoint at the FM HR_ECM_CALC_SAL_ADJUSTMENT.
  2. You can try using the program in the code gallery to find user exit/Badi. Link: [Badi/exit finder|https://wiki.sdn.sap.com/wiki/display/Snippets/ToFindoutUserexitsandBAdI%27s%28New+format%29].
  3. In case you are working on ECC 6.0 the first point ( "CALL METHOD cl_exithandler=>get_class_name_by_interface"  ) mentioned by you might now return all the BADIS, as SAP has introduced a new method by which BADIS are invoked. You can try searching for Kernel Badi in SAP Help.
Regards,
Sai

Similar Messages

  • To find out BADI implementation for a standard transaction

    Like for User Exit is there any standard code to find the BADI implemetation for a Transaction Code.
    If so please paste the code.

    Hi pagal,
    The following is the code for the report program which lists Userexits and BAdi's for a given Tcode...
    Regards
    Karthik D
    <b>P.S.: Reward Points if this is Helpful</b>
    *& Report  ZDK_FIND_BADI
    REPORT  ZDK_FIND_BADI.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    * Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    * Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    * For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.

  • Help required in finding out the tables for FS-Claims Management module

    Hi All,
    In FS - claims Management module, i need to find out from which tables we can fetch the following fields,
    INSURED             : insured person
    DESCINSURED     : Description of insured person
    CLAIMANT     : person eligible for benefits
    DESCCLAIMANT     : Description of insured claimant
    OUTSTRES     : Outstanding reserve
    PAID             : paid amount
    INCURRED     : paid amount + outstanding reserve LOSSDESC     : loss description
    Thanks & Regards,
    Anil

    Hi Anil,
    I was searching for the fields you mentioned using SE15 and came up with lot of hits. I thought, it would be good if you do the same thing and you can find the relevant tables as might you have good idea in this area.
    I will tell you the procedure and I hope it will give you good results.
    1) Go to SE15 (Repository Info System)
    2) Click on "ABAP Dictionary"
    3) Click on "Fields"
    4) Select "Table Fields"  and enter description as "insured" on the right hand side panel with Application component as "FS"
    5) Click "Execute" (F8) and you will lot of hits.
    You need to search through it to find relevant tables for your purpose.
    Hope this will give you an idea.
    Regards,
    Vicky
    PS: Award points if helpful

  • Finding out  BADI's for  a Transaction

    Hi,
        I want to find out the Badi's for a Particular Transaction. Is there any Specific Method for finding out the Badi's for a Transaction.

    Hi Krish,
    Check out this Prgm and execute it ...
    TABLES : TSTC,
             TADIR,
             MODSAPT,
             MODACT,
             TRDIR,
             TFDIR,
             ENLFDIR,
             SXS_ATTRT ,
             TSTCT.
    DATA   : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA   : FIELD1(30).
    DATA   : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
                 P_PGMNA LIKE TSTC-PGMNA .
    DATA  wa_tadir type tadir.
    START-OF-SELECTION.
      IF NOT P_TCODE IS INITIAL.
        SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
      ELSEIF NOT P_PGMNA IS INITIAL.
        TSTC-PGMNA = P_PGMNA.
      ENDIF.
      IF SY-SUBRC EQ 0.
        SELECT SINGLE * FROM  TADIR
                        WHERE PGMID = 'R3TR'
                         AND  OBJECT = 'PROG'
                         AND  OBJ_NAME = TSTC-PGMNA.
        MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
        IF SY-SUBRC NE 0.
          SELECT SINGLE * FROM  TRDIR
                          WHERE NAME = TSTC-PGMNA.
          IF TRDIR-SUBC EQ 'F'.
            SELECT SINGLE * FROM  TFDIR
                            WHERE PNAME = TSTC-PGMNA.
            SELECT SINGLE * FROM  ENLFDIR
                            WHERE FUNCNAME = TFDIR-FUNCNAME.
            SELECT SINGLE * FROM  TADIR
                            WHERE PGMID = 'R3TR'
                              AND OBJECT = 'FUGR'
                              AND OBJ_NAME EQ ENLFDIR-AREA.
            MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
          ENDIF.
        ENDIF.
        SELECT * FROM TADIR INTO TABLE JTAB
                      WHERE PGMID = 'R3TR'
                        AND OBJECT in ('SMOD', 'SXSD')
                        AND DEVCLASS = V_DEVCLASS.
        SELECT SINGLE * FROM  TSTCT
                        WHERE SPRSL EQ SY-LANGU
                        AND   TCODE EQ P_TCODE.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',
             20(20) P_TCODE,
             45(50) TSTCT-TTEXT.
        SKIP.
        IF NOT JTAB[] IS INITIAL.
          WRITE:/(105) SY-ULINE.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
         sort jtab by OBJECT.
        data : wf_txt(60) type c,
               wf_smod type i ,
               wf_badi type i ,
               wf_object2(30) type C.
         clear  : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
          LOOP AT JTAB into wa_tadir.
          at first.
           FORMAT COLOR COL_HEADING  INTENSIFIED ON.
           WRITE:/1 SY-VLINE,
                 2 'Enhancement/ Business Add-in',
                41 SY-VLINE ,
                42 'Description',
                105 SY-VLINE.
           WRITE:/(105) SY-ULINE.
          endat.
          clear wf_txt.
            at new object.
             if wa_tadir-object = 'SMOD'.
             wf_object2 = 'Enhancement' .
             elseif wa_tadir-object = 'SXSD'.
             wf_object2 = ' Business Add-in'.
             endif.
             FORMAT COLOR COL_GROUP INTENSIFIED ON.
            WRITE:/1 SY-VLINE,
                   2 wf_object2,
                  105 SY-VLINE.
            endat.
           case wa_tadir-object.
            when 'SMOD'.
              wf_smod = wf_smod + 1.
                   SELECT SINGLE MODTEXT into  wf_txt
                                         FROM  MODSAPT
                                        WHERE  SPRSL = SY-LANGU
                                          AND  NAME = wa_tadir-OBJ_NAME.
             FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
            when 'SXSD'.
          For BADis
             wf_badi = wf_badi + 1 .
            select single TEXT into wf_txt
                               from SXS_ATTRT
                              where sprsl     = sy-langu
                                and EXIT_NAME = wa_tadir-OBJ_NAME.
             FORMAT COLOR COL_NORMAL INTENSIFIED ON.
            endcase.
            WRITE:/1 SY-VLINE,
                   2 wa_tadir-OBJ_NAME hotspot on,
                  41 SY-VLINE ,
                  42 wf_txt,
                  105 SY-VLINE.
             AT END OF object.
             write : /(105) sy-ULINE.
             ENDAT.
          ENDLOOP.
          WRITE:/(105) SY-ULINE.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No.of Exits:' , wf_smod.
          WRITE:/ 'No.of BADis:' , wf_badi.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(105) 'No userexits or BADis exist'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(105) 'Transaction does not exist'.
      ENDIF.
    AT LINE-SELECTION.
      data : wf_object type tadir-object.
      clear wf_object.
      GET CURSOR FIELD FIELD1.
      CHECK FIELD1(8) EQ 'WA_TADIR'.
      read table jtab with key obj_name = sy-lisel+1(20).
      move jtab-object to wf_object.
      case wf_object.
      when 'SMOD'.
        SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST   SCREEN.
      when 'SXSD'.
         SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
        CALL TRANSACTION 'SE18' AND SKIP FIRST   SCREEN.
      endcase.

  • My powerbook's been stolen! need to find out serial number for insurance co

    can anyone tell me where i can find out what a computer's serial number is if i don't have the computer anymore?
    many thanks for any help you can give me; my insurance company is being a pain in the butt.
    oliver
    PowerBook G4   Mac OS X (10.4.1)  

    The serial number is on the box the machine came in; it is on your sales receipt; if you backed up your machine by cloning to an external drive, the serial number can be found in System Profiler; if you have an APP, the serial number is on the Agreement. If you've ever had the machine in for service at an AASP, they may have a record of the serial number, or it may be on the paperwork you received from them.
    If none of these are available to you, then you should call AppleCare at 800.275.2273 in the US (or find AppleCare's phone number on your country's Apple site). Maybe they can offer you more suggestions.
    Good luck.
    Tuttle

  • Help needed to find a replacement HDD for Dell Studio 1558

    Hi,
    My laptop HDD is 5 yr old and started to give a lot of read/write errors recently, I'm also finding very difficult to back the data from my laptop to my Seagate external HDD.When I copy the files to external HDD it gives I/O error. When multiple files are copied the fan runs at high speed makes lot of noise and the laptop.shuts down due to overheating. Due to this I got a chkdsk to scan and fix the errors on my external drive due to data copy failure taking additional 4hrs to scan for errors. My laptop.internal drive is Seagate momentus ST9500325AS 5400 rpm 500 GB,2.5" internal 8 MB cache SATA 3.0 GB/s drive and find that the drive is unavailable in my country.
    I've just seen Seagate momentus Thin ST500LT012 500 GB 5400 RPM 16 MB Cache SATA 3.0 GB/s 2.5" internal Laptop/Notebook Hard disk on Amazon and would like to.know if I can replace my old with this
    I was not sure to order this online since it reads thin I doubt if it would be slimmer than the old one and might not be an alternative.
    I would also greatly appreciate if someone could suggest an alternative HDD preferably Seagate to replace for Dell 1558 studio
    Thanks in advance.
    Kar

    First try to make a Dell Backup and Recovery 16 GB Bootable USB using the latest version of Dell Backup and Recovery:
    http://dellwindowsreinstallationguide.com/dell-backup-and-recovery-1-8-1-71/
    The instructions are for Windows 8.1 but should be similar for Windows 7.
    New drives will be slimmer. I recommend you replace the HDD with a SSD if you want a significant performance boost. Crucial SSDs include a spacer for seating into your system and guarantee compatibility:
    http://www.crucial.com/usa/en/compatible-upgrade-for/Dell/studio-1558

  • Plz help me in finding out the BADI or menu exit for IW32

    HI
    in Tcode IW32, based on the user status(ASTTX), the menu items ,EXTRAS -> TASK LIST SELECTION -> all items have to be grayed out.
    Please help me to find out BADI or menu exit which ever is available.
    Thanks,
    Pallavi.

    Hi,
         Please check if the below user exit/BADI is useful.
         Enhancement
         IWO10012                                Maintenance order: Priority handling on central header
         BAdi
         IWO_UI_USEFLEX                     BAdI for Calling Up an Alternative UI
    Regards,
    Srini.

  • How to find out Authorization Object for Plant

    Hi,
    I have to implement an Authorization check for Plant in My Report Program.
    Is there any transaction which can help me to find out Authorization Object for any field like Material and plant?
    Thanks,
    Mamta

    Using SU21 u can create Authorisation Object.
    The ABAP command AUTHORITY-CHECK is used for performing authorizaton checks in programs.
    check f1 help on AUTHORITY-CHECK for the syntax.
    check these links
    link:[http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a92195a9-0b01-0010-909c-f330ea4a585c;jsessionid=(J2EE3417500)ID1605942050DB11298929682009193279End]

  • TS1646 We have several apple devices in our family who use my debit card for itune charges.  I need to find out which device (itune account) these charges are coming from.  Can you help?

    We have several apple devices in our family who use my debit card for itune charges.  I need to find out which device (itune account) these charges are coming from. Can you help?

    You can't tell which device a purhcase was made on, but if your family members each have their own iTunes account to which your card is linked then you can check the purchase history on each of those accounts via the Store > View Account menu option on your computer's iTunes - that should have 'purchase history' section with a 'see all' link to the right of it

  • I no longer have access to system folders that allow me to remove old or incorrect PAGES templates. Need to find out how to do that. The only way I can do it now is to blank the template and replace the bad template with a blank.

    I no longer have access to system folders that allow me to remove old or incorrect PAGES templates. Need to find out how to do that. The only way I can do it now is to blank the template and replace the unwanted template with a blank. It was previously possible to go to MY TEMPLATES and remove the unwanted templates. I don't if this issue is before or since installation of 10.8 (a nightmare in my case, which led to significant failure issues).  And because I haven't tried to remove templates since finally managing to install 10.8 (now at 10.8.4), I don't know if this is typical of the newer OS or a problem. I've been a Mac user for more than 25 years, but I think I'm nearing the end of the road. By the way, I've never needed to do this before because the manuals always offered an answer... they don't seem to do that anymore. In any case, I don't know how this works... I'd prefer an email reply if that's possible. But that would probably be too easy, and I don't know how to get a reply.

    Thanks, I appreciate the help.  I think this is one of the problems Apple is creating by changing the OS so often. I had fomer colleagues at [a major aerospace contractor] who told me that so many original files were ultimately lost because of the deadly change in the "Save As" operation that they are now afraid of every OS update. Apple has badly damaged their support base with that very prominent company (they won't update now until they've fully examined and understand changes in the pre-conditioned nature of OS computer functions), and they are a whole lot less enthaled with Mac-related equipment/software. Can't blame them, I too used orginal files that way (as easy-to-use templates), and lost some important files before I realized what was happening (to late to revert). Companies should not have to retrain employees each time an OS gets an update, it's can be very expensive several different ways. They learned a painful lesson with that one. And because I'm now retired and don't use multiple devices, I need iCloud like I need a hole in the head... but I'm told there's no way to keep Apple out of my computer. Fortunately, because of major problems when initially installing Mountain Lion, one hold-over of the hardware/software damage I experienced was that iCloud can no longer access my computer even though everything else is working fine again. That was the only "good luck" I had as a result of that expensive nightmare.

  • I have had Adobe XI for about two years and My harddrive just crashed. My backups were part of the failure so I can't get it back. I purchased it from a third part supplier and it was a download. I need to find out how to get it restored. I can send scree

    I have had Adobe XI for about two years and My harddrive just crashed. My backups were part of the failure so I can't get it back. I purchased it from a third part supplier and it was a download. I need to find out how to get it restored. I can send screen shots of all of the drive location where the drive is still good and I can see my Adobe Acrobat pro information, but the download itself is missing. NEXT STEP?

    If you are talking about Reader (you did post in the Reader forum), then just download http://get.adobe.com/reader/enterprise. However Reader is free not purchasable. You can download a trial then install using your serial number, which if you didn’t register or write down somewhere you will be out of luck to track down.
    Download a free trial or buy Adobe products | Adobe downloads

  • I need to find out what a charge was for?

    I need to find out what a charge was for on my account?

    Check your Purchase History
    http://support.apple.com/kb/ht2727

  • Help to find out sound driver for HP pavilion dv3 Notebook PC Product number: LD936PA#UUF

    Hello everyone,
    My laptop is HP pavilion dv3 Notebook PC Product number: LD936PA#UUF
    My sound driver is uninstalled accidently and i dont have back up. So i need to download. But i cant find exact one. I have tried various one from hp support but all of them show me hardware detected unmatched. Can you help me to find out the exact one?
    Thanks advance.
    This question was solved.
    View Solution.

    Hi:
    This is the driver from your specific model's support page.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-89350-1&cc=us&dlc=en&lc=en&...

  • Can someone help me to find out a study guide for VCA DCV certification

    Hi,
    Could you someone help me to find out the study guide for VCA DCV..
    With Regards,
    karthik.N

    Download the exam blueprint, and have the objectives in mind as you work through the Fundamentals training: (VCA-DCV) VCA-Data Center Virtualization

  • Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.

    also say explorer not reading SWF files and I have to reload them? Not sure what that is either,
    Thanks
    Jim

    Hi Nancy
    Trying to update my site got to make some changes.  Do you work on sites via remote? I am on Cloud.
    : Nancy O. 
    Sent: Monday, September 01, 2014 3:47 PM
    To: James Neidner
    Subject:  Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    Need help " Can't find a valid editor for this file extension" not sure why I am getting and this or what to do.
    created by Nancy O. <https://forums.adobe.com/people/Nancy+O.>  in Dreamweaver support forum - View the full discussion <https://forums.adobe.com/message/6692200#6692200>

Maybe you are looking for

  • Error Stored Procedure Upgrading database from SBO 2007A PL42 to SBO 8.8

    Hi, When executing the SBO 8.8 PL00  upgrade procedure for databases for an "old" database 2007A PL 42, upgrtade stops whith an error concerning a missing stored procedure "_TmSp_CorrectWrongDocLineNumberInOINMForIPF which is not found". The error de

  • Fast refresh materialized view on demand but not working

    Hi all, I've created a simple table called xx using the following statements: 1.) create table xx(x1 varchar2(10),x2 varchar2(10),x3 varchar2(10); 2.) alter table xx add primary key (x1,x2); I've also created a materialized log on xx using: 3.) creat

  • How to call gnuplot command from java

    Hi there, In our course, we are required to develop an GUI for gnuplot. In case you don't know about gnuplot, it's a plotting program and has lots of command. We want to use java and swing, but now we don't know how to call gnuplot command from java,

  • Flash CS6 crashes when compiling iOS app

    Hi there, I'm stumped. I built an app in Flash CS6. The app has 70 swfs in its asset folder. When I test on the desktop, all is good. Unfortunately, Flash crashes when I try to publish via Ad hoc deployment with AIR 3.2 (also 3.4). The weird thing I

  • Is there something restricting my row height to 30.872mm?

    Hi, I have a table in InDesign CC (2014.1) that won't allow a row height any greater than 30.872mm. It's like there's some phantom force that stopping it. Googling the problem, I have found instructions for chaning the maximum, although this seems to