Problem on Web ADI importer (Order Import)

Hi all,
I have been trying to import data with Web ADI (custom integrator). I use Synchronous Concurrent with "Order Import" program.
The excel returns error of:
1 rows successfully uploaded.
No concurrent import requests have been submitted
The import program could not be started. Contact your system administrator.. 
Parameter 5 from the CONCURRENT_REQUEST import step parameter list 660:TSTNUPL_CP has the following error:
  API Parameter name is not defined in Attribute 1.
The bne.log file records error as:
BneParentMenuResolver.getMenuItem() MENU 101:BUDGET_NOTE - Menu item excluded because IntegratorAppId and Code does not match that of the Top-Most Menu Item or current Integrator: 660:TSTNUPL_XINTG
It would be very much appreciated if anyone can provide a hint on solving this problem, which exists for a long time.
Thank you for your kind attention.

10/7/14 12:54 PM AJPRequestHandler-HTTPThreadGroup-16 ERROR          BneParentMenuResolver.getMenuItem() MENU 101:BUDGET_NOTE - Menu item excluded because IntegratorAppId and Code does not match that of the Top-Most Menu Item or current Integrator: 660:TSTNUPL_XINTG
10/7/14 12:54 PM AJPRequestHandler-HTTPThreadGroup-16 ERROR          BneParentMenuResolver.getMenuItem() MENU 101:BUDGET_NOTE - Menu item excluded because IntegratorAppId and Code does not match that of the Top-Most Menu Item or current Integrator: 660:TSTNUPL_XINTG
10/7/14 12:54 PM AJPRequestHandler-HTTPThreadGroup-16 ERROR          BneParentMenuResolver.getMenuItem() MENU 101:BUDGET_NOTE - Menu item excluded because IntegratorAppId and Code does not match that of the Top-Most Menu Item or current Integrator: 660:TSTNUPL_XINTG
10/7/14 12:55 PM AJPRequestHandler-HTTPThreadGroup-16 ERROR          BneAsyncUploadPage.renderPage Error trying to check whether the job will be importing.
10/7/14 12:55 PM AJPRequestHandler-HTTPThreadGroup-16 ERROR          BneAsyncUploadPage.renderPage Empty value for parameter cannot be interpreted as a Boolean.
10/7/14 12:55 PM Web ADI Upload Job 222732 ERROR          BneAbstractConcurrentImporter.validateConcurrentRequestStep validation error: An exception was thrown while validating the PL/SQL parameters... see the above messages
10/7/14 12:55 PM Web ADI Upload Job 222732 ERROR          BneSyncConcurrentImporter.uploadImport - Generic exception caught: Parameter 5 from the CONCURRENT_REQUEST import step parameter list 660:TSTNUPL_CP has the following error: API Parameter name is not defined in Attribute 1.
10/7/14 12:55 PM Web ADI Upload Job 222732 ERROR          BneSyncConcurrentImporter.uploadImport - Stack Trace: oracle.apps.bne.exception.BneUploadException: Parameter 5 from the CONCURRENT_REQUEST import step parameter list 660:TSTNUPL_CP has the following error: API Parameter name is not defined in Attribute 1.
  at oracle.apps.bne.integrator.upload.BneAbstractConcurrentImporter.validateConcurrentRequestStep(BneAbstractConcurrentImporter.java:349)
  at oracle.apps.bne.integrator.upload.BneAbstractConcurrentImporter.runConcurrentRequest(BneAbstractConcurrentImporter.java:121)
  at oracle.apps.bne.integrator.upload.BneSyncConcurrentImporter.uploadImport(BneSyncConcurrentImporter.java:467)
  at oracle.apps.bne.integrator.upload.BneSAXUploader.endElement(BneSAXUploader.java:1793)
  at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:210)
  at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1318)
  at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:336)
  at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)
  at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:235)
  at oracle.apps.bne.integrator.upload.BneUploader.processUpload(BneUploader.java:301)
  at oracle.apps.bne.integrator.upload.BneAbstractUploader.processUpload(BneAbstractUploader.java:114)
  at oracle.apps.bne.integrator.upload.async.BneAsyncUploadThread.run(BneAsyncUploadThread.java:149)
