Data element and domain change problem

Hi Gurus!
I changed a Key figure's domain in our system.
The users would like the Key figure with 5 decimal places, but there was only 3 decimal places.
I did the changes based on this document:
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/209b2916-1cca-2d10-b39e-90df259764ef?quicklink=index&overridelayout=true
Everything is fine in our develop system.
But when I transport the changes to our test system, there are some error messages after the transport.
The transport's return code is 8.
The error messages are:
InfoObject ZIND (or ref.) used in InfoProvider with data managmnt.-> Error:
InfoObject ZIND: Decimal places was changed from 000003 to 000005
InfoObject ZIND being used in InfoCube ZPCA_R01 (contains data)
I don't want to delete any datas from the cube (this will be critical in our productive system).
I tried to activate the Key figure and the cube, I tried "Activate and adjust database" option in trn. SE14, but nothing helped.
Do you have any alternate ideas?
Thanks a lot.
Gergely

Thank you for your response.
I will create a new key figure.
Best Regards,
Gergely
Edited by: Gergely Gombos on Nov 24, 2010 10:59 AM

Similar Messages

  • Procedure for creating transparent table, data element and domain

    Hi,
    Can anybody let me know the procedure for creating transparent table, data element and domain.
    Thanks,
    Mahathi

    Hi
    Database table and its components
    A database table is the central data structure of the ABAP/4 data dictionary.
    The structure of the objects of application development are mapped in tables on the underlying relational database.
    The attributes of these objects correspond to fields of the table.
    A table consists of columns (fields) and rows (entries). It has a name and different attributes, such as delivery class and maintenance authorization.
    A field has a unique name and attributes; for example it can be a key field.
    A table has one or more key fields, called the primary key.
    The values of these key fields uniquely identify a table entry.
    You must specify a reference table for fields containing a currency (data type CURR) or quantity (data type QUAN). It must contain a field (reference field) with the format for currency keys (data type CUKY) or the format for units (data type UNIT). The field is only assigned to the reference field at program runtime.
    The basic objects for defining data in the ABAP Dictionary are tables, data elements and domains. The domain is used for the technical definition of a table field (for example field type and length) and the data element is used for the semantic definition (for example short description).
    A domain describes the value range of a field. It is defined by its data type and length. The value range can be limited by specifying fixed values.
    A data element describes the meaning of a domain in a certain business context. It contains primarily the field help (F1 documentation) and the field labels in the screen.
    A field is not an independent object. It is table-dependent and can only be maintained within a table.
    You can enter the data type and number of places directly for a field. No data element is required in this case. Instead the data type and number of places is defined by specifying a direct type.
    The data type attributes of a data element can also be defined by specifying a built-in type, where the data type and number of places is entered directly.
    <b>Two Level Domain Example</b>
    A domain defines a field technically and therefore it may
    be used at different business levels.
    A data element describes the meaning of a domain in a certain business context.
    A domain, however, is used for the technical definition of a table field (for example field type and length).
    Therefore, although a take-off airport (data element S_FROMAIRP) would have a different business meaning from an airport where a plane lands (data element S_TOAIRP), they could still have the same domain(here S_AIRPID) because technically we could assign the same number of characters whether the airport is a take-off or a landing airport.
    <b>Definitions of Table in Database</b>
    In SAP R/3 tables are defined as
    A) Transparent tables: All of the fields of a dictionary table correspond to a field in the real database table.
    B) Pooled tables: Different tables which are not linked to each other with a common key are combined into a TABLE POOL. Several logical tables thus exist as a single real database table.
    C) Cluster tables: Several tables linked by a common key may sometimes be combined by the data dictionary and made to exist on the database schema as a single table.
    SAP is evolving R/3 tables in transparent tables.
    <b>Elaboration on each of the definitions</b>
    A transparent table is automatically created on the database when it is activated in the ABAP Dictionary. At this time the database-independent description of the table in the ABAP Dictionary is translated into the language of the database system used.
    The database table has the same name as the table in the ABAP Dictionary. The fields also have the same name in both the database and the ABAP Dictionary. The data types in the ABAP Dictionary are converted to the corresponding data types of the database system.
    The order of the fields in the ABAP Dictionary can differ from the order of the fields on the database. This permits you to insert new fields without having to convert the table. When a new field is added, the adjustment is made by changing the database catalog (ALTER TABLE). The new field is added to the database table, whatever the position of the new field in the ABAP Dictionary.
    Tables can also reside on the database as Pooled tables or cluster tables
    Pooled Tables: Different tables which are not linked to each other with a common key can be combined into a Table Pool. The tables contained within this pool are called Pooled Tables. A table pool is stored in the database a simple table. The table's data sets contain, in separate fields, the actual key for the data set to be stored, the name of the pooled table and the contents of the data set to be stored.
    Using this schema, several logical tables are combined into a single real database table. Although the data structure of each set is lost during the write to the table pool, it is restored during the read by the ABAP/4 Data Dictionary. The ABAP/4 Data Dictionary utilizes its meta-data to accomplish this.
    Since information must be prepared (defined) within the ABAP/4 Data Dictionary when it is read or written to (or accessed), this process itself defines these as not transparent tables
    Cluster Tables: Occasionally, several tables may be linked by a common key. The ABAP/4 Data Dictionary can also combine these tables into a single table. Each data set of the real table within the database contains a key and in a single data field, several data sets of the subsequent table for this key.
    As mentioned above, these table types require special data handling, therefore they are not transparent tables.
    <b>Technical Settings in Dictionary</b>
    The data class logically defines the physical area of the database (for ORACLE the table space) in which your table should be created. If you choose the data class correctly, the table will automatically be created in the appropriate area on the database when it is activated in the ABAP Dictionary.
    The most important data classes are master data, transaction data, organizational data and system data.
    Master data is data that is rarely modified. An example of master data is the data of an address file, for example the name, address and telephone number.
    Transaction data is data that is frequently modified. An example is the material stock of a warehouse, which can change after each purchase order.
    Organizational data is data that is defined during customizing when the system is installed and that is rarely modified thereafter. The country keys are an example.
    System data is data that the R/3 System itself needs. The program sources are an example.
    Further data classes, called customer data classes (USER, USER1), are provided for customers. These should be used for customer developments. Special storage areas must be allocated in the database.
    The size category describes the expected storage requirements for the table on the database.
    An initial extent is reserved when a table is created on the database. The size of the initial extent is identical for all size categories. If the table needs more space for data at a later time, extents are added. These additional extents have a fixed size that is determined by the size category specified in the ABAP Dictionary.
    You can choose a size category from 0 to 4. A fixed extent size, which depends on the database system used, is assigned to each category.
    Correctly assigning a size category therefore ensures that you do not create a large number of small extents. It also prevents storage space from being wasted when creating extents that are too large.
    Modifications to the entries of a table can be recorded and stored using logging.
    To activate logging, the corresponding field must be selected in the technical settings. Logging, however, only will take place if the R/3 System was started with a profile containing parameter 'rec/client'. Only selecting the flag in the ABAP Dictionary is not sufficient to trigger logging.
    Parameter 'rec/client' can have the following settings:
    rec/client = ALL All clients should be logged.
    rec/client = 000[...] Only the specified clients should be logged.
    rec/client = OFF Logging is not enabled on this system.
    The data modifications are logged independently of the update. The logs can be displayed with the Transaction Table History (SCU3).
    Logging creates a 'bottleneck' in the system:
    Additional write access for each modification to tables being logged.
    This can result in lock situations although the users are accessing different application tables!
    <b>Create transparent table</b>
    Go to transaction SE11. Enter name of table you want to create (beginning with Y or Z) and click on create pushbutton
    Enter the delivery class and the table maintenance criteria
    The delivery class controls the transport of table data when installing or upgrading, in a client copy and when transporting between customer systems .
    The display/maintenance indicator specifies whether it is possible to display/maintain a table/view using the maintenance tools Data Browser (transaction SE16) and table view maintenance (transactions SM30 and SM31).
    Enter the name of the table field and the data element. The
    System automatically populates the technical details for
    existing data elements.
    So far as possible it is advisable to use existing data elements which befit the business requirements.
    However, we may create data elements if need be. The same is shown in the next slide.
    To create a data element simply double click on it.
    Alternately create a data element by simply choosing the
    data type radio button on SE11 initial screen.
    <b>Create data element</b>
    The system prompts you to create a new data element.
    Choose the Yes pushbutton.
    Under the data type tab enter the domain name which
    determines the technical characteristics of the field.
    Further characteristics tab: Allows you to specify a search help assigned to the data element.
    It also allows you to specify a parameter id which helps you populate a field from SAP memory.
    Field label: Can be assigned as prefixed text to a screen field referring to the ABAP Dictionary. The text is displayed on the screen in the logon language of the user (if the text was translated into this language).
    <b>Create domain</b>
    If the domain does not exist in the data dictionary the
    system prompts you to create one.
    Give the technical characteristics under the definition
    tab. Value range allows you value restriction at domain
    level.
    Value range tab:
    As explained in the section Consistency through input checks one can restrict the possible values for a field at domain level itself by either entering fixed values or by specifying a value table under the tab Value range.
    <b>Currency/Quantity fields in a table</b>
    A currency or a quantity field must be assigned a reference field from a reference table containing applicable qty unit or currency unit.
    Field of the reference table, containing the applicable quantity unit or currency
    A field containing currency amounts (data type CURR) must be assigned a reference field including the currency key (data type CUKY).
    A field containing quantity specifications (data type QUAN) must be assigned a reference field including the associated quantity unit (data type UNIT).
    <b>Create transparent table continue</b>
    Maintain the technical settings of the table by clicking on the tab

  • Deleting data elements and domains

    hi guys,
    how do i delete data elements that i had previously created in ztables (they are zelements and zdomains)permanently.  thanks in advance.

    from the same place where u created them ie go to
    SE11> Use menu option Dictionary Object> Delete
    or
    SE80 > Use menu option Workbench>Edit Object>Click the tab Dictionary>use the Delete icon
    Regards,
    Suresh Datti

  • FM to lock data element and messages

    Hi All,
    I need a FM to enque data element and messages for translation.
    I have found out one FM for ABAP program texts - ENQUEUE_EABAPTEXTE.
    Can you please tell me the corresponding ones for data element and messages.
    Thank you.
    Ajith

    Hi Krishna,
    Use function modules    enqueue_<<lock object>>u2019 and dequeue_<<lock object>>u2019
    With Regard's
    SHAIK.

  • Abt master data activation and attribute change run

    There is any difference between master data activation and attribute change run

    Hi,
    Master data activation is activating the master data once you extract the data from source system the data will be in inactive state, so in order to make the data available we will activate the master data.
    Attribute change run :Its used to update the newly changed master data records to the Hierachies and aggregates.
    If you are already using the available master data in aggregates in InfoCubes, you cannot activate the master data individually. In this case we will use attribute change run.
    For attribute change run we have direct tcode: RSATTR or  In the main menu, choose the path Tools Hierarchy/Attribute Change.
    regards
    KP

  • Data element description not changing in ALV output

    Hi Friends
      I changed the description of the data element from xx to yy,but this is not reflecting in the alv output,
    It is still showing xx,After activating everything and running the report I get the same problem,
    Can any one help?

    Hi,
    Write your code in following manner.
    ATA:ist_fieldcat TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    DATA: wa_fieldcat LIKE LINE OF ist_fieldcat.
    DATA : l_pos TYPE i VALUE 1.
      ist_fieldcat-fieldname = 'POSID'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 24.
      ist_fieldcat-col_pos   = l_pos.
    *  ist_fieldcat-ddictxt = 'L'.
      ist_fieldcat-key = 'X'.
      ist_fieldcat-seltext_l = 'Appropriation Request Number'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
      l_pos = l_pos + 1.
      ist_fieldcat-fieldname = 'TXT04'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 4.
      ist_fieldcat-col_pos   = l_pos.
      ist_fieldcat-ddictxt = 'L'.
    *  ist_fieldcat-key = 'X'.
      ist_fieldcat-seltext_l = 'Status'.
      ist_fieldcat-EMPHASIZE = 'C400'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
      l_pos = l_pos + 1.
      ist_fieldcat-fieldname = 'UDATE'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 8.
      ist_fieldcat-col_pos   = l_pos.
      ist_fieldcat-ddictxt = 'L'.
      ist_fieldcat-key = 'X'.
      ist_fieldcat-seltext_l = 'Status Date'.
    *  IST_FIELDCAT-EMPHASIZE = 'C600'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
      l_pos = l_pos + 1.
      ist_fieldcat-fieldname = 'CRTD'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 4.
      ist_fieldcat-col_pos   = l_pos.
      ist_fieldcat-ddictxt = 'L'.
    *  ist_fieldcat-key = 'X'.
        IST_FIELDCAT-EMPHASIZE = 'C700'.
      ist_fieldcat-seltext_l = 'Status CRTD'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
    <i>Rewards point if helpful</i>
    <b>Debjani</b>

  • Smart Form, Data Element and Parameters

    1.- I created an Smart Form with an import parameter. The import's parameter type is a data element.
    2.- I create an executable to call the Smart Form, I need to declare a parameter of the type of the same data element.
    The problem is that when I try to compile I receive an error message:
    The deep data type "ZTEXTOLIBRE" is not allowed. not allowed.          
    The type of the parameter must be of this type because if not, i'd receive an error when i send the parameter to the function that call the Smart Form. Any idea?
    Thanx

    Hi Jose,
            check with this smartform LB_BIL_INVOICE declaration and with the driver program declaration.
    like IS_BIL_INVOICE TYPE LBBIL_INVOICE in the form Interface and
    like  DATA: ls_bil_invoice TYPE lbbil_invoice in the driver program RLB_INVOICE.
    Hope this will help.
    Thanks,
    Vamsi.

  • Adobe premiere elements and roaming profiles problem

    We bought Adobe premiere elements 12 for use in our school lab environment and after lots of struggle I now see that it doesn't support roaming profiles. Is there a fix for this or have we wasted lots of money.
    Is there a way to change the default save location during deployment?

    I know that it have to be installed on the c: drive. But my question is if there are any way to change the default save location during deployment. Because Premiere will be installed on c:\program files\adobe\ adobe premiere elements 12\ but the default scratch disks and project location will be automatically tried to save to their roaming profiles the first time and causing the problem.
    Remember this is in a lab environment and new users will log on all the time and therefore get the error messages failures.
    Again, my question is:
    Is there a way to change the default start location during DEPLOYMENT (we use Configuration manager 2012) so that it will always start on for example c:\localmedia instead of their documents or appdata folders which are inside their roaming profile.

  • How to find Where does Data Elements and structures are used ?

    Hi everyone .
    Is there any table which stores data elements/structures and where they are used ?
    If not is there any way to find by writing some <b>program</b> where does a data element or a structure is used ? Which tables will require for that ? If any one can give example it will be most helpful .
    Thanks and Regards,
    Kaushal N. Shah

    Hi Kaushal,
    DD04L stores the data elements.
    DD02L stores the structures.
    So you can query these tables & find them.
    Regards,
    Chetan.
    PS:Reward points if this helps.

  • Elements and Premiere 10 problems

    Hello:
    I have just purchased for my Mac Adobe Elements and Premiere 10 but I can not load the program.  I keep getting errors like
    8 of them.  I've turned off the virus protection still got errors.
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0 will be uninstalled now.
    ----------- Payload: {68FE2517-2E45-4B03-8241-D0634F43878B} Smartsound1 1.0.0.0 -----------
    ERROR: DW006: Apple Package failed to install successfully.
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Smartsound3: Install failed
    ERROR: DW050:  - Photoshop Camera Raw for Elements 10: Install failed
    ERROR: DW050:  - Smartsound1: Install failed
    ERROR: DW050:  - Adobe Premiere Elements 10: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Premiere Elements 10_LangPacken_US: Install failed
    ERROR: DW050:  - Smartsound2: Install failed
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0 will be uninstalled now.
    WARNING: DW031: Payload:{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.0.0 has been updated and has been selected for repair. The patch {FEA75AFB-4905-43BB-B1D5-5B44D681BFE7} Camera Profiles Installer_6.4_AdobeCameraRawProfile6.0All 6.4.0.0 will be uninstalled now.
    ----------- Payload: {68FE2517-2E45-4B03-8241-D0634F43878B} Smartsound1 1.0.0.0 -----------
    ERROR: DW006: Apple Package failed to install successfully.
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    WARNING: DW036: Payload cannot be installed due to dependent operation failure
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Smartsound3: Install failed
    ERROR: DW050:  - Photoshop Camera Raw for Elements 10: Install failed
    ERROR: DW050:  - Smartsound1: Install failed
    ERROR: DW050:  - Adobe Premiere Elements 10: Failed due to Language Pack installation failure
    ERROR: DW050:  - Adobe Premiere Elements 10_LangPacken_US: Install failed
    ERROR: DW050:  - Smartsound2: Install failed.
    Any advise please

    Saxonsraven I would recommend reviewing Updated installation instructions | Premiere Elements 10 | Mac OS as it provides several solutions for this issue.

  • Data sets and text encoding problem

    I have a problem when trying to import french text variables into my data sets (for automated generation of lower thirds). I can not get PS to display french special characters correct. all 'accented' As and Es etc. display as weird text strings, just like your browser running on the wrong text encoder.
    How do I get PS to interpret the data sets right? Any idea?
    thanx
    Gref
    ( PS CS6 (13.0.1), Mac Pro running on OS X 10.7.3)

    Thanx Bill.
    Unfortunately I cannot change the font as it is corporate. It has all the characters I need, though.
    Did I mention, that I have to generate french AND german subs? No.
    Well I tackled the german versions by processing the textfiles I get with textwrangler saving them as UTF-16. That worked with the german versions.
    Unfortunately I ran into 2 other problems now:
    First problem:
    The data set consists of 7 names and their respective functions. This processes perfectly in german (as I thought to this point) but in the french version it processes perfectly for the first 4 data sets while the fitfth has the right name but the function variable now displays the 5th function AND all the rest of the names and functions. I can not get these data sets displayed seperately. Bummer.
    But even more annoying…
    Second problem:
    When I now import my perfect german lower thirds into Avid I seem to loose my alpha information.
    Avid is supereasy to use with alpha: you have 3 choices: inverted (which is the usual way of importing) having black in the alpha transparent. normal - white transparent or ignore - no transparency.
    Importing 'inverted' alpha always worked (I use Avid for about 15 years now). but these processed PSDs don't. No alpha.
    So I tried to assign an alpha channel via Actions to these files. Now Avid seems to discard the layers completely leaving me with white text where it should be black. The PSDs have black character text layers but in Avid the characters are white. It seems like AVID just renders the white pixels of the alpha channel.
    Assigning the Alpha is no option anyway, as the whole process should make the generation of these lower third EASIER and faster for the person that has to make every lower third by hand by now.
    All of this can be boiled down to one word: ARGH!

  • Adobe flash 10.3 and resolution change problem

    I can't seem to understand the logic behind this.
    In some games,  changing resolution to 1920x1080, or even starting the game from a launcher. (mw2, 3dmark vantage, etc) i end up with a blank black screen.
    Takes about 5 minutes to wait until i get my desired resolution up, and get picture.
    [My config is:Benq GL2240 22" , E7200 ,- HD6670 (same with HD4850) ,-Win 7 x64 (same with x32) -Up to date drivers, Catalyst 10.5 and later 10.8]
    So what i figured?
    I had this crazy notion, that i would remove adobe flash 10.3 for a possible downgrade, since switching to fullscreen on yt videos took about 1 second (which is kinda slow imo)
    Next up, i downloaded and installed  Flash version 9,0,277,0
    Guess what happened?
    All my troubles are gone, switching resolution takes a half second, and no problems in games whatsoever.
    Hardware acceleration still works on youtube, the picture isnt as sharp as it used to be with  10.3 but what the heck, i'll just watch hd clips where it doesn't count anyway.
    So put your thoughts on this one.
    Since i couldn't find any info referring to this problem, i'll be the first.
    Obviously something is very wrong here.

    That's very odd that your Modern Warfare and 3dMark launch times were impacted by Flash Player.  I've never heard or seen this before.  Would you be willing to do a dxdiag report for us and create a new bug over at bugbase.adobe.com?  We'd be happy to check this out.
    Thanks,
    Chris

  • Creating a new img element and cannot change style.left or style.top to set placement as I can in other browsers

    I create a new element of type img and am placing in a specific absolute position by setting style.position, style.left and style.top attributes. Works fine in IE and Opera but FF does not allow me to modify any of the style attributes either before or after the element is inserted into the document. I've tested this with 3.5.9 and 3.6.3 and both have the problem.
    == This happened ==
    Every time Firefox opened
    == upon install of FF

    I knew it was something incredibly obvious that I was missing.
    by doing
    himg.style.left = (Math.floor(coords[0]) + tweeks.x) + "px";
    himg.style.top = (Math.floor(coords[1]) + tweeks.y) + "px";
    instead of
    himg.style.left = Math.floor(coords[0]) + tweeks.x;
    himg.style.top = Math.floor(coords[1]) + tweeks.y;
    it works. It seems Opera and IE assume px if nothing supplied while FF needs it explicitly specified.
    Thanks!

  • Is there a way to use a date field and conditionally change its LABEL?

    Hi I have 2 date select lists and desire to change the label text at runtime.
    If I use it for one query it would be Order Date, another it would be Start Date.
    ?? BillC

    Vikas,
    ...a page template is a special case since everything is finally rendered on a page.Don't know what you mean.
    references in page templates probably get evaluated first...References in page templates get replaced with their session state values when the portion of the page template containing the references is rendered, e.g., before the box, inside the box, after the box, in the footer..., and within each section each item reference is replaced "when it is encountered" with the current value of the item from session state.
    There is a Before Footer computation that sets that item to the current timestamp.I see an "After Regions" computation. On your page, the form item is rendered using the current (from the previous page request) value of the item in session state. Then your compuation sets a new value. Then the remaining sections of the page template (after the regions) are rendered and you see the newly computed value in the footer section of the template.
    Is there a way to pass in the current form item name to the shortcut so that I can have a generic shortcut that returns a different value for the label depending on which item it is being invoked from?Starting in XE and now in 2.2, you can use the strings #CURRENT_FORM_ELEMENT#, #CURRENT_ITEM_ID#, and #CURRENT_ITEM_NAME# in shortcuts. This makes PL/SQL Function shortcuts such as the following possible:  if '#CURRENT_ITEM_NAME#' = 'P2_ENAME' then
        return ('employee name');
      elsif '#CURRENT_ITEM_NAME#' = 'P2_JOB' then
        return ('job');
      else
        return ('foo');
      end if; Scott

  • Database Link and domain suffix problem

    Hi
    I have two machines in the same workgroup with Oracle Server 8.1.6 and two instances, I don't have domain .When I create Database Link on one of them the name of the link appears with unknown suffix "US.ORACLE.COM" .The parameter DB_DOMAIN in the init file has no value.Is anybody know why Oracle adds this suffix every time when I'm trying to create database link?

    You have to check your SQLNET.ORA file. There is a parameter defined in that file called:
    NAMES.DEFAULT_DOMAIN = <default domain to use>
    You need to change this value according to your network settings.

Maybe you are looking for

  • Warranty - how does it work?

    after 5 happy years with Creative Zen, I've switched religion, and got an ipod Classic 120GB. sadly, 3 weeks after loading it up, the screen failed (no display, just went white and didn't work properly). reset and a restore didn't make any difference

  • Could not find a mach64 controller

    I install solaris 8 on Compaq armada e500,display model is ait rage mobility p/m agp. display is not correct. please help me.

  • Can not connect to itunes server after installation

    I just got a laptop with Windows 8 and I am trying to install I-Tunes 11 to the new laptop.  It installs ok, but after you open I-tunes it does nothing... Will not connect to Itunes Store, search for music, check for updates.  I keep getting a cannot

  • Help to optimize a query

    Dear all, we are working with Oracle 9.2.0.4 64 bits server. Whe have a quera in a view that the response time is between 1.7 to 4 second. Some table have more than 1 million of record and other 100,000 record. the Query is : select * from (   SELECT

  • Wlan problem unter mountain lion

    Hallo habe mich spät zum Upgrade auf mountain lion entschieden. Seitdem bricht die Verbindung zum Wlan (router entweder Telekom oder Time Capsule) ständig ab. IPad und IPhone haben diese Probleme nicht. Das ist sehr ärgerlich. In Verschiedenen Foren