Importing Custom folder/item class gives warning

Hi
When i trying to import custom folder in admin it gives me warning indicating that imported successfully but not in Business areas. now it shows in folder list but not in associated BA. so i have to manually assigned it to BA by selecting manage folders. Same thing happened with item class. it imported successfully but selected item was missing and it shows LOV in item class but when i select edit item class and i saw that selected item was empty.
Is it bug?
Plz help me.
Thanks,
Jay

Hi Jay
I really do understand and again I sympathize. Let me state the correct approach and you will see how your organozation is deviating from what other companies do.
Most organizations that I work with have a single production environment. Under that they have a pre-production or QA environment, with further environments for development, test and training. They would never attempt to migrate to production without going through QA first, knowing also that QA was a copy of production that was refreshed not so long ago.
There would also be only one development environment and one test environment. It is not a good idea to have developers working on their own private EUL as this WILL cause issues during migration.
There's nothing to stop two developers working inside the same development EUL providing they are in different business areas. Its not wise to attempt multiple edits to the same business area at the same time as this makes for extremely difficult user testing.
Now, if you do decide to continue using multiple development EULs you must not migrate from these straight into production. You must migrate into the QA area first where you can test and make sure that no upset has occurred. Whenever something goes to production from QA it is imperative that those same changes be propogated to all of the other EUL instances otherwise you are asking for trouble.
Does any of this help?
Best wishes
Michael

