System automatically creating new PI

I have updated a condition in the Purchase
info record and with a start date of 01.01.2011 and a end date of
31.3.2011.  However the system automatically then updates for a start
date of 01.04.2011 with a wrong price against it.
Error Messages:  automatic new valid date of  01.04.2011 and end date of
31.12.9999.  Also price is wrong.

if your initial price  had a validity from e.g. 01.01.2000 to 31.12.9999
and you enter a new price which is only valid from 01.01.2011 to 01.04.2011  then the old condition is split and will start again after your new condition validity has ended. This is SAP standard design.
So either you enter your new condition with a validity end date of 31.12.9999
or you change the validity end date of the old condition to a day earlier than the new condtions starts.

Similar Messages

  • Automatically create new slide after pasting large block of text?

    Hello,
    Does anyone know if it is possible to have Keynote automatically create new slides if I paste text that doesn't fit into a single slide? The biggest time waster I've encountered is the apparent requirement to break up large chunks of text manually.
    If Keynote does not do this, any ideas as to an Applescript or something that could help?
    Much appreciated

    I usually try dragging from the bottom up in Web pages, it can be tricky getting at the part you want without the extraneous formatting, since that is concealed from you and web designers use many different methods for layout.
    That's why pasting into a plain text document is a good idea to shake off the web formatting, otherwise you are groping around whatever Pages has interpreted the formatting to mean. Even browsers don't get this all right.
    If the original was formatted as a table which won't fit one of the cells on a Pages page, it just pops and won't continue because Pages does not allow breaks in mid cell. If the cells are small enough to fit and you have pasted the table inline in the main text body of a WP file (between the margins) it will flow.
    Peter

  • When capturing footage is there a way to automatically create new clips...

    When capturing footage in Final Cut Pro is there a way to automatically create new clips like it does in iMovie. I have to capture over 9 hours of footage and I dont want to spend the time logging each clip. I also dont want to just capture the whole tape then go back and log each clip. I really like how iMovie automatically creates a new clip each time the rec/pause button was pushed. is there anyway I can get Final Cut to do this??????

    You can capture the complete clip and then apply Mark > DV Start/Stop Detect over the captured clip. You could get the best of two worlds so: smooth capture and clips creation.

  • Is it possible to automatically create new folder for each project?

    Hi! Here´s another (maybe stupid) question:
    I wonder if it's possible for Premiere to also automatically create a new folder on the harddrive when a new project is created. This to get all material, preview files etc for each project in a separate folder.
    It´s easy to forget to manually do this and I tend to end up with many projects and files in the same folder. Makes it hard when I want to "clean house" and delete some stuff and backup other.
    Thank's for any help with this!

    Everyone develops their own method of project organization,
    but this has worked for me through several versions of Premiere.
    I keep a 'Project Template' folder that contains all of the sub-directories
    that I will normally need for each job... Media, Approvals, Documents, Audio,
    Rendered Image Sequences, Still Images, Finals etc.
    This 'Project Template' folder also contains a template Premiere project that is
    pre-set with the interface settings, column layout and project folders I will always use...
    Audio (vo, music, sfx), Graphics (sequences, stills, titles, slates),
    Cuts (approval versions, finals, and broadcast distribution finals).
    When I start a new project I simply duplicate the entire 'Project Template' folder along
    with all of its contents, then rename the folder and Premiere project to suit the current job.

  • Automatically Created New Playlist & Lost Album Covers

    I just plugged in my new Nano last night and immediately had issues. After I updated the software, it immediately started syncing everything, even the unchecked titles. Okay. I fixed that.
    Everything was looking good, the coverflow was working beautifully, but I noticed that none of my previously created ITunes' playlists had synced.
    It had automatically created a new playlist with, I believe, all the music in my library, but none of my previously created playlists showed up anywhere. So, I removed this big playlist and synced again. This caused all the music dissappear from my IPod. So, I reset everything and started over again.
    It once again created that new big playlist, but this time, all the album cover artwork has dissappeared. I can still see the cover artwork in my ITunes, but it is not displayed on my IPod.
    Someone told me that it might be an issue with the fact that both my old and new IPod's have the same name. If this is correct, how do I change my new IPod's name. It automatically chose its own name.
    Help!

    Sounds like your iTunes library is larger than the iPOd can hold. When this happens, iTunes will create a playlist which fits.Do this...
    Select the iPod.
    Click the Music tab.
    Tick *Sync music*.
    Choose *Selected playlists* in the drop down and pick which playlists you want then click Apply.
    To change the iPod name, slect it in iTunes, then click on it's name, like a slow double click.

  • Automatically create new Excel file from template using data from a selected row in a separate Excel file

    I am fairly new to Macro and VBA in Excel. I am trying to reduce the amount of work involved in a task that is performed often in our office. Currently, the task involves using 2 separate Excel files. One file is a tracking sheet and the second is the document
    that gets sent out to the client. The second document has all the same information that is inserted into the tracking sheet. What I would like to do is have the information that is in one row on the tracking sheet populate into a new excel file that is created
    automatically from an existing template.
    I have been able to make this partially work. What I have been able to achieve is have the cell that is selected in the tracking sheet (the description field) copy into the new file that is created from the template that is on our server.
    Sub NewRFI()
    ' NewRFI Macro
        MsgBox Selection.Address(ReferenceStyle:=xlA1, _
                               RowAbsolute:=False, ColumnAbsolute:=False)
        Selection.Copy
        Workbooks.Add Template:= _
            "template file path goes here"
        Range("C14").Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=False
        Range("C14").Select
        Application.CutCopyMode = False
    End Sub
    What I need to do is get the rest of the information from that same row in the tracking sheet to copy to the new file as well. The other information includes the document number (one cell to the left of the selected cell), who it is from (one cell to the
    right of the selected cell), and the date (two cells to the right of the selected cell). As stated, this information is all in the same row on the tracking sheet. Each piece of information needs to be copied to a certain cell in the new file and I do not want
    the source formatting to be copied to the new file.
    Ideally, I would like it to operate like so: select the first cell in the row (in this case would be the document number field). Then click a button to run the macro that will then copy the information from that row in the tracking sheet to specific cells
    in the new file that is created from the template.
    This process will save us from having to either manually copy and paste the information into the new file or re-type the same information that is already in the tracking sheet.
    This is probably a simple thing to do but it would be great if anybody had some insight on this issue. Thanks in advance!

    Try code like the following. You will have to change the target cells (D25, F1 and H4) to the ones you want, I just used some arbitrary cells as example.
    Sub NewRFI()
    Dim rngCell As Range
    Set rngCell = ActiveCell
    MsgBox Selection.Address(ReferenceStyle:=xlA1, _
    RowAbsolute:=False, ColumnAbsolute:=False)
    Workbooks.Add Template:="template file path goes here"
    Range("C14").Value = rngCell.Value
    ' Change the target cells as needed
    Range("D25").Value = rngCell.Offset(0, -1).Value
    Range("F1").Value = rngCell.Offset(0, 1).Value
    Range("H4").Value = rngCell.Offset(0, 2).Value
    End Sub
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • "Refine Edge" now automatically creates new layer... why?

    For some reason, every time I use the "Refine Edge" option after making a selection, then hit "OK", Photoshop creates a new layer with a mask on it, instead of simple leaving the selection outline there and letting me decide what to do with it (which was the previous behavior).
    I've no idea if this is new default behavior or if I triggered an option somewhere that I shouldn't have.
    How do I make "Refine Edge" NOT create a new layer or anything like that?

    In the Refine Edge dialog, there is a drop-down menu allowing you to do a number of things, including making a new layer with mask. Choose something else.

  • Image Preview Export automatically creates new "images" folder?

    Whenever I create an image within Fireworks CS4, I do so by following this procedure:
    Image Preview > Export (and then select either .jpg or .gif).
    If I want to place the image (to be named filename.jpg) within the following local directory:
    My Documents/Projects/acme/images/
    ...it will instead place it here:
    My Documents/Projects/acme/images/images/filename.jpg
    Why does it add an additional images folder?
    Many thanks for your help in this matter?

    Hi Kevin,
    In the window that pops up after you click the Export button, check for the following:
    Does the File name field have the correct jpeg/gif extension?
    Does the Export field have Images Only option set?
    Most importantly: is the Put Images in Subfolder checkbox checked or unchecked?
    One possibility is that HTML & Images is set for the export type, in which case the Put Images in Subfolder checkbox might be checked by default.
    SiamJai
    Innovative Fireworks Tutorials

  • Error while creating new client

    Hi,
      recently i installed sap 4.7 in my system .
    to create new client i copy the standard one and i assigned password .
    While i am trying to login in to new client i am getting error "password is not right even though it is passsword given while creating new one.
    can any explian me how to resolve this
    regards
    babu

    Hi. welcome.
    dont worry. cool.
    some times due to eror uploads in data base theese type of error happens. put a mail to basis people of your company. they will solve ur issue/
    thanks
    karthik

  • Error while Creating new Position-Data fields have not been filled (no. 5A135)

    Dear Consultants,
    My client using SAP HCM form 2008, now they want to create new positions to the existing system,
    To create new positions I am using T Code : PP03, while creating I am getting error "Date Fields have not been filled- Error Message No - 5A135", I want to create the positions valid from 01.04.2014. please do needful why this error is coming
    Regards,
    Naresh

    Hi,
    It is mandatory to give the org unit to which the position is being associated with.
    Give the org unit and try saving it.
    Thanks,
    Sriram

  • How to create new nav buttons in nav bar

    I am trying to design a new site in iWeb. I want to add a row of navigation buttons to go to 8 different pages. All I have in the first page is a button called "welcome" and I cannot add anymore. It won't even let me select rollover colors or anything in that area.
    I only have a single page so far. If I add new pages does it automatically create new buttons in the nav bar, and how can I name them?
    Mike

    I cannot add anymore
    Yes you can. *New Page* from the file menu. Or *Add page* at the bottom left of the window.
    If I add new pages does it automatically create new buttons in the nav bar,
    Yes. (They're actually not buttons but textlinks)
    and how can I name them?
    By typing the characters of the pagename in the Sidebar on the left.
    Tutorials : http://www.apple.com/findouthow/web/
    Also note the word HELP in the menu bar at the top of the screen.

  • Automatically create users (SU01) from organization (0105)

    In our organization, we will have the user id populated in the 0105 record.  How do I have the system automatically create the user record (SU01) from the 0105 record?  I have looked at the HRUSER transaction, but I don't understand how to run that.  Wondering if: a) other companies have done what we are trying to do, and if so, did they use HRUSER, and b) if HRUSER was used, do you have a clear step-by-step on how you use it?
    Thanks in advance!

    1) I have a client that create a subscreen for infotype 0105.
    This has a button to automatic create the user.
    2) HRUSer:
         If you have employees who do not have SAP users, first create SAP users for them and then authorize them to use SAP ESS.
         In the Set Up and Maintain ESS Users (Overview) screen, choose:
    u2022     Employees without users.
    If you choose Background, the Attributes of Users to be Created screen appears.
    If you choose Overview, the Create Users for Persons screen appears.
    u2022     Select a person and choose Create User. The Attributes of Users to be Created screen appears. Choose Execute.
         You must decide how you would like your employees to log on to SAP ESS.
         The user group ESSUSER is a fixed user attribute. It is used to distinguish between SAP ESS users and other system users, such as administrators.
         You can change user attributes in the Set up and Maintain ESS User (Start) screen. In the Attributes of Users, you can modify the Password field. The default is INIT. In the User Group field, the entry ESSUSER is fixed. You cannot change this because it is important to differentiate users authorized for SAP ESS from other users. In the Role field, the SAP role (which you have copied into your namespace) is the default.
         SAP delivers a user exit, which you can use to determine your own password routine and user name. SAP delivers user exit Exit_saplehus_001 as part of the HRESSW4 enhancement. This user exit enables you to change the name and password that the user installation tool creates for each SAP ESS user that is generated.
         Existing users keep their attributes, such as user group, password, date and decimal format and start menu. The existing setting are not overwritten.

  • OCI Punchout - Standard Call Structure - Creates new session each request

    Hello all,
      I am having trouble with a customer attempting to do OCI Punchout with the Standard Call Structure.  I have other customers successfully punching out in this same system.  Here is a breakdown of what is happening.  Our catalog is a combination of classic ASP with VB6 Com objects
    1 - The user POSTs their call structure to our /ocilogin.asp page and we set a session variable after successfully log in
    2 - The user is then redirected to our /MainFrameLoad.asp page which houses our catalog.
    3 - The problem occurs here because the Session_OnStart method in the global.asa file is called again, which should not happen because session has already been established.  The logic in this method checks for the session variable created in /ocilogin.asp but it does not exist. 
    4 - It looks for a username/password via querystring and does another login, which then redirects them again to /MainFrameLoad.asp and the infinite loop begins.
    I'm convinced that their system is creating new unique requests each time which is causing the session variable to disappear.  I've tested their ability to accept cookies, which would also effect session variables, but that seems to be fine on their end. 
    My question is how can I tell if their system is properly handling cookies/requests?  I have plenty of example of people punching out with the exact same call structure, but its just their system that seems to have the issue.

    Hi,
    SRM 7.0 catalog integration differs from previous releases, the reliance on OCI 4.0 compliance is much stricter, please see the note [1287412 |https://service.sap.com/sap/support/notes/1287412]for more details on the required settings in the SRM system, perhaps let your customer also know about this note.
    Regards,
    Jason

  • Unable to create new user using Oracle Database vault

    Hi,
    can somebody help me to autorize user other then SYS user (e.g. system) to CREATE new and ALTER users when my database is secured by Oracle database vault with default installation settings;
    Thanks

    Reading the DV docs would be a great place to start.
    Consider, for a moment, that if the normal privileges provided to SYS using DV worked the same as they do in a regular database you wouldn't have a data vault you'd have a regular database.
    After you read the docs log on and try the following:
    SELECT username
    FROM dba_users
    WHERE username LIKE 'DV%';Aha!

  • Automatically creating PIRs  by reference material forecast

    Hello All,
    I want to ask you about automatically created Planned Independent Requirement. I have a material number (A).
    When I do "execute forecast" in MM02 for material A, the forecast values are created.
    Then I run MRP from MD02 for material A.
    When I looked at MD04, I saw the planned independent requirement quantites are the same as forecast values. How could it be? Can the system automatically created PIRs by reference material forecast?
    For doing this, which field is need to fill in MM02?
    Thank you for your support...

    Hi,
       can you please say which type of mrp you are using?
    It is possible to use information from the sales forecast, the Sales Information System, or
    other planning tools to plan production quantities.
    You can use the material forecast to determine planned independent requirement quantities. You
    must maintain the following data in the forecast screens in the material master record:
      Number of the required forecast values
      Forecast periodicity
    Thanks
    Krishna
    Edited by: dr.krishna on Dec 28, 2011 10:31 AM

Maybe you are looking for

  • HT5625 How do you merge two Apple IDs into one account?

    I have two Apple IDs (it's a long story) with mixed content.  I'd like to merge the accounts into one account, in order to synchronize my apple products.  How do I do it?

  • Problem in EJB Module

    Hi all , We have written a EJB module (Successfully deployed)  and that we are using in the Sender comm Channel (file) **Part of the code           Message msg = (Message) inputModuleData.getPrincipalData();           AuditMessageKey amk = new AuditM

  • ExtensionsFilter with t:inputHtml

    Hi all, it looks like my extension filter is not configured well to make my tomahawk inputHtml work. When I try to open the page, I get the following 500 error: java.lang.IllegalStateException: ExtensionsFilter not correctly configured. Resource mapp

  • [SOLVED] Can I install Gnome 3 alongside KDE?

    Long story short, I hated everything about Gnome 3 when it first came out, but 3.10 (and 3.12) look sleek. I've just installed it in VBox and it seems great, though there are some graphical issues (I'm guessing that's because of the VBox). Currently

  • Adf image cache directory

    Hi, I am using oracle ADF EA 14. I realized that when deploying my application, it created a cache directory under my adf/image directory. What is the cache directory for? Because sometimes the cache directory is not created and the page does not hav