Copying sales history into new info structure

Hi Gurus,
We are running SAP since last two years and company is running since last 30 year but we have never used SAP S&OP. Now we want to use one. So far we have created info structure with required characteristics and key figures.
Can you please suggest me the process of copying sales history into info structure?
I will be really grateful to you if suggest me ASAP.
Thank in advance.
Kind Regards
Raja Ram

What the heck is S&OP?
If you're talking about [LIS|http://help.sap.com/saphelp_470/helpdata/en/c1/37544e449a11d188fe0000e8322f96/frameset.htm], then there is some standard functonality to populate the newly created info structures with the data from existing documents.
Path in SPRO (may differ slightly, depending on the R/3 release):
     Logistics General
     Logistics Information System (LIS)
     Logistics Data Warehouse
     Data Basis
     Tools
     Setup of Statistical Data
     Application-Specific Setup of...
     Perform Setup u2013 Sales and Distribution
But if you need to bring in sales history from a legacy system, you'll need to write an ABAP report for that.

Similar Messages

  • New info structure

    Dear Experts,
    we want to create new info structure ref to s039 i.e related to mc.9 for avarage stock purpose . in that we need to change only date option insted of month. could you provide configurarion document stpe by setp if have.
    thnks in advance.
    santosh

    No configuration is required. For change a field in mc.9 report take ABAPer help. by default month field is given as input.

  • Error vk 894 when generate new info structure

    Hello,
    I have a problem, when i generate new info structure, the system get me the folowing  message : VK 894, and the structure don't generate correctly.

    Check out the feilds of the infotype ..also post back the feilds of the infotype...looks like there is a problem in fetching the data -inconsistencies in the same.
    Delete the same and try at fresh with all the feilds required for the infostructure.
    Also check in OMO1 what type of updating you have selected it should be asynchronous updating !!

  • I try to copy a selection into new blank canvas however the layer in the new canvas becomes gray/black/white, did i wrongly click on something ? Please help , Thank you in advance

    Hi Gurus,
    I have a beginner in photoshop , I tried to copy a selection into new blank canvas however the layer in the new canvas becomes gray/black/white, did i wrongly click on something ? Please help , Thank you in advance

    How did you open the new document? What Image mode is the document in and what exactly did you copy to the clipboard? What was the current Photoshop target when you did the copy? Was it a straight copy or a copy merge etc...

  • Creating a new info structure

    Hi all,
    I'm creating a new SIS info structure with MC21.
    When save, the system warns me the followiing.
    The warning appears when I remove the sales org. as characteristics.
    My query is that what should I do? How to know which characteristcs link to the unit? Thanks.
    Warning: inconsistencies may occur when units updated => please check
    Message no. M2 314
    Diagnosis
    The characteristics you have chosen could lead to inconsistencies in the updating of the units.
    Example:
    The information structure does not contain a characteristic that clearly indicates the currency in which data is to be updated (for example, the sales organization); furthermore, the currency itself is not a characteristic of the information structure. If documents in differing currencies are now updated to the statistics, this can cause the system to add different values together in a data record.
    Procedure
    There are two possible ways you can guarantee that updating is consistent:
    1. Add a field to your information structure that clearly identifies the unit, or add the unit itself as a characteristic.
    2. Make sure that only documents which clearly refer to a unit are created.

    Forgot to attach the code:
    <cfset cfc_array = arrayNew(1) />
    <cfset cfc_info = structNew() />
    <cfset cfc_info.type = "error" />
    <cfset cfc_info.message = "User Name and Password are both
    required." />
    <cfset ArrayAppend(cfc_array,cfc_info) />
    <cfset cfc_info = structNew() />
    <cfset cfc_info.type = "error" />
    <cfset cfc_info.message = "dgdfgdgd dgdg dg dfg " />
    <cfset ArrayAppend(cfc_array,cfc_info) />
    <cfset cfc_info = structNew() />
    <cfset cfc_info.type = "error" />
    <cfset cfc_info.message = "Another structure test" />
    <cfset ArrayAppend(cfc_array,cfc_info) />
    <cfif isDefined("cfc_array")>
    <cfdump var="#cfc_array#" />
    <cfloop index="message" array="#cfc_array#">
    <cfoutput>TYPE = #message.type# MESSAGE =
    #message.message#<br /></cfoutput>
    </cfloop>
    </cfif>

  • Copy file names into New Mail Message?

    *I've been slowly teaching myself Applescript, and can't seem to find a way to do a few things. Basically what I'm trying to do is set up a script that will run when items are dropped into a folder on my FTP. I want the script to have a pop-up dialogue, and generate an email to certain users announcing new files are on the FTP. I have these 2 parts down, but I would also like the body of the email to include a list of the filenames. This part I can't figure out.*
    *I just need to find a function that will copy the filenames of new items, and paste them into the body of the email already being generated. My current code is below. Anyone have any ideas to help me expand?*
    property dialog_timeout : 15 -- set the amount of time before dialogs auto-answer.
    on adding folder items to this_folder after receiving added_items
    try
    tell application "Mail"
    set theMessage to make new outgoing message with properties {visible:true, subject:"New Files on FTP", content:"New files have been posted to incoming folder of the FTP."}
    tell theMessage
    make new to recipient at end of to recipients with properties {name:"Jane Doe", address:"[email protected]"}
    make new to recipient at end of to recipients with properties {name:"John Smith", address:"[email protected]"}
    end tell
    send theMessage
    end tell
    tell application "Finder"
    --get the name of the folder
    set the folder_name to the name of this_folder
    end tell
    -- find out how many new items have been placed in the folder
    set the item_count to the number of items in the added_items
    --create the alert string
    set alert_message to ("Folder Actions Alert:" & return & return) as Unicode text
    if the item_count is greater than 1 then
    set alert_message to alert_message & (the item_count as text) & " new items have "
    else
    set alert_message to alert_message & "One new item has "
    end if
    set alert_message to alert_message & "been placed in folder " & «data utxt201C» & the folder_name & «data utxt201D» & "."
    set the alert_message to (the alert_message & return & return & "Would you like to view the added items?")
    display dialog the alert_message buttons {"Yes", "No"} default button 2 with icon 1 giving up after dialog_timeout
    set the user_choice to the button returned of the result
    if user_choice is "Yes" then
    tell application "Finder"
    --go to the desktop
    activate
    --open the folder
    open this_folder
    --select the items
    reveal the added_items
    end tell
    end if
    end try
    end adding folder items to

    Try beginning your script like this:
    on adding folder items to this_folder after receiving added_items
    try
    set theFileNames to ""
    tell application "Finder"
    repeat with thisItem in added_items
    set theFileNames to theFileNames & name of thisItem & return
    end repeat
    end tell
    tell application "Mail"
    set theMessage to make new outgoing message with properties {visible:true, subject:"New Files on FTP", content:"New files have been posted to incoming folder of the FTP:" & return & return & theFileNames}
    It should work.

  • Error while pulling sales history into planning area

    Hi Folks,
    We got error while pulling the sales history data into planning area from infocube.
    We uploaded CVC into MPOS.
    Please find the below error.
    ""Combinationens of infocube are not contained in BasisPlobStru""
    Message no:/SAPAPO/MSDP_REL106
    Thanks
    Sri

    Hi,
    The issue is that The Characteristic Combination is present in MPOS as well as in the list cube.While Uploading sales from the list cube result is that for some months Sales is matching exactly where as for some months data is not showing in the planning area though sales is present in list cube for the same month.I have run Consistency checks for Time series also.
    Thanks
    sri

  • Copy ESS DC into new DC

    Hi experts,
      How to copy an existing ESS DC into new DC? I searched in SDN but not clear.
    can any one help me tp copy an ESS DC to new DC.
    Thanks.

    Karthikeyan,
    did you check these threads
    How may i copy an standard ess copmonent into NWDS
    Copy an ess component in nwds
    but why do you want to copy a DC
    Thanks
    Bala Duvvuri

  • Cannot copy or paste into  File info in PSE 8

    I have just been upgraded to PSE 8 from
    5. I used to be able to copy, cut and paste  text captions in to the file info box
    when using 5 but that useful function no longer seems to work in
    PSE8. Everything has to be typed in or an XML template created, saved  then loaded.
    Am i missing something or has the  quicker right  click cut and past function disappeared?

    Can you check if similar functionality is working in any other application installed on your machine? There has been no change in this and this should work like it was working. Moreover it is OS specific functionalities and not much commanded by application softwares.
    Please let us know your comments. Keyboard shortcut should work along with right click options of cut/copy.....
    Thanks,
    Garry

  • Adding new key figure in Info structure

    Hi all,
    I am in a need to add a new key figure to our info structure here in my company.
    The way I understand it is, it would be best to create a NEW info structure and copy all existing key figure and characteristic and then insert my new key figure into this and rewrite the macro if required.
    So my question is
    1. How to determine which info structure is currently in use in my company? If i check in MC89 - the key figures match what is in Info structure S076. So is it safe to assume that we are using standard S&OP in my company? Is that a correct way to identify the currently used info structure?
    2. For our KMAT, when i open a planned order I see that there in another info structure (not S076) under configuration tab. So can we have diff info structure in use at a same time ?
    Please guide.
    Thanks,

    Hi Nisha,
    1. First of all, How would I determine which info structure is being used at this time in my company?
    I need to know this so that when I am creating my own custom (S500 - S999) info structure, i can copy the existing KFs and Characteristics and add them to my info structure and then Add a specific key figure on top of that.
    Info structures are nothing but tables so in se16 you can check which are Info structures are having update values.
    Yes you can add the specific key figure on existing self defined info structure in MC22 after that you need to generate it.
    2. Can multiple info structure be in 'use' at the same time in any scenario? 
    For self defined info structure are application specific you can not have multiple info structure for same scenario. If you take the example of flexible planning with self defined info structure then you can transfer the demand from only one info structure.
    Regards,
    R.Brahmankar

  • The transfer of sales plans into CO-PA

    At the present time sales plans are created in the several info-structures. There is only the one unit of measure in the each info-structure (for example: mt, meter and others). Further, the number of different units of measure for selling products will increase only, especially for services. It leads to the fact where we have to create new info-structures and have to implement additional customizes and create a new chain for the transfer of data into CO-PA each time a new unit of measure arises. Also it makes more comprehensive the process of the sales plans transfer for the End Users.
    We think that it is logically to create the info-structure, to collect there all kinds of units of measure and transfer the data into CO-PA by the one action. Practically we cannot to do it because we have to enter the one base unit of measure into characteristic and key figures customize area (MC7F). And after transferring sales plans into CO-PA all data are reflected in that base unit of measure, although initial data were in the different units of measure.
    Also our attempt to transfer units of measure as additional characteristic was fault. In that case the system gave us an error when we were trying to create a task for transfer.
    Is there a solution of above problem?

    HI,
    Are you using Costing based, Accounting based or both of them?
    We are already tried to use enhancement COPA0005 but this produces a duplication of segments and a different values of  characteristics between what is posted from FI documents and what is posted on COPA document; this situation is not acceptable by client.
    Concerning to enhancement COPA0001 i don't know which table i have to refer to for obtaining number of sales order, since accounting document (BKPF) and material document (MKPF) are not yet posted so far. Could you please give me this information?
    Thanks a lot in advance for your kind support.
    Erasmo

  • Deleted data of info structure

    Hi PP Gurus,
    As per user's requirement I changed selection field period to day in report MCIS info structure S818. At that time I click ok in warning message of deletion previous data with the business approver's permission. But now he is saying that he wants historical data. Can anybody help me in this how to recollect historical data?
    Jayesh
    SAP PP
    Edited by: Jayesh Narvankar on Feb 15, 2012 9:02 AM

    Hi Ajit Kumar,
    Thanks for your valuable help to me. I followed below steps -
    1) Regenerate order cost: File PMCO - Removed test run, selected my order types and executed
    2) PMIS: Statistical stup of infostructures - Info structure S818, save under version &(, number of parallel process 10, name of run TP02222012, packet size 1000 and clicked check box new run?. Then executed
    3) Copy / delete version of an info structure - Info stucture S818, clicked on copy + delete. source version &(, target version 000, alredy radio button selected no copy method and checked box do not copy initional records. Then executed.
    Suggest me me anything missed or any unnecessary step is there.
    Everything ran succesfully in development server, but in quality server I am unable to do third step. When I am doing this third step in background system completeing this job in few seconds where as in development server it took more than 2 - 3 hours. In quality server log is showing 0 records converted.
    Quality server is not allowing to do anything with version 000. Not allowing to take back up of version 000 or not allowing to delete data of version 000.
    Ajit this is critical issue for me. Any cost client want historical data of infostructure S818. I am worried that in development server system allowed everything correctly and not allowing in quality server. Then how can do in production server.
    Please help me
    Jayesh Narvankar
    9820477364

  • Querry regarding Info Structure

    Dear All,
    I have created a Info structure by copying S070 info structure. I have created an update rule and activated the updating also, but when i use this info structure in MCI7 (Info system) no data is displayed in that screen. Only ' 0 ' is displayed in all the fields.
    I am not able to understand where am i going wrong, I would request you to please help me solve the above issue.
    If possible please reply with detail procedure of creating new Info Structure.
    Regards,
    Rashmi Potdar

    Hi
    Characterstics used as criteria according to which the data record is selected in info structure, in this case you can add new characterstics for searching creteria, but it is not recomanded to delete the old one as this is only searching creteria. yes you need to re-generate the info structure after every updates.
    regards
    Vivek.

  • Info structure activation

    Dear friends,
    I createated a new plant... But I am not able to run the reports which are PP infostucture related. while running the reports Like MCRX, MCRV etc.. system is giving a message saying that no data exists for chosen selection. In the remaining plants I am able to run these reports. Please let me know ... what could be the problem. Please note that I already confirmed and did goods movements in this plant.
    Regards,
    Surya.

    Dear,
    Message no  M5017 ??
    When the Info structures are re-generated, the old data is deleted.
    U can run the transaction for archive set-up to get the old data back into the Info structure MCSI
    updated rules and then transports it.
    Goto COR4 or OPL8 -> activate "Statistics" / update check box Under the Shop floor infor sytem at implementaion tab for order type/Plant combiantion.
    Then create New order and do the confirmation with GI & GR,
    Now run the reports and check.
    Regards,
    R.Brahmankar

  • SOP Info structure

    Dear All,
    I have created new Info Structure S502 and I wanted to assign my own characteristics "Sales Force" which is not available in standard SAP.
    How to create this new characteric and assign to my info structure.
    Should I need to create new Field catalogs also.
    I gone through the saphelp but could not able to find there.
    sdcons

    Hi,
    Go to mc7f  info structure planning parametrs there you can see the planning plant .
    I hope that a infostructure can be assigned to any one plant ,
    Thanks
    thamizhchelvan g

Maybe you are looking for

  • Numbers loose connection with the server (osx server 10.6.8)

    Hello, I use numbers application on an iMac under 10.6.8, all updates done. The files are written to a intel xserve under 10.6.8. Here's my problem: When i use a file on the server, from time to time, numbers tell me that the connection to the server

  • Question related to CLOB data type in Oracle 11g

    Hi, I'm trying to assign a string value to a CLOB variable but it is giving me an error as described below. Can someone please let me know what am I missing here? As far as I know, in 11g a CLOB variable can store upto 4GB of data and all i'm trying

  • Group picture messages

    Not receiving picture messages when received by group. If not a group message it's no problem and MMS is on.

  • What labview version is labview 2008

    Simple question what version of VIs does labview 2008 create? (8.6, 9.0, 8.5, etc.) and What is the max upload onto this website? (second time I'm asking, first was unanswered) Solved! Go to Solution.

  • Retrieving Odd numbered rows from a table.

    In one recent interview I have been asked to write a SQL query to retreive Odd numbered rows from any table. At first I am confused on how to say whther a perticular row is odd or even. If it is based on rownum then rownum is not dynamic and every ti