Facing problem in SFTP File Transfer in OSB 11gR1

Hi,
We are facing issue in SFTP File transfer from a very long time now.
We have created around 10 SFTP Services which are configured to transfer files from One server to another in the entire application setup.
Each SFTP Service consists of a Proxy service of SFTP type, which calls Biz Service and transfers files in default pattern.
These services were running successfully from a long time, but from past 2-3 months, files are not getting transferred to target folder everytime.
i.e. After restarting managed server, they get transfered for few days, but start giving problem after some time.
I have checked full configuration settings, file paths, also i have checked file names to trace duplicacies if any, but there is no such possibility of passing duplicate files as file names consists of timestamps.
We have a clustered domain setup with 2 managed servers configured running in 2 instances.
The observations in case of error while passing file are as follows :
1. A file named abc.xyz is kept in Source Directory.
2. abc.xyz gets converted to abc.xyz%.stage file in some time.
3. It does not move to archive directory nor to target directory.
All servers are up as it is PROD Environment and hence no server issue.
While testing same services in SIT Servers, we never face any issue.
Proxy Service configuration is as below :
Authentication Mode      Username Password
Service Account      *****NOT TO BE DISCLOSED*****
Timeout      60
File Mask      [*.*]
Scan SubDirectories      false
Pass By Reference      false
Remote Streaming      true
Post Read Action      archive
Archive Directory      *****NOT TO BE DISCLOSED*****
Error Directory      *****NOT TO BE DISCLOSED*****
Retry Count      5
Managed Server      *****ONE OF THE MANAGED SERVERS*****
Polling Interval      900
Read Limit      0
Sort By Arrival      false
Request encoding      utf-8
We have mentioned different polling intervals for different services. Values used are : 450, 900, 1800, etc.
Please guide for solution of this problem ASAP.
Thanks
Cheena Malhotra
Edited by: cmalhotra on Jan 20, 2013 12:36 PM

(a) This doesn't appear to have anything to do with the topic of this forum.
(b) If this fails:
getFtpClient().changeWorkingDirectory(getRemoteDirectory()); //This line first returning false then of course nothing else will work. That's what you need to investigate.

