List of Item form take time to open

Hello,
I am implementing SAP Business One in one of the manufacturing company in which Item master data is exponentialy increases day by day. In list of Item selection window I did grouping in Item Group and Item Sub Group which is UDF in Item Master Data Form.
Problem is that when I open the List of Item window than it take 2min -3min to open.
Please reply me ASAP....

Hello,
Thanks for response
Process:
We are implementing SAP B1 in manufacturing company they do MTS & MTO of labels for garments.What our client did , they put up the operators for creating the sales quotation and sales order under the request of the CS ececutive.And CS Executive have been taking orders from the customer.
Item Master detail:
Each orders from the customer generate new ITEM master data because there is variance of size,color,style No.,Bar code,matter etc.So for tracking every ITEM in warehouse operators have been generate new item master data.
Problem:
Only for operator support to easily find out the items from the list of item we group the items on the bases of the item group(Price Ticket FG,Printed Label FG,Woven label FG) and Item sub grooup(it is the part of the Item code)
Is it possible to put different formatted search for different operator on the item no.(raw level) of sales quotation because Each operators create sales quotation and sales order for different labels one for(Price ticket), one for (Printed Label),one for (Woven label),Tape etc.)
Please reply me ASAP.
Rergard's
Amit Tyagi

Similar Messages

  • "Open Interface Invoices" Form takes time to open!

    Hi Guys,
    In our production system, it takes 3 minutes to open "Open Interface Invoices" form (AP Manager>Invoices>Entry>Open Interface Invoices). So what should we do so as to avoid this.
    I was thinking to delete data from two tables (AP_INVOICES_INTERFACE & AP_INVOICE_LINES_INTERFACE) based on certain crieterions. Like all the records which have been successfully imported i.e. with status='PROCESSED' can be deleted. So, I can achieve this using two methods:
    1. Manually using SQL Delete statement. i.e.
    DELETE FROM AP_INVOICES_INTERFACE WHERE status='PROCESSED';
    DELETE FROM AP_INVOICE_LINES_INTERFACE
    WHERE invoice_id IN (SELECT invoice_id FROM AP_INVOICES_INTERFACE WHERE status='PROCESSED');
    2. Or I can use "Payables Open Interface Purge" Program.
    I ran this program for my specific source, and checked the count from tables but the result is the same. This means this program has not deleted any of the processed records from these two tables for the particular source.
    What can be the reason for this? Please suggest me on this.
    Thanks a lot!
    Regards,
    Sumir Chawla

    So I tested it out on Windows Pro Reader X 3GB and it opened right away. Then I put it down to 1GB and it took over a minute! Best bet is to get a faster machine! (or at least a memory upgrade)
    In the mean time, I had a look at your form and there were a lot of objects and subforms that didn't need to be there, so I cleaned it up and made one repeatable subform. It works a lot faster now even on a 1GB.
    You can edit the title of each entry in the scripting object myLists.
    Here you go:
    http://www.fieldeffecttechnologies.com/AdobeForums/PAR_v3.pdf
    Kyle

  • Same EPM Excel Report takes time to open and refresh on 1 system while it opens and refreshes faster on other system

    Hi All ,
    I am facing an issue where the EPM Excel Templates on SERVER ROOT FOLDER take time to open on 1 system . It also takes great amount of time to REFRESH . While on an another system the same Report opens rather quickly and refreshes also quickly .
    Regards,
    SHUBHAM

    Hi Shubham,
    Now day excel problems are due to some MS update.  Not sure but  have a look at below note.
    2107965 - Issues in EPM Add-in after installing Microsoft updates

  • I mean that i phone take time to open apps ,contact ,etc why? i close all apps and the problem still?

    i mean that i phone take time to open apps ,contact ,etc why? i close all apps and the problem still?

    Try a reset by pressing and holding the home and power buttons for 15-20 seconds until the white Apple logo appears.

  • I got macbook pro 13" i bought in 2011 but its now getting slow when i start up or when shutting down .and apps takes time to open like just bouncing????????

    i got macbook pro 13" i bought in 2011 but its now getting slow when i start up or when shutting down .and apps takes time to open like just bouncing????????

    See the Mac OS X Speed FAQ.

  • Windows 8 takes time to open explorer.

    Windows 8 takes time to open explorer (My Computer), found that if the network drive group policy is removed it opens fast.
    Please help to diagnose the issue.

    Hi,
    According to your description, if this is related with mapped drive, it might be inaccessable network drives, I suggest you check the network connection between the PCs. Explorer may struggle if there is a problem with the other computers or with
    the network.
    Or as
    britishdhez mentioned, check if a 3rd party program is the culprit.
    Yolanda Zhu
    TechNet Community Support

  • Why do I get the box 'this is a non-secure form' every time I open an email on yahoo?

    Why do I get 'this is a non-secure form' every time I open an email on my Yahoo account?

    From your Safari menu bar click Safari > Preferences then select the Security tab.
    Deselect: Warn when visiting a fraudulent website
    Quit and relaunch Safari to test.
    If that didn't help, back to Safari > Preferences. This time select the Privacy tab.
    Select:  Prompt for each website one time only
    Then quit and relaunch Safari to test again.

  • .SRF file takes time to open

    Hi All,
    I have one .srf file which is having 5 different folders (tab). each folder has 15 to 20 items on an average. it takes nearly 7-10 seconds to open when I load the file through the standard load from XML function in SAP. what could be the reason? is it because of the huge number of items on the form? if yes, any idea to minimize this time?
    Thanks,
    Binita

    and one strange thing i have observed is that even if I deleted more than 60 items from the form, it still takes the same time to open. it just has 2 tabs and 10 items in total. no datatable or choose from list attached.
    thanks,
    Binita
    Edited by: Binita  Joshi on Feb 2, 2010 7:05 AM

  • How To Handle DB That Takes Time To Open

    I am using DAO to link sql server tables into mdb.  With one database I have it takes roughly 60 seconds for the database to become available to link in the table.  When I open the database normally (w/o code) it takes about 5 seconds for the Database
    pane to be displayed, and this database has a form load on database open, and that takes about 50 seconds to actually pop-up.  I have been using Thread.Sleep() to combat this, but wanted to see if their is a better way to handle a bugger database.  This
    is my current code, does anyone have a better solution or code tweaks to handle this better?
    namespace TestLinkTable
    public partial class Form1 : System.Windows.Forms.Form1
    private DAO.Database dd;
    private DAO.DBEngine db = new DAO.DBEngine();
    private stat string dbolocation = "C:\\Testing\\database1.mdb";
    private DAO.TableDef tdf1;
    private static string SQLName = "dbo.MasterTable";
    private static string AccessName = "MasterTable"
    private static string SQLConnectionString = "";
    private void btnOpenDatabase_Click()
    dd = db.OpenDatabase(dbolocation);
    Thread.Sleep(6000);
    tdf1 = dd.CreateTableDef(AccessName);
    tdf1.Connect = SQLConnectionString;
    tdf1.SourceTableName = SQLName;
    dd.TableDefs.Append(tdf1);

    I implemented your code and I like the fact that it keeps the form available to still use if need be, but is their a way to keep the timer ticking so the elapsedtime on the form is updated and it doesn't just stop updating while this intensive database is
    in process of updating?  This is the syntax I have right now
    namespace TestLinkTable
    public partial class Form1 : System.Windows.Forms.Form1
    private DAO.Database dd;
    private DAO.DBEngine db = new DAO.DBEngine();
    private stat string dbolocation = "C:\\Testing\\database1.mdb";
    private DAO.TableDef tdf1;
    private static string SQLName = "dbo.MasterTable";
    private static string AccessName = "MasterTable"
    private static string SQLConnectionString = "";
    private Stopwatch sw = new Stopwatch();
    private System.Windows.Forms.Timer timer = new System.Windows.Forms.Timer();
    public Form1()
    backgroundWorker1.WorkerReportsProgress = true;
    backgroundWorker1.WorkerSupportsCancellation = false;
    backgroundWorker1.DoWork += new DoWorkEventHandler(backgroundWorker1_DoWork);
    backgroundWorker1.ProgressChanged += new ProgressChangedEventHandler(backgroundWorker1_ProgressChanged);
    timer.Tick += timer1_Tick;
    private void btnOpenDatabase_Click()
    sw.Restart();
    timer.Start();
    backgroundWorker1.RunWorkerAsync();
    private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
    System.Threading.Tasks.Task.Factory.StartNew(() =>
    dd = db.OpenDatabase(dbolocation);
    }).ContinueWith((t) =>
    Thread.Sleep(6000);
    tdf1 = dd.CreateTableDef(AccessName);
    tdf1.Connect = SQLConnectionString;
    tdf1.SourceTableName = SQLName;
    dd.TableDefs.Append(tdf1);
    //More going on here....
    timer.Stop();
    private void timer1_Tick(object sender, EventArgs e)
    txt_TimeElapsed.Text = sw.Elapsed.ToString("mm\\:ss\\.ff");

  • HT201263 Hi Concern,i have updated my iphone 4 to ios7, now it becomes too much slow.all the applications take time to open, its touch response also became slow. How to update it again to ios6 please help

    I have updated my iphone 4 to ios7 few days back, After that it becomes too much slow.all the applications take some time to open,
    its touch response also became slow. .
    One of my friends has also updated his iphone 4 to ios7,it is also facing the same problem.But the friend having iphone 4s is not facing any
    problem with this new version.What i think iphone 4 has not too much good processor like iphone 4s & 5 to get it updated to ios7.
    It destroys all the entertainment of using iphone.
    How to update it again to ios6.
    iphone 4 users please dont update iphone 4 to ios7.please

    Sorry, but Apple does not provide a downgrade path for iOS.
    Because downgrading is unsupported by Apple we cannot discuss it on these forums, but you can use Google to find information on how to install an older version of iOS on any device.
    Note that you will void the warranty and loose official support by Apple.
    Feel free to let Apple know at http://www.apple.com/feedback
    Anyway, give a try resetting all your settings:
    Settings > General > Reset > Reset All Settings

  • Distribution criteria list in Assessment cycle takes time

    Dear Peers,
    When I click the tab 'Receiver Tracing factors' of the COPA Cost Center cycles, a dialog 'Distribution criteria list' which asks for one more selection for confirming the receiver parameters. After selecting all of them, it takes very long time but in vain.
    In my case, I want to allocate the selling overheads on the basis for those products with particular batch, say, which starts with say '1' by giving the range as 1AAAAAA TO 1ZZZZZZZ. This '1' denotes one of the manufacturing plants. Hence, I want to pick up the batches which have been sold across the company code in other plants as well as in depots numbering 100+. I had already created  the summarization levels and now I had refreshed it but it has no effect on it. Do we need to create seperate summarization level manually for this and how? Is there any thing other than summarization, we need to do?
    Regards,
    Ashok singh

    Hi Ashok
    Summ levels can be used in Assessment cycles... Your "Distribution List" tab might take time to finish...
    However, I would ask you to assess your req once again... This level of allocation is more likely to cause performance issues
    however, if no of docs in COPA is not much, then you need not worry
    What worries me is that you cant use non-segment level chars as receivers in COPA assessment cycle.. have you specified BATCH No as segment level char in KEQ3? If yes, please undo it.. Else, you are going to face a nightmare situation
    Regards
    Ajay M
    Edited by: Ajay Maheshwari on Jan 10, 2011 3:04 PM

  • Report put on website takes time to open [openDocument( doc id ) api prob]

    Hi All,
    We have a BOXI R2 SP2 installation on AIX 5.3 (UDB 8.2 FP14).
    We have a website where we provide a URL to open a WebI report. But, this report is taking more than 20 mins to open.
    When we try to open this report directly via Web-i / Desk-i, the report opens quickly.
    As per the our investigation so far->
    - Business Objects Reports web app that uses BO SDK to open BO Reports is performing very poorly. Even a simple report (no  DB calls) takes 20 mins to open.
    -API call report engine.openDocument(<DOC ID>) takes 20 mins.
    - [Oct 13, 2009 15:56:25] DEBUG BoReportHelper.getReportEngine():  Start
    --->>>
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getReportEngine():
    boEnterpriseSession was OK
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getReportEngine():
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getReportEngine():
    IInfoStore was OK
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getReportEngine():
    ReportEngine was OK
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getReportEngine(): 
    <<<---
    End
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getHtmlView():  Start
    --->>>
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getWebiReport():  Start
    --->>>
    Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getWebiReport():  After
    query execution
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getWebiReport():
    FC_Properties: WebiDoc was not null
    [Oct 13, 2009 15:56:26] DEBUG BoReportHelper.getWebiReport():  After
    webiDoc.getID-WebiDoc ID->571957
    [Oct 13, 2009 16:11:25] DEBUG BoReportHelper.getWebiReport():  After
    openDocument
    [Oct 13, 2009 16:11:27] DEBUG BoReportHelper.setPrompts():  Start --->>>
    +++++++++
    ^
    |
    Above is the application log information captured:
    report engine.openDocument(<docId>) api call takes like 20 mins to open for report.
    BO SDK openDocument(<doc id>) api call is taking long time.
    JVMs for BO on the webserver have been recycled. The report-server is working fine, other report URLs on the website are working fine.
    Kindly suggest on resolving this issue.
    Thanks and regards,
    Anand Moharir.

    New information:
    When I originally wrote this, the command script worked as advertised. That was yesterday. I've since had to add the following lines just BEFORE the call to start the oidmon.
    echo Starting as9inf oidctl >> iasStartup.log
    %ORACLE_HOME%\bin\oidctl server=oidldapd configset=0 instance=1 start
    Sometimes me thinks that Oracle reconfigures itself at night when I'm not watching.
    Enjoy.

  • Business rule takes time to open

    Hi,
    Business rule takes much time when trying to open it.
    I'm new to essbase. Can any one tell in which log i can get the information like why it takes much time like that.
    Thanks
    Kumar

    we are facing this issue for particular user. In the same system, we tried with two different users. for 1st user that BR is opened in a minute, but the same BR took around 20mins to open for 2nd user
    OS - Window XP
    EAS version - 9.3.1
    Example
    A is 1st user --> XX business rule took 1min to open
    B is 2nd user --> XX business rule took 20mins to open
    Here both the users are having same access on the BR and the applications
    Thanks
    Kumar

  • How to color a list box item at run time

    I do not want to change colors in a selected or a highlighted item.  I want to color foreground on any item based on a program condition.
    IN windows forms I could change the drawmode property to ownerdrawfixed and then override the listbox rendering event and paint the item based on condition.
    I don not find such a property in the WPF listbox.  Is there a different way to do this?
    NR

    Thanks Olaf.   I changed the section below to my code as you suggested and it works fine now.  I can now modify it to make it applicable to other scenarios.
    public
    partial
    class
    MainWindow
    : Window
    public
    System.Collections.ObjectModel.ObservableCollection<string>
    MyItems { get;
    set;
    public
    MainWindow()
    MyItems =
    new
    System.Collections.ObjectModel.ObservableCollection<string>();
    InitializeComponent();
    private
    void
    button1_Click(object
    sender, RoutedEventArgs
    e)
    MyItems.Add(textBox1.Text);
    this.DataContext
    = this;
    NR

  • Crystal report takes time to open

    I am using Crystal reports 9 in my VB.net application for generating a report.
    It causes a delay of around 1 minute for the report to get generated when i try to run it on Win 2k8 server Standard German OS(64 bit). It works fine on xp and even win 2k8 english.
    After some analysis, the delay was found to be due to the OpenReport method used to open the report from a specified path. I also tried to place the rpt file directly under C:\, which also caused the same delay.
    I am stuck up with this for the past 2 weeks, experts in this field, please suggest a solution.
    Thanks in Advance:)

    Hello,
    First CR 9 is not supported on that OS. CR XI R2 with Service Pack 6 and CR 2008 Service Pack 2 are supported.
    Second which report engine are you using, RDC or .NET?
    Thank you
    Don

Maybe you are looking for