10/7/14 12:55 PM Web ADI Upload Job 222732 ERROR          BneOracleWebAppsContext.getExtraJDBCConnection recieved the same connection as the base connection.  There may be transaction problems.

Similar Messages

  • Problem in Web adi for custom integrator.

    Hi All,
    I never used Web ADI. i read some document and feel that it is easy... but facing problem while developing.
    The basic requirement as follows -
    1. There is a custom database, say XXA.
    2. A staging table (xxa_table) for upload data from csv files to base table.
    3. Data upload using concurrent program from xxa_table to base table is working fine; but now I need to upload csv file from user desktop and load the csv data into staging table (xxa_table).
    After applying below scripts I got some permission access error.
    Please guide me to setup for upload csv data in to staging table using web adi.
    So I run below scripts -
    DECLARE
    P_INTEGRATOR_CODE      VARCHAR2(30);
    P_INTERFACE_CODE      VARCHAR2(30);
    P_LAYOUT_CODE           VARCHAR2(30);
    P_APPLICATION_ID      NUMBER(15);
    P_OBJECT_CODE           VARCHAR2(20);
    P_INTEGRATOR_USER_NAME      VARCHAR2(240);
    P_LANGUAGE           VARCHAR2(4);
    P_SOURCE_LANGUAGE      VARCHAR2(4);
    P_USER_ID           NUMBER(15);
    P_INTERFACE_TABLE_NAME      VARCHAR2(50);
    P_INTERFACE_USER_NAME      VARCHAR2(240);
    P_FORCE           BOOLEAN;
    P_ALL_COLUMNS           BOOLEAN :=FALSE;
    BEGIN
    -- Define Constants
    -- Application ID of the product that will own this Integrator
    P_APPLICATION_ID      := 510;
    P_LANGUAGE           := 'US';
    P_SOURCE_LANGUAGE      := 'US';
    -- Applications Database User ID that owns this Integrator
    P_USER_ID           := 410;
    P_OBJECT_CODE           := PLAN_607';
    ---ADI details
    P_INTEGRATOR_USER_NAME      := 'Plan_7';
    P_INTERFACE_TABLE_NAME      := 'xxa_table'; -- Name of the Database staging table.
    P_INTERFACE_USER_NAME      := 'XXA_7 PLAN'; -- Name of the table that will be displayed in
    P_FORCE           := FALSE;
    P_ALL_COLUMNS           := FALSE;
    BNE_INTEGRATOR_UTILS.CREATE_INTEGRATOR (P_APPLICATION_ID,
                             P_OBJECT_CODE,
                             P_INTEGRATOR_USER_NAME,
                             P_LANGUAGE,
                             P_SOURCE_LANGUAGE,
                             P_USER_ID,
                             P_INTEGRATOR_CODE);
    BNE_INTEGRATOR_UTILS.CREATE_INTERFACE_FOR_TABLE (P_APPLICATION_ID,
                             P_OBJECT_CODE,
                                  P_INTEGRATOR_CODE,
                                  P_INTERFACE_TABLE_NAME,
                                  P_INTERFACE_USER_NAME, P_LANGUAGE,
                                  P_SOURCE_LANGUAGE, P_USER_ID,
                                  P_INTERFACE_CODE);
    BNE_INTEGRATOR_UTILS.CREATE_DEFAULT_LAYOUT(P_APPLICATION_ID,
                             P_OBJECT_CODE,
                             P_INTEGRATOR_CODE,
                             P_INTERFACE_CODE,
                        P_USER_ID,
                        P_FORCE,
                        P_ALL_COLUMNS,
                             P_LAYOUT_CODE);
    COMMIT;
    END;
    --------------------

    Duplicate thread (please post only once):
    Problem in Web adi for custom integrator
    Re: Problem in Web adi for custom integrator

  • Web ADI doesn't work properly in R12.1.3

    I've had a number of problems with Web ADI not working properly.
    For example ...
    It says it has successfully loaded 2735 rows but only loads 2653 rows into the GL interface table.
    It gives error messages saying low level apis haven't worked but no explanation of the message (there are some references to this on metaling but none are relevant and the same line will pass the next time I run the same journal)
    It loads records into the GL interface table when on validation of the spreadsheet it finds errors and says it hasn't loaded any records.
    Anybody had similar. I've a tar with oracle but no answers. It's obviously bug ridden but I assume there must be an esoteric solution / workaround (re-boot pc and spin around) otherwise it wouldn't have been released.

    Have you looked at note 978982.1 R12.1: WebADI Uploaded Lines Are Missing in GL_INTERFACE Table?
    Edited by: sourdoughwannab on Oct 13, 2010 9:33 AM

  • Web ADI Create Document - Short Cut Save to Form  Function Grayed Out

    How do I "ungray" Save to Form Function to allow a save?
    RDBMS 10.2.0.4.0
    Apps 11.5.10.2
    Only GL and Desktop ADI
    Oracle on Demand Customer - does not give us SysAdmin Responsiblities
    We have:
    Applicatin Adiministrator does not have Application> Funcitons
    Application Developer has Application>Forms and Function
    Setup Web ADI super user menu with Create Documents, Define Layout, Define Mapping, Manage Documents
    Setup options and "Hidden" Enter Journals
    Thanks for you help,
    Dale

    I still have no response or answers
    Refer the section "Creating Form Functions Using the Create Document Page Flow" in Oracle Web Applications Desktop Integrator Implementation and Administration Guide. User to have system administrator responsibility assigned to have this feature enabled as this is a SysAdmin task.
    THE BIG QUESTION - since "Oracle on Demand" will not allow their users to have System Administrator, how can I add the required functionality to the supplied Application Administrator and resolve the questions below?
    Problem Description:
    Web ADI – Create Document, Save to Form Function is grayed out, therefore it can not be used
    1. How do we enable Web ADI functionality to Create document and Save to Form Function?
    2. Once saved to form function how to we navigate to Application>Functions?
    3. Once the Short cut is saved to the Form Function, how do we attach to a user’s responsibility?
    We have only Application Administrator with no Applications> Functions menu, however we do have in our test instance Application Developer with Applications>Forms and Functions, but it does not appear to have the same rights as SysAdmin. I tried adding the menu functions simular to SysAdmin to Application Administrator but no luck unlocking (ungraying) the form.

  • GL Journal Import Web ADI Issue - Line DFF

    We have a requirement to add DFF values to Journal Web ADI import. We have added Line DFF Context and Line DFF fields to the layout. Document is getting created and but the upload fails with the below message,
    Upload processing did not complete
    Exception during parsing of upload document. java.lang.NullPointerException
    Any pointers/ help is highly appreciable.
    Thanks In Advance

    Hi Hussein,
    Thank you for your response. Below are the error messages that I got from the BNE log file. Can you please help me to figure out what is the wrong here.
    11/6/14 7:32 AM AJPRequestHandler-HTTPThreadGroup-34 ERROR          BneParentMenuResolver.getMenuItem() MENU 101:BUDGET_NOTE - Menu item excluded because IntegratorAppId and Code does not match that of the Top-Most Menu Item or current Integrator: 101:L3_JOURNALS_120
    11/6/14 7:32 AM AJPRequestHandler-HTTPThreadGroup-34 ERROR          BneParentMenuResolver.getMenuItem() MENU 101:BUDGET_NOTE - Menu item excluded because IntegratorAppId and Code does not match that of the Top-Most Menu Item or current Integrator: 101:L3_JOURNALS_120
    11/6/14 7:32 AM AJPRequestHandler-HTTPThreadGroup-34 ERROR          BneParentMenuResolver.getMenuItem() MENU 101:BUDGET_NOTE - Menu item excluded because IntegratorAppId and Code does not match that of the Top-Most Menu Item or current Integrator: 101:L3_JOURNALS_120
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          ORDER BY not found in LOV query
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          BneUploader.processUpload(), fatal exception: java.lang.NullPointerException
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          java.lang.NullPointerException
      at oracle.apps.bne.integrator.upload.BneFineValidator.runTableValidation(BneFineValidator.java:946)
      at oracle.apps.bne.integrator.upload.BneFineValidator.validateColumns(BneFineValidator.java:702)
      at oracle.apps.bne.integrator.upload.BneSAXUploader.processDeepestLevel(BneSAXUploader.java:2248)
      at oracle.apps.bne.integrator.upload.BneSAXUploader.startElement(BneSAXUploader.java:1202)
      at oracle.xml.parser.v2.XMLContentHandler.startElement(XMLContentHandler.java:181)
      at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1288)
      at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:336)
      at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)
      at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:234)
      at oracle.apps.bne.integrator.upload.BneUploader.processUpload(BneUploader.java:301)
      at oracle.apps.bne.integrator.upload.BneAbstractUploader.processUpload(BneAbstractUploader.java:114)
      at oracle.apps.bne.integrator.upload.async.BneAsyncUploadThread.run(BneAsyncUploadThread.java:149)
    11/6/14 7:34 AM Web ADI Upload Job 367172 ERROR          BneOracleWebAppsContext.getExtraJDBCConnection recieved the same connection as the base connection.  There may be transaction problems.

  • Problem in calling order import concurrent program from BPEL

    Hi all,
    Iam doing a sales order creation in oracle apps using Apps Adapter.
    I have successfully inserted the order into the interface tables using an Apps adapter.
    Now I need to run Order Import program from BPEL to move the data from interface tables to the base tables for which i use another Apps Adapter.
    When I invoke the OEIMP concurrent program from BPEL ,request id is returned.But the concurrent program fails showing incomplete parameters.
    But it works when I invoke it from the front end in oracle apps.
    I think the problem lies in passing the inputs to the concurrent program from the BPEL.
    Any help to solve the issue will be appreciated.
    Thanks,
    goutam

    Previously, I was passing the values to the concurrent program variables through ASSIGN component,which resulted in some namespace issues.Then I replaced it with TRANSFORM component.
    Also,First I assigned the values to the concurrent program variables as 'Vision Operations'(operating_unit), 'Online'(order_source) ,No (validate_only), No (validate_desc_flex) which are mandatory and just left non mandatory variables without assigning values.
    I changed those values as *'204','0','N','N'*. And also set non mandatory variables value as EMPTY.
    After doing all these I found the concurrent program catches all the parameter values correctly, and the records got imported from interface tables to the base tables.Thus the sales order got created successfully.
    Thanks,
    goutam

  • Customize the WEB ADI Journal Import layout

    Hi ,
    I would like to know from gurus , on how to customize the WEB ADI Journal Import Template, as per the client's requirements.
    I would like to add a custom validation for a line level reference column (Referenc6 of GL JE Lines) and also for the Accounting Date column in the Template's Header field.
    Kindly suggest me which package / setup needs to be looked at so that I can include the validations. I could see lots of BNE stuff ..not sure where to go for.
    We are on 11.5.10 Oracle Applications version on 10g Database and trying to create the layout with the responsibility 'DESKTOP INTEGRATION'.
    Oracle Web ADI 11i 8.4.1.34.
    Please help me on this..
    Thanks & Regards,
    Kiran Kesari

    Check this MOS note: GLLEZL: Error EU02 in Journal Import (Doc ID 1423023.1)
    thanks

  • Web ADI Integrator Projects - Transaction Import

    Can anyone tell me if it is possible to create a mapping for Projects - Transaction Import in Web ADI ?
    Currently I'm getting the following error when creating a mapping for the Projects - Transaction Import Integrator :
    ERROR
    Mappings are not required for this Integrator because the ability to download information has not been enabled.
    Any feedback on this topic would be very helpfull.

    Hi..
    I got the answer....there is a field to add pre/post processing extension where we can write package.procedure which will get fired during the transaction import automatically.
    Regards,
    Sanket

  • I have Iphoto '09, version 8.1.2 (424). I am having an identical problem.  All my pictures are imported into Iphoto when I downloaded them from my camera.  Until recently, I thought that the pictures were actually saved in the library.  Since I need to cr

    I have Iphoto '09, version 8.1.2 (424). I am having an identical problem.  All my pictures are imported into Iphoto when I downloaded them from my camera.  Until recently, I thought that the pictures were actually saved in the library.  Since I need to crop my pictures for the web, and Iphoto doesn't do that, I purchased Photoshop Elements to do that.  To my surprise, when I try to get a picture from Iphoto to Photoshop, it can't be done. That was when I realized, after wasting a lot of time, that the photos are not in the Iphoto library.
    I started naming the pictures on Iphoto so I had a recognizable file name to open on Photoshop. Couldn't find it.  I looked in the Backup folder and the Transfer software folder (I have a Nikon camera), and the names I entered in the Iphoto display, could not be found.
    When I am trying to upload a photo to the web, I get the Finder folder showing  with an active folder called "Photos" under "Media", which only displays Iphoto and PhotoBooth.  This is a folder name that I cannot find in my HD anywhere when I look for it.  If I edit a picture with Photoshop, I am not going to save it back to Iphoto (not sure whether it will work properly).  How do I get my folder of edited photos to show when I want to upload a picture to the web?
    Where (the name of the folder) do I find the pictures I see displayed on the Iphoto library, including any name changes, keywords added, and so on?

    See my response to your other post.

  • Issue in sales order order import program

    Hi all,
    I need to create a Sales Order using interface tables.First I inserted the record into the interface table OE_HEADERS_IFACE_ALL.I populated necessary columns in it.
    Then I executed Order Import Concurrent program giving value of order source(which I created using order import source setup),order reference(which is origSysDocumentRef column value in the above said interface table).
    But the concurrent program is not picking up the records in the interface table and its output shows no order to process.As a result no record is inserted in the OE_ORDER_HEADERS_ALL table.
    I dont understand where the problem lies.Please help me out to solve the issue.
    Thanks,
    goutam

    Hi Sandeep Gandhi,
    Thanks for your reply.
    Now Order Import Concurrent program picks up the header records from the OE_HEADERS_IFACE_ALL interface table successfully for processing.
    But during the process some errors are raised, and the error_flag in the header interface table is set to 'Y'.
    I want to know where can i find those errors,so that I can correct them.
    Is there any error log tables that contains these errors occured during import?
    Or we have any other way to identify it?
    Please help me..
    Thanks,
    goutam

  • Purchase Order Import inserts duplicate records in po_line_locations

    Hi,
    I'm running standard Purchase Order Import program to import few PO's. We have only one shipment for each item, so its only one record for each line in po_line_locations. But after running the import, it inserts a duplicate record with same qty into po_line_locations. Basically it is inserting same item twice in po_line_locations_all table and quantity is getting doubles at the line level. Seached Metalink but no hits for this, till now.
    This is in R12 (12.0.6).
    Did anyone encounter this problem earlier? Any hints or comments would help.
    Thanks in advance.
    Edited by: user2343071 on Sep 2, 2009 3:54 PM

    Hi,
    Once you please debug the particular program with the help of ABAPer. That may resolve your issue. Thanking you

  • How to use XML Gateway for Order Import and Item Import?

    Hello XML gurus,
    I'm working in Oracle Apps area and do not have much knowledge on XML or web programming. Currently in my project there is a need to use Order Import and Item Import using interface tables and XML Gateway. The items/orders information will be in the XML format from Siebel system, there will be no custom processing...just process the data as-is.
    I've read the XML Gateway user guide but did not understand much.
    Anyone with similar implementation experience?
    I'm looking for a step-by-step guide on what needs to be done in Oracle Apps side to populate the interface tables from XML file and call the import APIs?
    Your inputs, suggestions, tips are highly appreciated. :)
    Thx,
    Jags

    I have a similar requirement to automate the order import and was looking at XML Gateway. Please update if you were able to find more information.
    - Ayyappa

  • Order Import failing with error "The specified subinventory is invalid to use, the profile option INV: Allow Expense to Asset Transfer is set to No. Change the profile option to Yes or choose a valid subinventory."

    Hi All,
    I am getting this error while importing an internal sales order.
    “The specified subinventory is invalid to use, the profile option INV: Allow Expense to Asset Transfer is set to No. Change the profile option to Yes or choose a valid subinventory.”
    I have tried to set mentioned profile as ‘Yes’. But still getting same error.
    Also, provided subinventory is present and active in given inventory organization.
    Please share if anybody encountered this before and have a solution.

    Hi 2878342
    Please refer the following metalink note, it should resolve your problem.
    Order Import Interface.Error Message Specified Subinventory Is Invalid To Use (Doc ID 406411.1)

  • 11.5.10 Orders Import - line quantity and price

    Hi
    We have a custom ordering web system that accepts the sales orders from users. I am trying to import orders into Oracle EBS. The custom web system calculates taxes and price and displays line total for the end user.
    I need to import the orders as below:
    1. Show the order quantity as the quantity selected by the end user
    2. I should not recalcuate the price in EBS and whatever the total they send me should be the price of the line (shouldnt multiply with quantity). Basically display line total from custom system as price (not sure which column to poplulate from API?)
    3. No tax calculation in EBS, tax_value should be 0 all the time for these orders. Which column of oe_order_pub.line_rec_type to populate to achieve the same.
    I am using oe_order_pub.process_order API to import these orders.
    Appreciate your help

    Now I just realized the old servers were RHEL4 32-bit and the new servers were by default created on RH 5 64-bit.
    I'm pretty sure I can't just fire it up on a 64-bit OS without doing some extra work like export/import on the database.
    App server not sure what I would do as libraries etc. would be different also.The apps tier node of EBS 11i is not certified on 64-bit Linux OS -- Frequently Asked Questions: Oracle E-Business Suite Support on x86-64 [ID 343917.1]
    My thought is to get the servers rebuilt using RH5 32-bit and everything should work hopefully as long as packages are there.
    Sound right or should I just go with what it runs on now (RHEL4) to be on the safe side.What is your database version? Please note that Oracle9i is not certified on RHEL5, so if you are running on 10g/11g database you should be good to go with RHEL5
    Thanks,
    Hussein

  • R12 Order Import: Supress Tax calculation

    Hi,
    I 've a requirement where I need to import order data from websphere commerce to Order management through the order interfaces. During the import, I need to suppress tax calculation in oracle as the price coming from web sphere already includes tax. I would like to get the tax and item price from web sphere and import the data into oracle instead of calculating the tax in oracle. Can you please let me know whether it 's possible to achieve this.
    Thanks,
    Ganapathi

    Ganapathi
    Since you are including tax into the order line price already, you can do this to achieve what you are looking for. The order type you are using to import orders has an AR transaction type assigned to it. In the setup of AR transaction type there is a check box called Default Tax Classification. For this AR transaction type that is assigned to you Order type or line type, do not check that. Oracle will not calculate tax for that line. Let us know.
    Thanks
    Nagamohan

