How to increase the number of files picked up by File adaptor

Dear all,
Can any one tell me how to increase the number of files picked up by File adapter.
Pl post ASAP.
Useful answers will be appreciated accordingly.
Thanks,
Srinivas

Hi Srinivasa,
there is no parameter for number of files to be picked..............if you have too many source files and you want to get them processed quickly, then you can specify a very small polling interval, then XI will pick your source files quickly..........but it will cause heavy load on the XI system which can lead to blockage of messages in queues........
Regards,
Rajeev Gupta

Similar Messages

  • How to increase the number of data Business Object can pull for a report?

    Hi,
    I would like to ask around how to increase the number of data Business Object can pull for a report. I have a report which pulls data depending on the date range (ex. From 01/01/2007 - 01/10/2007). But, when the data that is pulled exceeds 5000, the report fails. Is there anyway to increase the number of data that BO can pull?
    Thanks

    Bobby,
       to my knowledge we can't change that. Let me explain this, we have setting in the source system for DS default Data Transfer. there we will assign the processes. if you want to assign 4 you need to change the setting in the source system. For flat files we can change in BW System. We can maintain the setting in the Infopackage level(wht we are assigned in the Source System), but we can't change the process.
    in order to check the setting in source system  SBIW--> General Settings --> Control Parameters for Data Transfer.
    we need to change here, this will effect to all the Data Sources. Before making changes check with your basis.
    All the best.
    Regards,
    Nagesh Ganisetti.

  • How to increase the number of rows in Status Oveview iView in MSS?

    Hi
    We have implemented MSS and have a question regarding Status overview iview.
    The standard status overview iview of the team workset has 5 rows and we have to scroll using the arrow buttons to select/view a request.
    Now can anyone explain me how to increase the number of rows in this iview? Is this somthing that has to be accoplished through web dynpro customization?
    I checked the options in iView property and do not see any option to increase the number of rows.
    please help
    Thanks
    -Michael

    Hi Micheal,
    Well, I am not really sure, if you could accomplish this using customizing, but I am sure that you can accomplish this using the JDI. Well, you can extract the application's source code using JDI and then change the required display rows property and republish it.
    Am not really sure if this is suggestable method for this requirement,but it can be achieved using this JDI stuff.
    Regards
    <b>Raja Sekhar</b><i></i>

  • How to increase the number of rows to be displayed in BEx Web Analyzer

    hi,
    I am viewing reports using BEx Web analyzer option. It is displaying only 24 rows  of data at a time. How to increase the number of rows? do i need to any kind of settings?
    pls reply.

    Hi,
    I think the standard template in 2004s is named 0ANALYSIS_PATTERN. You can find it in Web Application Designer, open, and search for the technical name. If you want to change the number of rows or columns, you can find this setting near the bottom of the XHTML view of the template:
    <bi:BLOCK_COLUMNS_SIZE value="4" />
    <bi:BLOCK_ROWS_SIZE value="17" />
    Then just save, and ignore the error messages.
    Message was edited by:
            vind Reinsberg

  • How to increase the number of characters in Text Edit??

    Hi,
      How to increase the number of characters we enter in the Text Edit, for example i can't enter not more than 255 characters. If to enter upto 500 char, what to do.
    Thanks and regards,
    Karthik

    We can't restrict the number of characters a UI element can take. Rows and columns properties are to specify the visible no of rows and columns.
    If u want a restriction in the number of characters you have to create a simple type and set it to a context attribute and then map it to the text view.

  • How to increase the number of HTTP Worker Threads?

    Hi Buddy,
    I am using the lateset NW AS Java. It's a DEV system and the number of HTTP Worker Threads is 5.
    Do you know how to increase the number?
    What is the number in a Production System?
    Thank you!

    Parameter name: FCAServerThreadCount
    It's under Service->http.
    Use config tool for NW70.
    For NW71 and above use NWA and config tool.
    Also refer this -
    http://wiki.sdn.sap.com/wiki/display/JSTSG/%28JSTSG%29%28Web%29FAQ-FCAServerThreadCount

  • How could increase the number of waiting request queue?

    how could increase the number of waiting request queue?
    thanks,

    I assume you're asking because you're getting connection refused exceptions? Set the AcceptBacklog parameter in the config.xml/via the console. Here's a description of the parameter:
    http://e-docs.bea.com/wls/docs81/config_xml/Server.html#AcceptBacklog

  • How to increase the number of scrollable shell/terminal lines?

    Hi guys,
    I've just run "pacman -Syu" and got hundreds of error lines. When I tried to scroll up to the first one by pressing "shift-pageup" I noticed, that I could only go back a couple of lines. So apparently my terminal "forgot" the first few lines.
    How can I increase the number of "history lines" (no, I do not mean the bash command history) in my terminal? I'm not using any terminal emulator like xterm. I have no GUI installed on that box. It's just the normal virtual console I'm talking about.
    Thanks a lot in advance,
    Blackhole

    dschrute wrote:
    From what I've read, the standard config uses your vga card's memory, and is pretty limited in how much it can be changed.  I have seen it sugested that using less virtual consoles might give you more of a scrollback, but I can't confirm that.
    There is also a somewhat new option with 2.6 kernels for "Soft Scrolback" that uses system RAM rather than VGA ram.  This is a kernel, compile time option so if it isn't enabled by default in Arch, you'd have to recompile your kernel with it turned on.  Google "console soft scrollback" or VGACON_SOFT_SCROLLBACK for more info.
    Thanks a lot. I didn't expect it to be so difficult. I thought there would be some config file somewhere. Can't the shell/bash itself do the soft scrollback out of the box?

  • How to find the number of data items in a file written with ArryToFile function?

    I have written an array of number in 2 column groups to a file using the LabWindows/CVI function ArrayToFile...Now if I want to read the file with FileToArray Function then how do I know the number of items in the file. during the write time I know how many array items to write. but suppose I want the file to read at some later time then How to find the number of items in the file,So that I can read the exact number and present it. Thanks to all
    If you are young work to Learn, not to earn.
    Solved!
    Go to Solution.

    What about:
    OpenFile ( your file );
    cnt = 0;
    while ((br = ReadLine ( ... )) != -2) {
    if (br == -1) {
    // I/O error: handle it!
    break;
    cnt++;
    CloseFile ( ... );
    There are some ways to improve performance of this code, but if you are not reading thousands of lines it's quite fast.
    After this part you can dimension the array to pass to FileToArray... unless you want to read it yourself since you already have it open!
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • How to calculate the number of vowels from a txt file. Pls give me a hand!!

    Guys! How do i calculate the number of vowels from a txt file? I have to create a program to count the number of words, sentence, and vowels. So far I had managed to count the number of words. Now I need help on counting sentence and vowels! Pls give me a hand guys!

    I first have to read from the file not the string.I
    know how to read from a file. Now the problem ishow
    to compare a character from a txt file!You fail to understand, that you have read the data
    from the file into a string. Now loop over all
    characters in the string. Forget about the file.
    KajOr forget the scanners just as others have told you. Just read the file character by character using a FileReader.
    Kaj

  • How to increase the number of processes taken for loading data?

    Hi,
    While loading data from R/3 to BW, we found that the particular load is taking 2 processes to load data into Cube.
    Is there anyway to increase the number to 4 ?
    Thanks in advance.
    Bobby.

    Bobby,
       to my knowledge we can't change that. Let me explain this, we have setting in the source system for DS default Data Transfer. there we will assign the processes. if you want to assign 4 you need to change the setting in the source system. For flat files we can change in BW System. We can maintain the setting in the Infopackage level(wht we are assigned in the Source System), but we can't change the process.
    in order to check the setting in source system  SBIW--> General Settings --> Control Parameters for Data Transfer.
    we need to change here, this will effect to all the Data Sources. Before making changes check with your basis.
    All the best.
    Regards,
    Nagesh Ganisetti.

  • How to increase the number of access to a list

    Hi,
    I have a list with many numbers, for example [234, 235, 236, 237 .....]. If I want access to  the first value of the list I can use for example the command: "put MyList [1]" and I get 234.
    Now I need to have a script that increases the number in square brackets of "MyList" by one unit (MyList[2]; MyList [3] etc..) in order to obtain 235, 236 etc.. If I use the command "setAt" or  "MyList [1] = MyList [1] + 1",  with "put MyList" I get the value 2, 3 etc.. and not 235, 236 ... that I need.
    What might be the way to the solution?
    Thanks.

    Thanks a lot Production Monkey for your reply,
    If I use "MyList = MyList + 1", if my list is equal to the following for example: [0, 11, 123, 234, 6443], the result will be: [1, 11, 123 234, 6443], but it is not what I want. I try to be more clear.
    MyList = [224, 336, 445, 224, 779 etc ...]
    Now, without changing the values of "MyList", I need to access the first, second, third .... etc value.
    The first hypothesis might be:
    MyList [1] (I obtain the value 224 and it is good)
    MyList [2] (I obtain the value 336 and it is good)
    MyList [3] (I obtain the value 445 and it is good)
    etc. .........
    but the list is very long and change, I would like a script, for example "on mouseUp me" to increase (not the value of the first list [224.336 etc]) but only the single value inside the brackets for example: MyList [4], MyList [5], MyList [6], MyList [7] ... [8] ... [9] and so on.
    How can I do?
    I apologize for my bad English.

  • How to increase the number of days in syslog

    Currently syslog keeps 1 days events with additional log files for the previous 6 days.
    Is there a way to either increase the number of backup logs or increase the number of days in each log. I would love to have 2 to 4 weeks of events.
    much thanks
    john

    In Mavericks, /var/log/system.log rotations are now handled by /etc/asl.conf
    look at options:  ttl=DAYS,   file_max = SIZE and all_max = SIZE
    Cheers

  • How to increase the number of rows in a jTable dynamically?

    Can anyone help me in increasing the number of rows in a jTable dynamically without using DefaultTableModel?
    I don't want to use DefaultTableModel because my program is about to finish except this problem.
    Thanks in advance.

    Presumably you're using your own custom table model class. Modify that so that it returns the number of rows you want. Though presumably it would do this anyway so I've no idea what the problem is.
    Do you mean you've added rows to the table model but they're not being reflected in the table itself? You need to fire events - AbstractTableModel provides simple methods to fire them, but if you're not using that then you'll have to fire them manually.

  • How to increase the number of rows for Entry via Excel in SSM ?

    hello
    we are facing a scenario where we need to enter the target data for more than 14000 fields.So when we open the excel ad in and trying to upload, it is accepting data for only 500 fields and the rest are not getting displayed.
    The condition is that we have to enter data via Entry and Approval and not using a procedure and multiple metric sets is not a feasible option since the number of records is large. How can the number of rows in excel be increased ?
    Vijay

    Hi Bob
    I am facing another problem....
    we have designed our model in such a way that we built it using normal procedures but the target values have to be entered using entry and Approval via Excel ad-in..
    the problem we are facing is that if we select both the actual and the target measures to load the data via Excel login then the column TARGET is getting greyed out. When we build the same model using cube builder , the column TARGET is not getting greyed out and we are able to enter data there.
    Is there any setting changes we need to make inorder to make the Entry and Approval process via Excel behave the same way when the model is built using the Cube builder ? Are there any new notes or a newer version of Excel ad in to resolve this ?
    Vijay

Maybe you are looking for

  • Travel Expenses settlements against Service Order/WBS Element/Project Ord

    Hi Experts, I have one req. in Travel Expenses, i.e. need to settle travel expneses against Service Order/WBS Element/Project Order. Can you guide me how to do this req. Thanks & Regards Rajesh

  • Can't select any value in radio to query report.

    Dear Support, About BI-BASE-B version is 1000.7.40.2.20.20130621014800 in portal,when we select value in radio to query report which lend to white screen,so i think that may be issue.But if i set manual value to query report,it is fine.So Connection

  • Decode null with function call

    Hi Is it possible to use decode in select for the below scenario, if so what is the correct syntax IF function one returns null I want to call display the value from function 2 in decode statement. Regards anna

  • Problems displaying MBeans in wlss 4.0

    I've problems in displaying MBeans in wlss 4.0 using jconsole jdk5. I usually use Jconsole to display MBeans without problem with wlss previous releases thanks in advance

  • Logic pro 8 & windows (.iso) files

    Hi everybody, My name is Franck and I'm a Logic audio user since 1999. I made a lot of backups from 1999 to 2005 of logic songs saved under Windows (98 & XP). I was able to open and convert this files to the Mac Os format with logic express 7, but si