SourceFileTimestamp not picking up properly

I am trying to extract the source file time stamp using the Adapter Specific Message Attributes. This property is checked in the Sender File Adapter , however this is not getting picked up properly as shown below (picked up as -)  when I am retrieving the file from FTP. This works fine when I am trying out with a NFS scenario.
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
- <!--  Response
  -->
- <SAP:DynamicConfiguration xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
  <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="SourceFileTimestamp">-</SAP:Record>
  <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="FileName">ABC.txt</SAP:Record>
  </SAP:DynamicConfiguration>
Would be great if someone could point out the reason.

The ASMA are selected in both adapters. The Source File Time stamp is selected in source file adapter the reason why this is shown in the Dynamic Configuration xml mentioned above. The problem is this gets picked up as "-" and not the timestamp value. For the same scenario ,when using NFS in the source adapter the timestamp is picked up properly.
Need to use the delete option while picking up from FTP only (not NFS) - requesting your help on the same.
Let me know if you need any other information.

Similar Messages

  • TS1631 Iphone 4 microphone not picking up sound properly. Is there a solution to this? Or anyone else having the same problem that have solved it.

    Iphone 4 microphone not picking up sound properly. Is there a solution to this? Or anyone else having the same problem that have solved it.

    Basic troubleshooting steps clearly outlined in the User Guide are restart, reset, restore from backup, restore as new.
    If you've gone through ALL the troubleshooting steps and you're still having the problem, then you most likely have a hardware issue and will need to bring your phone to Apple for evaluation.

  • MSI Z97 Gaming 9 AC Not picking up GTX 560 Card

    Just upgraded my PC to a Z97 Gaming 9 AC Board along with a i7 4790k and a Corsair 750RM Power supply + Coolermaster Stryker Case. I completed the build up last night and when I switched it on, it would not actually pick up my GTX 560 card at all, and when I went to the BIOS and checked the plugged in feature, it shows the PCIe slot is empty, but my GPU is plugged in, also tried all the PCIe slots, and there is nothing in Device Manager, just the Intel HD 4600.
    What I Tried:
    Set it to PEG, still nothing
    Updated the BIOS to latest version
    Tried the GPU in diff PC and it worked.
    Tried a diff power supply in my new PC and still same thing, not picking it up.
    So I don't know what to do anymore, also did a fresh install of windows 8.1.
    Any help would be appreciated thanks.

    Quote from: richyware on 28-February-15, 04:32:02
    Fixed, was a bad connection with the WiFi adapter to the motherboard, just re-inserted it properly and now GPU is working aswell.
    can you explain it better?
    what connection wifi adapter has with the video card recognition?

  • PO price is not picking from Inforecord

    Hello All,
    When PO is created by one particular user the price is not picked from inforecord. Inforecord validity periods are active and this price is not of previous purchase order. The problem is only for this user. Can you please advice what needs to be done here.
    Thanks a lot in advance.
    Best regards,
    Raji

    Hi,
    1. Check out user profile whether EVO parameter is maintained properly for all the users.
    2. Check in EVO parameter key you set radio button on Always copy.
    EVO is parameter ID for Defining Defualt values for buyer. Relevent customization carried out in SPRO --> Mat mangt --> Pur --> Env data --> define default value for buyer.
    Rewards, if helpful to you.
    rgds,
    rajesh

  • Net.Msmq Binding Not Picking Up Messages in Queue as soon as the application pool gets recycled

    Hi,
    We are trying to implement a wcf service that exposes a net.msmq endpoint.  We are running windows server 2008 R2/IIS 7.5 running on a DOMAIN mode.
    1. Our service is called service.svc and it is deployed under an application called Test in the default website (application pool running under network service)
    2. The url to reach the service webpage is http://machinename/Test/service.svc.
    3. We created a private queue called Test/service.svc and we configured permissions for network service to full control.
    Now, when the application pool is "alive" the service picks up the messages correctly, but as soon as the application pool gets recycled (because of timeout or any other reason), the service stops picking up the messages, that just sit in the queue until the service starts again by browsing to the service webpage (http://machinename/Test/service.svc)
    I know this is a popular question, but I already tried several solutions with no luck (for example, we triedhttp://keithelder.net/blog/archive/2009/06/03/fix-for-wcf-netmsmqbinding-not-picking-up-messages-in-queue.aspx,http://www.codewrecks.com/blog/index.php/2009/03/17/hosting-a-wcf-service-based-on-msmq-in-iis7/,http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/a1df55c4-e642-442a-9057-f0aec278d10c/ and other ones)
    Any Help?
    If this post is helpful, please mark it as such
    Alessandro Cardoso
    MVP | Microsoft Heroes | MCT
    blog: http://itaustralia.spaces.live.com
    http://cardosoalessandro.spaces.live.com

    Hi Steven,
    I am Alessandro's colleague, I am working with him on these net.msmq issues. 
    Our configuration includes a transactional queue called Test/Service.svc (unauthenticated,
    we shut down all security for the moment...does it matter?) and these attributes on the service:
    [ServiceContract]
    public interface IService
    [OperationContract(IsOneWay=true)]
    void ProcessMyMessage(MyClass parameter);
    [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, TransactionIsolationLevel = IsolationLevel.Serializable, TransactionTimeout = "00:03:00")]
    public class Service: IService
    [OperationBehavior(TransactionScopeRequired = true, TransactionAutoComplete = true)]
    public void ProcessMyMessage(MyClass parameter)
    //Do some stuff here
    The service is hosted on IIS 7.5 under an application called Test (so that the full http address of the service is http://machine/Test/Service.svc).
    In the configuration (for both client and service) we specified None for the security mode, "true" value in durable and exactlyOnce
    The Net.msmq Listener Adapter windows service is running fine under the Network Service account (the same as our application pool)
    Is there something we are missing?
    Also, can you explain how a transaction not configured properly can create this behaviour? In my understanding the process of delivering a message happens in 3 steps (I remember a nice picture of this the Juval Lowy book):
    1) Transaction 1: client delivers message to local instance of msmq. The transaction rolls back if the message does not get delivered.
    2) Transaction 2: the local instance of msmq delivers the message to the remote (service) instance of msmq. The transaction rolls back if the message does not get delivered.
    3) Transaction 3: wcf activates my service which picks up the message and process it. The transaction rolls back if the service fails to pick up the message or does not complete the transaction (for example, because of an unhandled exception).
    The message gets delivered to the service machine successfully, so I am assuming that steps 1 and 2 are executed correctly. If my service was not configured to handle transaction properly, wcf should still activate it and do something with it. Or at least,
    if it doesn't get activated at all, this should be the case even when the application pool is well alive and awake, because it should be a configuration problem. Instead, the service works great if the appPool is alive and it never gets activated when the
    appPool is sleeping (absolute nothing in the .svclog trace file generated by the service). Am I saying something wrong?

  • File to Idoc - File not picked up

    Hi experts,
                   In the file to idoc scenario when i post a file in the file server it is not picked up by the file adapter. But in the communication channel monotoring it reports <b>'Process finished sucessfully'</b>.
    Help me out in this issue.
    Regards
    Santhosh Kumar V

    HI Santhosh
    if you are using NW latest version.check in Communication channel monitoring
    otherwise in Adapter monitoring.
    Check u r Sender Communication channel working or not... in RWB->Component monitoring->Communication channel monitoring..
    in which color it is displaying u r Sender Communication channel?? If it is in RED color then u r sender cc is error one.
    Check the following:
    1. Name of the input file and the filename in communication channel should match.
    2. The communcation channel is activated
    3. The folder path is correct.
    4. The Processing mode is "Delete"
    5. XI server is up when u try the scenario
    6. The adapter has status green in RWB Adapter Monitoring
    7. Sender Agreement is properly configured
    As explained above
    See ,,
    --Check the FTP server details
    --Check the User.pwd and authorisations -- to read file,
    --Check the File name sapecified in sender CC, and check the file i spicked by CC or not in RWB channelmonitorservlet
    by http://host:port/mdt/channelmonitorservlet
    --Also see the below links
    /people/michal.krawczyk2/blog/2005/08/17/xi-operation-system-command--error-catching
    OS Command on FTP
    OS command line script - Need help
    FTP - Run OS Command before file processing
    /people/sravya.talanki2/blog/2005/08/23/sender-xi-ftp-adapter-with-regular-path-expression-150-abap - Sender XI FTP Adapter with Regular Path Expression – ABAP
    Cheers..
    Vasu
    <i>** Reward Points if found useful **</i>

  • FIle not picked up by File Adapter

    Dear all,
    File adapeter is not picking the files from the source directory by the PI system.
    We could see that the files are available in the source system, kindly suggest me in this regard.
    Thanks for the support.
    Best Regards,
    Piyush

    apart from the above options you can try some of the below:
    1. STOP and RESTART the channel. since some time the file chanel becomes isolated and the handshaking doesn't happen properly.
    2. you should always give a "time out" in the sender channel.
    3. check the folder RIGHTS, you can try making it 777 (full READ,WRITE and EXECUTE) for the time being. Later you can customize
        your rights as per the requirement.
    Edited by: SANJAY BADHAI on Nov 24, 2010 3:41 PM

  • File is not picking from the source location.

    Hi all,
    File is not picking from the source location. FTP is working properly and file is also placed in source location. I am new the XI, if anybody can give me the solution it would be really helpfull.
    Thanks to all.
    Korean

    Hi Majin,
      Check the folder path properly, check the file name( file name is case sensitive) you have given correct or not. See that your communication channel is active. Also check the cache status and check adapter status also by that you will come to know wht is the problem.
    Thanks,
    Ranjeeth.

  • Not picking up paper to scan to computer

    Hi- this printer does not pick up the paper when scanning to a computer.  It did until last Friday.
    I can copy and it picks up the source paper and makes copies.
    I can scan to USB and it picks up the papers and scans to USB.
    But if I scan to computer, it does not pick up the paper,  It sits in the tray.  I hear some wheels rolling but evidently it is not the pick-up-the-paper-from-the-tray wheels.  I can scan off the glass no problem...but that is just one sheet.  paper is seated properly on teh tray- the screen acknowledges its presdense with "Document loaded"
    Anything I can try before calling for service?  I wiped clean all rollers and paper separators and I powered off and then back on the equipment.  Let me know and thank you in advance. 

    Thanks X-23 for a quick reply )   I will try your suggest procedures on this Saturday when the MacBook and the printer are free-up from work.  I will let you know the results.

  • Not Picking up one Index..!

    hi,
    I am Using Oracle 10g Version--10.2.0.1.0. I am getting one problem with this query what was the problem i don't understand it is not picking up one index which it is there in indexes. X_PCAT--P_CAT is the index and column from PARTY.
    This is the Query..!
    SELECT P_CODE , P_NAME, P_OB, P_CAT, P_SUB_CAT, P_BANK, P_PHONE1 || ' ' || P_PHONE2 || ' ' || P_PHONER, P_INTRO1, P_INTRO2, P_INTRO3
    FROM SYSADM.PARTY WHERE ( P_CAT = 'DAHMEDABAD' ) AND
    ( P_OB != 0 OR
    EXISTS ( SELECT DISTINCT CB_P_CODE FROM SYSADM.CASH_BOOK WHERE P_CODE = CB_P_CODE) OR
    EXISTS ( SELECT DISTINCT B_PARTY FROM SYSADM.BILLS WHERE P_CODE = B_PARTY ) ) ORDER BY 4, 5, 1 ;
    this is the Explain Plan for the above query..!
    SELECT P_CODE , P_NAME, P_OB, P_CAT, P_SUB_CAT, P_BANK, P_PHONE1 || ' ' || P_PHONE2 || ' ' || P_PHONER, P_INTRO1, P_INTRO2, P_INTRO3
    FROM SYSADM.PARTY WHERE ( P_CAT = 'DAHMEDABAD' ) AND
    ( P_OB != 0 OR
    EXISTS ( SELECT DISTINCT CB_P_CODE FROM SYSADM.CASH_BOOK WHERE P_CODE = CB_P_CODE) OR
    EXISTS ( SELECT DISTINCT B_PARTY FROM SYSADM.BILLS WHERE P_CODE = B_PARTY ) ) ORDER BY 4, 5, 1
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 62 0.14 1.49 3150 12049 0 1237
    total 64 0.14 1.50 3150 12049 0 1237
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 58
    Rows Row Source Operation
    1237 SORT ORDER BY (cr=12049 pr=3150 pw=0 time=1495964 us)
    1237 FILTER (cr=12049 pr=3150 pw=0 time=2962198 us)
    2025 TABLE ACCESS FULL PARTY (cr=3527 pr=3150 pw=0 time=2004395 us)
    1210 INDEX RANGE SCAN XCB_PARTY (cr=6077 pr=0 pw=0 time=28572 us)(object id 49459)
    27 INDEX RANGE SCAN XB_PARTY (cr=2445 pr=0 pw=0 time=11430 us)(object id 49462)
    So any wrong in this query.

    An explain plan properly created using DBMS_XPLAN.DISPLAY would be immensely helpful.
    So would knowing what index it is you think should be used by Oracle to do what?
    One thing I can tell you is that the construct P_OB != 0 OR is not one likely to favor index usage unless almost every value in the column is 0 and Oracle's decision to not use an index is affecting you in what way? Is the query taking too long or are you just fixating on the incorrect thought that full table scans are always bad: They are not.
    PS: Give serious consideration to patching to 10.2.0.3.

  • Sub:ck11n not picking the routing automatically

    Hi Guru,
                Create cost estimation (ck11n) ,not picking the routing data automatically

    Dear Jothi,
    Goto OKKN,check for the costing variant under quantity structure control tab,whether the routing selection ID is assigned properly.
    Say if selection ID is 01 and the first priority is for N task list type(that's normal routing),then the system will pick it automatically.
    Likewise if it fails to find N,then it searches for the second priority given in the same selection ID.
    This is how it picks for costing in CK11N,Also check the routing status in CA03,under header whether it's 4 - released and usage
    is for 1 production.
    Check and revert
    Regards
    S Mangalraj

  • Why the file not picked by PI

    Hi mates:
           I tried to implement a XML-to-XML senario by XI, it is like picking the file from one folder to another .  and I have created and configurated everything for senario in ID and IR. and activated everything. but the file won't be picked up by XI, 
          I used two computers for the senario, one for Xi, one for the business system.
          Could you please tell me why the file can't be picked up by XI. do I have to installed any FTP server
    on the business system?
          Thank you very much!

    Hi Jingying,
                  There is some reasons are happended for the file is not picking.
    1) If use FTP , Check your FTP Connection working or not
    2)If not pick the file to XI , Check data from source end, if it wrong its shows the error in RWB->Communication Channel Monitoring--> File adapter..
    3)Check the sender Communication channel configured properly or not.
    Regards,
    Sateesh N.

  • Why wsgen does not pick up the changed interface in wsdl.jsp?

    Hi,
    After I changed the type of return value in a method in a stateless EJB. The wsdl.jsp
    generated by wsgen does not pick up the changed interface (it still has the old interface).
    The installed ejb works well with new type of return value. But the web service (wsdl.jsp)
    and client.jar does not work. At begining I thought it might be cached. So I cleaned
    the cache in the browser and temporal directory inside wls domain. I also deleted
    all old version of ejbs on my local disks. But there is no effect. I am confused.
    Please help. Where does the wsgen looking for when generating wsdl.jsp?
    Thanks a lot.
    Jim

    Hi,
    Please check the following path if your application is deployed or not properly if you are using eclipse:
    Workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps

  • Weblogic Server not picking the jar files in WEB-INF/lib folder

    we are facing a strange problem where Weblogic App Server is not picking the jar files present inside the WEB-INF/lib folder if we update the jar file path in the classpath of the start script then the classes get loaded properly.
    Is there any specific setting which I need to do in weblogic to pick these jars ?

    Class loaders associated with a Web application can be configured to locate local classes first. To enable this we have to set the <prefer-web-inf-classes> to true in the deployment override weblogic.xml, for example
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    http://blog.transfer-solutions.com/2010/12/weblogic-class-loading/

  • Files were not picked by channel

    Hi experts,
    Some files are not picked by communication channel , generally restarting the channel in channel monitoring is also not use full in this case.
    Communication channel is stating as green color and in adapter setting  archive path also correct , file name also matched with coming files from sender system..but files are not processed by channel and file adapter.
    we requested basis people to restart the services....
    why it happens some time....like this way..any specific reason behind this types errors..
    can some one proved description about this .

    Hi,
        1. Did you try stopping and starting the communication channel from runtime workbench--> adapter monitoring --> communication     cahnnel monitoring for your sender communication channel.
    Also you can give a try by inactivating and activating the file sender communication channel in ID.
        2. The File Service alone can be restarted from Visual Admin or Netweaver Administrator. It could be done in seconds.
                to start and stop the service in visual administration. Login into visual administrator --> system id --> services --> SAP XI Adapter File --> right click on it and you have stop and start options. Stop it from there and restart it.
            PI 7.1 AF Messaging System successful asynchronous message audit log persistence
         3.your communication channel might be locked and which needs to be unlocked. thatu2019s why it is showing polling but not actually picking any file..
    in your case also it might be the same case try to check that there is no communication channel locked. you may need to contact basis or PI administrator..
    if any lock .. remove the lock then stop and start your communication channel and it should work properly.
    regards,
    ganesh.

Maybe you are looking for