Maybe you are looking for

  • HP C4780 will not connect to wireless router

    I have the HP C4780 printer and a MacBook Pro with Mountain Lion OS X 10.8.5. I have been able to install the printer software to my computer with the USB cable, and I am able to print as long as it is hooked up with the USB cable. I want to set it u

  • OO doesn.t export special characters correctly to PDF

    Some more problems with Open Office (after the dictionaries thing) For my study I have to write papers with arabic transcription. This involves strange letters, like an s with a dot underneath it: exporting to PDF directly from OO has this as a resul

  • Need to Take Fast Printing on Dot Matrix Printer Using Report 10g

    Dear , I need to take a fast output of Oracle 10g reports on Dot Matrix printer Client runs the report and open in PDF but when he takes hard copy on his/her local printer, then printer works very slow and take huge time to print a single page. Kindl

  • How to add in the new characteristic for a infocube in RSECADMIN

    Hi, The authorization relevant characteristics for cube Material stock/Movement are only (I click the InfoCube authorization in the RSECADMIN - it only show the below 5): 1. 0COMP_CODE 2. 0PLANT 3. 0STOR_LOC 4. ZCUSTOMER 5. 0TCAKYFNM But I want to co

  • How do I view an image (to select colors) in Kuler?

    I see in the video a drop down option when you click on "Create". I have no options appear when I click on Create.