Can anyone correct the code in a right way...

Hi Friends
I am implementing the BADI : HRHAP00_ENHANCE_FRE1 ~ENHANCE_DOCUMENT.
Actually the BADI conatains the following code for inserting the single objectives at a time to a template.
includes
  include: incl_hap_messages,
           incl_hap_elements,
           incl_hap_enhancement.
tables
  data: lt_hri1001 type hap_t_hri1001.
work areas
  data: lw_body_elements type hap_s_body_elements.
  data: lw_hri1001       type hri1001.
  data: lw_enhancement_elements type hap_s_body_elements_add.
read base element
  read table t_body_elements into lw_body_elements
                             with key row_iid = base_row_iid
                             binary search.
  if sy-subrc = 0.
  READ REFERENCE OBJECT for the current element
    call function 'HRHAP_C_IT1001_READ_NNN'
      exporting
        plvar                 = plan_version
        otype                 = lw_body_elements-element_type
        objid                 = lw_body_elements-element_id
        subty                 = c_relationship_b606
      AUTHORITY_CHECK       = 'X'
      importing
        t_hri1001             = lt_hri1001
        s_return              = s_return.
    if not s_return is initial.
      exit.
    endif.
    read table lt_hri1001 into lw_hri1001 index 1.
    if sy-subrc = 0.
      lw_enhancement_elements-new_element_type = lw_hri1001-sclas.
      lw_enhancement_elements-new_element_id   = lw_hri1001-sobid.
      lw_enhancement_elements-weighting = 1.
      clear: lw_enhancement_elements-no_value.  "weighting is given
    use the standard reference element (FIRST FOUND REFERENCE)
      clear: lw_enhancement_elements-reference_type,
             lw_enhancement_elements-reference_id.
      append lw_enhancement_elements to t_enhancement_elements.
    INSERT THIS ELEMENT as last ELEMENTS
      enhancement_type = c_element_insert_last.
    else.
    NO REFERENCE FOUND !!!
    ENHANCEMENT not allowed without reference object
      s_return-msgty = c_message_type_e.
      s_return-msgno = '228'.
      s_return-msgid = c_message_class_catalog.
    Message where-used
      if 1 = 2.
        message e228(hrhap00_template).
      endif.
    endif.        "reference object found ?
  endif.      "body element found ?
endmethod. "IF_EX_HRHAP00_ENHANCE_FREE~ENHANCE_DOCUMENT
what I did is :
includes
  include: incl_hap_messages,
           incl_hap_elements,
           incl_hap_enhancement.
tables
  data: lt_hri1001 type hap_t_hri1001.
work areas
  data: lw_body_elements type hap_s_body_elements.
  data: lw_hri1001       type hri1001.
  data: lw_enhancement_elements type hap_s_body_elements_add.
read base element
  read table t_body_elements into lw_body_elements
                             with key row_iid = base_row_iid
                             binary search.
  if sy-subrc = 0.
  READ REFERENCE OBJECT for the current element
    call function 'HRHAP_C_IT1001_READ_NNN'
      exporting
        plvar                 = plan_version
        otype                 = lw_body_elements-element_type
        objid                 = lw_body_elements-element_id
        subty                 = c_relationship_b606
      AUTHORITY_CHECK       = 'X'
      importing
        t_hri1001             = lt_hri1001
        s_return              = s_return.
    if not s_return is initial.
      exit.
    endif.
    loop.
      read table lt_hri1001 into lw_hri1001 index 1.
      if sy-subrc = 0.
        lw_enhancement_elements-new_element_type = lw_hri1001-sclas.
        lw_enhancement_elements-new_element_id   = lw_hri1001-sobid.
        lw_enhancement_elements-weighting = 1.
        clear: lw_enhancement_elements-no_value.  "weighting is given
    use the standard reference element (FIRST FOUND REFERENCE)
        clear: lw_enhancement_elements-reference_type,
               lw_enhancement_elements-reference_id.
        append lw_enhancement_elements to t_enhancement_elements.
    INSERT THIS ELEMENT as last ELEMENTS
        enhancement_type = c_element_insert_last.
      else.
    NO REFERENCE FOUND !!!
    ENHANCEMENT not allowed without reference object
        s_return-msgty = c_message_type_e.
        s_return-msgno = '228'.
        s_return-msgid = c_message_class_catalog.
    Message where-used
        if 1 = 2.
          message e228(hrhap00_template).
        endif.
      endif.        "reference object found ?
    endloop.
  endif.      "body element found ?
to achieve my requirement i.e to insert multiple objectives in to the template at a time.But with this code, I am getting dump.
Here I just added loop...endloop to the standard code as a result i am getting the dump.
Can anyone please correct my code in a proper way.
Points are assured for correct answers.
Regards,
Sree

Hi,
    Can you tell what exactly is the dump?, If you are trying to loop internal table lt_hri1001, then the loop statement is wrong. here is the syntax.
Loop <internal table> into <workarea> [OPTIONAL where <condition>].
endloop.
I guess this is where u r getting dump.
Regards,
Aravind M

