Select to a file (.CSV)

Hello people,
I'm working with a table, and I whant, by a select, put all my result into a .csv file (after I'll transform in .xls)
Then I'm trying to do this:
XFILE := UTL_FILE.FOPEN('FOLDERNAME', 'Export.csv', 'W');
-- THIS IS THE HEADING
UTL_FILE.PUT_LINE(XFILE, 'MES_REF'||';'||'CHAVE'||';'||'MES1'||';'||'MES2'||';'||'MES3'||';'||'MES4'||';'||'MES5'||';'||'MES6'||';'||'MES7'||';'||'MES8'||';'||'MES9'||';'||'MES10'||';'||'MES11'||';'||'MES12'||';'||'MES13'||';'||'MES14'||';'||'MES15'||';'||'MES16'||';'||'MES17'||';'||'MES18'||';'||'MES19'||';'||'MES20'||';'||'MES21'||';'||'MES22'||';'||'MES23'||';'||'MES24'||';'||'MES25');
FOR R IN (SELECT P_MES AS MES_REF
,KEY
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '25' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH1
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '24' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH2
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '23' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH3
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '22' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH4
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '21' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH5
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '20' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH6
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '19' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH7
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '18' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH8
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '17' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH9
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '16' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH10
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '15' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH11
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '14' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH12
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '13' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH13
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '12' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH14
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '11' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH15
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '10' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH16
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '09' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH17
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '08' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH18
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '07' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH19
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '06' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH20
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '05' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH21
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '04' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH22
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '03' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH23
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '02' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH24
,MIN(CASE WHEN MES = TO_NUMBER(TO_CHAR((TO_DATE(FN_GET_CALC_PPM,'YYYYMM') - INTERVAL '01' MONTH),'YYYYMMDD')) THEN VALOR END) AS MONTH25
FROM VIA_GAUSS_PPM
GROUP BY KEY
ORDER BY KEY)
LOOP
BEGIN
UTL_FILE.PUT_LINE(XFILE, R.MES_REF||';'||R.KEY||';'||R.MONTH1||';'||R.MONTH2||';'||R.MONTH3||';'||R.MONTH4||';'||R.MONTH5||';'||R.MONTH6||';'||R.MONTH7||';'||R.MONTH8||';'||R.MONTH9||';'||R.MONTH10||';'||R.MONTH11||';'||R.MONTH12||';'||R.MONTH13||';'||R.MONTH14||';'||R.MONTH15||';'||R.MONTH16||';'||R.MONTH17||';'||R.MONTH18||';'||R.MONTH19||';'||R.MONTH20||';'||R.MONTH21||';'||R.MONTH22||';'||R.MONTH23||';'||R.MONTH24||';'||R.MONTH25);
EXCEPTION
WHEN OTHERS THEN
BEGIN
CARGA_UTIL.SP_LOG_EXCEPTION(V_PROCNOME, 'KEY: ' || R.KEY || ', ' || SUBSTR(SQLERRM, 1, 3000));
END;
END;
END LOOP;
UTL_FILE.FCLOSE(XFILE);
The problem is that some lines get some error, how can I know what is the motive for those errors ?
29/03/2012 09:56:20     CARGA_MEDIAPPM.SP_EXPORT ( 201203)     KEY: Categoria Take Home#Sugestão#Sabor, ORA-29285: erro de gravação em arquivo (cannot save in file)
Edited by: MrTiberio on 29/03/2012 06:27
Added the error

Edited by: MrTiberio on *29/03/2012 06:27*
Added the error
     Re: Select to a file (.CSV)
Posted: *29/03/2012 06:29* in response to: MrTiberio          
               Reply
I am looking in my crystal ball and can see the exact error message you are getting and the
error is just there ->
Ok ok... read first...