Similar Messages

  • Problem Lync 2013 File Transfer not working with externally connected users

    I've a Single consolidated edge with private IP addresses using NAT in Lync Server 2013 and I'm facing some problem during File Transfer with all users outside my network both federated user or user of my lync infrastructure externally connected.
    I drag and drop a file into the conversation, I press enter then the receiver see only the icon without the "save as" option

    Hi,
    Did you receive any error on FE Server or Edge Server when the issue happen?
    Make sure all Lync Services started on Edge Server (especially for Lync Server Web conferencing Edge).
    Check if CMS status on Edge Server update to the latest status.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Facing problems in Registering AIA Components with OSB

    Hi all,
    I am trying to implement AIA on OSB for that as an initial step I am trying to Register AIA Components with OSB.
    In this step I am facing problems getting 705 conflicts removing these conflicts manually is a huge task .
    Can anyone suggest me good approach or if any one has removed AIA components jar please share with me.
    Thanks
    Phani

    Hi Madhavi,
    You said:
    OMB+> OMBALTER LOCATION 'TEST_LOCATION' SET PROPERTIES ( HOST, PORT, SERVICE_NAME , SCHEMA, CONNECT_AS_USER,PASSWORD, VERSION, UOID,DATABASE_NAME) \
    VALUES ( '$HOST', $PORT,'$SERVICE', '$TgtDBUser', '$TgtDBUser', 'TgtDBPWD','$
    dbversion','true','$SERVICE');
    Did you leave out the "$"-character for the TgtDBPWD variable in purpose? Could this be the source of your problem?
    Regards,
    Ed

  • Problem with itunes file transfer.

    hello,
    l recently purchased another PC windows  7 64 bit. l installed Itunes 64bit . l have a problem when trying to transfer files (video or any other) from my pc to my ipad using Itunes; it freezes and crash. l am using and app called EZ file which plays any video file not that l think that does matter.l never had any issue with it. l used another PC to do the same thing and it worked. l try re-installing Itunes but it does the exact same thing.
    this is the error message that i get;
    Problem signature:
      Problem Event Name:          APPCRASH
      Application Name:          iTunes.exe
      Application Version:          10.6.1.7
      Application Timestamp:          4f71aced
      Fault Module Name:          objc.dll
      Fault Module Version:          1.435.16.11
      Fault Module Timestamp:          4ee7d01f
      Exception Code:          c0000005
      Exception Offset:          000085f4
      OS Version:          6.1.7601.2.1.0.256.48
      Locale ID:          1033
      Additional Information 1:          0a9e
      Additional Information 2:          0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:          0a9e
      Additional Information 4:          0a9e372d3b4ad19135b953a78882e789
    any thoughts??

    In iTunes, Advanced>Create iPod or iPhone version

  • Problem with emoticonized file transfer capabilities multithreaded javaCHAT

    Hi, I've got confused with how do i use 1 socket to transfer all needed data for that chat application..
    Current progress:
    - Server can accepts sockets from listened port and put the socket, dataOutputStream, and name of the client into a hashtable
    - Client can interacts globally each other
    The problem is:
    - I want each socket of each client to be able to handle the chat message as well as the file transfer and etc....How can I differ every data that goes through that socket?
    - I've tried to make the file transfer, and somehow be able to put all the file the client send into a hash table in server...BUT when I tried to send the data to another client...I got problem...the data somehow mixed up each other, even tho i put them sequentially..like this:
    Server:
    else if (message.equals("RECEIVE"))
                             System.out.println("Preparing to receive file...");
                             String filename = din.readUTF();
                             System.out.println("Request for file " + filename + "...");
                             System.out.print(dout);
                             server.takeOutImage(filename,dout);                              
    void takeOutImage( String filename, DataOutputStream dout)
              try
                   if (imageFiles.containsKey(filename))
                        dout.writeUTF("ACK");   // we have this file
                   else
                        dout.writeUTF("NACK");  // dont' have it
                        return;
                   // get file contents from storage
                   byte contents[] = (byte [])imageFiles.get(filename);
                   // tell client file size
                   int togo = contents.length;
                   dout.writeInt(togo);
                   DataInputStream bytestream = new DataInputStream(new ByteArrayInputStream(contents));
                   FileSender.sendInChunks(bytestream, dout, togo, 1024);
                   bytestream.close();
              catch (Exception e)
                   System.err.println("File receive failed.");
         }Client:
    else if (message.equalsIgnoreCase("/receive"))
                        System.out.println("Preparing to receive file...");
                        String receive = "ab.gif";
                        String ack = null;
                        try
                             dout.writeUTF("RECEIVE");   // RECEIVE command,
                             dout.writeUTF(receive);     // ...filename to server
                             ack = din.readUTF();        // get server response
                             System.out.println(ack);
                             if (! ack.equals("ACK"))
                                  System.out.println("Server didn't acknowledge receive attempt.  Aborted.");
                             else
                                  int togo = din.readInt();
                                  System.out.println(togo);
                                  // receive file contents
                                  File file = new File(receive);
                                  DataOutputStream filestream = new DataOutputStream(new FileOutputStream(receive));
                                  FileSender.sendInChunks(din, filestream, togo, 1024);
                                  filestream.close();
                                  System.out.println("File received.");
                        catch (Exception e)
                             System.err.println("File receive failed.");
                        tf.setText( "" );
                   }It doesn't work sequentially, and being interrupted by this
    Client(to accept message):
         public void run()
              try
                   while (true)
                        String message = din.readUTF();
                        ta.append( message+"\n" );
              catch( Exception ie )
                   System.out.println( ie );
         }Any solution to this?
    Best Regards,
    William

    T-kuz wrote:
    No one told me any clue, nor asked me any question...Everyone has different reasons for their own behaviour. Personally I simply didn't see your question.
    If you want more/better/faster answers, then a good way to get them is to make a better question. This might mean adding information.
    Read [How To Ask Questions The Smart Way|http://www.catb.org/~esr/faqs/smart-questions.html] for a general guide on getting good answers.
    even tho i put 10 dukes for this...Dukes are pretty worthless, they don't really help a lot for most people answering questions around here.
    I got rid of the problem by adding another socket and thread...I didn't really read the code precisely (another possible reason for no answers: too much code, no really clear problem-definition), but you might need to implement a more fine-grained protocol such like this:
    S: <Initiate file transfer for "Foo.png", size: 3000>
    C: <Accept, file transfer number is #1>
    S: <Part of file transfer #1, offset 0, length 100, data: ...>
    C: <ACK> (or leave that out, you're using TCP after all)
    S: <some other message>
    S: <Part of file transfer #1, offset 100, length: 100, data: ...>
    and so on ...
    thanks for your "!help" by just viewing...Come on, don't be snarky to the people you want help from. That's rarely a good idea.

  • SFTP File transfer

    Hi. Can i transfer files from one unix server to other unix server directly using ChannelSFTP?
    I did some thing to transfer from server to local box where as it worked, but server to server can some one assist me????

    Hi Chakradhar,
    The third party SSIS Control Flow Component –
    SFTP Task available in the CodePlex only applies to the SQL Server 2008 Integration Services. However, according to the image, you are using SSIS 2010 and SSDT 2010.
    For more information about the WinSCP approach mentioned by Arthur, you can refer to:
    http://winscp.net/eng/docs/guide_ssis 
    Regards,
    Mike Yin
    TechNet Community Support

  • Problem with Firewire file transfer

    I have a PB G4 15" running 10.3.9 that holds files I would like to transfer to an iBook G4 running 10.4.8. I've connected a 6 pin FW cable to both machines and started the iBook in Target mode. It is not recognized by the PB. I then tried starting the PB in target mode, to no effect. I zapped the PRAM, no effect. Then I checked System Profiler. There is no Firewire 400 port as far as SP is concerned. The FW 800 is listed, but no FW 400. I have also unplugged the PB and removed the battery, hoping to reset the ports. No luck.
    Is there a way to bring my FW 400 port back to life? Or is this most likely a hardware problem?

    That's not good
    Not to raise the alarm but I had a friend 'fry' a firewire port by inserting the cable upside down from the way it should - he just wasn't careful.
    You should connect the cable after you've started the machines as well.
    Have you tried booting the PB into Target and then inserting the firewire cable into the 800 speed port - it is backward compatible and will drop down to the 400 speed.
    Read this...
    http://docs.info.apple.com/article.html?artnum=50458

  • Problem with BDC- file transfer

    I am able to open the file but the Contents of a file are not read.

    Hi,
    I think you are looking for BDC Problem, Its wrong forum to dicuss about it.
    Refer - this could help you
    How to upload  excel file
    data set problem bdc
    Thanks
    swarup

  • Problem with binary file transfer

    Hello everybody,
    I've got a bit of a strange problem. I'm making an application that opens a socket connection to a waiting perl script on the other side of the line. What it should do is recieve an int (filesize in bytes) and then a binary stream. This stream is written to a file, and I should have succesfully transfered a file.
    But the file I end up with isn't the same. The size is correct, and almost al the binary data seems to match up with the original, save a very few corruptions. The beginning and ending of the 2 files are exactly the same though.
    I know the Perl script is correct, I've stored the output through another script and had no problems.
    This is the code I used in Java:
    The Reader:
    in = new BufferedReader(new InputStreamReader(sock.getInputStream()));The important stuff:
    private void readBytes(int numberOfBytes) {
         FileOutputStream fos = null;
         try {
              fos = new FileOutputStream("image.jpg");
              DataOutputStream dos = new DataOutputStream(fos);
              for (int x = 0; x < numberOfBytes; x++) {
                   dos.writeByte(in.read());
         catch (IOException e) {
              System.out.println("IO Exception in readBytes");
    }I've got no idea how this could fail. Anybody who does? Thanks in advance.

    Thanks, the last two answers explained my problems. I've got it fixed now, this is the way I did it:
    private void readBytes(int numberOfBytes) {
         try {
              fileSock = new Socket(host,2001);
              fileIn = new BufferedInputStream(new DataInputStream(fileSock.getInputStream()));
              FileOutputStream fos = null;
              fos = new FileOutputStream("image.jpg");
              DataOutputStream dos = new DataOutputStream(fos);
              for (int x = 0; x < numberOfBytes; x++) {
                   dos.writeByte(fileIn.read());
              dos.close();
              fos.close();
              fileSock.close();
         catch (IOException e) {
              System.out.println("IO Exception in readBytes");
    } I'll assign the Duke Dollars, thanks again for helping out.

  • Setting File transfer mode in SFTP using JSch (jsch-20070302.jar)

    Hi,
    I use Jsch for downloading and uploading files via SFTP. I am a facing a problem in the file transfer mode. When I download or upload manually the files seems file, but when I use my code to download or upload there is some problem. Actally the file has to be transferred in ASCII mode, but the code transfers it in binary mode. Below is the code I am using
    +import com.jcraft.jsch.*
    Session session = null;
    try {
    populateProperties();
    log("INFO","Download and Encrypt Program started",getDateTime());
    JSch jsch = new JSch();
    String host = tumbleweedURL;
    String user = tUserid;
    session = jsch.getSession(user, host, 22);
    session.setUserInfo(new MyUserInfo());
    session.setPassword(tPassword);          
    session.connect();
    Channel channel = session.openChannel("sftp");
    channel.connect();
    ChannelSftp c = (ChannelSftp) channel;
    c.cd("outbox");
    c.get("8",outFolderPath);
    }+
    Please tell me how I change the transfer mode to ASCII for the above code

    Vignesh_kumar wrote:
    I am not sure where to put this question, I have tried a lot of things and I am not able to find a solution for this. Will you be able to guide me..A mailing list, or forum, or faq, or support address at JCraft, maybe?

  • [OSB] File transfer

    Hi,
    I'm analyzing a problem of transferring files (flat text or zipped flat text) from our file brokering server using OSB SFTP transport. Files are 200MB tops.
    My idea was to invoke a proxy service with a remote URI instead of transferring the whole file. However, due to some security issues there is an idea to use the OSB SFTP transport.
    I am aware that parsing of such amount of data using OSB is madness, but how about transferring without touching it?
    As PS is still a WS to me, it feels somewhat strange. Is there any reason (apart from "security issues") why we should use it this?
    What is thought of as acceptable amount of data to be transferred efficiently via OSB?
    Thanks,
    P.

    the process which generates the file should use an extension NOT polled by OSB while writing the file, and once completed it should rename the file to the extension polled by OSB
    otherwise you can use a file trigger pattern, which is supported by the JCA File Adapter
    http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10231/adptr_file.htm#CIAJCBGI

  • JME Socket File Transfer - Problem with writing file

    Hi everybody, i'm trying to code a P2P app for a school project and i have a problem when trying to write to a file.
    This method recieves a file form a Socket Server computer that tries to send me a file to the mobile client.
    The method recieves the IP adress (String add) and the port of the server.
    Also, i would like to know about the buffer(byte) size.
    This codes runs well in emulation, but it doesn`t write to a file.
    And the main problem is:
    "When i run this in the mobile, the file is created in the cellphone memory with a size of 0kb."
    The server code was tested with a computer client and recieved the file succesfully.
    The server recieves de socket connection form the cellphone without problem.
    public void recibirArch(String add, int port) throws Exception {
    try
    recibArch.setText("Espere por favor...");
    long start = System.currentTimeMillis();
    int bytesRead;
    int pasos = 12;
    int current =0;
    SocketConnection sock = (SocketConnection)Connector.open("socket://"+add+":"+port);
    byte [] mybytearray = new byte [1024];
    InputStream is = sock.openInputStream();
    FileConnection fc = (FileConnection) Connector.open("file:///"+saveRoot+"5letras.txt",Connector.READ_WRITE );
    if( !fc.exists() ){
    fc.create();
    } else
    fc.truncate(0);
    DataOutputStream fos = new DataOutputStream(sock.openOutputStream());
    bytesRead = is.read(mybytearray,0,mybytearray.length);
    current = bytesRead;
    while ((current = is.read(mybytearray)) != -1)
    fos.write(mybytearray, 0, current);
    fos.flush();
    current+=bytesRead;
    long end = System.currentTimeMillis();
    fos.close();
    sock.close()
    catch(Exception err)
    String error = "ERROR: " + err.toString() + "\nDescripción: "+ err.getMessage();
    System.out.println(error);
    txtLog.setString(error);
    Edited by: xtylo on Sep 30, 2008 10:56 AM

    Thank you Tunde for looking at my issues!
    The file size is not an issue here. We tested with empty files or files with smaller than 1KB sizes. They all showed problem. The frequency of file transfer shouldn't be a problem either. Through some user interaction on front panel, a couple of files will be transferred. That's basically how often the file transfer occurs.
    Interestingly enough, I replaced the copy.vi with a subvi I created using DOS command with System Exec.vi and the issue of copying files went away. My co-worker tested on both XP machine and Windows 7 machine. The DOS command worked fine thru Lavview's System Exec.vi. I think I can take that as a work-around if we can't figured out why copy.vi wouldn't work. Still, it would be nice to know why it doesn't work.
    Now I'm still facing some issues with the usage of Check If File or Folder exist.vi. Sometimes it can detect the existing files and sometimes it doesn't.
    Thanks very much! 

  • I am facing problem while reading values from properties file ...i am getting null pointer exception earlier i was using jdeveloper10g now i am using 11g

    i am facing problem while reading values from properties file ...i am getting null pointer exception earlier i was using jdeveloper10g now i am using 11g

    hi TimoHahn,
    i am getting following exception in JDeveloper(11g release 2) Studio Edition Version 11.1.2.4.0 but it works perfectly fine in JDeveloper 10.1.2.1.0
    Root cause of ServletException.
    java.lang.NullPointerException
    at java.util.PropertyResourceBundle.handleGetObject(PropertyResourceBundle.java:136)
    at java.util.ResourceBundle.getObject(ResourceBundle.java:368)
    at java.util.ResourceBundle.getString(ResourceBundle.java:334)
    at org.rbi.cefa.master.actionclass.UserAction.execute(UserAction.java:163)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

  • FTP/SFTP/FISH (etc) slow file transfer rate over LAN

    Hi everyone,
    I have a problem with transferring files over my home network that has been bothering me for quite some time.
    I have a 802.11n router which should provide me with the transfer rate up to 150 Mbps (afaik). When I download files from the Internet, 3 MB/s data transfer rate is of no problem.
    However, when receiving or sending data over LAN, the transfer rate is much slower (1.8 MB/s).
    My rough guess is (after reading some papers on this topic) that TCP protocol is causing this (its flow control feature to be exact), since TCP max window size is too small on Linux by default.
    So, setting TCP max window size to a greater number should solve this.
    I tried putting this:
    # increase TCP max buffer size setable using setsockopt()
    # 16 MB with a few parallel streams is recommended for most 10G paths
    # 32 MB might be needed for some very long end-to-end 10G or 40G paths
    net.core.rmem_max = 16777216
    net.core.wmem_max = 16777216
    # increase Linux autotuning TCP buffer limits
    # min, default, and max number of bytes to use
    # (only change the 3rd value, and make it 16 MB or more)
    net.ipv4.tcp_rmem = 4096 87380 16777216
    net.ipv4.tcp_wmem = 4096 65536 16777216
    # recommended to increase this for 10G NICS
    net.core.netdev_max_backlog = 30000
    # these should be the default, but just to be sure
    net.ipv4.tcp_timestamps = 1
    net.ipv4.tcp_sack = 1
    in /etc/sysctl.conf but to no avail.
    So either there is no problem with the max window size setting, or the Linux kernel ignores it (maybe because /proc is no longer supported?).
    Thanks for any neat ideas.
    Last edited by Vena (2012-06-01 21:48:14)

    Bump? No ideas whatsoever?

  • File transfer problem during ISE 1.3 upgrade

    We have problem running the upgrade command:
    iseadm01/admin# application upgrade cleanup
    Application upgrade preparation directory cleanup successful
    iseadm01/admin# application upgrade prepare ise-upgradebundle-1.2.x-to-1.3.0.876.x86_64.tar.gz FTP
    Getting bundle to local machine...
    % File transfer error
    iseadm01/admin#
    The sniffertrace shows that the ISE 1.2 is sending TCP RST after about 30MB file transfer. If we run the command serveral times, it stops exactly after the same amount of transferred bytes.
    The disk utilazation looks OK:
    iseadm01/admin# dir
    Directory of disk:/
          16384 Sep 18 2014 15:55:48  lost+found/
               Usage for disk: filesystem
                      172761088 bytes total used
                    14275047424 bytes free
                    15234142208 bytes available
    iseadm01/admin#
    iseadm01/admin# dir
    Directory of disk:/
          16384 Sep 18 2014 15:55:48  lost+found/
               Usage for disk: filesystem
                      172761088 bytes total used
                    14275047424 bytes free
                    15234142208 bytes available
    iseadm01/admin#
    We have Another ISE (monitor node) and the problem is excact the same on that node.
    Thanks

    On FileZila click on the User Accounts Icon. The dialog box will show you  defined users. By default only anonymous is created.
    So you need to create a local ftp username and passowrd. Then assign it a home directory under shared folders. This will be the dfault location a remote clietn will look for files and where you would find the ISE upgrade package, for example.
    See following screenshot....

Maybe you are looking for

  • The xfce-4.4 themes contest discussion

    As stated on http://blog.archlinux.org I posted the files for the contest on my server: http://arch.justdreams.net/xfce44-themings.tar.gz I recommend to either fetch shadowhands xfce4-svn packages or the set I offer here http://arch.justdreams.net/xf

  • Firewire suddenly not working

    Hi, running 10.4.9, not sure when I updated from 10.4.8. In the past, Have successfully used both Lacie Mini Hard Drive (firewire connection) & Panasonic AGDV2500 with this Powerbook. Now suddenly, Final Cut Pro will not see Deck. And Powerbook does

  • Error : Balancing Field " Profit Center" in line item not filled

    Dear Friends, I have a specific issue, as my client while posting inventory differences in [MI07]  an error is populating as Balancing Field "Profit Center" in line item not filled. Please help me in solving the issue where we can assign the profit c

  • Web ADI of Financial Modules

    Hi guys , m new to Web ADI.can you told me how many modules of Financial have Web ADI and for what function this ADI is available. Regards, SK Edited by: shakeel khan on Oct 6, 2010 12:53 AM

  • Need Help to provide Filter and Total Provisions for Table Control

    Hi , I need to provide 'Set Filter' and 'Total(Summation)'  Buttons functionality in my application which is having a Table Control. I know these functionality provision with ALV Grid but not with Table control and would appreciate if any body can he