Newbie query problem: function data missing in dropdown

I am a student using 10g express provided with our textbook. The installation to WinXp SP3 went flawlessly and I can execute all required queries from the command line, no problem. The publisher provides SQL scripts related to the chapter material that creates the users and data for the chapter exercises. When I switch to the database home page and attempt to execute a query, I can change the aliases, insert conditions and do any thing else with the record but when I hit the dropdown arrow for function there is nothing there, no list. I have been back over the chapters dealing with installation thinking I have missed some setup parameter but I am coming up empty. Ay help would be appreciated.
Regards,
Dave

Ljuba,
This may be the issue as I ran the script as 'system' but logged in the database as 'handsonxe03'. I may have missed the required login from the text. I will look closer or I may have to modify the script for required user.
I will let you know....Thanks!

Similar Messages

  • Query problem, no data exist

    Dear Experts,
    My user would like to combine data from FBl3N (field BUDAT, amount in document currency, amount in local currency , reference document) with data taken from Billing (VF03- FKDAT, BUDAT, VBELN, CHARG, MATNR, ARKTX).
    I have created a query with the following join table:
    1. VBRP (FKIMG, MATNR, WERKS, CHARG, PRCTR)
    2. VBRK (FKDAT, VBELN, BUDAT).
    3. BSIS (XBLNR, WRBTR, DMBTR)
    Join condition : BSIK&VBRP (BUKRS, GJAHR), VBRP & VBRK (VBELN).
    While executed the query ( SQ01), u2018no data existu2019 message is appear.
    Did I made a wrong join table and condition?
    Kindly advice me.
    Thank you.

    HI
    Please check the joining conditions
    Thanks & Regards
    Phaneendra

  • BI Report Export Problem - Selection data missing

    Hi all,
    I´m pretty new to Web reports and now I have a problem which might be easy to solve for you experts.
    The problem appears when exporting a report. If the user exports the report to PDF or Excel, the data is exported correctly but the selection settings, that the user set, are missing. Only the field name are shown, but not the selected item. Its somewhat of a cosmetical problem, but important to the users.
    Interestingly enough, we use many other templates which have the exact same functionality and where it works correctly.
    I compared the XML on code on those templates, but there is no major difference.
    Here is the important code (at least in my understanding) of the template:
    <bi:param name="BUTTON_LIST" type="ORDEREDLIST">
                                      <bi:param name="BUTTON" type="COMPOSITE" index="1">
                                        <bi:param name="CAPTION" value="PDF">
                                        </bi:param>
                                        <bi:param name="ACTION" type="CHOICE" value="INSTRUCTION">
                                          <bi:param name="INSTRUCTION">
                                            <bi:command type="EXPORT">
                                              <bi:param name="ITEM_REF_LIST" type="UNORDEREDLIST">
                                                <bi:param name="ITEM_REF" index="1" value="TEXT_ITEM_9">
                                                </bi:param>
                                                <bi:param name="ITEM_REF" index="2" value="INFO_FIELD_ITEM_2">
                                                </bi:param>
                                                <bi:param name="ITEM_REF" index="3" value="ANALYSIS_ITEM_1">
                                                </bi:param>
                                              </bi:param>
                                              <bi:param name="FOOTER_LEFT" value="DATE">
                                              </bi:param>
                                              <bi:param name="FOOTER_RIGHT" value="PAGEOFPAGES">
                                              </bi:param>
                                            </bi:command>
                                          </bi:param>
                                        </bi:param>
                                      </bi:param>
    <bi:item name="INFO_FIELD_ITEM_2" designheight="50" designwidth="300" type="INFO_FIELD_ITEM">
                              <bi:param name="DATA_PROVIDER_REF" value="DP_1">
                              </bi:param>
                              <bi:param name="INFORMATION_ELEMENT_LIST" type="ORDEREDLIST">
                                <bi:param name="INFORMATION_TYPE" type="CHOICE" index="1" value="VARIABLE">
                                  <bi:param name="VARIABLE" value="IP_VERS_CM01" text="Plan Version">
                                  </bi:param>
                                </bi:param>
                                <bi:param name="INFORMATION_TYPE" type="CHOICE" index="2" value="CHARACTERISTIC_LIST">
                                  <bi:param name="CHARACTERISTIC_LIST" type="ORDEREDLIST">
                                    <bi:param name="CHARACTERISTIC" index="1" value="0G_CWW010" text="ProdGr">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="2" value="0MATERIAL" text="Material">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="3" value="0PROFIT_CTR" text="Planning Unit">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="4" value="469EIDJHD8W7F786UEL29ZJVV" text="Country Statement">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="5" value="ZXCO_NAV3__ZXCO_BUSN" text="BusSeg Nav">
                                    </bi:param>
                                  </bi:param>
                                </bi:param>
                              </bi:param>
                            </bi:item>
    Any input and hints are appreciated.
    Regards,
    Harald

    Hello Harald,
    As per my understanding, the particular characterisitc is not assigned and that could be the reason for displaying only field name. Please lookinto it.
    all the best,
    Kind regards,
    Praveen

  • Query problem: Some fields missing for org unit

    I'm currently trying to fix a Minimum Compliance Report with some missing fields.
    For a specific organisational unit no data is being generated for distribution and logistics.
    How can i make sure organisational units generate a compliance figure correctly. The formula in the query is fine however when i generate the report there are X's in some fields.
    How can i find the error?
    any advice will be appreciated
    Cheers
    Neil

    Hi Neil,
    Have you tried using the function NDIV0 or NOERR in your formulas? The X in some of the fields may be due to undefined values (e.g. division by zero).
    Hope this helps,
    Juice

  • Query problem with date range

    I have a query that needs to pull data between a date range.
    I've tried several things and nothing seems to work.
    Any help would be greatly appreciated.
    Here's the code:
    <cftransaction>
    <cfquery name="QryFollowUp"
    datasource="NBProdReports">
    SELECT TblContractInfo_SubMenuTable.User_ID,
    TblContractInfo_SubMenuTable.Contract_Number,
    TblContractInfo_SubMenuTable.Transaction_Type,
    TblContractInfo_SubMenuTable.Notes,
    TblContractInfo_SubMenuTable.Num_Checks_Trans,
    TblMasterTrans.Date_Opened
    from TblContractInfo_SubMenuTable ,tblMasterTrans
    WHERE Transaction_Type = 'FollowUp'
    And TblContractInfo_SubMenuTable.Task_Number =
    tblMasterTrans.Task_Number
    And TblMasterTrans.Date_Opened BETWEEN #form.StartDate# AND
    #form.EndDate#
    ORDER BY TblMasterTrans.Date_Opened ASC,
    TblContractInfo_SubMenuTable.User_id ASC
    </cfquery>
    </cftransaction>

    Any help would be greatly appreciated.
    Ok, why are you using a <cftransaction...> around a
    single select query?
    It should be unnecessary.
    This is probably not helpful to your original question. There
    is
    nothing obviously wrong with your query at least to my glance
    through.
    Thus this important question, the one without which you are
    unlikely to
    get any helpful advice, "How does this not work?" Error
    Messages? No
    Data? Wrong Data? Serves you coffee instead of tea?
    It would also probably be helpful to know how your date data
    is
    represented in the database and the form controls, depending
    on what
    your difficulties are.

  • Query Problem - Group data by time

    I have statistic data that record by time such as
    Time Data
    19-MAR-06 10:01 100
    19-MAR-06 10:02 100
    19-MAR-06 10:03 100
    19-MAR-06 10:04 100
    19-MAR-06 10:05 100
    19-MAR-06 10:06 100
    I would like to group data every five minute start from 00:00 to 23:59 for example the result should be
    Time Sum(Data)
    19-MAR-06 00:00 0
    19-MAR-06 00:05 0
    19-MAR-06 10:00 400
    19-MAR-06 10:05 200
    Any suggest?

    SELECT times.all_time, NVL(real.sum,0)
    FROM
       (SELECT  mintim + (level * (1/12/24)) - 1/12/24 AS all_time
        FROM    ( SELECT trunc(MIN(time),'DD') mintim
                       , trunc(MAX(time),'DD') + 1 maxtim
                  FROM   testtab
        CONNECT BY mintim + (level * (1/12/24)) - 1/12/24 <= maxtim
        ) times,
       (SELECT TRUNC(time,'HH24') +
              (TRUNC(TO_CHAR(time,'MI')/5)*5)/24/60 real_time, sum(data) sum 
        FROM testtab                      
        GROUP BY  TRUNC(time,'HH24') + (TRUNC(TO_CHAR(time,'MI')/5)*5)/24/60) real
    WHERE times.all_time = real.real_time(+)  
    ORDER BY times.all_time
    19-Mrz-2006     0
    19-Mrz-2006 0:05:00     0
    19-Mrz-2006 0:10:00     0
    19-Mrz-2006 0:15:00     0
    19-Mrz-2006 9:45:00     0
    19-Mrz-2006 9:50:00     0
    19-Mrz-2006 9:55:00     0
    19-Mrz-2006 10:00:00     400
    19-Mrz-2006 10:05:00     200
    19-Mrz-2006 10:10:00     0
    19-Mrz-2006 23:45:00     0
    19-Mrz-2006 23:50:00     0
    19-Mrz-2006 23:55:00     0
    20-Mrz-2006     0

  • Problem in using query-database() function in Transformation

    Hi All,
    I am using JDev and SOA 10.1.3.4.
    I have an async process.
    In that I am doing a transformation in which source is InputVariable and target is result.
    In Transformation I am using query-database function to fetch a record from DB and am assigning that to result.
    *<xsl:value-of select='orcl:query-database(concat("select ename from emp where empid=",/ns1:DBXSLProcessRequest/ns1:input),false(),false(),"jdbc:oracle:thin:scott/tiger@localhost:1521:abcd")'/>*
    I am not getting any error but query-database is not returning any thing I maen it is returning null.
    If i run that query in SQL prompt it is returning the empname.
    Please help me out.
    Regards
    PavanKumar.M

    Hi Pavan
    I tried following in BPEL transform actvity's XSL file, and it works fine and returns the sysdate for me.
    <xsl:value-of select='orcl:query-database("select sysdate from dual",false,false,"jdbc/myDS")'/>
    Can you try above in new XSL file of Transform activity and let me know its gives you the result? if it works you can start making changes according to your requirement.
    steps to follow:
    1.create connection pool in EM, and make sure its working fine by using test on connection pool.
    2.create Datasource and point to above created connection pool. and restart the oc4j_soa
    3.rename the xsl file name of transform activity in BPEL and use above query-database function.some times xsl files are cached even if you make changes it will not take effect so for testing if you rename it will be good.
    Thanks
    Seshagiri.Rayala
    http://soabpel.wordpress.com/

  • Problem with data in Cube 0IC_C03 in Bex Query

    Hi,
    (1) I am loading data into cube 0ic_c03 from data sources 2LIS_03_BX,2LIS_03_BF and 2LIS_03_UM. I need one more field <b>Manufacturing date</b> in my cube.
    (2) That's why I enhanced datasource 2LIS_03_BF, and populated HSDAT (Manufacturing date from MSEG table.) Date is visible in datasource.
    (3) I loaded data in Cube from 03_BX, did collapse. Then loaded data from 03_BF did collapse. In my cube data display (or LISTCUBE) I am able to see Manufacturing date and keyfigure values (<b>Received stock qty</b>:transit and <b>Issued stock qty: transit</b>) in one row.
    eg.-
    Plant           Manufac.date            Issued Qty            Received qty
    5102            01.07.2007                 2000                       3000
    But In my <b>Bex query</b>, I see -
    Plant           Manufac.date            Stock:in Transit
    5102            01.07.2007                 #
    5102                  #                         1000
    Ideally I want to show data in query -
    Plant           Manufac.date            Stock:in Transit
    5102            01.07.2007                 1000
    Should I enhance 2LIS_03_BX data source also with MAnufacturing date ?
    Please suggest...It is urgent..
    Thanks
    Saurabh

    Thats great Shalini.
    If it is helpful..please assign points.
    If you need any information on that please mail me [email protected]
    Regards,
    RK Ghattamaneni.

  • Entered DATA missing from the Database ( SEM CUBE )

    Hi,
    We are in the process of compiling the Annual Budget for 2011- 12. We
    are using BW-BPS for capturing the data.
    The Problem, is that we are not able see the Data entered in last two
    days. The users have entered the data in SEM-BPS layouts and saved it.
    Also they have executed the Queries through the Bex Analyzer which had
    the data till yesterday evening, but today if the user tries to refresh
    the query then the data is missing.
    The name of BW SEM-CUBE is "ZUCOPA_TC".
    Please suggest some solution.
    Thanks
    Nilesh

    Nilesh,
    someone might have run a delete function or another incorrectly configured planning function that deleted the data (or set records to zero).
    First, STOP any compression jobs on your planning InfoCubes. (If any compression job with zero eliminiation ran the past two days, the data is probably lost for good).
    Second, check in LISTCUBE if the data is still in the InfoCube. Make sure to select ALL fields for the output (including request id). If you are lucky, you will find all the deltas of changes that happened in the past days. If there was a delete (or similar) you should find these deltas, too. Now you can recreate the original data again (it's tedious but can be done).
    Whatever the outcome, you should implement some operational improvements to your planning applications:
    1) Create backup InfoCubes of your planning InfoCubes (fill with nightly DTP for example)
    2) Implement audit log of planning activities (see how-to guides)
    Both will give you a much better chance of recovering data in such cases.
    Good luck,
    Marc
    SAP Techology RIG

  • Reg select query problem

    hi all,
    hope all r doing fine?
    anyway i have a query which is mentioned below:-
    select field1,.....fieldn
             from <dbtable1>
             into corresponding fields of table itab
             where <condition>.
    select field1,...fieldn
              from <dbtable2>
             appending corresponding fields of table itab
            where <condition>.
    the above two select stmts retrieve same set of  fields from two different database tables into same internal table itab..
    now my question is ...........is any other way to change 2nd select statement without using appending correspondin fields
    but the functionality should remain the same as it is after changing..................
    bcos appending corresponding is causing performance problem in data retrieval.
    thanx alot in advance.
    for sure points will be given for all the helpful answers
    Jack

    Hi,
    You can use like that:
    select field1,.....fieldn
    from <dbtable1>
    into corresponding fields of table itab1
    where <condition>.
    select field1,...fieldn
    from <dbtable2>
    appending corresponding fields of table itab2
    where <condition>.
    now u use:
    loop at itab2 into w_itab2.
    read table itab1 into w_itab1 with key w_itab1-<primary field> = w_itab2-<Primary field>.
    if sy-subrc = 0.
      append w_final into i_final.
    else continue.
    endif.
    endloop.
    *i_final table having all data ( i.e itab2 & itab1 data)

  • Select query problem in JDBC sender adapter

    Hello Experts,
    We have a problem with PI sender adapter that PI has started to miss records in database some database records are missing and we are using the below selet query :
    SELECT * FROM [database name].[dbo].[Material_Movement] WHERE [Process_Order_Number] = (Select TOP 1 [Process_Order_Number] FROM [database name].[dbo].[Material_Movement] WHERE ([PI_Read_Date] IS NULL AND [Movement_Type] = (SELECT TOP 1 [Movement_Type] FROM [database name].[dbo].[Material_Movement] WHERE [Transaction_Code] = 'xyz' AND [PI_Read_Date] IS NULL ORDER BY Created_Date ASC))) AND [Transaction_Code] = 'xyz' AND [Movement_Type] = (SELECT TOP 1 [Movement_Type] FROM [database name].[dbo].[Material_Movement] WHERE [Transaction_Code] = 'xyz' AND [PI_Read_Date] IS NULL ORDER BY Created_Date ASC) AND [PI_Read_Date] IS NULL ORDER BY [Transaction_ID] ASC
    I am weak in select query could you please check and suggest how the query can be modified to avoid this issue .
    Thanks,
    Somenath

    Hi ,
    After looking into These Query .. I found ...
    Your Query Will run such Kind of scenario ..
    1.)   Movement Type will be fetched from from below Query
            SELECT TOP 1 Movement_Type
            FROM database name.dbo.Material_Movement
            WHERE Transaction_Code = 'xyz'
           AND PI_Read_Date IS NULL
            ORDER BY Created_Date ASC
    2.) on the  basis of abovr fetched  moment code . your Query will fetch 1 Process Order number
    Select TOP 1 Process_Order_Number
    FROM database name.dbo.Material_Movement
    WHERE ( PI_Read_Date IS NULL
                  AND Movement_Type =  Moment Type will be same as 1.
    3.)
    After  Getting 1 and 2 . Query will fetch Data  from table " dbo.Material_Movement "
    On the basis of ..
    Movement_Type = value from 1.
    Process_order_type = value from 2.
    Transaction_Code = 'xyz'
    ORDER BY Transaction_ID ASC
    So check Missed record Fullfill this Condition or not ....................
    If not ... You will get why they are not picked by your given Query ...........
    Hope it helps ..
    regards
    Prabhat Sharma.

  • "UFL 'u2ltdate' that implements this function is missing."

    I am working through migrating older reports from a very outdated version of Crystal into a newer version and trialing Crystal Server 2013 with Crystal Reports for Enterprise.  The only problem I am running into is that I have many reports using the NumberToDate function to pull a number string and form it into a date for the report.  I really need this function to work because we rely on it quite heavily.  When I pull reports that use it into my new environment I am given the following error:
    "UFL 'u2ltdate' that implements this function is missing."
    I have found the u2ltdate.dll on the web and transferred it into the following folders: windows/system32 and program files(x86)/SAP BusinessObjects/SAP BusinessObjects Enterprise XI 4.0/win32_x86 and the win64_x64 as well just to be sure.  But to no avail I am still unable to use the NumberToDate function.  I have even tried copying the u2ltdate.dll from our older server, and this doesn't work either.  I really need to get this working as soon as possible.    I don't know if I need a 64 bit dll because it is windows server 2008 or if I don't have it in the right places.  Please help!

    Hi Warre,
    Don't put the ufl into the \windows\system32 folder. Nothing should go there now.
    I doubt this will ever work in CR for Enterprise. It's a Java Designer so the only way to make it work is to create a Java UFL.
    Search for this KBA:
    1803967 - How to make a Java UFL available in Crystal Reports 2011 Designer?
    Same for CR for Ent., you need a Java UFL.
    Only way to make this work is to convert the UFL to Java or use Crystal Reports 2011 or 2013.
    See this MS Forum post I responded to also:
    Custom Crystal DLLs with Crystal Reports 2008 for Visual Studio Run Time
    And this one:
    http://scn.sap.com/docs/DOC-35036
    And this one:
    Java UFL and VB UFL
    Try searching, there is a kbase article with a sample attached.
    And you will need a 64 bit version because some of the report processing servers may be 64 bit only but I believe the Crystal Report Processing Server is 32 bit only. It will need the UFL copied into it's \win32_x86 folder.
    Only issue you should have is using CR for Ent. to design/update/create the reports with that function. Use CR 2011 or 2013 and it should work.
    Problem is we no longer have the source code for that UFL and others, quite often they were written by Support people and therefore not saved into our code source system.
    Don

  • Querying metadata vs data

    Hi There,
    Say I had the option of coming up with whatever schema that works best for BDB XML from a performance standpoint to persist xml documents. That said, I now have the option of storing metadata as metadata or as part of the regular data/content. Given that both metadata and data/content can be indexed, is one option preferable over the other ?
    Just to be really clear, I am considering b/w options (1) and (2) below. Assume that 'custCreatedBy' will be indexed for both (1) and (2).
    (1)
    Metadata: <custCreatedBy>bar</custCreatedBy>
    Data/Content:
    <cust>
    <id>123</id>
    <name>foo</name>
    </cust>
    (2)
    Metadata: None
    Data/Content:
    <cust>
    <custCreatedBy>bar</custCreatedBy>
    <content>
    <id>123</id>
    <name>foo</name>
    </content>
    </cust>
    Cheers,
    Shashi

    Whether you opt to put data in the document or in
    metadata depends mainly on whether you need that data
    available outside of BDB XML. If you do, it should go
    in the document. There is not a major performance
    difference, because both can be looked up directly
    using indexes if they exist. I use metadata primarily
    when I need to store data that cannot exist in
    my XML, for such reasons as schema constraints, etc.
    Keep in mind that metadata is not XML, it's just
    name-value pairs.
    Agreed. Makes sense.
    When you can create your own XML, some of the things
    to keep in mind for ease of use with BDB XML are:
    I guess in my case, I wasn't very clear but I do not have as much control over the content as much as the rest of it which would be the metadata. But regardless, all of the below points are very valid and useful (some of which I gathered from Chapter 7). Thanks for reiterating these anyways.
    • Indexes are not used for negative presence. That
    is, you should avoid XML where you need to test for
    the absence of certain nodes. If you wanted to query
    for all documents missing an <id/> element, for
    example, indexes would not help. You'd need to
    instead test for documents with <id/> elements with
    an empty string value, and look that up with a
    query.Interesting. I find it hard to understand why a "presence" index cannot be leveraged for this as well. Anyways, just to satisfy my curiosity, I played with the two queries (exist, not exist) - below are query plans for both usecases with a "presence" index for "id" node.
    dbxml> queryPlan collection('junk.dbxml')/cust[id]
    <XQuery>
    <Navigation>
    <QueryPlanFunction result="collection" container="junk.dbxml">
    <OQPlan>P(node-element-presence-none,=,id)</OQPlan>
    </QueryPlanFunction>
    <Step axis="child" name="cust" nodeType="element">
    <Predicates>
    <Step axis="child" name="id" nodeType="element">
    <OQPlan>P(node-element-presence-none,=,id)</OQPlan>
    </Step>
    </Predicates>
    </Step>
    </Navigation>
    </XQuery>
    dbxml> queryPlan collection('junk.dbxml')/cust[not(id)]
    <XQuery>
    <Navigation>
    <QueryPlanFunction result="collection" container="junk.dbxml">
    <OQPlan>U</OQPlan>
    </QueryPlanFunction>
    <Step axis="child" name="cust" nodeType="element">
    <Predicates>
    <Function name="{http://www.w3.org/2005/04/xpath-functions}:not">
    <Step axis="child" name="id" nodeType="element">
    <OQPlan>P(node-element-presence-none,=,id)</OQPlan>
    </Step>
    </Function>
    </Predicates>
    </Step>
    </Navigation>
    </XQuery>
    I presume that you are referring to the first bolded line (indicating that the index is not kicking in for "cust[not(id)]" query. However, I am curious to learn about the second bolded line above which seems to indicate that the "presence" index is indeed kicking in. In my limited experience with db xml, this is the first query plan where I have seen the <OQPlan> node appear twice. Wondering if someone could shed more light or pointers to understand this query plan more. I did see the "Caution" line in your book citing that it is not documented anywhere - but i am hoping against hope that maybe that is not true anymore - since I see myself banking on it to do some tuning of my own.
    Thanks again for all your insightful comments/tips. Cheers.

  • Runtime error: UFL 'u25total.dll' that implements this function is missing

    Has anyone seen this error when printing reports at runtime?
    HandlingInstanceID: 34db0437-5151-48f1-b737-8aa06b53a7ed
    An exception of type 'System.Runtime.InteropServices.COMException' occurred and was caught.
    11/14/2008 09:03:20
    Type : System.Runtime.InteropServices.COMException, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    Message : UFL 'u25total.dll' that implements this function is missing.
    Source : Crystal Reports ActiveX Designer
    Help link :
    ErrorCode : -2147191835
    Data : System.Collections.ListDictionaryInternal
    TargetSite : Void PrintOut(System.Object, System.Object, System.Object, System.Object, System.Object)
    Stack Trace :    at CRAXDRT.ReportClass.PrintOut(Object promptUser, Object numberOfCopy, Object collated, Object startPageN, Object stopPageN)
    We develop our reports in CR Developer Product Type: Full version 11.5.8.826 and the main application is a windows .net C# application. At our branch locations we have CR XI2 SP3 installed. Currently we have our application at over 400 locations and this error keeps coming up sporadically. Once the users click through the error and print again they have no problems. I haven't been able to reproduce this error so any help would be very much appreciated.

    Don,
    I talked this over with my team members here is what we are going to try. We are going to add mutex around our print code that contains the following:
    CRAXDRT.ApplicationClass reportApplication = new CRAXDRT.ApplicationClass();
    CRAXDRT.Report legacyReport;
    After adding the mutex to the code we still received an exception. So in the interest of trying to free up the resources associated to that DLL we added the following inside of the mutex after the print code.
    reportApplication = null;
    legacyReport = null;
    GC.Collect();
    GC.WaitForPendingFinalizers();
    After doing that I havenu2019t been able to reproduce the problem. Is there anything else in the com objects that could be holding that resource open.

  • Error " Data missing for the entry check while creating a new waste code

    Hi all, While setting a new Waste code I get the error " Data missing for the entry check, correction:". while filling the NAM- WASTECOCAT - LER item.
    This sould look for the catalog's name included in the phrase set but for some reason it doesn't find it giving me this error.
    I am changing original Characteristics, phrase set, classes, and value assignment type. Just to have my own estructure with Znames for all of them.
    I have also change the enviroment parameter "WAM_PHRSET_WACATLG" with the name of my phrase set.
    I have checked everything several times watching for typos or looking for a missing step.
    I have even tried including my new Z's characteristics in the classe and living the original SAP_EHS_1024_001_WASTE_CATALOG. (changing the enviroment parameter WAM_PHRSET_WACATLG to SAP_EHS_1024_001_WASTE_CATALOG) and it works.
    I will like to change this characteristic by Z_EHS_WA_WASTE_CATALOG
    Phrase set to Z_EHS_WA_WASTE_CATALOG.
    enviroment parameter WAM_PHRSET_WACATLG= Z_EHS_WA_WASTE_CATALOG
    After matching up the master data It should work fine but I might be missing something to get it running ok.
    ¿Any idea?
    Regards,
    Alvaro

    Hello Juan Carlos, the value and class that I want to duplicate and doesn't work is for Waste Code, I have also duplicated the one you have displayed (waste pproperties) without any problem.
    1.I have duplicated and changed class SAP_EHS_1024_001. to Z_EHS_WA
    2. Create a copy of the 5 characteristics included in this class.
    SAP_EHS_1024_001_WASTE_CATALOG
    SAP_EHS_1024_001_WASTE_CODE
    SAP_EHS_1024_001_WA_SUBCATEG
    SAP_EHS_1024_001_WA_CATEGORY
    SAP_EHS_1024_001_REMARK
    change the name by
    Z_EHS_WA_WASTE_CATALOG
    Z_EHS_WA_WASTE_CODE
    Z_EHS_WA_SUBCATEG
    Z_EHS_WA_CATEGORY
    Z_EHS_WA_REMARK.
    I checked the funcion C14K_WASTECATLG_CHECK is in the value of the Z_EHS_WA_WASTE_CODE characteristic
    I checked the funcion C14K_WASTECODE_CHECK is in the value of the Z_EHS_WA_WASTE_CATALOG characteristic
    3. Create phrase sets for each new category. with same name.
    4. Match up the master data.
    5. Change the enviroment parameter.to Z_EHS_WA_WASTE_CATALOG
    I think I have followed all the steps, but for some reason it doesn't find the catalog
    The phrase for the catalog is EWC in english and LER in spanish.
    Regards
    Alvaro.

Maybe you are looking for

  • Firefox won't download addons due to error code 228

    I am a new user to xubuntu 10.04, and I just installed it on a computer duel-booting with Vista. Whenever I try to download an add-on, the opens the download add-ons screen, but nothing else. Then, it quits out saying that Firefox could not install t

  • PI 7.0 Support Pack 16 Release Note

    hi We are starting up with SAP NetWeaver 2004s Support Pack 16 deployment. Our environment is, Windows 2003, MS SQL Server and PI 7.0. Would appriciate if you help me with release note if any and any helpe/tips around this stack deployment. Thanks Se

  • Import statements

    I have noticed that some import statements have a * at the end and others don't. Cans omeone explain the difference please. Also, if for example I have the following; import java.util.*;and I want to use Pattern and Matcher for regular expressions, w

  • Why doesn't my clear history completely clear my history

    Hi there, I'm trying to clear all of the browsing history from my Firefox but it's not working. The function clears all of my searches and website preferences and passwords bar one or two websites. I've ticked all of the options for clearing history,

  • How to add new operand in installation facts through FMs

    Hi, Please guide me for the following query: How to add new operands in installation facts through Function Module? Please guide me with any function module through which i can acheive the above requirement. Thanks and Regards