Similar Messages

  • How to import custom java jar/class into oracle to be used in java proc ?

    Hi
    I would like to know how to import custom java jar/class files into oracle to be used in java stored procedure.
    I am developing a oracle pl/sql procedure to call java program. The java program will be created as procedure and will be published.
    But, my question is that I do have a other external jar/class file that need to be imported into this java program.
    example
    raise_sal.java
    import java.util.*;
    import oracle.sql.*;
    <<reference other java programs >>
    import cmpmsgsvc.xxxx.* ;
    import cmpmsgsvc.yyyy.* ;
    import cmpmsgsvc.zzzz.* ;
    how do I import the cmpmsgsvc jar/class file into oracle so that I don't have any
    compilation errros on raise_sal.java program ??
    what are the steps to import/compile and validate to do this?
    thanks for your help in advance.
    Thanks
    rrb.

    Kuassi
    Problem is that, I have 6 jar files that are needed to be included in the main java program. And, there are more than 50+ classes, propertiers in those 6 jar files.
    It might be not good idea to have all those 50+ classes in the production database.
    Is there anyway that I keep all those 6 jar files in unix box (our's is oracle erp installation with oracle being installed on unix box) and just refer them in the main java program. I mean database will be loaded with main java program and it should able to refer other 6 jar files from unix.
    if we create a directory and keep all jar files in there and include that directory in classpath variable, does this works? or what is other method?
    Please let me know.
    Thanks

  • Access Custom Configuration Item Class property in Data Warehouse database

    Is there a way to access properties on a custom 'Configuration Item Class' in the DW database?
    When creating a new CI class eg. 'Monitors' and extending this with a property like 'Serial' is there a way to access this in the DW database?
    I can find Displayname and AssetStatus in the ConfigItemDim table, but is there a way to get the other custom created properties?

    Ok !
    Are you read this post ? :
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/8434e129-b969-451e-875c-f120d7b31d36/dw-reporting-on-custom-class?forum=systemcenterservicemanager
    Remy BOVI

  • Importing Custom folder in Discoverer Administrator from One Instance to Another Instance

    Hi all,
    I have created a custom folder XXHR_TEST_FOLDER_OLM in Discoverer Administrator 10.1.2.1 in my test instance. I want to move it to another instance say UAT. First i exported the folder from test instance. File-> Export -> Selected Objects in the End User Layer->Selected Custom folder->Provided Save location and finish. The eex file is created in my local machine. Now I tried to import the same to the UAT instance. File-> Import. It throws me an warning stating
    "A folder named 'XXHR_TEST_FOLDER_OLM' was created or modified during the import but is not in a business area". What am i missing here. Kindly let me know.
    Regards,
    Pradeep

    Vinay,
    For deploying pages to Production instance , you need import these pages with help with oracle.jrad.tools.xml.importer.XMLImporter command. Check old thread in this reference .
    Thanks

  • Cannot import custom made java class

    Hello
    I wrote a java class say (Money.java) which compiled fine. When I was importing it to another class (Account.java), the folowing error message appears:
    Account.java.1:'.' expected
    import Money;(an errow pointing to ";")
    I dont think the code is wrong, because when I cut and attach the Money class code to the front of the Account class it compiled successfully.... I am confused! I wrote the import command according to the text book as follows:
    import Money;
    public class Account
    By the way, both the Money and Account classes are saved in the save folder... How come it wont let me import...
    Looking forward for an early reply.
    Thanks

    In older versions of Java, it was possible to import classes from the default package using a statement like:
    import Money;
    This feature has been removed from Java as of version 1.5. You cannot import classes from the default package.
    Note that if your other code (Account.java) is also in the default package, you do not need to import the class Money. Just remove the import statement.
    If class Account is in a different package and you want to use class Money, then the only option you have is to put class Money in another package than the default (unnamed) package.

  • An array of vectors that contain a user defined class gives: warning: [unch

    I've read two tutorial on Generics and still don't get everything.
    Anyway I have a user defined class called a Part. I have some Vectors of Part objects, and these Vectors of Part objects are stored in an Array of Vectors.
    Amazingly, I got all the checking right so far; however, am now trying to loop through my Array, an pass the individual Vectors to a method:
    //create a single list of all parts numbers
    //add the part number from each vector/part into a new vector of strings
    for(int y=0; y < ArrayOfPartVectors.length; y++) {
        Vector<Part> vTemp = ArrayOfPartVectors[y];
        vAllPartNumbers.addAll(pm.getPartNumbersFromVector(vTemp));
    }I get the following warning:
    com\gdls\partMatrix\PartMatrix.java:75: warning: [unchecked] unchecked conversion
    found   : java.util.Vector
    required: java.util.Vector<com.gdls.partMatrix.Part>
                                    Vector<Part> vTemp = VectorArrayParts[y];
                                                                         ^
    1 warningNow I have put the 'check' (<Part>) in every concievable spot in that statement, and I get a compler error now instead of a warning.
    Any guidance would be appreciated.
    Thank you,

    The problem is not with Vector. If you want to use it that's fine.
    You could also want to use ArrayList because the class is roughly equivalent to Vector, except that it is unsynchronized.
    But your problem is that arrays and generics don't mix well as previously mentioned in the first reply.
    You did not specify the type of ArrayOfPartVectors but I guess it is Vector[], not Vector<Part>[], right?
    So you'll have an unchecked warning when doing the conversion from Vector to Vector<Part> in the assignment within the loop.
    Maybe you tried to use a ArrayOfPartVectors of type Vector<Part>[] instead but found it impossible to create it with new
    You can do it with Array.newinstance() but you'll get an unchecked warning at this line instead of later.
    So mixing generics and arrays will allways result in warnings.
    You should read: [url http://www.angelikalanger.com/Articles/Papers/JavaGenerics/ArraysInJavaGenerics.htm]Arrays in Java Generics.
    Regards

  • Runtime error - FBL1N - vendor balance with customer line item

    Hi gurus,
    One scenario where i have assign vendor as customer & customer as vendor in vendor & customer data. also make tick mark for both clearing with vendor & customer.
    when i see the customer report with vendor item it shows me the customer & vendor dues but when i tried to see the vendor balance with customer line item it gives dump error.
    Runtime Errors         PERFORM_NOT_FOUND
    Exception              CX_SY_DYN_CALL_ILLEGAL_FORM
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_FORM', was
         not caught in
        procedure "%_LDB_CALLBACK" "(FORM)", nor was it propagated by a RAISING clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        The program "RSDBRUNT" is meant to execute an external PERFORM,
        namely the routine "CB_DDF_GET_KNA1 " of the program "RFITEMAP ", but
        this routine does not exist.
        This may be due to any of the following reasons:
        1. One of the programs "RSDBRUNT" or "RFITEMAP " is currently being developed.
        The name "CB_DDF_GET_KNA1 " of the called routine may be incorrect, or
        the routine "CB_DDF_GET_KNA1 " is not yet implemented in the program "RFITEMAP
        2. If the program SAPMSSY1 is involved in the runtime error, one of
        the function modules called via RFC is not flagged as remote-capable.
        (see Transaction SE37  Goto -> Administration -> RFC flag)
        3. There is an inconsistency in the system. The versions of the
        programs "RSDBRUNT" and "RFITEMAP " do not match.
    Warm regards,
    Dhananjay R.

    Hi martin
    still problem was not solved. actually i am working on ECC 6.0 & not required to implement the sap note on development. i had done the configuration in vendor master & customer master for clearing.
    please suggest me.....what to do ?
    Than'x
    Dhananjay R

  • Item Class removed during import of EEX

    I have amended the SQL for a custom folder and this custom folder has one item class and is joined to two other folders. In my export I have included the BA, the three folders and the item class. When I import this EEX to a support environment the item class is deleted. If then import the EEX a second time the item class is recreated.
    Has anyone seen this behaviour before? Is there any way to resolve/prevent this? I don't believe the export strategy is at fault as I have migrated 100's of objects in this manner. What is most strange is that the item class clearly exists in the EEX as it is creating it on the second import.
    I am using the Refresh object: preserve display related properties option and objects are being matched by identifier. These are the standard choices for all our migrations.
    Thanks,
    Nic

    Hello Nic
    I frequently need to import EEX files a second time and do it regularly. This is because of a round-robin scenario where item classes are shared between folders. So if folder A is imported before folder B and the item class is driven from folder B it will not be attached to the items in folder A. If I now do the import a second time then because the item class already exists when folder A is iimported the system sees that the LOV is there and hooks it back in.
    Hope this behind the scenes explanation and Rod's previous posting help.
    Best wishes
    Michael

  • Item based on a formula in a custom folder

    Hi, actually I'm using Discoverer 4i and I have a problem when I create (with the administrator) an item based on a formula inside a custom folder.
    The item is based on the following formula :
    GET_THRESHOLD(Name,'XXI_SZF_SLA_Thresholds_Kormos') -- (1)
    where:
    GET_THRESHOLD is a function that returns a number
    Name is the first parameter (and at the same time another item of the custom folder)
    'XXI_SZF_SLA_Thresholds_Kormos' is an hardcoded value.
    So..when I wrote the formula into the Item Properties, this is written correctly and when I connect with Desktop or Viewer my report works correctly.
    But when I close and I re-open the administrator, I see the following formula
    GET_THRESHOLD(Name,'XXI') -- (2)
    .....how it was saved in a wrong way....or truncated....
    I tried to check also the flag "Automatically save changes after each edit"....but I see always, after I reopened the administrator, the formula (2) and not the formula (1)
    Is seems that my changes are not saved !!
    Is this a bug ? Can I fix it in some way ?
    Thanks in advance
    Alex

    hi,
    1. Try to execute the function manually by passing the same value.
    2. Discoverer formats the names of Items/folders/parameters etc by replacing underscores ("_") with a space, so this might be the reason, why it converts the value to : 'XXI SZF SLA Thresholds Kormos' and takes only the first string "XXI".
    3. Try passing a value without "_".
    Hope this helps!
    Yogini

  • How to import custom classes from model to view controller in adf?

    hi...
    i have some custom classes in model layer in adf.
    i want to use them in view controller but i cannot import them.
    how is this possible?
    my jdev version is 11.1.1.5

    You normally don't have to do anything special. The view controller project has a dependency to the model project. So simply typing the class name should show you hte option to generate the need import statement for the class.
    However, not all classes which reside in the model project should be imported into the view Controller as it might break the MVC pattern.
    Timo

  • Power view chart gives warning if no of items to display is large. Is there a way to remove it?

    Hi,
    Power view chart gives warning if no of items to display is large. Is there a way to remove it?
    Thanks,
    Bhawna

    I think my issue is related, but with a different warning:
    It is showing the locations on the map, so i guess there is a connection.
    What is the maximum number of items to show on a powerview map? I'm now using a report with 1500 locations, which is already too many apparently?

  • BAPI or FM or Class for Customer open items CLEAR (F-32)

    Hi Everyone,
    Is there any BAPI or FM to CLEAR customer open items (F-32).
    Thanks,
    NK

    Hi,
    For clearing open items you can use BAPI_ACC_DOCUMENT_POST.
    but need to write extra code in BTE
    check this function module SAMPLE_INTERFACE_RWBAPI01.
    need to update below four fields of table accit.
    REBZG (document no against u want to clear)
    REBZJ (fiscal year)
    REBZZ (line item)
    REBZT
    to update these field use BTE.
    Thanks,
    Avadhut.

  • Item Class question

    I've created a custom folder with the following code to get a LOV for days of week.While creating the item class I didnt ask it to sort the values but still it gives me the value in alphabetical order. When i tried to run the same query in sql it was also giving me in alphabetical order by default. Is there any turn around which would allow me to give the user in the right way starting with Sunday(SU).
    SELECT 'SU' REGION FROM sys.dual
    UNION
    SELECT 'M' REGION FROM sys.dual
    UNION
    SELECT 'T' REGION FROM sys.dual
    UNION
    SELECT 'W' REGION FROM sys.dual
    UNION
    SELECT 'TH' REGION FROM sys.dual
    UNION
    SELECT 'F' REGION FROM sys.dual
    UNION
    SELECT 'S' REGION FROM sys.dual

    Thanks Ott Karesz it works!.
    I've one more problem with this. I'm using this Item Class in one of my condition so that user can pick one or more values which are being passed to a function. When I create a condition and allow user's to select multiple value's and I try to pass it my function I see that only first value is being passed. If the user selects SU,M,T and when I try to pass the parameter values to the function and return back the same i see that only first value SU is being passed. Why aren't the rest of the values being passed to my function.
    CREATE OR REPLACE FUNCTION Disco_Test(P1 IN VARCHAR2) RETURN VARCHAR IS
    PARAM1 VARCHAR2(250);
    BEGIN
    PARAM1:=P1;
    RETURN PARAM1 ;
    END;
    Thanks for all help.

  • Item Classes - large tables - query timeouts!!!

    Hi,
    I've been building a series of Item Classes in Discoverer 4.1. Admin Tool on a reasonably large set of tables - but some of the Item Classes timeout before the list of values are retrieved.
    Discoverer continually tells me to go and set values for the query govenor - but I've already done this (15minute warning, 60 minute timeout).
    Does the Admin Tool have another place to configure the Query Govenor - other than Tool -> Privileges -> Query Govenor Tab...
    I've been able to fool the database by running a SQL*Plus query (resulting in a cached result set) for the smaller tables, but the Item Classes based on the larger table will not return.
    I've reviewed the 'LOV that works more like the LOV in Oracle Forms' thread and the Database Function and Custom folder solutions will work - but I'd prefer to fix the problem at its source. Is it possible Discoverer requires an index on every column used as an item class?
    Can anyone help me?
    thanks,
    Lance

    Have a look at the timeout value specified in the registry key:
    \\HKEY_CURRENT_USER\Software\ORACLE\Discoverer\Database\ItemClassDelay
    By default it is 20 seconds.
    Metalink Note refers:
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=1040079.6
    You're probably safer using your lookup tables to generate LOV's anyway, since you have no guarantee that an LOV generated from a particular field in your table will contain all of the possible values available in the lookup table.

  • Clearing customer open items

    Hello!
    Can anybody help to find a way how to clear customer open items when there is no reference number in use for customer. In electronic bank statemen there is only billing document number in TXT field. How to configure "Make Global Settings for Electronic Bank Statement" and "Define Search String for Electronic Bank Statement" for that purpose.
    With all the best,
    Merlin

    Hello,
    IMG => Financial Accounting => Bank Accounting => Business Transactions => Payment Transactions => Electronic Bank Statement => Make Global Settings for Electronic Bank Statement
    Give your chart of Accounts
    1. Create your account symbols
    Create freely definable account symbols. Make sure that you are able to identify them when you are configuring in future steps.
    2. Assigning Accounts to Account Symbols
    Here you need to assign the account symbols to GL Accounts or you need to use masking logic. You must have designed your accounts in such a way that the end digits will work for posting the entries to FI. Account Modifier you use as + and use your local currency, if you do not have any foreign currency postings.
    3. Create Posting Rules
    Create freely definable posting rules.
    4. Define Posting Rules (This is the most important configuration for your FI Postings / Clearings)
    a) For all the payments you need to create the entries for posting area 1
    b) For all the receipt you need to create the entries for posting area 1 and 2
    c) Use the document type DZ in case if you want to clear the items. Use Posting type 8. If the invoice number is there in the reference field of bank statement, automatically the same will be selected by the system and cleared.
    d) If you want just only entries to be posted use posting type 1.
    e) If you want to clear the check, then use the posting type 4.
    f) Configure according to the entries to be posted.
    g) If you are going for clearing something the offsetting debit / offsetting credit (as the case may be) need not be given.
    5. Create Transaction Type
    Create freely definable Transaction Type
    Select the transaction type and assign the external transactions to your posting rules.
    For outgoing check use 13 as Interpretation Algorithm and 1 as the processing type.
    Remaining all case use 1 (Standard algorithm) and 5 as the processing type.
    Please also go through the below mentioned note in case if you are required to use further available interpretation algorithms or processing types.
    6. Assign Bank Accounts to Transaction Types:
    You need enter the Bank Key / Bank Account / Transaction type here.
    You can get the the bank key and bank account details from table T012K (Go to SE16)
    Further supplementary notes may be useful to you:
    There are different programs to upload electronic bank statement.
    FF.5 or FF_5.
    I think your case Multicash format you are using.
    You need have three files in FF.5 and two files in FF_5
    You can prepare a Z program in order to truncate the electronic bank statement into two or three part files and save them on the application server.
    1. Take all the external codes list from bank.
    2. Take any available documentation from the Bank describing the relevance of the external codes.
    3. Make sure that your Chart of Accounts (Bank Accounts) last digits logic is appropriate to meet the requirements.
    4. Based on this decide the Account Symbols that are required to be created.
    5. Make sure that the masking rules are configured properly.
    6. Decide the posting rules that needs to be created.
    7. Link up your external symbols provided by the bank with Posting rules and give proper algorithms for posting and clearing logic.
    6. Concentrate on the posting areas to be posted while uploading the bank statement.
    Further explanation would help you to understand the functionality when uploaded the electronic bank statement.
    Main purpose of uploading the bank statement into SAP is to make your Bank Main Account and physical bank statement balance in sync.
    You do not have any traditional Bank Reconciliation Statement (BRS) report in SAP.
    SAP is normally you maintain bank main account and bank sub account. Whenever you make a payment through F-53 or F-58 or F110, the entry would be:
    Vendor Account Dr
    To Bank Sub Account
    The ending digits of the sub-account would be important in configuring the masking rule. Based on this masking rule when you upload the bank statement the entry the system would pass is:
    Bank Sub Account Dr
    To Bank Main Account
    It depends on the configuration, either the sub account will be cleared by the system automatically or you need to run F.13 to clear the sub accounts.
    At the time of receipts, you have different accounting entries unlike payments. It needs to post to two posting areas. 1. GL Accounting 2. Sub-Ledger Accounting
    The entries would system itself pass is:
    Bank Main Account Dr
    To Bank Sub Account
    Bank Sub Account Dr
    To Cutomer account.
    Clearing logic mentioned for your posting rules and the alogrithm used for your external bank symbols will also play pivotal role in clearing the accounts.
    Ideally you will use
    FF67 / FF.5 / FF_5 for uploading manual or electronic bank statement
    FEBA / FEBA_BANK_STATEMENT is used for furthe rprocessing.
    GO THROUGH SAP NOTE 48854
    Please go through SAP Note. 48854. You will get an idea regarding the functionality of the algorithms.
    Though this note is in relevant to GB specific, you will find this very useful.
    description follows below regarding the normal procedure for maintaining table T028G. Due to the different bank codes and posting rules, pre-Customizing is not possible at this point.
    The following processing types are available - unless stated otherwise, you should use the interpretation algorithm: '000 - No interpretation' in each case.
    1. '00': There is no processing. The entry line is ignored.
    2. '01': A validation is made whether an entry exists for the transferred check number in the check table (PAYR). The check number and payment document number are transferred for further processing. Interpretation algorithm: outgoing check processing '011'-'013'; the update in the check file is via the interpretation algorithm.
    3. '02': Transfer of the ending balance to the electronic bank statement
    4. '03': Transfer of the opening balance to the electronic bank statement
    5. '04': Clearing via the allocation number which is delivered with the bank statement. No interpretation algorithm.
    6. '05': Clearing of BACS payments or BACS bank collection. The reference text field is first read to ascertain whether it involves payments initiated by users or bank collection via BACS. Providing it does involve a cash transaction initiated by the user, the payment document numbers concerned are determined via the reference number and transferred as a reference to further processing. Interpretation algorithm: '000 - No interpretation' or '019 - Reference number DME'.
    Note
    To differentiate between the two procedures in table T028G, you have to maintain two separate entries.
    Example: the bank uses bank code '62' for cash receipts and for BACS bank collection.
    Ext. Transaction +/- sign Posting rule Int. Algorithm Processing type 62 + GB62 001 5
    62 SAPBACS + GB63 000 5
    7. '06': Bank costs or interest revenues
    Recommended interpretation algorithm: '000 - No interpretation'
    8. '07': Total amount of cash disbursements
    9. '08': Total amount of cash receipts
    10. '09': Items not paid
    Recommended interpretation algorithm: '000 - No interpretation'
    Regards,
    Ravi

Maybe you are looking for