Deployment package error when transferring a playlist through WAN

Hi ,
I'm using DMM 5.2.1 and DMP 4305G .I'm using the deployment package to transfer the files to DMPs through the WAN.at once i'm sending to 10 DMPs.
But everytime im getting errors for  at least 2 DMPs .I'm attaching the error report generated from the deployment manager .
It mainly indicate as " Socket Closed "
Can anyone please look in to this and suggest me a a solution ..
Thanks

Hello,
  Can you manually FTP to the DMP under question and find out how much free space is available on the SD card ?
Specifially Under the following folders :
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-qformat:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin-top:0in;
mso-para-margin-right:0in;
mso-para-margin-bottom:10.0pt;
mso-para-margin-left:0in;
line-height:115%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri","sans-serif";
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:"Times New Roman";
mso-fareast-theme-font:minor-fareast;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;}
1)  usb_1/deployment/content and 2) usb_1
The Error Message: Missing or a partial file most probably implies that the file could not be FTP'd due to lack of space on the Internal card.
Make sure your SD card on the DMP is not full.
Try deleting the unwanted locally stored media asset or old files from the Internal storage (USB_1)
Regards,
Sagar Dhanrale

Similar Messages

  • Error when transferring data; communication error when analyzing

    Hi,
    When I load the data from the SAP CRM source system. Iam getting the following error.
    Error when transferring data; communication error when analyzing
    Diagnosis
    Data Packets or Info Packets are missing in BW, but there were - as far as can be seen - no processing errors in the source system. It is
    therefore probable that an error arose in the data transfer.
    With the analysis an attempt was made to read the ALE outbox of the source system, which lead to error .
    It is possible that no connection exists to the source system.
    Procedure
    Check the TRFC overview in the source system.
    Check the connection of the source system for errors and check the
    authorizations and profiles of the remote user in both the BW and
    source systems.
    Check th ALE outbox of the source system for IDocs that have not been
    Can anyone guide me on this.
    Thanks in Advance
    Varun

    ok here's a development..when i logged in the source system to check the job...it says the job defn is incomplete. The description says:
    Definition for job ARFC:SYSLOAD1C800CRMREMOTE is incomplete. Job cannot be released
    Can anyone give an insight on it.
    Any kind of input will be appreciated.
    Regards
    Varun

  • Avoiding concurrency errors when updating a database through AJAX

    What are some strategies for avoiding concurrency errors when updating a database through AJAX. That is, in cases where a given user could attempt to modify the same row in the database with simultaneous requests (say, that he updates one column with information with an AJAX call, then immediately submits a form that updates the same row), what are some good ways yo prevent the two updates from colliding? On the JavaScript side one might make the AJAX call synchronous, but I question whether that is the best way to do it. Has anyone else confronted this?

    Well, since no one seems to have any ideas so far, I'll throw in my two cents worth.
    I'm not too familiar with AJAX so my advice may be limited.
    I suggest you do a google search on Optimistic concurrency database to get some ideas on how to handle it.
    If your update/insert/delete query is thread safe, then even if the same user double clicks the button fast enough to immediately have another update to the same record, then the first update will complete before the second one is carried out. Therefore no harm is done since he is just updating the same record. Since a typical update/insert/delete takes only a few milliseconds (querying may take a lot more time), its not likely he can click the button that fast. (I assume your using connection pooling for speed).
    The trouble comes up when two people call up data from the same record in different browsers. The first one updates/inserts/deletes the record. Now the other user is looking at old data. When he updates/inserts/deletes, there is a problem. One way to handle this is to keep a copy of all the fields from that record in each user's session scope when they first fetch it from the database (example: oldName). Then when you go to update some time later, to this:
    sql= update person set name=newValue where personID=3344 and name=oldName
    Note oldName is from session scope.
    If name in the database has changed, the update will not occur and will return 0 records updated. If it didn't change, it will update.
    Note your update function should not throw an exception if it cant update, it should return false. Return true if it worked.
    Example: public boolean updateName(String name)
    Similiarly, your insert should not throw an exception if the record already exists, it should return false meaning it cant insert.
    Exaple: public bolean insertName(String name). Same thing with delete function.
    If a record cant be updated due to someone else updating the record while the user was looking at data, return a message that it wasn't updated due to that problem. Then show the user the new value in the database ask him if he wants to overwrite the new change.
    Note even if you show 100 records on the JSP, only update the ones that have changed and not all 100. This way, its not likely he has updated the same records someone else has altered. Less likely a colision compared to updating all 100.
    If your updating/inserting/deleting more than 1 record (say, 3), then you should look into setting up a transaction in addition to all the above and rolling back all of them if one fails.
    Reading the section on databases from http://www.javapractices.com/home/HomeAction.do may also help.

  • Error when executing DBMS_ERRLOG pkg through Stored Procedures...

    Hi,
    We have TWO schemas like IDWH_ODS and IDWH_ERR running on Oracle 10g Rel.2.
    The schema IDWH_ERR has direct SELECT privilege on all the base tables in IDWH_ODS schema. (As Pl/sql doesn't support ROLE, we have granted direct SELECT on each of the tables)
    IDWH_ODS schema has tables like ACCOUNT & CUSTOMER, for which I need to create DML Error logging tables in IDWH_ERR schema.
    I have one procedure 'Cr_Errlog_Tabs' in IDWH_ERR schema which gets all tables in IDWH_ODS and creates Error logging table in IDWH_ERR schema using DBMS_ERRLOG package. My problem starts here,
    When I execute the DBMS_ERRLOG package in IDWH_ERR through SQL*Plus LIKE,
    > exec DBMS_ERRLOG.CREATE_ERROR_LOG('idwh_ods.ACCOUNT','ERR$_ACCOUNT','idwh_err');
    it's creating the error log table 'ERR$_ACCOUNT' in IDWH_ERR schema.
    (...the same will be working when execute through Anonymous plsql block)
    BUT, when i execute the DBMS_ERRLOG package with same parameters through the stored Procedure 'Cr_Errlog_Tabs',
    it throws the following error...
    ORA-01031: insufficient privileges
    Please let me know the solution at the earliest.
    Thanks.
    -Saravanan

    duplicate post
    Insufficient privilege error when executing DBMS_ERRLOG through PLSQL

  • Incompletely deployed packages Errors While Starting JBoss and Errors while Accessing LiveCycle Services

    After Configuring JBoss 4.2 for LiveCycle 8.2 using preinstallsingle.pdf  documentation on Linux platform . Deployed the following Jars to Jboss deploy/
    adobe-livecycle-jboss.ear
    adobe-livecycle-native-jboss-x86_linux.ear
    Statred the JBoss and successfully initialized  the adobe database schema using browser. That made me sure that my .ear are deployed successfully. After configuring the DataBase Schema  I am able to log in to the admin ui using u:administrator and p:password  . However I am not able to see any services under the services tab in admin ui . When I look back at the Server Logs I see the following Error
    2009-05-28 04:40:43,883 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner] Incomplete Deployment listing:
    --- Packages waiting for a deployer ---
    org.jboss.deployment.DeploymentInfo@ae49da0f { url=file:/mnt/sw/jboss-4.2.0.GA/server/all/deploy/hs_err_pid2824.log }
      deployer: null
      status: null
      state: INIT_WAITING_DEPLOYER
      watch: file:/mnt/sw/jboss-4.2.0.GA/server/all/deploy/hs_err_pid2824.log
      altDD: null
      lastDeployed: 1243500043882
      lastModified: 1243500043000
      mbeans:
    --- Incompletely deployed packages ---
    org.jboss.deployment.DeploymentInfo@ae49da0f { url=file:/mnt/sw/jboss-4.2.0.GA/server/all/deploy/hs_err_pid2824.log }
      deployer: null
      status: null
      state: INIT_WAITING_DEPLOYER
      watch: file:/mnt/sw/jboss-4.2.0.GA/server/all/deploy/hs_err_pid2824.log
      altDD: null
      lastDeployed: 1243500043882
      lastModified: 1243500043000
    and when I try to access the Rights Management ES webapplication , I am able to see the login ui but not able to log in with any user and on the server logs I get the following error
    2009-05-28 05:26:31,509 ERROR [STDERR] | [com.adobe.livecycle.usermanager.client.DirectoryManagerServiceClient] errorCode:16385 errorCodeHEX:0x4001 message:Exception wrapped in DSCException is Null or NOT An Instance of UMException chainedException:ALC-DSC-012-000: com.adobe.idp.dsc.registry.ServiceNotFoundException: Service: DirectoryManagerService not found.chainedExceptionMessage:Service: DirectoryManagerService not found. chainedException trace:ALC-DSC-012-000: com.adobe.idp.dsc.registry.ServiceNotFoundException: Service: DirectoryManagerService not found.
            at com.adobe.idp.dsc.registry.service.impl.ServiceRegistryImpl.getService(ServiceRegistryImp l.java:1084)
            at com.adobe.idp.dsc.registry.service.impl.ServiceRegistryImpl.getHeadActiveConfiguration(Se rviceRegistryImpl.java:935)
            at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.resolveConfiguration(ServiceEngineImpl.ja va:148)
            at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:73)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessage Receiver.java:91)
            at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:21 5)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:57)
            at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
            at com.adobe.livecycle.usermanager.client.DirectoryManagerServiceClient.findPrincipal(Direct oryManagerServiceClient.java:616)
            at com.adobe.edc.server.platform.UMHelper.getAnonymousPrincipal(UMHelper.java:447)
            at com.adobe.edc.ui.console.auth.RMSecurityFilter.isEndUser(RMSecurityFilter.java:43)
            at com.adobe.edc.ui.console.auth.RMSecurityFilter.allowUser(RMSecurityFilter.java:23)
            at com.adobe.idp.um.auth.filter.SecurityFilter.createNewSession(SecurityFilter.java:180)
            at com.adobe.idp.um.auth.filter.SecurityFilter.doFilter(SecurityFilter.java:126)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    I am not sure why jboss is not able to deploy my packages properly which I guess is accountable for missing services. Any help on this issue will be highly appriciated.
    Thanks and Regards,
    Shakra

    Hi,
    I am having exactly the same problem. Did you ever come to a resolution on this problem???
    Thanks,
    Darren

  • "Unknown Error" when attempting to publish through Muse

    I recently updated my log in information to better organize log in credentials that I currently have deployed. I edited just the basic email and password as well as adding another one of my alternate email addresses. When I did that the ability to manage the site I have published through muse disappeared through the website interface. I also am receiving an "Unknown Error" when attempting to publish from the Muse application itself. Log in credentials are definitely updated and correct, just not sure where the others went.
    Any help in the right direction is appreciated!

    Hello,
    I'm having this exact same issue. Same popup. Could I get some help resolving it as well?
    I am an admin on the site in question, not the owner. I updated my BC email address to match my adobe CC username/email, but it still doesn't seem to be working.
    Chris Mayer
    The site I'm trying to upload my muse file to is http://popsleep.businesscatalyst.com/ (it should be the only BC I have access to I believe)

  • Package Error when create package via Methods onTables

    Even though I am an APEX developer for 3 years, I just found out about Methods on Tables Utility in SQL Workshop from Dan McGhan's demo. I tried to create a package for about 7 tables in one package. When the package was created, it was invalid. I tried to compile it and it produced several errors. I noticed that the UPDATE table procedure was incomplete as it did not provide parameters even though the procedure uses them.
    I was able to replicate it in APEX.ORACLE.COM.
    WORKSPACE: RGWORK
    PACKAGE: CSRSR_DML
    USER : TESTER
    Password: test123
    Is this a bug? Is there a workaround? Did anyone else experience similar outcome?
    APEX 4.1
    Oracle 10g Rel 2
    Robert
    http://apexjscss.blogspot.com

    sect55 wrote:
    Come on APEX team and gurus, please help....As far as this "guru" is concerned, it's not something I'd ever use:
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:672724700346558185
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:25405782527721
    Given Tom's well-known opposition to this approach, I was more than a little surprised when this appeared in APEX as he also appears to have close links to the APEX team. I'd really rather have seen development effort invested elsewhere.
    I'd definitely advocate building applications based on PL/SQL APIs, just not on table-centric, row-by-row ones...
    I tried to create a package for about 7 tables in one package.Why?
    One of the main purposes of packages is to modularize an application. Sticking methods for all of the entities in one package defeats this and makes development, testing and maintenance harder. If you must use the flawed TAPI concept, create a separate API for each table&mdash;at most only combine those where there exist mandatory dependencies, e.g. an <tt>order</tt> package with methods for <tt>orders</tt> and <tt>order_items</tt>.
    As to the immediate problem, it appears to be due to the lack of primary key definitions on some of your tables. This means the generator is unable to identify which columns to use as unique row identifiers.

  • Error when importing Shared Dimension through LCM

    We are using Hyperion Planning 11.1.1.3 with an EPMA application. We have one environment where all of the dimensions are in the Shared Library, and the application dimensions are shared from there (DEV environment). In another environment, we have the same application, but its using only local dimensions (UAT environment)
    We are looking to migrate some changes to members from DEV to UAT, but don't want to share the dimensions in UAT (yet anyways). Here is how I was going about migrating the dimensions:
    1. In Shared Services in DEV, exporting the dimensions from EPM Architect from Foundation Services (from under Dimensions (Shared))
    2. In Shared Services in UAT, importing the dimensions from the file system into EPMA from Foundation Services (into Dimensions (Shared)), then using the "Synchronize > From Shared Library" to push those changes to the application's local dimensions.
    When I import the file system from DEV into UAT, the import fails and gives me the following error message for the Account dimension (only trying the one dimension for now):
    REPORTED WITHOUT ERROR DETAILS
    Here is a link to the screenshot of the error: http://dl.dropbox.com/u/12604803/HSS-LCM-Error.jpg
    It appears that the LCM import does work as it creates the dimension in the Shared Library, but I am not sure why I am getting this error message.
    I also tried to import the exported Shared Dimension for Account directly into the application (rather than the Shared Library) by just moving the "Account" file from:
    <export file name>\resource\Dimensions (Shared)
    to
    <export file name>\resource\Application Metadata\Planning Applications\<appname>\Common Dimensions
    And this imports without any errors! I'd rather not go this way as it's more of a manual process, and I'd like to keep it as straightforward as possible.
    I have searched the error message on OTN, the Oracle Knowledge Base and Google, but haven't really been able to come across any real information.
    Any insight you may have would be greatly appreciated!

    More of an update. We have a sandbox environment as well, and I was able to import the Shared Dimensions through LCM without any issue on that server.
    I also tried rebooting the server with the issues, but still get that cryptic error message.
    I looked through the logs and saw this in the EPMA.log
    2011-03-31 15:51:13,194 [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR com.hyperion.awb.web.lcm.ArtifactManager - Error code is AWB_WEB_ERR_LCM_IMPORT_ARTIFACTS_PATHNAME
    2011-03-31 15:51:13,194 [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR com.hyperion.awb.web.lcm.ArtifactManager - doImportArtifacts: Error importing 'Account' at path '/Dimensions (Shared)'
    Seems to be connected to the issue I am having, but couldn't find anything on OTN, Oracle KB or Google. Other imports to this environment work, so not sure why the pathname would throw issues.
    I also verified that EPMA and HSS on all environments are using the same version.

  • Oracle Fatal error when trying to connect through sqlplus

    Hi,
    I am getting the below error when trying to connect to instance through sqlplus
    Database version is :10.2.0.3
    Operating system= Solaris Operating System (SPARC 64-bit)
    OS version=5.10
    [lscbd07p2*BMC]-\ORACLE>sqlplus
    SQL*Plus: Release 10.1.0.4.0 - Production on Fri Nov 9 07:48:24 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter user-name: /as sysdba
    ld.so.1: oracle: fatal: relocation error: file /u01/app/oracle/product/db/10.1.0.4/lib/libjox10.so: symbol kststop_: referenced symbol not found
    ERROR:
    ORA-12547: TNS:lost contact
    Enter user-name:
    Could you all please give me suggestions in order to solve this problem.
    Thanks
    Mannu

    Have you recently patched/upgraded? This sounds like there might have been a problem relinking the executables / libraries, and/or a permissions problem. For example you may be referencing a 32 bit library with your 64 bit client.
    I believe I recently read a similar case - check Metalink for this symptom.
    HTH
    Regards Nigel

  • Parameter Error when Transferring Files from ipod to laptop

    Hi,
    I have posted this topic previously but didnt respond fast enough and I think the system locked it down as I had too long of a delay.
    I have recently set up iTunes on a laptop and want to start using this as my default iTunes for syncing etc. Unfortunately I no longer have access to the desktop that housed my original iTunes so I have followed the instructions to use my ipod as an external disc and transfer the files this way.
    These are the instructions I have followed http://lifehacker.com/105256/how-to-copy-songs-from-your-ipod-to-your-pc
    There are two issues I see. (1) the ipod control folder is allowing me to see what is housed in the folder but it is slightly greyed out compared to the other folders in the same location.
    (2) when I try and copy the music folder to my desktop etc I get a parameter error.
    So for example the error I have when transferring to my desktop I get
    "Cannot copy OUTO (the file): The parameter is incorrect.
    Hopefully someone has seen this before.
    thx

    No idea on your specific question but if it is of any help here are some articles and links about moving files from the ipod to the computer...
    Copying from iPod to Computer threads...
    http://discussions.apple.com/thread.jspa?threadID=1300144
    http://discussions.apple.com/thread.jspa?messageID=797432&#797432
    http://discussions.apple.com/thread.jspa?threadID=809624&tstart=0
    Also these somewhat dated but still useful internet articles...
    http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/
    http://www.engadget.com/2004/11/02/how-to-get-music-off-your-ipod/
    http://playlistmag.com/help/2005/01/2waystreet/
    Good luck!
    Patrick

  • Error when transfering specific songs from iTunes to iPod

    Hi!
    I am having this problem: When I am transferring new songs (manually)from my iTunes library to my iPod, I got a error message - my iTunes is in Spanish - which translated into English reads:
    "Error when trying to copy in disk NAME OF IPOD. Unable to read nor write in the disk"
    It happens with very specific songs, not all new songs but some of them. First I thought these songs were corrupted, however iTunes and WMA can plays them with no problem at all.
    I have a 4G, 20Gb iPod, 1.79Gb free space, already installed latest iPod Updater 2005-10-12. Have no issues related to play songs on iPod.
    Is there any other way to check if songs are not corrupted ?
    Is this a problem related to my iPod ? Pls advise.
    Thank you!

    I'm still having the same problem. I tried everything, and unless there's a number to call Apple, I'm going to repurchase my music. I only buy it to play it on my iPod.

  • Error when executing a Query through information Broadcasting

    Dear SDN,
    We have configured information Broadcasting in the Web Reports---
    Scheduled and then when executing the following error is coming
    500 internal server error - Microsoft internet explorer
    Error when processing your request
    What has happened?
    The URL http://xyz.com:8000/sap/bw/BEx was not called due to an error.
    Note
    The following error text was processed in the system BWD : Please enter a valid value for characteristic 0CALMONTH.
    The error occurred on the application server asalbwd_BWD_00 and in the work process 0 .
    The termination type was: ERROR_MESSAGE_STATE
    The ABAP call stack was:
    START-OF-SELECTION of program RSRD_BROADCAST_PROCESSOR
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system BWD in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server asalbwd_BWD_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server asalbwd_BWD_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http-c:900-u:VENKAT -l:E-s:BWD-i:asalbwd_BWD_00 -w:0-d:20080708-t:133744-v: ERROR_MESSAGE_STATE-e:Please enter a valid value for characteristic 0CALMONTH.
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team
    Please suggest us to resolve this error..
    Help will be greatly appreciated with points..
    Thanks in advance

    Hi
    Thanks...
    I have given only Fiscal Year/Period Variable
    Other than Fiscal Year/Period Variable....No Variables in that Query..
    In FI Queries, I did not use 0CALMONTH Variable...
    I do not know why it is giving that error..
    Please suggest us to resolve this error..
    Thanks in advance

  • My login is showing server error when tryinng to login through my application

    Server Error in '/' Application. Failed to generate a user instance of SQL Server due to a failure in copying database files. The connection will be closed. Description: An unhandled exception occurred during the execution of the current web request. Please
    review the stack trace for more information about the error and where it originated in the code. SQLExpress database file auto-creation error: The connection string specifies a local Sql Server Express instance using a database location within the application's
    App_Data directory. The provider attempted to automatically create the application services database because the provider determined that the database does not exist. The following configuration requirements are necessary to successfully check for existence
    of the application services database and automatically create the application services database: If the application is running on either Windows 7 or Windows Server 2008R2, special configuration steps are necessary to enable automatic creation of the provider
    database. Additional information is available at: http://go.microsoft.com/fwlink/?LinkId=160102. If the application's App_Data directory does not already exist, the web server account must have read and write access to the application's directory. This is
    necessary because the web server account will automatically create the App_Data directory if it does not already exist. If the application's App_Data directory already exists, the web server account only requires read and write access to the application's
    App_Data directory. This is necessary because the web server account will attempt to verify that the Sql Server Express database already exists within the application's App_Data directory. Revoking read access on the App_Data directory from the web server
    account will prevent the provider from correctly determining if the Sql Server Express database already exists. This will cause an error when the provider attempts to create a duplicate of an already existing database. Write access is required because the
    web server account's credentials are used when creating the new database. Sql Server Express must be installed on the machine. The process identity for the web server account must have a local user profile. See the readme document for details on how to create
    a local user profile for both machine and domain accounts.

    Hi migold,
    As other post, please help to post more details for analysis.
    Based on my research, the error “Failed to generate a user instance of SQL Server due to a failure in copying database files” is usually caused by that User Instance is set improperly. Please check for the existence of the "User Instance=True;" in
    your connection string, if it exists, change it to "User Instance=False;". For more details, please review the following blog.
    http://blog.benhall.me.uk/2008/03/sql-express-error-failed-to-generate-a-user-instance-of-sql-server/
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Error when transferring table data to a CSV format file.

    Hi
    I am getting an error when I am passing the parameter value for the file name from the selection screen. If i hard code the path and name it works fine. can any one help me please. here is my code:
    PARAMETERS: OUTFILE LIKE dxfile-filename
                           DEFAULT 'C:\Apositivepay.txt',
          RUNDATE LIKE PAYR-LAUFD,
          Bank LIKE T012K-HBKID.     "List of Possible Banks
    type-pools:TRUXS.
    DATA: BEGIN OF OUTPUT_REC OCCURS 0,  "Output file for USBANK
          ACCT(12),           "bank account no
          Payee2(40) type c,         "payee 2
          END OF OUTPUT_REC.
    data:  itab1 type TRUXS_T_TEXT_DATA.
      CALL FUNCTION 'SAP_CONVERT_TO_CSV_FORMAT'
        EXPORTING
             I_FIELD_SEPERATOR          = ','
         TABLES
             I_TAB_SAP_DATA             = OUTPUT_REC
         CHANGING
             I_TAB_CONVERTED_DATA       =  itab1
         EXCEPTIONS
              CONVERSION_FAILED          = 1
              OTHERS                     = 2.
    IF SY-SUBRC <> 0.
       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
            filename = OUTFILE  "This doesn't work
            filename = 'C:\Apositivepay.txt' "This works
         TABLES
              DATA_TAB            = itab1
         EXCEPTIONS
              FILE_OPEN_ERROR     = 1
              FILE_WRITE_ERROR    = 2
              INVALID_FILESIZE    = 3
              INVALID_TABLE_WIDTH = 4
              INVALID_TYPE        = 5
              NO_BATCH            = 6
              UNKNOWN_ERROR       = 7
              OTHERS              = 8.
    Message was edited by: Anwarul Kabir

    hi,
    use this code and save that file in CSV format it will work
    OPEN DATASET P_IFILE FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF SY-SUBRC NE 0.
        MESSAGE E000 WITH 'Problem in opening Application Server file'.
      ELSE.
        DO.
          READ DATASET P_IFILE INTO IT_UPLOAD.
          IF SY-SUBRC NE 0.
            EXIT.
          ELSE.
            APPEND IT_UPLOAD.
            CLEAR IT_UPLOAD.
          ENDIF.
        ENDDO.
        CLOSE DATASET P_IFILE.
      ENDIF.
      IF IT_UPLOAD[] IS INITIAL.
        MESSAGE E000 WITH 'NO data in the file/upload problem'.
      ENDIF.
      LOOP AT IT_UPLOAD.
        SPLIT IT_UPLOAD AT ','
                         INTO
                         IT_FDATA-MATNR
                         IT_FDATA-WERKS.
                        IT_FDATA-SLGORT.
        APPEND IT_FDATA.
        CLEAR  IT_FDATA.
      ENDLOOP.
       IT_TOTAL1[] = IT_FDATA[].

  • Firefox gives me "Content Encoding Error" when trying to navigate through websites.

    I have been having trouble when using Firefox. I am continually getting a "Content Encoding Error" when trying to go from my home page to another page or even just going from the main page of a website to link on that site. I can't access facebook, yahoo mail, charter, google mail or any site without getting the "content encoding error" message at some point when on these sites. I am able to use ff on other computers in my house without any issues. I can't even run ff in safe mode. When I try to refresh some pages I get a box asking me if I want to open the application or save it to my computer. I never clicked anything saying I wanted to open it, I was just trying to refresh the page to get back to where I was. Is there a way to go back to the previous version of ff to get rid of the problem? Does that even fix the problem? Can someone please suggest something that I haven't tried so I can fix my problem? I didn't start having these issues until I got (at the time) the latest version. It has been giving me trouble for about 2 weeks now. Thanks
    == URL of affected sites ==
    http://
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; InfoPath.2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)

    yes it does list wham3.....here's the output of lsnrctl services wham3
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 21-SEP-2005 15:53
    :34
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=juipinj.corp.whamtech.co
    m)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=wham3)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    Service " wham3.corp.whamtech.com" has 1 instance(s).
    Instance "wham3", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:46 refused:0 state:ready
    LOCAL SERVER
    Service "wham3XDB.corp.whamtech.com" has 1 instance(s).
    Instance "wham3", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:1002 state:ready
    DISPATCHER <machine: JUIPINJ, pid: 2024>
    (ADDRESS=(PROTOCOL=tcp)(HOST= JUIPINJ.corp.whamtech.com)(PORT=1073))
    Service "wham3_XPT.corp.whamtech.com" has 1 instance(s).
    Instance "wham3", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:46 refused:0 state:ready
    LOCAL SERVER
    The command completed successfully

Maybe you are looking for

  • Adobe Acrobat 8 pro updates step by step?

    Is that the truth?! I installed Adobe Acrobat 8 pro at my new bussiness machine (Win7ultimate32bit) and I have to load every f... update one by one and to install every update one by one and to restart the machine recently? Or I'am blind and can't fi

  • File adapter error in RWB

    <b><i>Error: Conversion of complete file content of 'xi_ftf2ftf_input.dat' to XML format failed around position 0: IOException: Stream closed</i></b> Any clue how I can trouble shoot this. I'm trying the flat file to flat file scn. Ste.

  • How to connect to oracle in vpn in linux?

    Dear all, I have to connect to oracle database between two linux server in VPN. Plz help.

  • Please tell me the way to the run the interactive OO alv in the backgrou

    please tell me the way to the run the interactive OO alv in the background.

  • NW CE 7.1 Post install - Portal Configuration

    Hi Friends, I have installed the NW CE 7.1 and I could configure the SLD through the configuration wizard. I am able to login to server for administration through the URL http://<<host>>:50200/nwa. But I am trying to login to portal by the URL: http: