Right field for index

Hello
F1 is the only key field of big transparent table T.
I use the following SELECT FROM :
SELECT  *
FROM T
WHERE F1 = XX AND F5 = YY
Should I create the index that includes both fields (F1 , F5) or just F5?
How does the system choose indices during selection operation?
thanks

F1 is the only key field of big transparent table T.
Not clear, because this could mean big as in many rows or long data rows or both...
How does the system choose indices during selection operation?
That's a long story. If you're interested you should do some background reading, a start might be [Wikipedia's database entry|http://en.wikipedia.org/wiki/Database#Indexing], but there's plenty others (if you're using Oracle I strongly recommend looking at the Oracle documentation).
I use the following SELECT FROM :
SELECT * FROM T WHERE F1 = XX AND F5 = YY
Should I create the index that includes both fields (F1 , F5) or just F5?
Due to lack of information obviously nobody will be able to answer your question. And once you actually started gathering the details, the answer should become more obvious to you...
Let's assume that your field F1 is very selective (i.e. specifying a value will return just few rows), then an additional index which contains fields F1/F5 is not expected to have much benefit. After all, we like to avoid defining additional indexes if possible, because it means additional overhead during updates (indexes have to be maintained) and it also makes the life of the database optimizer harder (more choices to pick from).
Now, if the result set of your query is huge and returns most table rows, then it might actually even be better to do a full table scan and not to look at any index at all (simple reason is that an index adds another level of indirection, i.e. the database first has to identify the index rows and then look up for those rows the actual data from the table).
And finally what about comparing frequency of database updates on your tables versus frequency of running your one specific query, space considerations (additional index needs more space), etc. One should make sure to consider all those things and in the end you can probably give the answer yourself...
Cheers, harald

Similar Messages

  • SAP DDIC support for Index - Limitation of 16 fields

    As some of you know DB2 Index advisor at times recommends indexes with more than 16 fields, Unfortunately SAP doesn't support it creating them from SAP DDIC level (SE11).
    We had a recent issue in OLTP system where BW extractor on FAGLFLEXT wasn't performing as expected for a delta run. SAP OSS Support wasn't of much help. We already had an index on TIMESTAMP field, unfortunately the SQL generated by BW Delta run wasn't using TIMESTAMP field for the DELTA run. DB2advisor recommended index for the bad sql resolved the issue for us.
    Is there a DB6 DBSL related profile parameter to remove the max index field limitation ?

    Thanks Frank as always for quick response.
    I have also got an official response from SAP DDIC Development team
    Here are the details for others who want to know -
    Regarding your question why DDIC supports only up to 16 index fields:
    Our applications are supposed to run on several database platforms.
    In order to guarantee portability of applications across all of these
    DB platforms, we have to set the limits accordingly. Unfortunately,
    there is at least one platform that does only support up to 16
    index fields and thus we cannot support more in the DDIC. We can only
    increase this limit when all supported DB versions - and this might be
    very old ones because we cannot force customers to always migrate to
    the newest DB version - support this.

  • Not all fields for Business partner are exported

    Hello,
    I am exporting Business partner data from CRM to another system, through XIF. I get on target system XML file with Business partner data. But I have only standart fields. I can't get fields, which was created my company for own use.
    For example, for Business partner I have Business Agreement, but after export to XML, I have no Business agreement data in another system. But I have standart data, for example, Business partner Name, ID, ets.
    Anybody know what I can do to export all the fields for Business partner? Some transaction or somthing else? Where can I customize output XML with Business partner data?
    Best regarda,
    Alexander.

    Hi,
    You have the right observation. There is no mandatory fields for BP. It means you can update any single field against CardCode. CardCode is the only mandatory field which is the only primary key must be unique.
    Thanks,
    Gordon

  • Customize fields for BP in CRM 4.0

    Hi all,
    I would appreciate if you could provide me the best practice for customizing, i.e. remove, add and rename fields for a BP in CRM 4.0. As I can see, for one single change in a standard view, e.g. remove a field group, a new dataset has to be created. As a result, every view related to the dataset has to be duplicated since only one dataset is possible per view.
    Is there any easier way to go?
    Thanks,
    //anders

    Hi
    Refer to the building block link below for BP enhancement of master data fields
    http://help.sap.com/bp_crmv250/CRM_DE/index.htm
    Regards
    Dinaker vikas

  • Replication of CUSTOMER fields (Z fields) for a material

    Hi *,
    I have followed a manual to replicate z fields in CRM.
    I have just defined :
    a Z fm in R/3 , in order to fetch a brand new material created in R/3
    then  a set type with attributes and I have assigned this set type to this category and hierarchy.
    Finally I have implemented the badi PRODUCT_CUSTOMER2.
    The Bdoc comes empty, meant that the z fields are not transported from R/3.
    I think that the fm in R/3 ,inspite off no errors is badly defined.
    I think parameters of FM (export, import, tables, changing) are fine.
    Have u got any example of code concerning your Z fm.
    My code is the following:
    FUNCTION Z_SEND_PROD_TO_CRM.
    ""Interfase local
    *"  IMPORTING
    *"     REFERENCE(I_OBJ_CLASS) LIKE  BAPICRMOBJ-OBJCLASS
    *"     REFERENCE(I_OBJ_NAME) LIKE  BAPICRMOBJ-OBJ_NAME
    *"     REFERENCE(I_BAPICRMDH2) LIKE  BAPICRMDH2 STRUCTURE  BAPICRMDH2
    *"       OPTIONAL
    *"     REFERENCE(I_KEYWORD_IN) LIKE  CRM_PARA-KEYWORD_IN
    *"     REFERENCE(I_CRMRFCPAR) LIKE  CRMRFCPAR STRUCTURE  CRMRFCPAR
    *"  EXPORTING
    *"     REFERENCE(E_DO_NOT_SEND) LIKE  CRM_PARA-XFELD
    *"  TABLES
    *"      T_INT_TABLES STRUCTURE  BAPIMTCS
    *"      T_BAPISTRUCT STRUCTURE  BAPIMTCS
    *"      T_MESSAGES STRUCTURE  BAPICRMMSG
    *"      T_KEY_INFO STRUCTURE  BAPICRMKEY
    *"      T_BAPIIDLIST STRUCTURE  BAPIIDLIST
    *"      T_OTHER_INFO STRUCTURE  BAPIEXTC
    *"  CHANGING
    *"     REFERENCE(C_BAPICRMDH2) LIKE  BAPICRMDH2 STRUCTURE  BAPICRMDH2
    *"     REFERENCE(C_RFCDEST) LIKE  CRMRFCPAR STRUCTURE  CRMRFCPAR
    *"     REFERENCE(C_OBJNAME) LIKE  BAPICRMOBJ-OBJ_NAME
    DATA: ls_mara        TYPE mara.
    *       ls_marc        TYPE marc.
    Communication Structure
      DATA: BEGIN OF ls_com_key,
               struct(20),
               matnr(40),
            END OF ls_com_key.
    Communication structure (additional MARA data)
      DATA: BEGIN OF ls_com_data1,
               ZZ_AREA_PR LIKE mara-ZZ_AREA_PR,
               ZZPROD_EJEC LIKE mara-ZZPROD_EJEC,
               ZZ_COD_UER LIKE mara-ZZ_COD_UER,
               ZZTIP_PROD LIKE mara-ZZTIP_PROD,
              ZZ_EMISION_PROG LIKE mara-ZZ_EMISION_PROG,
              ZZ_COD_CONTRATO LIKE mara-ZZ_COD_CONTRATO,
              ZZ_CANAL LIKE mara-ZZ_CANAL,
              ZZ_NAT_ID LIKE mara-ZZ_NAT_ID,
            END OF ls_com_data1.
    Communication structure (additional MARC data)
    DATA: BEGIN OF ls_com_data2,
              mfrgr(8),
              ladgr(4),
              vbamg(13),
              vrvez(7),
              vbeaz(7),
           END OF ls_com_data2.
    Field Symbol for Casting BAPIMTCS
      FIELD-SYMBOLS:
          <source_x> TYPE x,
          <target_x> TYPE x.
    Additional Fields used
    DATA: lv_matnr TYPE mara-matnr.
    DATA: ls_BAPISDCOND TYPE BAPISDCOND.
    DATA: ORIGNAL_COST TYPE BAPISDCOND-COND_VALUE.
      DATA:
    BEGIN **************************************************************
    ATTENTION: This declaration is needed, to get the right offset for
               a later assign (to prevent alignment error at statement
               ASSIGN ... CASTING ...)
       lv_casting          TYPE f,                             "#EC NEEDED
               Never insert a new definition between LV_CASTING and
               and LS_BAPIMTCS !!!
       ct_bapimtcs         TYPE bapimtcs.
    END ****************************************************************
      FIELD-SYMBOLS:
          <ledsource_x> TYPE BAPISDCOND,
          <ledtarget_x> TYPE BAPISDCOND,
          <lfs_data> type any.
    DATA: gc_condition TYPE tabname30  VALUE 'BAPISDCOND'.
      CASE i_obj_name.
        WHEN 'MATERIAL'.
    We want to pick up the additional fields from MARA
    Mapping of MARA fields into table t_other_info
          LOOP AT t_int_tables WHERE tabname = 'MARA'.
            ASSIGN t_int_tables-data TO <source_x> CASTING.
            ASSIGN ls_mara TO <target_x> CASTING.
            IF <source_x> IS ASSIGNED AND
               <target_x> IS ASSIGNED.
              <target_x> = <source_x>.
            ELSE.
              CONTINUE.
            ENDIF.
            ls_com_key-struct  = 'MARA'.
            ls_com_key-matnr   = ls_mara-matnr.
            MOVE-CORRESPONDING ls_mara TO ls_com_data1.
            t_other_info-field1  = ls_com_key.
            t_other_info-field2  = ls_com_data1.
            APPEND t_other_info.
    We want to pick up the additional fields from MARC
           lv_matnr = t_int_tables-data+3(40).
           CLEAR ls_marc.
           CALL FUNCTION 'MARC_SINGLE_READ'
             EXPORTING
               matnr = lv_matnr
    STILL NEEDS SOME WORK HERE
    There is a 1 to many relationship between MARA and MARC
    and we need to determine how to handle this.
    For testing purposes Plant 10 is hard coded
    werks = '10 '
    END
             IMPORTING
               wmarc = ls_marc
             EXCEPTIONS
                OTHERS = 5.
           MOVE-CORRESPONDING ls_marc TO ls_com_data2.
           t_other_info-field3  = ls_com_data2.
           APPEND t_other_info.
          ENDLOOP.
          WHEN 'LEDELIVERY'.
    *t_int_tables
          LOOP AT  T_BAPISTRUCT WHERE tabname = 'BAPISDCOND'.
            ASSIGN T_BAPISTRUCT-data TO <ledsource_x> CASTING.
            ASSIGN ls_BAPISDCOND TO <ledtarget_x> CASTING.
            IF <ledsource_x> IS ASSIGNED AND
               <ledtarget_x> IS ASSIGNED.
    *Following will pass data from T_BAPISTRUCT-data to ls_BAPISDCOND
    *Both are having separate memory areas.
              <ledtarget_x> = <ledsource_x>.
            ELSE.
              CONTINUE.
            ENDIF.
            ORIGNAL_COST  = ls_BAPISDCOND-COND_VALUE.
    *As <ledtarget_x> refers to ls_BAPISDCOND memory,
    *in debugging, you can see  <ledtarget_x>-con_value becomes 5000.
            ls_BAPISDCOND-COND_VALUE = '5000'.
    *<ledsource_x> refers to data field of header line (workline) of
    *internal table T_BAPISTRUCT
    *So following will change data field of header line of T_BAPISTRUCT
            <ledsource_x> = ls_BAPISDCOND.
          ENDLOOP.
      ENDCASE.
    Any help will be considered and rewarded.
    Regards,
    AndreA
    ENDFUNCTION.

    Hi all,
    basically bear in mind when you extend BDOCs in CRM 4.0 two things:
    1.     create API structure
    2.     Put x in Badi PRODUCT_CUSTOMER2 in  order to map all Z fields.
    For example:
         ls_zprod_xport-data-zz0010 = ls_com_mara-ZZ_AREA_PR.
           ls_zprod_xport-data_X-zz0010 = 'X'.
    Regards,
    AndreA

  • Field for 'Delivered Quantity'

    Hi experts,
    I need to create a report with Quantities for Requested Delivery Qty, Goods Issued Qty and Delivered Qty. I am looking for the appropriate datasource, please advice. The report also needs to mention Sales doc # (and Purchase Order # if possible). Need advice if 2LIS_12_VCSCL is the right one?
    My second question is how to calculate GI Date? I was wondering if I take the key fig 0GIDATE and choose aggregation as 'Maximum' and 'First Value'. I mean in ECC, when purchase order is received, the system calculates a goods issue date based on the requested delivery date and route(and transition time). My point is  if the 'First value' of the kf 0GIDATE is equal to the first date from system generated '0GIDATE'? If this is right, then I don't have to create additional field and user exit to populate the gidate based on the requested delivery date. Please help.

    Viren,
    Seems you have good experience with this. Thanks for your quick turn around. Please see my requirement and also I have listed my current model, I need your input.
    I need in the report:
    Order Qty
    Qty of Goods issued
    Goods issue data as per the order
    Actual goods issued date
    I could not find a field for 'goods issue date as per the order' as it has to be calculated from 'Requested Del Date' minus 'Transit time'. This transit time comes from 'Route'.
    But from your input, is '0GI_DATE_GH' from the order or physical issue date? Btw, I took the following fields and objects and realized they are not perfect:
    KWMNG       Order qty(for qty  from the Sales Order)        0CML_OR_QTY
    VSMNG_L     Dely qty                                                    0DLV_QTY
    WADAT        Goods issue date                                        0GI_DATE( KF-I took Maximum and                                                                               
    first value in aggregation of key figure)
    WADAT_IST  Actual GI Date                                            0ACT_GI_DTK(actual goods issue date)

  • Logging takes in the field for multi-camera set-up with OL

    Is there any way to designate separate cameras or link shots (to be labeled as CamA or CamB) to advance takes and make notes simultaneously?
    OL doesn't really seem set up to use with documentary style shooting with multiple cameras, but maybe there is some way around this?
    I just want to be able to add takes in OL to multiple cameras without a lot of typing between each take...and add notes that are applicable to multiple cameras within one shot and one take.
    Any ideas?

    OnLocation CS5 has an entirely new feature set known as the File-Based Workflow that may be just what you are looking for. The basic steps are as follows:
    PRE-PRODUCTION (IDEALLY)
    1) Create a placeholder for one camera angle of a given scene/shot. (Consider using Adobe Story to prepare your script. Then you can hand the script off to OL and have it automatically broken down into scene-level placeholders. You will then still need to break those placeholders down to the shot level)
    2) Use the Camera Name property to designate the camera for that shot. If you use the "auto-matching" process, which you will likely want to do if you're entering notes per take, then this data point will be used to automatically mate a set of clips from, say Camera A to the correct set of placeholders.
    3) Fill in any other metadata that is common to other camera angles.
    4) Duplicate the placeholder for other camera angles & shots of the scene. To do this, you can use either the Duplicate Placeholder command or, to create multiple duplcates, the Break Out Scene command, both of which are available in the context menu when you right-click a row in the shot list. Note that both commands work with multiple rows selected.
    5) Customize each duplicate as appropriate.
    6) Repeat for your other shots.
    DURING THE SHOOT
    1) [Strongly recommended] For multi-cam shoots, synchronize the date/time on all the cameras. Ideally, synch them all to the date/time on the computer running OnLocation. This greatly simplifies the auto-matching process by saving you the hassle of repeatedly changing the camera date/time in OnLocation.
    2) Select placeholder(s) or clip(s) for the next shot.
    3) At any time between starting and stopping recording of the take, click the Timestamp button (upper left corner of the Project/Shot List panel). This step applies a timestamp to the placeholder, which makes it possible for the auto-matching mechanism to determine which clip belongs with which placeholder.
    4) Optional: Add temporal comment markers to timestamped placeholders, which will be aligned to the clip when you auto-match. (Note that PPRO does not recognize comment markers added in OnLocation.)
    5) Repeat steps 1-3 for subsequent shots
    AFTER TRANFERRING CLIPS TO THE COMPUTER
    1) In the Media Browser panel, navigate to the folder where you copied the content.
    2) Select the clips.
    3) Click the Auto-Match button at the top of the panel. This opens the Auto-Match dialog.
    4) if this is a multi-camera shoot, check the appropriate box and select the name of the camera that this content came from. The list for the Camera Name setting is populated from what you entered in the Camera Name field for all timestamped placeholders. [Be alert for unintended variants. For example, if you entered "Camera A" for some shots and "Cam A" for others, you'll see both versions in the list. Before proceeding, you should standardize the entries.]
    5) Set the Camera Date/Time. If you synched the cameras' date & time to the computer's, then this step is not necessary (unless you previously set a Camera Date/Time offset in OL, in which case you will need to reset the Date/Time to match the computer's.)
    6) Click OK to proceed with auto-matching. OnLocation will proceed to find the placeholder whose timestamp fits within the Start and Stop Recording times of one of the clips and, if relevant, whose Camera Name matches your selection. All metadata from that placeholder will be merged into the clip.
    [Please note that all of the foregoing is from memory--I don't have OL CS5 installed on this home computer--so I may have gotten the names of some of the controls wrong. I'm pretty confident that the basic workflow is sound, however.]
    Here's the help page for this feature. I'm afraid it's does not really cover the particulars for a multi-camera workflow. http://help.adobe.com/en_US/onlocation/cs/using/WS89e4fde9608114f41e5eb2de124b454ea2b-8000 .html
    As for entering the same string in the Comment field (or any other metadata property) for multiple placeholders or clips simultaneously, simply select whichever rows in the Shot List that you want to edit, then in the Metadata panel edit whichever properties you choose to. Your changes will be applied to all selected rows (assuming they're editable--i.e., not read-only or offline, both of which apply only to clips, not to placeholders)

  • FBL1N - field for open item at key date

    Hi All,
    we are developing a customising report like FBL1N.
    for vendor open itesm, we have table BSIK. In that table, we could not find field for open items at key date.
    Could you please suggest which field we can use in table BSIK for that.
    Regards
    Deepak

    Hi
    You may find a list of some famous  tables on FI.. honestly i do not know which one is the required ? \\
    Accounting documents
        BKPF                Accounting documents
        BSEG               item level
        BSID                 Accounting: Secondary index for customers        
        BSIK                 Accounting: Secondary index for vendors          
        BSIM                 Secondary Index, Documents for Material          
        BSIP                 Index for vendor validation of double documents  
        BSIS                 Accounting: Secondary index for G/L accounts
        BSAD               Accounting: Index for customers (cleared items)
        BSAK                Accounting: Index for vendors (cleared items)  
        BSAS                Accounting: Index for G/L accounts (cleared items)
    Regards
    Mahmoud EL Nady

  • SQL query to list the "Administrative category" field for all applications

    yesterday i started a thread to list the "Optional reference" field for all cm applications in a SSRS report. I've got the query with the help of Torsten.
    https://social.technet.microsoft.com/Forums/en-US/00419e6e-e3c2-4b80-b6af-2a24ced1032d/sql-query-to-list-the-optional-reference-field-of-all-packages-in-cm-2012?forum=configmanagersdk
    But again today, i'm looking for a way to get "Administrative category" field in a SSRS report. Could someone point me to the right direction ?
    Kindly mark as answer/Vote as helpful if a reply from anybody helped you in this forum. Delphin

    Hi,
    You could monitor the SMSProv.log when you check the category of an application. It shows that SQL query the SCCM provider used is related to function fn_ListCategoryInstances.
    Best Regards,
    Joyce

  • Incomplete Control Deliveries add new table-field for Incompleteness Proced

    Incompletion Control for Deliveries add a new table-field for Incompleteness Procedure G (Delivery header)
    Hello,
    I'm trying to add a new field for Incompleteness Procedure G (Delivery header), but  when I try to customize the procedure G with new fields, I donu2019t find the field that I need  ModeOfTrnsprt-Border (EIKP-EXPVZ).
    Foreign Trade/Customs tables are not included like an option for new entries in the customizing of Incompleteness Procedure G, and Iu2019ve to prevent that users save the outbound delivery without entry a valid value for  EIKP-EXPVZ (EIKP-EXPVZ= ModeOfTrnsprt-Border).
    Otherwise, when users are creating the SD Invoice there is an error for create the Accounting document because Foreign Trade/Customs information is incomplete.
    So Iu2019d like to know If is possible to add a new tables ( and fields)  to use in the customizing for Incompleteness Procedure for Outbound Deliveries (procedure G).
    Thanks!!
    Edited by: Ariana Serrano Aguila on Sep 2, 2010 5:19 PM

    Hello,
    I'm trying to add a new field for Incompleteness Procedure G (Delivery header)
    , but when I try to customize the procedure G with new fields, I donu2019t find the
    field that I need ModeOfTrnsprt-Border (EIKP-EXPVZ).
    See as far as the table is concerned, the basic reason why it is not getting populated as SAP stores the possible values at the domain level. So i think the right approach to add the table would be to get access key for the domain and then add the new table name at domain level. Please reach out for help from ABAPer in this matter.
    You can also use User exit to met this requirement and the appropriate user exit will be as below:
    1.MV50AFZL
    2. MV50AFZ1
    Regards,
    Sarthak

  • Displaying variable no. of fields for different records

    Hi,
    I have the requirement of displaying variable no of fields for different type of record in the business object.How can this be done in VC. For example i have to show an extra field for country "IN"
    Thanks in advance,
    Regards,
    Anupam

    Hi Anupam,
    Please explain ur requirement more clearly.
    If understanding is right ,you are creating a Table/Form with the information of a particular company ,and u r interested to add another column to this table and this column should not be visible when to select another company. Am I right?
    What is the data source is it a BAPI or Query or Query View?
    1)Drag and drop a table from the Query(if suppose).Or form if u want to include in the form.
    2)And if u want another field(if it is to be calculated) in ur table u can have include an expression box by clicking a "+" sign in the table and specify the formula for it in the Expression field uder the Data source field in the General Tab.
    3)And if u want to hide this field when u select another country then u can set a visibility condition.
    4)Go to control properties window of the new field.U can get this by selecting the new added field and by clicking on configure or by left clicking the new field and then selecting the properties.
    5)Inside the General Tab, u have UI Control,below that u have Hidden which is a check box, just check it.And click on condition. Then type the condition for it to be hidden.Then it is hidden.
    Please try doing the above.
    Reward me with points if its helpful.
    Thanks,Regards,
    Sripriya Srinivasan.

  • 8i+WebDB HELP:How to make longer fields for "News items"

    8i+WebDB
    How do I create longer fields for my "News items"?
    If I try to publish long sized News I receive an Error:
    "Ora-02005: Implisit(-1) Length not valid for this bind or define
    data type". I HAVE chosen "long field" settings in the DB
    (8.1.5.0.0)
    Are there any parameter settings in WebDB to allow longer
    fields??
    PLEASE HELP!!
    null

    Hi, Lu:
    If I understand your question correctly, you want to modify the FSG of recociliation account of Vendor/Customer to make sure Cost Center/WBS field display in transaction F-22/F-43 for example, right?
    I am not sure whether it is possible, I also tried in ECC6.0 but failed to show these two fields. And I think that doesn't make sense to assign CO object to AP/AR reconciliation account, but assign it to Revenue/Expense account in following line items.
    And You can use New General Ledger functionality Document Splitting to derive corresponding CO object information to Reconciliation Account line item, but it is enabled only in General Ledger level, not in subledger level.
    If you find any other meaningful solution, please also share with us.
    Thanks & BR, Lawrence

  • I am confuse to choose right technology for file sending?

    Dear all
    i am working in medical transcription project in that we have to send and receive more doc file and voice file from various client (web client and desktop client).
    i have three three technology which makes me confusion
    1. RMI with NIO
    2.servlet with URL class in client
    3.SAAJ with attachment[i dont know much about this]
    so please suggest me which is the right technology for file sending and receiving...the file may maximum 20 MB

    It depends if you have a valid reason to use web services. If you are providing a web front end to your application for clients to use then you could just use a standard file upload procedure, I have used apache commons and it works well for this.
    If your requirements indicate that a web service call is the answer as you have some system-to-system connectivity then I think you will need to use saaj and add the file as a SOAP attachment, as embedding 20MB of binary data into a string field on a standard SOAP message will probably cause the JVM to run out of memory.
    Cheers

  • How to create statistics for INDEX thru GUI

    In DB13 i see messages MISSING_STATISTICS for some indexes.
    I manage for tables thru DB20. How can i create statistsics for INDEX.
    Rgds
    PR

    Hello PR,
    at first let's say you should use the BRTools to create statistics for the indexes, because of the sample method (estimate, compute) - SAP has an algorithm to choose the right sample size.
    Have a look at here:
    http://help.sap.com/saphelp_nw70/helpdata/en/f4/81e93a637bfd70e10000000a11402f/content.htm
    If you want to create statistics manually out of the R/3 ... you can use the report "RSANAORA"
    Transaction SE38 -> Report RSANAORA -> Choose your index and sample method... and go on.
    Regards
    Stefan

  • Where is the field for changing the  password?

    Hello. I went to my control panel today and I can't find any field for changing my password. How do I change? Where? Thanks.

    Hi, I am logged in and I can't see any "Account" link
    in the upper right side of the page. All I can see
    are the Sign out, Your Control Panel, Search and FAQ
    links. I clicked on "Your Control Panel" link and I
    see I can edit my Handle, Name, Email, etc. but I
    don't see anything related to password. Plus, there
    is no "Change Password" link in the upper right side
    of the page under the "Log out", or the "Sign Out"
    link.I agree that Oracle could have made it a bit more explicit. Instead of
    To change your password, make sure you are logged on and click the "Account" link in the upper right side of the page.
    they should have said
    To change your password, make sure you are logged on and click the "Account" link in the upper right side of this page. (This page = the one you are reading when you see the FAQ about changing the password.)
    I have to admit that it is strange the Account link appears on every OTN page, every Education.oracle.com, every www.oracle.com page ... but not on a forums.oracle.com page
    Message was edited by: Hans Forbrich
    (The term 'every' meaning 'every one I remember seeing the account link on' <g>)

Maybe you are looking for

  • How to set default selection in html:radio

    hai how to set default selection in <html:radio>.

  • Firefox font issues

    System: eMac G3 running 10.3.9 Firefox: current (2.0.0.14), but affected prior versions also Classic installed? yes User-specific? yes User has unique language preferences as international options? Yes. All languages, however, require an essentially

  • Comment section in list view of FCE

    Hello, I'm new to FCE, love the program. Why didn't I have this sooner? : ) Am organizing my clips in the browser. A cool feature that I noticed is that in the list view in the comments, once I type a note, if I right click in the same column for the

  • Map Error - VLD-1108: Operator NVL is not properly connected

    Current, I am using NVL for 2 reasons: 1) return 0 if the attribute is 0 -- NVL(id, 0) a) A constant is creted (outgrp1.const1 expression = 0) b) A NVL (INPUTS.expr1 (id) & INPTS.expr2 (0)) is created 2) return 0 if the attributes (date - date) is 0

  • Exporting 720p with space saving options?

    Hi I have a 13 minute long 1280x720 video that i need to upload to youtube. With my current settings (HDTV 720p 24 fps) the size will be around 592mb's. Since i have to upload this to youtube, and im running off semi-slow internet (between 5 and 8mbp