Similar Messages

  • Loading of flat file (csv) into PSA – no data loaded

    Hi BW-gurus,
    We have an issue regarding loading a flat file (csv) into PSA using an infopackage u2013 (BI 7.0)
    The infopackage has been used for a while. Prior the consultants with SAP_ALL-profile have run the infopackage. Now we want a few super users to run the infopackage.
    We have created a role for the super users, including authorization objects:
    Data Warehousing objects: S_RS_ADMWB
    Activity: 03, 16, 23, 63, 66
    Data Warehousing Workbench obj: INFOAREA, INFOOBJECT, INFOPACKAG, MONITOR, SOURCESYS, WORKBENCH
    Data Warehousing Workbench u2013 datasource (version > BW 3.x): S_RS_DS
    Activity: All
    Datasource: All
    Subobject for New DataSource: All
    Sourcesystem: FILE
    Data Warehousing Workbench u2013 infosource (flex update): S_RS_ISOUR
    Activity: Display, Maintain, Request
    Application Component: All
    InfoSource: All
    InfoSource Subobject: All values
    As mentioned, the infopackage in question, has been used by consultants with SAP_ALL-profile for some time, and been working just fine.  When the super users with the new role are executing the infopackage, the records are found, but not loaded into PSA. The load seems to be stuck, but no error message occurs. The file we are trying to load contains only 15 records.
    Details monitor:
    Overall status: Missing messages or warnings (yellow)
    Requests (messages): Everything ok (green)
      ->  Data request arranged (green)
      ->  Confirmed with: OK (green)
    Extraction (messages): Errors occurred (yellow)
      ->  Data request received (green)
      -> Data selection scheduled (green)
      -> 15 Records sent (0 Records received) (yellow)
      -> Data selection ended (green)
    Transfer (IDocs and TRFC): Missing messages (yellow)
    Processing (data packet):  Warnings received (yellow)
      -> Data package 1 (? Records): Missing messages (yellow)
         -> Inbound processing (0 records): Missing messages (yellow)
         -> Update PSA (0 Records posted): Missing messages (yellow)
         -> Processing end: Missing messages (yellow)
    Have we forgotten something? Any assistance will be highly appreciated!
    Cheers,
    Anne Therese S. Johannessen

    Hi,
    Try to use the transaction ST01 to trace the authorization of the upload with the SAP_ALL. 
    And the enhance your Profile for the super user.
    Best regards
    Matthias

  • File Dialog (Details View and Multiple Selections for View File Type)

    I would like to use the generic windows dialog box found in the toolbar under:
    File I/O/Advanced File Functions/File Dialog
    What I would like to do is have multiple selections for the file type, for example one menu selection is *.txt, another is *.rtf, another is *.csv, etc. Listing a single type is straightforward.
    Also does anyone know if there is a way to have the dialog open in the DETAILS view automatically?
    Thanks for any help!
    Carlton

    Hi,
    You can do it in following ways:
    1. Write in pattern input the string "*.txt; *.csv; *.rtf". This will show to the user only files with this extensions in the dialog.
    2. Another way is to create ring or menu where user could specify the extension. Depending on this extension you could wire the appropriate string to the pattern input of "File Dialog.vi"
    I have made an example.
    Good luck.
    Oleg Chutko.
    Attachments:
    fileopen.vi ‏42 KB

  • Creating flat files (.csv) in user defined directory using PL/SQL

    I need to extract data into a flat file (.csv) and store the flat file directly into a directory on local drive as specified by the user at runtime. I do not intend to use the UTL_FILE package. Is there a way put to do this?
    Thanks
    Amit.

    Hi Amit,
    Your users have any shared drive which every one can access? If so follow these steps.
    1> Allow users to select their destination location to an APEX item.
    2> On submit, save the user IP, destination location and user name to a database table.
    3> On submit, using JS, open XLS file template (+kept this template file in shared location+) The template should contain all the macros that will do the needful. I mean they should connect to database and should fill it with data and saving it to user specified location etc.
    Hope it helps.
    Cheers,
    Hari

  • Advance select for source file in Sender File Adapter

    Hi
    I am trying to utilise the parameter 'Advance Selection for source file' on a sender file adapter to pick the file from multiple folders
    My problem is that this parameter that is listed on the SAP help is not getting in File accessing Parameters.
    I am running PI 7.02 (NW702_07_Rel)
    Service pack 07
    Has anyone come across this before?
    any suggestions on how to do this?

    Hi,
    In PI7.0 the property exists. I have used it previously. I think SP was 13.
    Regards,
    Nutan
    Edited by: nutan champia on Nov 24, 2011 10:42 AM

  • Select every nth file from a folder

    Hello:
    I have a file on my computer that has about 2200 word documents and I need to select every 10th file and place it into another folder. I have zero expierence with this stuff, especially since my imac is my first mac ever; I have had it for about 2 months. Any help would be greatly appreciated !
    Thanks

    This script
    set sourceFolder to choose folder with prompt "Select Source Folder"
    set destinationFolder to choose folder with prompt "Select Destination Folder"
    set diag to display dialog "Set skip count" default answer "10"
    set skipCount to (text returned of diag) as integer
    tell application "Finder"
              set theFiles to the files of sourceFolder
              repeat with n from skipCount to (count of theFiles) by skipCount
      duplicate item n of theFiles to folder the destinationFolder
              end repeat
    end tell
    will prompt you for the source and destination folders (the destination folder must exist already) and then prompt for the number of files to skip.
    It will duplicate the selected files from the source to the destination. If you do not want the files to remain in the source folder replace duplicate with move in the script.
    To make the above into a script select all the text in the box then right (control) click the selection, select Services->Make New AppleScript.
    As with all script gotten from the web make sure you test it out on some dummy files first and make sure you have backups of the data you are working on.
    regards
    Note this will start with the file at skipCount and increment from there. That is with the skipCount set to 10 the first file moved is file number 10 then 20, 30, etc.
    Message was edited by: Frank Caggiano

  • When i select a pdf file for download in a webpage instead of automatically downloading the file and opening it using adobe acrobat I get a new blank window in the browser and it says done in the bottom left corner

    when I select a pdf file within a webpage and click to download instead of getting the "download" window and the file automatically opening after download using adobe reader I get a blank webpage (in the same tab) and in the bottom left corner it says"done". No file is downloaded and if I click "back" I just return to the webpage containing the link.

    Aha!  The properties for the plugin file nppdf32.dll for Adobe Reader indicate the file is for Adobe Acrobat.  This misidentification is then used by SeaMonkey as a label in the helper application list. 
    Adobe Reader 11.0.3.37:  nppdf32.dll has version 11.0.3.37.  This is the version in SeaMonkey's plugins folder. 
    Adobe Acrobat 7.0.8.218:  nppdf32.dll has version 7.0.9.50. 
    As for having both Adobe Reader and Adobe Acrobat on the same PC, this generally works providing Reader is installed AFTER Acrobat.  Reader is freeware, and I want to keep it current.  Acrobat is purchaseware, and I cannot afford to keep buying  upgrades or newer versions. 

  • How to Dynamically Select the Data File for a Report at Print Time

    How do you configure a Crystal report to ask for the file to be reported on as the report is being printed, and allow the user to browse to the file?
    The environment is Crystal Reports XI, SP3, with ODBC connection to Sage Timberline Office data version 9.7.  The client names their Payroll unposted time file each pay period, and also needs to report on their posted data file, depending on the time period for the report.  The client will need to select both the date range and the file name.
    I have created a SQL statement in Add Command in Database Expert, which prompts for a file name, but it does not let you browse to select a file on the computer.
    Therefore, in the prompts when they print the report, the parameter offers the user a default file name similar to the name they currently use, so they only have to change the payroll period end date in the supplied file name to run the report successfully.
    The client is concerned that sometimes a user will name their data file differently, and not know how to input the file name into the Crystal report prompt at print time.
    My research on dynamic prompts showed you can link to fields inside the data record, but I did not see a way to dynamically link to select the actual files used in the report.
    Another question is that the naming convention used by the SQL query is different than the basic Windows file name, but I think I can handle that issue.
    The actual file name is typically similar to:
    04-10-11 BP NEW.PRT
    However, in the SQL query, the record ID looks like:
    PRT_00-00-00 BP NEW__TIME
    The SQL Statement using a parameter is:
    SELECT
    "PRT_CURRENT__TIME"."Employee",
    "EMPLOYEE1"."Employee_Name",
    "PRT_CURRENT__TIME"."Date",
    "PRT_CURRENT__TIME"."Units",
    "PRT_CURRENT__TIME"."Job",
    "JOB1"."BP_Emps_Used"
    FROM
    "PRT_CURRENT__TIME" AS "PRT_CURRENT__TIME"
    INNER JOIN "JCM_MASTER__JOB" AS "JOB1"
    ON "PRT_CURRENT__TIME"."Job"="JOB1"."Job"
    INNER JOIN "PRM_MASTER__EMPLOYEE" AS "EMPLOYEE1"
    ON "PRT_CURRENT__TIME"."Employee"="EMPLOYEE1"."Employee"
    WHERE "JOB1"."BP_Emps_Used" = 1
    AND
    ("PRT_CURRENT__TIME"."Date" BETWEEN
    {?As of Date} - 41 AND {?As of Date})
    UNION ALL
    ( SELECT
    "PRT_NEW__TIME"."Employee",
    "EMPLOYEE2"."Employee_Name",
    "PRT_NEW__TIME"."Date",
    "PRT_NEW__TIME"."Units",
    "PRT_NEW__TIME"."Job",
    "JOB2"."BP_Emps_Used"
    FROM
    "{?NEWPRT}" AS "PRT_NEW__TIME"
    INNER JOIN "JCM_MASTER__JOB" AS "JOB2"
    ON "PRT_NEW__TIME"."Job"="JOB2"."Job"
    INNER JOIN "PRM_MASTER__EMPLOYEE" AS "EMPLOYEE2"
    ON "PRT_NEW__TIME"."Employee"="EMPLOYEE2"."Employee"
    WHERE "JOB2"."BP_Emps_Used" = 1
    AND
    ("PRT_NEW__TIME"."Date" BETWEEN
    {?As of Date} - 41 AND {?As of Date})

    Hello,
    Sorry you'll have to contact Sage on how to do this. We can help you once you get connected but we can't help you get around their connection methods.
    There is no Preview Set Database Connection method you can use in CR Designer. The Designer assumes you select it first or use the Set Location option before previewing or refreshing the data.
    If you are doing this in the Sage program itself we can't help you, you'll have to contact Sage for assistance.
    Sage is an OEM Partner they are responsible for supporting their product and CR. If they have issues help you then they will contact us directly for assistance.
    Thank you
    Don

  • Extract work order data from r/3 system in flat file(csv)and export to BI

    Hi,
    I am new in interface.
    I need to extract data regarding actual cost and quantities of work assigned to Service Providers from SAP system and send it to BI for reporting purposes.
    This interface will extract Master data as well as transactional data. Extraction of Master data will be a full extract and that of transactional data will be Delta Extraction.
    Custom development will extract the data from different fields and will export it to flat files (CSV format). This program will amalgamate all the flat files created into one big file and export it to BI system.
    Export of data to BI system will be done by schedule program Control M, which will export the data from SAP system to BI system in batches. Control M is expected to run daily at night.
    Please provide the step-by-step proces to do this.
    Thanks
    Suchi
    Moderator message: anything else? please work yourself first on your requirement.
    Edited by: Thomas Zloch on Mar 25, 2011 1:21 PM

    Hi Ravi,
    you've got to set up the message type MDMRECEIPT for the Idoc distribution from R/3 to XI. Check chapter 5.2 in the IT configuration guide available on <a href="http://service.sap.com/installmdm">MDM Documentation Center</a>. It describes the necessary steps.
    BR Michael

  • Suddenly I cannot select just one file in a folder, all of them get selected at the same time.  Happens in Lightroom also when scrolling through the filmstrip. what did I do?

    My Mac Pro is acting wonky all of a sudden. This all began after someone in my family spilled water on the keyboard and tried to clean it up while still turned on. I bought a new keyboard but now I cannot select just one file in a folder, all get selected. Same thing happens in Lightroom 3 when editing in the filmstrip mode, I cannot just select one photo, they all get selected. Plus, after awhile I cannot type in small letters either, just capitals. If I restart it is ok for about 15 minutes then the problems start. I did a reinstall of the OS but it is still happening. I zapped the pram, fixed permissions, etc but no luck. I am on a 2x2.4 GHz Quad-Core Intel Xeon machine with 900 gigs unused. Any suggestions? 

    Try also resetting smc.
    Also check your keyboard preferences.  And just to possibly reset some keyboard related caches and prefs you might go through the "Change Keyboard Type..." (Keyboard tab in the Keyboard preferences).

  • I really need someone to help me. I have been trying to figure out how to select a PDF document to convert to a Word doc. When I go to select a PDF file, all that shows up is the WORD docs. does not show ANY of my PDF files... Please help me figure out wh

    I really need someone to help me. I have been trying to figure out how to select a PDF document to convert to a Word doc. When I go to select a PDF file, all that shows up is the WORD docs. does not show ANY of my PDF files... Please help me figure out what is going on? We have it set on auto renewal so I know its not that we haven't renewed this subscription, because we pay automatically.

    Hi olivias,
    It sounds like there may be some confusion on your system about what application should be associated with PDF files. You can reset filename associations by following the steps in these articles (depending on your operating system):
    How to change the default application for a file type | Macworld
    http://windows.microsoft.com/en-us/windows/change-default-programs#1TC=windows-7
    Please let us know if you have additional questions.
    Best,
    Sara

  • I have a 15" MacBook Pro 2.4 GHz Intel Core 2 Duo (Early 2008) running OSX Lion 10.7.5. I want to erase the Hard Drive, install Mountain Lion, and manually restore select applications and files. Is there a known procedure to do this? Any tips or feedback?

    I have a 15" MacBook Pro 2.4 GHz Intel Core 2 Duo (Early 2008) running OSX Lion 10.7.5.
    I want to erase the Hard Drive, install Mountain Lion, and manually restore select applications and files.
    Is there a known procedure to do this? Any tips or feedback?

    1. Make a backup, open App Store and purchase Mountain Lion. When its download finishes, close the installer and open Lion Diskmaker to create a bootable USB drive with Mountain Lion.
    2. Press Option key while your Mac is starting, select the external drive and open Disk Utility.
    3. Select Macintosh HD in the sidebar and erase the drive.
    4. Close the window and install Mountain Lion

  • Advanced selection for source file

    Hi,
    Requirement: One source directory, multiple file names. File needs to be picked up from source directory and send to target directory with same name as source file name.
    Source file name pattern sample: AP5_X_yyyyddmm, A35_X_yyyyddmm, AP5_Y_yyyyddmm, AP5_Y_yyyyddmm.
    Target file name should be :AP5_X_yyyyddmm, A35_X_yyyyddmm, AP5_Y_yyyyddmm, AP5_Y_yyyyddmm
    Can we define multiple place holders as :
    Directory    
    File Name Mask
    Exclusion Mask
    \\Source
    AP5_X*.txt, A35_X.txt, AP5_Y*.txt, AP5_Y*.txt
    When I tried for single place holder, the scenario was working but when I tried adding multiple place holders it was not working.
    How can we achieve the above scenario?
    Thanks,
    Vertika

    Hi Amit,
    Thanks for reply.
    Yes you understood it right.
    I am able to achieve this now. The only change that I did is instead of giving all the placeholders in same line I have given it in different lines and this is working now.
    Sender Adapter Configuration: Checked Advanced selection for source file and used Adapter specific message attributes to keep same file name as source file name.
    File Name Mask
    File Name Mask
    Exclusion Mask
    \\Source
    AP5_X*.txt
    \\Source
    A35_X*.txt
    \\Source
    AP5_Y*.txt
    \\Source
    A35_Y*.txt
    I am closing this thread now.
    Thanks,
    Vertika

  • I have downloaded an addon in the game Mafia Wars,it works!Since then Firefox asks me evry 2 minutes :select addon source file.later on reload.

    firefox asks me evry time:select mwaddon source file.Why and how to do this?
    then Firefox asks me repeatantly upload your programme, MW???,Why??the addon works perfectly.I donot want to loose things.pls stop asking me too many times the same question.
    '

    Hi,
    Please create a screenshot of the problem you're seeing by following the guide mentioned at [[How do I create a screenshot of my problem?]].
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. You really help us to visualize the problem.

  • Advanced Selection for Source File + SourceFileSize = invalid file size?

    Hi !
    I have a File Adapter using FTP protocol. I've turn on all Adapter-Specific Message Attributes, including SourceFileSize. I've activated the Advanced Selection for Source File, and entered several patterns.
    When I see my payload via the monitor, I get a "-" in the SourceFileSize value.
    <sap:Record namespace="http://sap.com/xi/XI/System/File" name="SourceFileSize">-</sap:Record>
    If I disable the "Advanced Selection for Source File", the file size is ok.
    Is it just me?
    Thanks

    maybe u need to check for some notes

Maybe you are looking for

  • TROUBLE WITH SETTING CS6

    I installed CS6, deactivated CS4, no icon appears on the desk top.  When I click on the icon in the system tray CS4 loads.  From where is that CS4 coming?

  • Carryforward PR/PO Commitments document-wise

    Dear Sir, Is there any T.code or program through which we can carryforward PR and PO commitments seperately and also by PR/PO document wise. In the same way, we also need to carryforward the budget with the selection of WBS. Regards Mudit Gupta

  • Initial feedback

    Hi, This is a great resource and I like how forms can be completed on mobile devices, including iPhone. A few points: The colour picker is quite dark and is not particularly easy to select appropriate colours. I think the circle instead of square swa

  • DATA ARCHIVING JOB Error

    Hi All, I am getting below bold highlighted error for the monthly scheduled write job for the Object SD_VBRK. I am trying to run the job by spliiting variant but still the same error getting repeatedly. All available file names are already being used

  • IPhoto 8 do IPTC?

    I am curious if iPhoto 8 supports IPTC (http://en.wikipedia.org/wiki/IPTC) metadata. All the fields are there in iPhoto as it stands now. It would be incredibly useful for those doing some editing in PS to have that built in. Less capable programs an