Similar Messages

  • JList and ListModel, can anyone explain the basics?

    Hi
    I have an object A containing a Vector X of objects. I want to display them in a JList. I could always use DefaultListModel and copy the items of the Vector X into the default list model using addElement. But that would create a copy of the information in vector X. That is exactly why one should use a custom list model to ensure that the data is in sync with the GUI .
    I want to add and remove items from the JList, and simultaious add and remove items from the Vector X. Can anyone proviede a samll example of how to do this.
    I have tryed myselfe, but I can not get the JList updated with the changes of the listmodel. I have read the documentation about ListDataListener, but I just don't get it. A small example would realy be appreciated!
    // Mattias

    Yse I have read the tutorial. But I don't understand it.
    Here is a small example program. Can anyone change the code so the list is updated with the canges that obviously take place (as one can see by pressing the "Dump button")
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.util.*;
    class ListTest extends JFrame implements ActionListener , ListDataListener {
        JList list;
        MyListModel myListModel;
        MyDataObject myDataObject;
        ListTest() {
            JPanel p = new JPanel();
            myDataObject = new MyDataObject();
            myListModel = new MyListModel(myDataObject.x);
            list = new JList(myListModel);
            myListModel.addListDataListener(this);
            JScrollPane listScrollPane = new JScrollPane(list);
            listScrollPane.setPreferredSize(new Dimension(200, 100));
            p.add(listScrollPane);
            JButton b1 = new JButton("Add");
            b1.addActionListener(this);
            p.add(b1);
            JButton b2 = new JButton("Remove");
            b2.addActionListener(this);
            p.add(b2);
            JButton b3 = new JButton("Dump");
            b3.addActionListener(this);
            p.add(b3);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            getContentPane().add(p);
            pack();
            show();
        public void actionPerformed(ActionEvent e) {
            if (e.getActionCommand().equals("Add")) {
                myListModel.addElement(""+ (1+myListModel.getSize()) );
                System.out.println("Added a row to the list");
            if (e.getActionCommand().equals("Remove")) {
                if (myListModel.getSize()>0) {
                    myListModel.remove(myListModel.getSize()-1);
                    System.out.println("Removed last element from the list");
                else {
                    System.out.println("No more elements to remove");
            if (e.getActionCommand().equals("Dump")) {
                System.out.println("\n\nData in the list model:");
                for (int i=0; i<myListModel.getSize() ; i++) {
                    System.out.println(myListModel.getElementAt(i));
                System.out.println("That should be the same as the vector x in the object myDataObject  :");
                for (int i=0; i<myListModel.getSize() ; i++) {
                    System.out.println(myDataObject.x.get(i));
        public void contentsChanged(ListDataEvent e) {
            System.out.println("contentsChanged");
        public void intervalAdded(ListDataEvent e) {
            System.out.println("intervalAdded");
        public void intervalRemoved(ListDataEvent e) {
            System.out.println("intervalRemoved");
        public static void main(String args[]) {
            new ListTest();
    class MyDataObject {
        Vector x;
        MyDataObject() {
            x=new Vector();
            x.addElement("1");
            x.addElement("2");
    class MyListModel extends AbstractListModel {
        Vector v;
        MyListModel(Vector v) {
            this.v=v;
        public void addElement(Object o) {
            v.addElement(o);
        public Object remove(int index) {
            return v.remove(index);
        public Object getElementAt(int index) {
            return v.get(index);
        public int getSize() {
            return v.size();
    </pre>

  • HAVING TROUBLE SAVING ITEMS IN LION AS IT IS DIFFERENT THAN SNOW LEAPORD... CAN ANYONE SHARE THE CORRECT PROCEEDURE?

    I'M HAVING TROUBLE USING THE SAVE FEATURE IN LION AS IT'S MUCH DIFFERENT THAN THAT IN SNOW LEAPORD, CAN ANYONE SHARE THE CORRECT PROCEEDURE TO SAVE A DOCUMENT?

    Revert back to Snow Leopard would be the ideal choice.
    Not writing in all caps would be nice too, it's SHOUTING
    Thirdly, Lion introduced auto-save, so you have to duplicate the file, then open the duplicate to make changes.
    Wonderfully asinine.
    Quit the program, it will ask you to save.

  • I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    again image capture is not involved with deleting photos from iPhoto in any way ever
    the paid version of iPhoto Library Manager is very good for finding duplicates as is Duplicate Annihilator
    And I have no idea who told you this - or what it means - but re-read both of my opening statements
    I was told I could delete multpiles thru image capture by transferring my iPhoto library etc
    LN

  • Can ANYONE spot the memory leak??

    Hi, I have some code here, and there is a SERIOUS memory leak. Basically, I realized the leak was there when a report tried to execute this 100,000+ times and it bogged the system down to a crawl. Can anyone spot the leak? I will explain the variables below the code:
    char* getDescription(char* chFlag, char* chDEID, char* chKey, int keysize)
    //first, we need to allocate new Byte arrays....
    jbyteArray JchFlag = (*env1)->NewByteArray(env1,1);
    jbyteArray JchDEID = (*env1)->NewByteArray(env1,2);
    jbyteArray JchKey = (*env1)->NewByteArray(env1,40);
    //next, we need to put the correct info in those byte arrays....
    (*env1)->SetByteArrayRegion(env1,JchFlag,0,1,(jbyte*)chFlag); (*env1)->SetByteArrayRegion(env1,JchDEID,0,2,(jbyte*)chDEID); (*env1)->SetByteArrayRegion(env1,JchKey,0,40,(jbyte*)chKey);
    getDescriptionID =(*env1)->GetMethodID(env1,myjclass,"getDescription","([B[B[BI)Ljava/lang/String;");
    result              =(jstring)((*env1)->CallObjectMethod(env1,myjobject,getDescriptionID,JchFlag,JchDEID,JchKey,keysize))  ;   
        returnvalue = NULL;
        if(result == NULL)
           strcpy(holder1, "**********Error Finding Description**********");
        else { //now, we convert the jstring to a char *, so we can return the proper type...                       
                returnvalue=(char*)((*env1)->GetStringUTFChars(env1,result,&isCopy)) ;
                strcpy(holder1,returnvalue);           
                if(isCopy == JNI_TRUE)                    
                    (*env1)->ReleaseStringUTFChars(env1,result,returnvalue);                         
    (*env1)->DeleteLocalRef(env1,result);
    return holder1;
    //return description;
    }//end getDescription function
    -myjclass is global, it gets its value in the initialization.
    -any variables that are not declared in this function are, of course, globally defined.

    Hello Friends,
    I had also tried to use the ReleaseStringUTFChars after making the check of whether it does a copy or not.
    For me in Windows, it works fine most of the time. But when I go on increasing the no. of strings in a Vector of objects to more than 500 or something , then it occasionally fails.
    Just before ReleaseStringUTF, I do have the copied string in char* .
    Soon after Releasing, I do get a junk in the character array.
    I dont know why it happens like this.
    Please advice.
    Everyone suggest ReleaseStringUTF.
    But why it fails in Windows.
    And any one know about how it will behave in Alpha.
    It totally fails in Alpha.
    I could not get the string at all.
    Please help
    LathaDhamo

  • Can anyone provide Error code list and causes for OBIEE10g/11g ?

    Hi
    Can anyone provide Error code list and causes for OBIEE10g/11g ?
    Regards
    Srini
    Edited by: Srini on Feb 18, 2012 10:41 AM

    Hi,
    List of Bug Fixes Included In OBIEE 11.1.1.5.0
    Admin Tool
    •7538753 SAP BW IMPORT DOES NOT RETRIEVE UNIQUE NAME FOR MEASURE COLUMNS
    •10012297 ADMIN TOOL CRASH ON VERY LARGE EXPRESSIONS – OVERFLOW AT APPROX 3200 CHARACTERS
    •10032385 TABLE MISSING IN SQL “FROM” CLAUSE – FWD PORT 8308443 TO 11G
    •10045212 EQUALITY EXPRESSION IN LTS “WHERE” CAUSES INTERNAL SQORRQLIST ERROR ON QUERY
    •10264475 ADMINISTRATION’S “SHUTDOWN SERVER” MENU SHOULD BE REMOVED
    •10265121 ADMIN TOOL EXPRESSION BUILDER CRASHES ON DOUBLE-BYTE LOGICAL COLUMN NAME
    •10394725 ON-LINE MODE CHECK-IN OF DYNAMIC INIT BLOCK CAUSES [43058] REFRESH LOCK FAILURE
    Answers
    •6521146 ERROR: “NO FILTER” WHEN USING “COMBINE WITH SIMILAR REQUEST” – UNION
    •7534635 INACTIVATING DRILLDOWN ON COLUMN VALUE ALSO INACTIVATES COLUMN HEADER LINK
    •9026854 CLARIFICATION REGARDING DATA FORMAT WHEN COMBINING REQUESTS
    •9107277 KEEP THE NUMBER PRECISION IN DATABASE WHEN “DOWNLOADING TO EXCEL”
    •9524080 PIVOT TOTAL DIFFERENT TO TABLE TOTAL WHEN REPORTAGGREGATEENABLED TRUE
    •9697529 JAPANESE CHARACTER SET NOT PASSED CORRECTLY TO DRILL REPORT IN FIREFOX BROWSER
    •9871470 SORTING ON A NULL VALUED COLUMNS GIVES ASSERTION ERRORS
    •9886904 CORRECT DOC FOR ADDING CUSTOM DATE FORMAT STRING
    •9918283 CORRECT DASHBOARD FORMATTING PROBLEMS WITH SCROLLING
    •9928318 ROW HEADER MISSING AT PIVOT TABLE VIEW FOR MIGRATED REPORTS IN 11G
    •9968574 SOME UPGRADED 10G CHARTS SHOW UP JAVA EXCEPTION
    •10023165 MAPS DO NOT WORK IN MAP VIEWS WHEN JOIN COLUMN CONTAINS A “&” CHARACTER
    •10065166 GAUGE RANGE IS NOT UPDATED WHEN IT CHANGES THE FIELD VALUE
    •10078041 ACTION LINK DOES NOT WORK WHEN COMPOUND LAYOUT ONLY HAS A MAP VIEW
    •10091354 “SCALE MARKERS” OPTION IS MISSING IN VERTICAL AXIS 2
    •10147762 CANNOT SET GAUGE FOOTER (TITLE), KEEPS SHOWING “UNDEFINEDUNDEFINEDUNDEFINED”
    •10182955 BUBBLE CHART IS NOT BEHAVING AS EXPECTED
    •10213761 CONDITIONAL DASHBOARD SECTIONS (GUIDED NAVIGATION) ALWAYS RUNS REPORTS
    •10229397 CANNOT SAVE REQUEST USING STANDARD DATE FORMATS.
    •10282140 CELL IMAGE AT BLANK CELL OF PIVOT TABLE IS NOT DISPLAYED WHEN USING COND FORMAT
    •10296730 UNABLE TO USE PRESENTATION VARIABLE IN SCALE MARKERS
    •10312496 CHARTS. MEASURE LABEL IN GRAPH PROMPTS DOES NOT CHANGE CONTENT OF THE CHART
    •10312795 ACTION LINK ON COLUMN HEADING NAVIGATION DOES NOT CONSIDER PROMPT VALUES
    •10329343 CLICKING A LINE GRAPH BETWEEN TWO DATA POINTS DRILLS TO LAST VALUE IN HORIZONTAL
    •10337649 PIVOT TABLE SHOWS BUTTONS FOR SORTING ON CALCULATED ITEMS.
    •10402102 INCORRECT RESULT WHEN USING [NEW CALCULATED ITEM] PROP IN PIVOT TABLE
    •10414887 DRILL DOWNS NOT WORKING IN CHART PIVOTED TABLE SELECTED FROM VIEW SELECTOR
    •10418875 CHART SIZE IS CHANGING AFTER WEBCAT UPGRADE FROM 10G
    •10634175 GRAPH ENGINE IS NOT RESPONDING
    •10639913 COMPLETE TEXT IS NOT SAVED IN DB IF CURSOR IS MOVED AWAY DURING INSERT
    •11711658 FILTER NEEDS TO SUPPORT UNTYPE LITERAL FOR RANK OPERATOR AS 10G DOES
    •11805468 CUSTOMIZED GAUGE VIEW IS NOT CONSISTENT WHEN EXPORTED AS PDF,HTML AND XLS
    •11817696 INCORRECT FILTER IS BUILT IF FILTER IS CONTRUCTED BEFORE SELECTING REQ. COLUMNS
    •11845286 PIVOT TABLE WITH PERCENTAGES, GRAPHED PERCENTAGE VALUES DISPLAYED ARE INCORRECT
    •11894921 GRAPH LABEL OPTIONS NOT AVAILABLE IN 11G
    •11895279 INCORRECT FILTER VALUE WHEN USING ACTION LINK WITH GRAPH
    •12412666 ALL PAGES LOSES CONDITIONAL FORMATTING
    •12561361 PSE FOR BASE BUG 10295403 ON TOP OF 11.1.1.5.0 FOR GENERIC OS
    CHARTING
    •8990756 MISLEADING INFORMATION IN DOC REGARDING PIVOT TABLE SETTINGS
    DASHBOARDS
    •7459700 ABILITY TO SPECIFY FIXED COLUMN WIDTH TO A DASHBOARD PROMPT
    •10177865 OBIEE 11G : DEFAULT VALUES CANNOT BE DE-SELECTED FROM MULTI SELECT PROMPT
    •10279722 DASHBOARD SLIDER PROMPT SHOWS THUMB VALUES WITH TWO DECIMAL PLACES FOR INTEGERS
    •10279829 DASHBOARD SLIDER PROMPT SHOWS WRONG VALUES FOR “ALL COLUMN VALUES” OR “SPECIFIC
    •10310511 “REQUIRE USER INPUT” MESSAGE APPEARS THE FIRST TIME ONLY FOR THE REQUIRED PROMPT
    •10389799 DASHBOARD NAVIGATION MAY CAUSE GETELEMENTBYTAGNAME ERROR IN IE
    •10411545 PROMPT WITH BETWEEN OPERATOR AND SQL DEFAULT VALUES ARE NOT UPGRADED PROPERLY
    •11056057 ERROR WHILE UPGRADING THE DASHBOARD WITH CERTAIN FILTER FUNCTIONS
    •11076452 ABILITY TO CONSTRAIN PROMPTS AGAINST A SLIDER PROMPT
    •11717024 ERROR 500 OCCURS WHEN SETTING ACCESSIBILITY MODE TO ON
    •12620143 PSE FOR BASE BUG 12561330 ON TOP OF 11.1.1.5.0 FOR LINUX X86 [46] (PSE #602152)
    INSTALL
    •9459177 PREREQUISITES FOR DEPLOYMENT ON SEPARATE MACHINES
    •9540009 UNIXCHK.SH ENCOUNTERS HOST NOT FOUND ERROR WHEN DNS IS NOT AVAILABLE.
    •10071302 ENTERPRISE INSTALL: CONFIGURE PORTS : FORMAT OF INI FILE
    •10126542 OBIEE 11G INSTALATION FAILS AT AS INSTANCE CREATION DUE TO PERM SIZE ERROR
    •10287335 CANNOT START BISERVER1 . SWITCH TO JSSE FRAMEWORK REQUIRED
    •10302421 OBIEE 11G WINDOWS PROMPTS FOR USERNAME / PASSWORD AFTER ENCRYPTING CREDENTIALS
    •11849674 SAG: DISCREPANCY IN DOCUMENTED ORACLE DATABASE REQUIRED FOR MAPVIEWER
    MIGRATION
    •7432799 ORACLE EUL CONVERTER CRASHED WHILE GENERATING A REPOSITORY
    REL_NOTES
    •12604761 TWO STEPS OF THE UPGRADE TO 11.1.1.5.0 ARE NOT CLEARLY DOCUMENTED
    SCHEDULER
    •10036466 “RE-RUN INSTANCE(S) NOW” MENU IS NOT AVAILABLE FOR COMPLETED JOB INSTANCES
    SECURITY
    •8996295 PROVIDE DETAIL INFORMATION TO SETUP WNA(KERBEROS) FOR OBIEE AUTHENTIFICATION
    •9216995 PROVIDE LATEST DETAIL INFORMATION ABOUT HOW TO SETUP LDAP SSL FOR OBIEE
    •10194154 TECHNOTES- PROVIDE DETAIL INFORMATION TO SETUP WNA(KERBEROS) FOR OBIEE AUTHENT
    •10198837 BIEEHOME LOGIN PAGE IS NOT DISABLED EVEN AFTER ENABLING THE SSO
    •10218031 USING EXTERNAL DB TABLE TO SET ROLES SESSION VARIABLE DOESN’T ACCEPT LONG NAMES
    •10373788 IF OBJECTGUID PUBLISHED AND SAMACCOUNTNAME CHANGED USER CANNOT CONNECT ANYMORE
    •11731080 QA:SECURITY GUIDE NEEDS UPDATE FOR DEFINING A USER SESSION VARIABLE
    SERVER
    •6510747 NETWORK FAILURE DURING PHYSICAL QUERY HANGS END USER WITHOUT ERROR MESSAGE
    •6836444 OBIEE SERVER SYSTEM DATE IS WRONG AND DOES NOT MATCH MACHINE SYSTEM DATE
    •8371912 BI SERVER CRASHES ON NAVIGATION SPACE MAP RACE – SR 3-887711721
    •9433198 DOCUMENT SYSLOG ENTRIES IN SYSTEM ADMINISTRATOR’S GUIDE
    •9696424 DOC INSTANCECONFIG PARMS ALLOWEDLANGUAGES & ALLOWEDLOCALES IN SYSADMIN GUIDE
    •9954411 PSR:MOD_SUPPORTED NOT ENABLED FOR TERADATA AND CAUSES CAMPAIGN SLOW PERFORMANCE
    •10258683 REQUEST WITH COMPLEX FILTER IS CONSUMING ALMOST ALL CPU & NO SESSION IS CREATED
    •10258755 EXCEL FAILS TO CONNECT TO 11G BI SERVER USING ODBC DSN
    •10335924 REPORT-BASED TOTALS FAIL ON MEASURES CONTAINING AGGREGATION EXPRS SUCH AS FILTER
    •10374571 NEED FLEXIBILITY TO OVERRIDE HOSTNAMES WHEN CUSTOMER DNS IS INCORRECT OR BROKEN
    •10650122 PIVOT VIEW WITH UNION OF NON – COMPATABLE TYPE ERROR IN OBIEE 11G AFTER UPGRADE
    •11804596 NQQUERY LOG LEVEL 2 IS TOO VERBOSE – BACKPORT 10308263 TO 11.1.1.5
    •11809295 NQUDMLGEN NOT GENERATING UDML FILE IN UTF FORMAT
    UPGRADE
    •9886765 ERRORS ENCOUNTERED WHEN UPGRADING WEB CATALOG USING UA.BAT
    •10121344 ERROR IN LOG USING UA TO UPGRADE BI SCHEDULER SCHEMA ON SQL SERVER DATABASE
    •11069928 UPGRADE SHOULD HANDLE PROMPT WITH INCONSISTENT VALUES AS 10G DOES
    WEB_ADMIN
    •8564456 SHARED FOLDER ACCESS PERMISSION ISSUE
    •9381764 CATALOG MANAGER COPY FUNCTION NOT WORKING AS EXPECTED
    •9739865 EXITING MANAGE SESSION RESULTS IN HTTP ERROR
    •10016252 LACKING INFORMATION ON FORCEABSOLUTECOMMANDURL FOR ABSOLUTECOMMANDURLPREFIX
    •10144989 WEB CATALOG DOES NOT UPGRADE TO 11.1.1.3.0
    •10218524 VALIDATION ERROR AFTER THE UPGRADE OF WEBCATALOG TO OBIEE 11G
    •11723425 INCORRECT DEFAULT VALUE OF DEFAULTROWSDISPLAYED IN THE INSTANCECONFIG.XML
    •11827202 OPMN NOT STARTING AFTER SETTING UP THE REPLICATION AGENT
    WEB_GNRL
    •10191078 FILTER VALUES ARE RESET IN GO URL WHEN COLUMNS ARE SORTED OR RE-ARRANGED
    •10360461 NEED ABILITY TO CONTROL NEW, DASHBOARD AND OTHER HEADER LINKS
    •11780508 10G COLUMN FILTER PROMPT WITH PROMPTCAPTION ATTR NOT UPGRADING
    •12416695 TOOLTIP EMPTY IN MAPVIEWER
    WEB_INTGRT
    •10294759 FMAP-REFERENCED IMAGES IN ANALYSIS HEADERS DON’T APPEAR IN DOWNLOADS TO EXCEL
    WEB_MKTG
    •8692820 DIRECT DATABASE CAMPAIGN LOAD FORMAT COMBINED LISTS FAILS
    •9908019 SAW SERVER CRASH WHEN LOADING A PARTICULAR CAMPAIGN
    •9935859 UNGROUP OF SEGMENT BLOCKS CORRUPTS SEGMENT DEFINTION AND BAD COUNTS
    •10331355 MOVING CRITERIA WITHIN A SEGMENT’S GROUP CORRUPTS THE INCLUSION OPTIONS
    Thanks,
    RM

  • HT2736 Having emailed myself a gift voucher, I can't redeem the code. Everytime I try it tells me I need Itunes, but I have the most up to date version - help!

    Having emailed myself a gift voucher, I can't redeem the code
    Everytime I try via the email link, it keeps telling me I need to have Itunes
    I have the most up to date version, but nothing seems to allow the Pc (hp) to open it - can anybody help?

    If this page doesn't help then you will need to try contacting iTunes support (you will need to give them as much of the serial number and activation code from the card as you can read) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

  • I am putting together a proposal for a Final Cut Pro Workstation to use with a tapeless HD camera.  Can anyone suggest the best camera (in the 5-10,000 dollar range) ?  What hardware and software should I include in the package?

    I am putting together a proposal for a Final Cut Pro Workstation to use with a tapeless HD camera.  Can anyone suggest the best camera (in the 5-10,000 dollar range) ?  What hardware and software should I include in the package?

    This is quite an open suggestion, but here are some ideas which might get you started.  There are good HD cameras in your price range from Sony, Panasonic and Canon (and maybe other manufacturers). Tapeless formats vary.  I have only worked with Sony XDCAM which seems pretty good to me.  File sizes for material shot at 35MBS are not too huge and, with the free Sony transfer and conversion programme, are easy to bring into the computer via USB direct from the camera or from a fairly inexpensive converter.  The Sony XDCAM EX3 can produce results well up to broadcast quality.
    As to hardware, you'll need a powerful MAC - iMac, Macbook Pro or MacPro with 4GB or more of RAM and a good video card.  Softwarewise, FCPX is quite a bit cheaper than FC Studio 3 and of course it's 64bit and can make better use of multi-core machines than FCP7.    It's also designed to handle HD formats with less hassle than FCP7 and is matched to the latest versions of Motion and Compressor.   But you'd probably be wise to search reviews of FCPX before you make your choice - it has some issues.
    A good HD monitor will be essential and, for colour correction etc, you may want to consider a second monitor or HD TV foe editing. ( A MacPro is generally the best machine to connect a second monitor to). 
    This should give you a good editing system, but there are many other things you could add (Photoshop, professional sound monitors, etc)
    Hope this helps a bit.
    Jonathan

  • Can anyone explain the functionality of FM f4ut_parameter_get_values ?

    Can anyone explain the functionality of FM f4ut_parameter_get_values ?
    This is used in search help to retrive values from screen.This doesnt seem to work for me

    hi,
    check this
    F4UT_PARAMETER_VALUE_GET
    Short Text
    Standard search help exit for determining contents of a srch help par.
    FunctionalityBy calling this module in a search help exit, you can find out the current contents of a search help parameter . To do this, you must pass the name of the parameter in PARAMETER.
    You must distinguish between the parameter contents that are used in the selection process of the input help process and the parameter contents that are determined by the selection process and the user selection.
    Parameter contents that are used in the selection process are default values of search help parameters, values that are included in the input help process by attaching the search help to the screen from field contents of the screen or its module pool, and possibly complex restrictions made by the user in the dialog box for restricting value. Such parameter contents can also be included in the input help process by the search help exit itself.
    The contents of the specified parameter used in the selection process are stored as complex restrictions in SELOPT_TAB after the call. If exactly one value is defined by these complex restrictions (for example if the restrictions have exactly one row and if SIGN = 'I' and OPTION = 'EQ' for this row), this unique value can be found in VALUE.
    Parameter contents that are determined by selection process and user selection are the parameter contents that are shown in the dialog box for displaying the hit list or returned on the screen. They are managed by the F4 processor in RECORD_TAB.
    This module enables you to transfer the information about the specified parameters from RECORD_TAB to RESULTS_TAB in edited form.
    Pass the name of the field of RESULTS_TAB that should contain the contents of the parameter to the function module in parameter FIELDNAME. If the row type of RESULTS_TAB is elementary, pass the value '*' in FIELDNAME. The rest of RESULTS_TAB is not changed. The values are copied row by row. By removing rows at the end or by adding intiial rows you can make sure that RESULTS_TAB has exactly as many rows as RECOD_TAB.
    Example
    You can find an example of the second kind of use of the module in the search help exit SAPBC_GLOBAL_F4_SFLIGHT of search help SFLIGHT.
    Both types of use can be found in the search help exit SAPBC_GLOBAL_F4_SFLIGHT_MIN_FR of search help SFLIGHT_MIN_FREE .
    Notes
    1. Parameters OFF_RESULT and LEN_RESULT should not be used any more since there are basic problems when using UNICODE. The contents of these parameter are still analyzed when parameter FILEDNAME is initial for compatibility reasons.
    2. Only the dialog box for restricting values can normally produce complex restrictions for a parameter.
    3. If VALUE has the value SPACE, this means that either there are complex restrictions for the parameter or the unique contents are SPACE. SELOPT_TAB must be evaluated in order to determine which of these is the case.
    4. If the search help does not have any parameter with the given name, the exception PARAMETER_UNKNOWN is triggered.
    5. Only parameter contents for the search help displayed in the hit list or the EXPORT parameters of the search help are first managed in RECORD_TAB. If the specified parameter does not satisfy one of these conditions and if parameter RESULTS_TAB is specified in the call, the exception PARAMETER_UNKNOWN can also be triggered. This is not true, however, if results were already entered for the parameter with function module F4UT_PARAMETER_RESULTS_PUT or if space was reserved for the parameter in RECORD_TAB with function module F4UT_PARAMETER_ALLOCATE. The parameter therefore should only be defined if information about the parameter contents are really required.
    6. The header lines of the specified parameter are also transferred from RECORD_TAB to RESULTS_TAB.
    7. The other parameters of this module must be defined as the parameters of the search help exit having the same name, but they are not changed by this module.
    8. RESULTS_TAB should be a standard table.
    9. The contents of the specified parameter in RECORD_TAB are copied to the specified field of table RESULTS_TAB with a MOVE of the correct type. If this is not possible, the target field is assigned the initial value.
    10. If RESULTS_TAB has no field with the name specified by FIELDNAME, only the number of rows of RESULTS_TAB is adjusted to those of RECORD_TAB as described.
    Parameters
    PARAMETER
    OFF_RESULT
    LEN_RESULT
    FIELDNAME
    VALUE
    SHLP
    CALLCONTROL
    SHLP_TAB
    RECORD_TAB
    SELOPT_TAB
    RESULTS_TAB
    Exceptions
    PARAMETER_UNKNOWN
    Function Group
    SF4U
    if helpful reward some points.
    with regards,
    Suresh Aluri.

  • Can anyone explain the advantage of iPod vs iPad over Kobo Vox for reading iBooks?

    Can anyone explain the advantage of iPod vs iPad over Kobo Vox for reading iBooks?

    Thank you Alan and  know you are right. I really can do all I need with my netbook and ereader and do not need the ipad. I think I just wanted something new and felt I may enjoy using it a lttle more than the netook. But it would be a waste just to buy one when I donlt acutally need it  And, donl't think it is worth the extra money for me the get the 4g wireless capability since I doubt I would really need it often.
    I may treat myself to the Ipad for the color, touchpad and fun to use but it is very expensive considering how little it will do for me no more than the things I want it for. It woudl be and expensive luxuray, I can do without. I actually  need t learn how to use more of the function avaiable first.  Maybe I should take up playing games and learning to take digital pictures so I can at least load them. If I could learn to do that and take a decent picture, I could start selling back all the "stuff" I have purchased on ebay. haha - I do have a nice doll collection, I would like to sell. I just do not have room for anything else. That was the primary purpose for the Kindle Ereader I bought and enjoy so much,
    But, I will hold onto the thought for a while and see how it goes and what other comments I get, If I think I cannot live without it, then I will have to rethink which one to buy, I coud get the 32 g if I did not have to pay for the 4g wireless. And, if I knew I could get help to teach me how to use and enjoy all the functions, I would give it more serious consideration. My granddaugther got one for Christmas and that was what got me interested in it. I love the size of the screen and it had good color and was fast. She even had an application where she could write her notes and it would convert into typed words. That was a neat feature, If you could print it?
    But thanks again for your comments and I will check later to see I get any other feedback.
    Sunny:)

  • Can anyone clarify the meaning of Cruise Ship data?

    Can anyone clarify the meaning of Cruise Ship data?  I recently asked for it on my account, but when I returned from my cruise I was charged all sorts of Global Roaming data charges.  No Cruise Ship usage was listed on my bill even though I only used it while at sea (tethering my PC).
    The rep I spoke with said that the billing codes used for Cruise Ship Data and Global Data are the same, and Global Data was how it was listed on my bill. What would the distinction be, then?  I assumed that Cruise Ship data would use the cruise ship's towers, but it appears that you have to worry about what country you are sailing near while at sea and whether they subscribe.  Anyone have any light to shed on this?
    Thanks!
    P.S. The service is even slower than what the cruise ship offers for $.55/minute, and the connection is not reliable. I will not be using this feature again, and cannot in good conscience recommend it.

        Thanks so much for asking, Rayray_10803. I would be happy to clarify roaming charges.
    Wireless Cruise Ship Service allows Verizon Wireless  customers to make and receive voice calls while at sea using their own mobile phone and mobile telephone number.
    This service exists on various cruise lines, through an agreement with Wireless Maritime Services (WMS), Maritime Communications Partners (MCP) and Sea Mobile to offer an advanced network on board various cruise ships for Verizon Wireless.
    For this reason, rates on cruise ships are different than they are when you visit the country without using the towers on the ship.
    Check cruise ship rates vs. international rates here vzw.com/tripplanner.
    TamaraH_VZW
    Follow us on Twitter @VZWSupport

  • Can anyone explain the main differences between CRM 2007 and CRM 7?.

    Can anyone explain the main differences between CRM 2007 and CRM 7?.
    Does CRM 2007 use the WebUI?.
    Jason

    My fault for not putting my question forward correctly.
    I have worked with CRM 7 a few times now, but my experience has jumped me from CRM 5 straight to CRM 7, having never touched CRM 2007.
    I now have an opening to work on CRM 2007 so I was intrigued to know what it physically looked like. I assume it does not use the WebUI interface?.
    Jas

  • Hi, can anyone explain the difference between the models A1457 and ME432B/A of the iPone 5s. Thanks

    Hi, can anyone explain the difference between the models A1457 and ME432B/A of the iPone 5s.

    Hi Gary,
    Model # A1457 designates that it's the European market model, which I believe works on EE, Vodafone and O2 in the UK.
    ME432B/A is the part # that, in your case, I believe, desginates a 16GB Space Grey Unlocked version...
    Someone can correct me if I'm wrong on that
    Kev

  • Can anyone give the details of SAP note 325525 .

    Hai
    Can anyone give the details of SAP note 325525 .
    Thanks
    Kumar

    What exactly do you want. Is that just the explanation in the note: If so, here it is.
    Summary
    Symptom
    WARNING: THIS NOTE HAS BEEN REPLACED.  FOR MORE CURRENT AND MORE COMPREHENSIVE INFORMATION SEE NEW NOTE 886102.
    You want to copy and or rename one or more systems (database or client copy). One or more of the systems is a BW system or is connected to a BW system.
    Caution: This note only deals with problems that occur in the BW source system connections. Other problems that occur in the BW environment (indexes) are NOT dealt with. See URL http://www.service.sap.com/bw --> Services & Implementation --> System copy & Migration.
    Other terms
    BW, source system, OLTP, database copy, client copy, system infrastructure, transport system, connections, RFC connection, trfc, transfer structure, IDoc, ALE customizing, logical system name, system changeability, renaming systems, system copy
    Solution
    Several scenarios are possible in this environment. Find the scenario relevant to your situation below and execute the steps listed or read the note(s) specified:
    Scenario 1) You do not want to copy a system but only want to rename one (changing a logical system name).
               Solution scenario 1): Execute Transaction BDLS both in the client to be renamed and in the connected BWs or BW source systems. To do this, see Notes 121163 and 369758.
               Check the RFC destinations in all connected BWs/BW source systems as described in Note 524554.
               Reactivate all partner agreements that carry the new logical system name after renaming.
    Scenario 2) You want to copy the entire system infrastructure connected by the BW source system connections (that means the entire system group) by a database copy. SAP recommends this procedure for copying systems.
               Solution scenario 2):
    If you want to rename one or more of the copied systems, then execute Transaction BDLS both in the client you wish to rename and in all the connected BW and BW source systems. See Note 121163.
                        Make sure that an RFC destination exists with the new logical name in every connected BW or BW source system.
                        Reactivate all partner agreements that carry the new logical system name after renaming.
    Change the hosts in the appropriate RFC destinations so that they refer to the correct computer. For this, see Note 524554.
    Scenario 3) You want to copy a single BW system of the group by database copy.
    Scenario 3)a) You only want to exchange the hardware of your system but do not want to rename the system.
                         Solution scenario 3)a): You do not need to execute follow-up work regarding the system connections, except for adjusting the IP address in the RFC destinations of the connected system.
    Scenario 3)b) You want to keep the original system of the copy so that you have two systems after copying.
                         Solution scenario 3)b): See Note 184754.
    Scenario 4) You want to copy a single source system of the group by database copy.
    Scenario 4)a) You only want to exchange the hardware of your system but do not want to rename the system.
                         Solution scenario 4)a): You do not need to execute follow-up work regarding the system connections, except for adjusting the IP address in the RFC destinations of the connected system.
    Scenario 4)b) You want to keep the original system of the copy so that you have two systems after copying.
               Solution scenario 4)b): See Note 184322.
    Scenario 5) You want to import a client copy in a source system.
               Solution scenario 5): See Note 325470.

  • On Maverick my i cloud will not change the verification phone number even though I have change the phone number in apple and on contacts and restarted the computer. Help? I can't get the code necessary to fix the keychain.

    On Maverick my i cloud will not change the verification phone number even though I have change the phone number in apple and on contacts and restarted the computer. Help? I can't get the code necessary to fix the keychain without it.

    You can change the phone number the verification code is sent to from a device or Mac that has your iCloud keychain enabled as follows:
    In iOS 8, tap Settings > iCloud > Keychain > Advanced. In iOS 7, tap Settings > iCloud > Account > Keychain. Make sure the phone number under Verification Number is correct. If not, enter another phone number.
    In OS X Mavericks v10.9, choose Apple () > System Preferences. Click iCloud, then click Account Details. Make sure the phone number under Verification number is correct. If not, enter another phone number.
    If you don't have access to a device or Mac with your iCloud keychain enabled, you'll have to contact Apple support to verify your identity and get assistance making the change: http://www.apple.com/support/icloud/contact/.

Maybe you are looking for