KP06 mass planning through a single CSV file

Hi All,
I have created one Planning layout and assign it to a planner profile for KP06 upload. We are using CSV format file for this upload. Now i am able to upload Kp06 plan data for a single cost center for one period only.
               But my client is asking for all cost centers plan for all periods through a single CSV file(mass planning). If its not possible for all periods plz guide me how to do for all cost centers for one period.
   it would be appreciated if any one help on this issue.
Regards,
Spandana

Hi Nikolas
Still - Does Excel upload allows you to upload multiple cost centers at a time??
To upload by All periods in one go - One needs to define 12 Columns for the Key Figures.... But is multiple cost centers possible?? As far as I remember from SDN posts, its not possible
@ Spandana - I personally Luv LSMW for the same reason... You can upload all in one go and per sec it uploads avg 6 records in KP06... That speed is decent enuf
br, Ajay M

Similar Messages

  • Can I use Visual Basic to covert form user data from multiple .pdf files to a single .csv file?

    Can I use Visual Basic to covert form user data from multiple .pdf files to a single .csv file?  If so, how?

    You can automate Acrobat using IAC (InterApplication Communications), as documented in the Acrobat SDK. Your program could loop through a collection of PDFs, load them in Acrobat, extract the form data from each, and generate a CSV file that contains the data.
    Acrobat can also do this with its "Merge Data Files into Spreadsheet" function, but this is a manual process.

  • Report of Groups owned along with group memberships for each group, all in a single .csv file

    Hello all,
    What I'm trying to do is generate a report of all groups owned by a specific user, along with the group memberships, and output it all to a single .csv file. In the .csv file, I would like to have the group names as the column headers, and underneath
    the group name, list all the members of the group down through the column. So for example, if User1 owns 3 groups, the output would look like:
    What I'm having trouble with is outputting the objects to the .csv using New-Object psobject, and I'm starting to wonder if there is an easier way to do this and my brain is just fried.
    Any ideas?

    OK so I can try and give some code here, but I'm asking more of a concept question about how PowerShell builds objects so I'm not sure it will help....
    $User = "User1"
    get-adgroup -filter {managedby -eq $user} -pr member | %{
    $_.name
    $_.member
    OK so this is a simple script that outputs a group name followed by the membership, all in a single column. What I would like is for the group names to each be the header of a column, and have the membership listed underneath. For example:
    Is this possible in PowerShell?

  • Submit quiz results to one single .csv file

    How can I submit quiz results (over 200 people will be taking
    my captivate quiz) to a single .csv file?
    Right now, the quizes are submitted to my email address and
    attached to the email as a POSTDATA.ATT file. I have to manually go
    into my Outlook and save attachment as "FnameLname.csv”. So
    each quiz taker will have an individual .csv file! So I will have
    over 100 emails and over 100 .csv files!!!!!
    How can I make the quiz results submit to a single
    Quiz_Results.csv file on my web server instead?

    The way I would do this is to submit the scores into a
    database. In between Captivate and the database you'll need
    middleware (.asp, asp.net, ColdFusion, etc.). This middleware
    receives your data from Captivate and processes it - submitting it
    into the database. You can then write another middleware page that
    produces a report (web page table, or exports .csv file) with the
    data stored the database.
    Another possibility is to use Captivate's built-in SCORM
    functionality and submit user scores into an LMS, then run reports
    and export .csv files from your LMS.
    Sorry - I don't think this functionality is built into
    Captivate to join multiple records into one .csv file.

  • Multiple systems writing to single csv file

    I am preparing to have two identical test systems that test a single product go into service side by side.  There has been one or the other of these in service for a number of years but due to volume, both must now operate in parallel.
    The sticky point on this is that results are written to a CSV file and the file can only be opened by one caller at a time (whether one of the systems or a user).   My first approach is somewhat klunky but I think it may work.
    When system 1 is ready to save, it creates a temp file based on it's stand ID.  It then looks for the comparable temp file from system 2. If it sees it, system 1 goes into a loop for what should be adequate time for system 2 to write and exit and then system 1 writes and at the end deletes it's tmp file.  If system 2 tmp file stays longer than the allowed for time, system 1 returns an error to the user that data was not saved and continues on. (same thing on other system with numbers switched)
    As I say, it's klunky.
    For this product, the csv format is preferred by production and because both machines will be running a single work order, they want the data to go into a single file.
    Any alternative methods I should be considering ?
    Thanks for any input.
    Doug
    "My only wish is that I am capable of learning each and every day until my last breath."

    I fully agree with RavenFan's idea of making another application just for writing the file.  It greatly simplifies the process.  I would also recommend using the STM library to make the TCP/IP communications easier to understand.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • To show the result of 2 grids in a single csv file

    Hi,
    i want to show 2 grids(seperately) in a csv file.i created a aggregate query that is giving me result of 2 grid seperately  but when i use a igrid template with aggregate query it is giving me result in a single row.i.e instead of giving 2 grids it is giving result with all the columns in a single row .I am using Applet.saveas CSV File();is there any way to have 2 seperate grid in a single Excel file.
    thanks in advance.

    Karthik
    Aggregate Query is mostly used to combine multiple queries which have at least one common column among those.
    For ur requirement, u can use direct BLS with the help of Action Block <b>WriteFile</b>.
    <b>Scenario :</b> u hv 2 queries - one with 4 columns A, B, C & D; another with 2 columns E & F
    U want to display those tables separately in one single Excel Sheet.
    <b>Solution :</b> Forget AggregateQuery and Take the following steps
    Step 1: Take those two Queries in one sequence
    Step 2: Define two Local variables - Text1 & Text2 with String Data Type
    Step 3: Use Repeater to loop one query's result and Assign the Looping results to the Local.Text1 using action <b>Assignment</b> as following expression in the Link Editor 
    <b>Local.Text1 &
    Repeater_0.Output{/Row/A} & tab &
    Repeater_0.Output{/Row/B} & tab &
    Repeater_0.Output{/Row/C} & tab &
    Repeater_0.Output{/Row/D} & crlf
    </b>
    Step 4: Use another Repeater outside the first Repeater to loop 2nd query's result and Assign the looping results to the Local.Text2 in similarly way as follows in the Link Editor
    <b>
    Local.Text2 &
    Repeater_1.Output{/Row/E} & tab &
    Repeater_1.Output{/Row/F} & crlf
    </b>
    Step 5: Use action <b>WriteFile</b> outside those above Repeaters and take the mode <b>APPEND</b> and FilePath <b>C:
    test
    TwoTables.xls</b> and Text as follows
    <b>
    "A" & tab & "B" & tab & "C" & tab & "D" & crlf & Local.Text1 & crlf & crlf &
    "E" & tab & "F" & crlf & Local.Text2
    </b>
    in the Link Editor
    Step 6: Hit F5/F6 and see the Excel File with two tables showing separately in the mentioned path above.
    Regards
    Som

  • Need to Export Emails to Single CSV file

    Is there an Apple Script that can accomplish the following:
    I have form emails from my clients that I want to consolidate into 1 CSV file.
    Is there a way to accomplish this?

    Write a script that sets "Export as Spreads" and then export per two pages.
    (Post-thought)
    Perhaps it's easier (way easier) to just export as spreads, then use Acrobat to "Extract Pages As Separate Files" -- a basic function.

  • Can we create .CSV files through documaker

    Hi,
    Is it possible to create .csv files through documaker apart from pdf's
    Thanks

    With apologies, it is still unclear (to me) what you are asking.
    It is possible to create files using DAL, but to offer more specific guidance requires a better understanding of what it is that you want.
    A CSV is a Comma-Separate Value file. A PDF file is a printed document file containing formatted text content, graphics, lines, boxes, etc - in other words a fully-composed document.  I'm not exactly sure how a PDF and a CSV file could contain the same data.
    Are you perhaps asking to get an index of the created PDF files written as a CSV file? Something that contains a row of key transaction data along with the file name of the generated PDF? Perhaps something akin to the batch (BCH) files that can be produced per transaction recipient?
    Are you asking for an export file of all the field data that went into the creation of the document and included in the PDF? Normally a CSV has a header that describes the columns and then each row of data would be consistent with that header. Without knowing that every PDF file you create will have exactly the same number of fields defined, it is difficult to imagine that a single CSV file would be sufficient. And depending upon the number of fields and the size of the data assigned to each, this could be quite a long record per PDF in the resulting CSV file.
    Or perhaps you had in mind to get a name / value pair written for each field with data written on separate lines? This would not a be a true CSV file, but could have the name and values separated by commas if that is what you require.
    You have something specific in mind and yet, we are not in your mind.  We need more specific information on exactly what you are trying to accomplish.

  • Extracting specific data from multiple text files to single CSV

    Hello,
    Unfortunately my background is not scripting so I am struggling to piece together a powershell script to achieve the below. Hoping an experienced powershell scripter can provide the answer. Thanks in advance.
    I have a folder containing approx. 2000 label type files that I need to extract certain information from to index a product catalog. Steps to be performed within the script as I see are:
    1. Search folder for *.job file types
    2. Search the files for certain criteria and where matched return into single CSV file
    3. End result should be a single CSV with column headings:
    a) DESCRIPTION
    b) MODEL
    c) BARCODE                                                                                                                   

    Try:
    # Script to extract data from .job files and report it in CSV
    # Sam Boutros - 8/24/2014
    # http://superwidgets.wordpress.com/category/powershell/
    $CSV = ".\myfile.csv" # Change this filename\path as needed
    $Folders = "d:\sandbox" # You can add multiple search folders as "c:\folder1","\\server\share\folder2"
    # End Data entry section
    if (-not (Test-Path -Path $CSV)) {
    Write-Output """Description"",""Model"",""Barcode""" | Out-File -FilePath $CSV -Encoding ascii
    $Files = Get-ChildItem -Path $Folders -Include *.job -Force -Recurse
    foreach ($File in $Files) {
    $FileContent = Get-Content -Path $File
    $Keyword = "viewkind4"
    if ($FileContent -match $Keyword) {
    for ($i=0; $i -lt $FileContent.Count; $i++) {
    if ($FileContent[$i] -match $Keyword) {
    $Description = $FileContent[$i].Split("\")[$FileContent[$i].Split("\").Count-1]
    } else {
    Write-Host "Keyword $Keyword not found in file $File" -ForegroundColor Yellow
    $Keyword = "Code:"
    if ($FileContent -match $Keyword) {
    for ($i=0; $i -lt $FileContent.Count; $i++) {
    if ($FileContent[$i]-match $Keyword) {
    $Parts = $FileContent[$i].Split(" ")
    for ($j=0; $j -lt $Parts.Count; $j++) {
    if ($Parts[$j] -match $Keyword) {
    $Model = $Parts[$j+1].Trim()
    $Model = $Model.Split("\")[$Model.Split("\").Count-1]
    } else {
    Write-Host "Keyword $Keyword not found in file $File" -ForegroundColor Yellow
    $Keyword = "9313"
    if ($FileContent -match $Keyword) {
    for ($i=0; $i -lt $FileContent.Count; $i++) {
    if ($FileContent[$i] -match "9313") {
    $Index = $FileContent[$i].IndexOf("9313")
    $Barcode = $null
    for ($j=0; $j -lt 12; $j++) {
    $Barcode += $FileContent[$i][($Index+$j)]
    } else {
    Write-Host "Keyword $Keyword not found in file $File" -ForegroundColor Yellow
    Write-Output "File: '$File', Description: '$Description', Model: '$Model', Barcode: '$Barcode'"
    Write-Output """$Description"",""$Model"",""$Barcode""" | Out-File -FilePath $CSV -Append -Encoding ascii
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable)

  • Using csv files and automatic activation

    We have setup our hybrid with Office 365, how can I use the csv file to migrate and activate the users at the same time ? I can migrate the users but they are not activate otomatically. Actually we plan to ONLY activate exchange not the other products
    like Lync, Sharepoint..at the moment.

    Hi,
    Do you migrate mailboxes to Exchange Online with a staged migration?
    When you migrate mailboxes to Exchange Online with a staged migration, you can create a CSV file to create a migration batch.
    After a migration batch has finished running, you need to convert the on-premises mailboxes in the migration batch to mail-enabled users by downloading related scripts and run it.
    I'm afraid there is no way to migrate and activate the users at the same time using a single CSv file.
    Here is a related article for your reference.
    http://technet.microsoft.com/en-GB/library/jj874018(v=exchg.150).aspx
    Best regards,
    Belinda Ma
    TechNet Community Support

  • Import csv file to address book

    I am migrating from outlook to Thunderbird. The import all mails and addresses is not working. So I exported by email addresses from my server to a csv file. I imported the csv file in Thunderbird. I have to OK every address for the import. Is there a way to import in one click

    If you exported all your contacts to a single csv file, you should be able to import the file in a single step, although you may have to edit the csv file before doing so:
    https://support.mozilla.org/en-US/questions/1012084

  • Format of CSV file generated through iBot

    What is the default format of csv file generated through iBot (UNICODE / UTF) ?
    How can we configure a single iBot to generate CSVs, for example, in UTF format instead of UNICODE (assuming UNICODE is default).
    -Jimit

    Use this
    https://support.oracle.com/epmos/faces/ui/km/SearchDocDisplay.jspx?_afrLoop=324436281886916&type=DOCUMENT&id=1459947.1&displayIndex=1&_afrWindowMode=0&_adf.ctrl-state=130oxyc5cv_71
    Content:
    Goal
    Currently the CSV format in Agents always delivers the report results in tab delimited CSV. Is there a setting that can make the report result in a comma delimited CSV format when the reports are setup via Agents/iBots?
    Fix
    There is no setting that would make CSV output from an iBot be comma delimited as opposed to the tab delimited output from the web UI.
    There is an enhancement request for this functionality. for more information, see bug 13802667 - COMMA DELIMITED CSV FORMAT FOR AGENTS/IBOTS has been logged to include this feature in future release.
    As a work-around, you can to run a custom script from an Agent to convert tabs to commas. See chapter 4 (http://docs.oracle.com/cd/E21764_01/doc.1111/e18562/schedjobscripts.htm#BABGFBBD) of Oracle® Fusion Middleware Scheduling Jobs Guide for Oracle Business Intelligence Enterprise Edition 11g Release 1 (11.1.1) Part Number E18562-01 for more information on writing custom scripts.
    If helps pls mark

  • CSV files to a single excel file

    Hi All!
    I would like to ask regarding the conversion of CSV files into a single Excel file.
    I am planning to combine all my 8 csv files into a single excel file being separted by sheets. each csv file will be converted in to a worksheet and be added to the excel workbook file.
    Any idea? I've heard about POI but i don't see any documentation for java beginners and simple example program that will convert CSV --> Worksheet and add that worksheet to an excel file.
    Thanx,
    MaDz

    http://forum.java.sun.com/thread.jspa?threadID=600161&messageID=3207453

  • Renaming extracted Single windows IDcs5 documents using a windows CSV-file

    I'm not a scripter and I'm in need of a script that will rename extracted single pages using a column from a windows CSV-file to name each InDesign file accordingly. I have search the forums but all I can find is a Renaming extracted single pdf pages as in this post http://forums.adobe.com/message/4633533#4633533#4633533 I've been told that I could adjust such scripting but I don't know how. I will like to acomplish the same but Exporting single InDesing pages. Does anyone has a script that can be share on how to do such thing? Either through ID or using Bridge?

    The link highlighted in your post splits a large PDF into single page PDFs based on a csv/txt file within Acrobat - it isn't an InDesign Script.
    There is an indesign script you can try and it is written by Loic Aigon: go to http://www.loicaigon.com/en/pdf-exports-properly-named/ read the article and see if it is appropriate for you.
    There is another indesign script you can try but it is in german. See the adobe forum post http://forums.adobe.com/thread/1014766 for more information.
    Hope this helps
    Colin

  • Error while Loading data through .csv file

    Hi,
    I am getting below date error when loading data through into Olap tables through .csv file.
    Data stored in .csv is 20071113121100.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Mon Mar 29 15:06:17 2010]
    TRANSF_1_1_1> TE_7007 Transformation Evaluation Error [<<Expression Error>> [TO_DATE]: invalid string for converting to Date
    ... t:TO_DATE(u:'2.00711E+13',u:'YYYYMMDDHH24MISS')]
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Mon Mar 29 15:06:17 2010]
    TRANSF_1_1_1> TT_11132 Transformation [Exp_FILE_CHNL_TYPE] had an error evaluating output column [CREATED_ON_DT_OUT]. Error message is [<<Expression Error>> [TO_DATE]: invalid string for converting to Date
    ... t:TO_DATE(u:'2.00711E+13',u:'YYYYMMDDHH24MISS')].
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Mon Mar 29 15:06:17 2010]
    TRANSF_1_1_1> TT_11019 There is an error in the port [CREATED_ON_DT_OUT]: The default value for the port is set to: ERROR(<<Expression Error>> [ERROR]: transformation error
    ... nl:ERROR(u:'transformation error')).
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Mon Mar 29 15:06:17 2010]
    TRANSF_1_1_1> TT_11021 An error occurred moving data from the transformation Exp_FILE_CHNL_TYPE: to the transformation W_CHNL_TYPE_DS.
    TRANSF_1_1_1> CMN_1761 Timestamp Event: [Mon Mar 29 15:06:17 2010]
    TRANSF_1_1_1> CMN_1086 Exp_FILE_CHNL_TYPE: Number of errors exceeded threshold [1].
    Any help is greatly appreciated.
    Thanks,
    Poojak

    1) Wrong format, you wont get much support loading OLAP cubes in here I think.
    2) Has your CSV file been anywhere near excel by chance the conversion of 20071113121100 to 2.00711E+13 looks very much like what I see when Excel has an invalid number mask / precision specified for a cell.
    *** We are using EBS. File was already generated by consultants through SQL query. Getting error while loading though Informatica. Target table is setup as date datatype and source is String(19).
    Expression in Informatica is setup as below.
    IIF(ISNULL(CREATED_ON_DT), NULL, TO_DATE(CREATED_ON_DT, 'YYYYMMDDHH24MISS'))
    Thanks,
    Poojak

Maybe you are looking for

  • I can't get iTunes to work on Apple TV

    Since Tuesday I keep getting the message that iTunes is down or unable to connect.  However I was able to rent a movie from my mac and I've been trying to somehow play it on apple TV or my iPhone and is not working.  HELP please!

  • Form Feeder is not working in report printout

    Hi Can any one help me in solving this problem. I am working with reports 10g and TVS HD 945 dot matrix printer. the paper size is 12 X 8, when i print the report, in the next page is not having the same header space as the first one. Do i have to ma

  • BBM Malfuntion

    I have had this phone for about half a year (Blackberry Z10)  and it has worked fine.  I wake up this morning and go to send a bbm and I get the red clock symbole.  I spent 30 minutes with Rogers tech support and they can't fix it.  My internet still

  • DW to create Word sigs with embedded images?

    This may be a bit off topic, but I've tried in many other places.... Microsoft Word can be such crap. I simply wanted to create an email sig with an embedded graphic, but Word screws up in wonderful ways. I need a very simple html file with some form

  • Error in validating XML against schema

    Hi am getting some critical errors while Validating XML against schema error is: cvc-elt.1: Cannot find the declaration of element 'position' , here <position> is my root element. my code is as follows: package com.glemser.xmLabeling.library.componen