Copy Z field data from SO to Purchase Requestion

Hi
I am facing one problem
I have created one Z-field in Sales Order and have created the same field in Purchase Requestion also.
Now how i want to transfer Z-field data from SO to PR.
What is the procedure and configuration i have to do OR what is the process in copy control for copying Z-field data from SO to Purchase Requestion.
Pls confirm.
Regards
Vicky

Hi
Thanks for the reply
I know there is no standrad procedure but how i can tranfer Z field data from Sales Order to Purchase Requestion.
Pl help me
Regards
Vicky

Similar Messages

  • I recently transferred my ITunes library to an external hard drive.  I made sure to copy all the data from the saved location.  After the transfer I noticed that a lot of albums are missing the first song and some recently purchased albums are missing.

    I recently transferred my ITunes library to an external hard drive.  I made sure to copy all the data from the saved location.  After the transfer I noticed that a lot of albums are missing the first song and some recently purchased albums are missing.  Is there any way to recover the data?  Thanks for any help.

    I may have found an answer here:
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive
    They only thing I can assume is that my external hard drive was slow to start and iTunes defaulted to its old directory (see the last paragraph at the link above). However, once my external was recognized shouldn't everything have fixed itself?
    Message was edited by: williamson42
    Message was edited by: williamson42

  • Z field dat to be transfer from SO to Purchase Requestion

    Hi
    I am faing one problem
    I have created 1 Z field in Sales Order and the have created the same field in Purchase Requestion.
    Now how i can transfer Z field data from SO to PR. What is the procedure and configuration i have to do.
    Pls confirm.
    Regards
    Vicky

    Hi Pls reply which user Exit , i should apply for transfering Z filed data from SO to PR.
    This is 3rd party process and we have added a Z field but we need to transfering data from SO to PR.
    Which User Exit will use to perform this process

  • Pull Service tab data from Contract to Purchase order

    Hi All,
    I Just want to know if is possible to pull service tab data from contract to purchase order. When i create PO w.r.t Service Contract the data from the service tab is not pulled. So need help on how can I pull.
    Please help..
    Thanks,
    Ros

    Hi if u r referring service contract maintain it in the line item (Outline agreement no). All the other details will copied from Contract.
    Check it out
    Regards,
    Raman

  • Synchronized my iPhone 3G 8G to copy the contacts and calendars from Outlook, I wonder if I can do the same synchronization to copy the same data from Gmail

    Synchronized my iPhone 3G 8G to copy the contacts and calendars from Outlook, I wonder if I can do the same synchronization to copy the same data from Gmail ?

    Right, I finally managed to get it sorted out.
    iCloud only accept version 3.0 vcards, and the one I was using were version 2.1 so that's why it wasn't picking it up. So the easy way to get that sorted out is, use a gmail account.
    I know you don't wanna do it because you think it's too much hassle and stuff, but trust me it only takes 5 minutes and that's it.
    1. Create a Gmail Account.
    2. Export your Old VCard files to the Gmail Account.
    3. Now Import them from Gmail to your PC again.
    And, that's it, that's just makes the new imported version in 1 file contains your all contacts in version 3.0. Now you can just upload that on icloud and then sync it with your iphone.
    That's what I did and it worked, and I am sure if you wanna replace this file in the Contacts folder under your User Account in Windows and then try to sync Contacts in Tunes, it should work, but as I said, I did it with iCloud and it worked for me. So aye, that's pretty much it. Phewwww..
    Been searching for it for the whole day and it took 5 minutes in the end, badass...
    Anyway, don't lose hope and always Google for everything!

  • How to store text field data from web dynpro application in pcd ?

    Hi Forum,
    I am new to web Dynpro.
    I want to store user specific data (a text field value) from a wd application in PCD and access it every time the user runs the application.How can I achieve this?
    Thanks,
    Mickey.

    Hi
    I created the "read" and "update" methods in my application service. How can I call them? I created and implemented the methods just like here: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/340fc0ea-0c01-0010-74bf-965b11031e77
    Operations:
    - readMyEntityService:
    - updateMyEntityService
    Implementation:
    retValue = getMyEntityService().read(key);
    getMyEntityService().update(dS0);
    In Web Dynpro there is this update method with the code above (in my original post).
    How can I call the update-method????????
    Kind regards
    Bettina

  • Pulling user/group field data from SharePoint list using REST, jQuery, Knockout.js Sharepoint 2013

    I'm trying to make an interactive task board based on the task list app in SharePoint 2013. The task lisk includes fields like "Title","Description","Status","% Complete","Due Date","Assigned To",
    etc. I used knockout.js to bind "Title","Description", and "Status" to my HTML controls. Here is some of the code:
    var ViewModal = function(items, listname){
    var self = this;
    self.sortBy = ko.observableArray(sortBy);
    self.tasks = ko.observableArray(items);
    self.listname = ko.observable(listname);
    self.auto = ko.observable(false);
    self.getTasks = function() {
    clearTimeout(self.getTasks);
    // server relative url to REST service endpoint
    var ajaxurl = _spPageContextInfo.webServerRelativeUrl + "/_vti_bin/listdata.svc/" + self.listname() + "?$orderby=PriorityValue";
    $.ajax({
    type: "GET",
    url: ajaxurl,
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    cache: false,
    processData: true,
    success: function (data, status, xhr) {
    if (status == "success" && data) {
    ko.mapping.fromJS(data.d.results, mapping, self.tasks)
    $(".task-item").draggable();
    error: alert
    if (self.auto()) {
    setTimeout(self.getTasks, 10000);
    <div class="tasks-column">
    <div class="column-header">Not Started</div>
    <!-- ko foreach: tasksNotStarted -->
    <div class="task-item">
    <div class="view" data-bind="visible: !IsEditing()">
    <button class="edit" data-bind="click: $root.editTask">edit</button>
    <h2><span data-bind="text: Title"></span></h2>
    <div data-bind="html: Description"></div>
    <span data-bind="text: PriorityValue"></span>
    </div>
    <div class="edit" data-bind="visible: IsEditing">
    <button class="save" data-bind="click: $root.saveTask">save</button>
    <input type="text" data-bind="value: Title"></input>
    </div>
    </div>
    I'm having trouble displaying the data from the "Assigned To" user/group field. I tried:
    <span data-bind="text: AssignedTo"></span>
    But it displays the field as [object Object]
    I tried using $select/$expand
    ?$select=Title,AssignedTo/Id,Assignedto/Title&$expand=AssignedTo/Id,AssignedTo/T‌​itle";
    But it still returns the [object Object]

    Hi,
    Please use the REST URI below:
    /_api/lists/getbytitle('ListName')/items?$select=Title,AssignedTo/ID,AssignedTo/Title&$expand=AssignedTo/ID,AssignedTo/Title
    More information for your reference:
    How to get User Details and User Group Details in SharePoint 2013 REST API with Knockout for SharePoint Js (KoSpJs)
    http://www.ashokraja.me/post/How-to-get-User-Details-and-User-Group-Details-in-SharePoint-2013-REST-API-with-Knockout-for-SharePoint-Js-(KoSpJs).aspx
    How to Get Login Name and Display Name using SharePoint 2013 REST API
    https://www.nothingbutsharepoint.com/sites/devwiki/articles/pages/how-to-get-login-name-and-display-name-using-sharepoint-2013-rest-api.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How do I copy all iTunes data from ext to ext disc

    Hi,
    my RAID mirroring system had a defect. Now I bought a new 1000 GB disc (two discs seem to be safer than a RAID mirror system after all) and want to copy all my iTunes data (approx. 400 GB) from that RAID mirroring system to the new disc. How can I do that so that iTunes works on with the new copy? (Later I want to reconfigurate the 2 x 500 GB RAID mirroring system into one 1000 GB disc and use it as back-up). I've checked already:
    1) "iTunes data to saving medium" (or whatever that option is called in the English version): it only saves to CD.
    2) "iTunes data export" (or whatever that option is called in the English version): it creates an .xml dataset and probably is no solution for my copy problem.
    3) Shall I just copy all iTunes data via FINDER to the new disc and then tell iTunes where to find the iTunes data? Or what else should I do?

    Thanks again. That one runs on my keyboard under "alt" (alternate).
    Maybe you know this one too.
    Under "podcasts" at the RAID Mirroring system I found only some of my podcasts. iTunes seems to hold more than 50% of my podcasts on my local disc (under the folders Music / iTunes).
    I know that iTunes acts peculiar when it doesn't find the path I specified (that happens when I forget to start the ext. disc before I start iTunes). It tries to build a new database on my local disc (That's the reason - as far as I assume - why more than 50% of my podcasts are on my local disc.) Is there any simple procedure how I can tell iTunes to copy these podcasts to the external disc or - provided I copy them myself - to tell iTunes: mix the two podcast-folders together.

  • Updating Batch classification data from MIGO for Purchase order

    Hi,
    I need to update batch classification data (in MSC3n) from MIGO for purchase order. The logic needed for this is as below,
    1) Pass material and batch to MCH1 table to get CUOBJ_BM.
    2) Pass CUOBJ_BM to INOB table to get INOB-OBJEK.
    3) Pass INOB-OBJEK to CLAF_CLASSIFICATION_OF_OBJECTS to get class name & characteristic name.
    4) Pass INOB-OBJEK, CLASS name and characteristic name to BAPI_OBJCL_CHANGE to update batch classification data.
    I created implicit enhancement at the bottom of FM "CLVF_VB_INSERT_CLASSIFICATION". But the problem is, the return parameter of BAPI_OBJCL_CHANGE is giving the following error.
    Class type 023, object type MCH1, object RAW-6             0000001151
    Object is currently locked by user
    The assignment was not changed
    Please let me know how to do it. Is there any BADI or User Exit?

    Hi,
    As you said the break point is not triggering did you activate your exit and activated even the project to which your exit is assigned.
    I hope you missed activating your project in CMOD transaction. Please verify it once and if it is not activated then immediately activate it and try debugging again.
    Regards,
    Rafi

  • Delivery date from Requisition to Purchase Order

    Hi,
    let's suppose to have a material code and its inforecord.
    I create the Purchase Order Requisition and I put a delivery date. When I create the Purchase Order (ME21N) moving the POR into the basket, the delivery date I find in the PO is the one indicated in the POR. I would like that the delivery date I find in the PO will be calculated based on the "delivery time" indicated in the inforecord. For example, in the POR the delivery date is 15th May, today is 11st May, I'm creating the PO and I have 15 days of delivery time in the inforecord. I want that the delivery date in the PO will be 26 May (11+26). Now, if I create the PO, the delivery day will be 15th May...
    How can I set up the system to do this?
    Is there a set up that I have to do into the inforecord, maybe?
    Thanks,
    FT

    I you create the PR manually, then you manual entries have precedence over system defaults. Maybe you can control it with a user exit.
    if you create PRs is with the MRP run, then SAP takes the delivery date from the material master.
    if you maintain source list and indicate it as MRP relevant, then SAP can find the info record and can propose the delivery date based on the info record.

  • How to copy all the data from old computer to new computer (server)

    Dear all,
    As I want to upgrade the server from old computer to a new one.
    I want to ask how and easy way to copy all of table, sequence, ......data from existing old computer to new computer.
    The old server is window 2000 Server with oracle 10g
    The new server may window 2003 Server with oracle 10g
    Thanks a lot
    Francis SZE

    As far as I can see you are copying from db10g for windows to another host on the same platform and same OS, so a simple cold backup taken from the source database can be restored at the target host. You must first make sure the configuration files and service be created prior to performing the database startup procedure at the target host. You may also as suggested, perform an rman duplication task
    ~ Madrid

  • Field data from RSA3 is not showing in PSA

    Hi guys
    I can see the data field (custom) data populated in RSA3 for one of our data source...but which is not showing up in PSA table . we recently reinited and for some reason that particular field is not bringing the data .For all the records this paritcular field in PSa showing as 00.00.0000 . How come a field value  shows in RSA3 and not PSA ???? please advie what should I do
    regards

    Hi sam thanks...I can see that data in extractor but not in PSA , that means it should not be in tra str /update rules/. the problem must be in extractor ...please help how to get this date in PSA as is...
    I have one more issue, when Iam loading the data from PSA to cube the data was half loaded and then the remaining half has yellow status in monitor...when I checked in simulation mode the following message is coming " Enter rate USD / rate type M for 30.03.2007 in the system settings" do you have any idea on how to fix this ?
    thanks
    Edited by: sam on Jan 25, 2008 9:17 PM

  • Retrive I/O field data from screen. I will reward points.

    Hello Gurus, i want to retrive the data from the screen I/O fields using wa (a work area or internal table), but when i try to do that in PAI using
    data wa type zzz.
    x = wa-comp.
    wa is empty but if i don`t declare wa, it does contain the data from the screen.

    Is the screen field called wa-comp too, and defined as the same format as the "wa" structure variable?...  If not, the value from the screen will not get passed back into the wa-comp variable for you to access.  The dynpro acts like a window into your programs global data area so you need to get the screen names and formats right.
    Jonathan

  • What is the Best way To Copy and paste data from 1 book to another

     I have 18 sheets in 5 different books that I want to extract data from specific cells.  What is the best way to do this?  Example:  1 sheet is called Numbers E-O1 data in 13:WXYZ. The data updates and moves up 1 row every time I enter
    a new number. So let's say I enter the number 12. Through a lot of calculations the output goes in 13:WXYZ. To what I call a counter which is a 4 digit number.  Anyways, how can I send that 4 digit number to a totally different sheet?  To bullet
    what I'm talking about
    data in cells Row 13:WXYZ in book called Numbers sheet E-O1
    send data to book called "Vortex Numbers" Sheet E-O row 2001:CDEF
    What formula or Macro can I use to make this work?
    thank you!

    Hello Larbec,
    Syntax:
    '[BookName]SheetName'!Range
    Enter in cell  2001:CDEF:
    ='[Numbers]E-O1'!13:WXYZ
    This assumes that the file is open in Excel. Otherwise you need to add the path:
    'ThePath[BookName]SheetName'!Range
    Best regards George

  • What is the best wayt to copy tables with data from development to Prod?

    Dear all,
    We have Oracle tables with data in a development server, I would like to know if there is any ‘easy’ and ‘direct’ way to copy them to the production server.
    As I think import and export would be the best way. Any other althernatives?
    Thanks.

    There are a number of methods you could use.
    <ul><li>
    Export and import would work or their 10g+ equivalents data pump. </li>
    <li>You could create a database link between the 2 databases and use SQL*Plus copy to transfer data on a table by table basis (probably quite laborious unless there's only a few tables). </li>
    <li>You could use transportable tablespaces (there are some restirctions - check the documentation http://download.oracle.com/docs/cd/E11882_01/server.112/e10595/tspaces013.htm#sthref1632) </li>
    <li>You could use RMAN to clone the development database (assuming the prod database hasn't been used yet and that there's nothing in it you need to keep).</li>
    <li>You could create the prod database as a standby copy of the dev database </li>
    </ul>
    Using transportable tablespaces would be much faster than using data pump or import/export depending on how much data there is.

Maybe you are looking for

  • Upgrade da Windows a Mac

    Ho comprato un computer iBook Mac. Sto lasciando Windows per andare su Mac. ho comprato tempo fa un Acrobat 6 e poi ho fatto l'upgrade a 9 sempre per windows. posso adesso comprare l'upgrade acrobat XI Standard per mac utilizzando il codice di quello

  • How does "format SQL' work?

    Congratulations to the team!! Thanls for offering such a useful tool! I like "Snippet" a lot. I put the following into the window beloe "Enter SQL statement" select trim( substr (txt, instr (txt, ',', 1, level ) + 1, instr (txt, ',', 1, level+1) - in

  • How to use tzupdater tool with a new Olson database

    [*the lastest available tzupdater is 1.3.36*|http://www.oracle.com/technetwork/java/javase/tzdata-versions-138805.html] [it's published a new tzdata2011d.tar.gz|http://news.gmane.org/gmane.comp.time.tz] At this time the lastest available tzupdater is

  • Newbie question RE: Select common fields

    I have to select all common jobs from the emp table that are in dept's 10,20,30. Do I need to do a self join? Subquery? Any help will be greatly appreciate.

  • Last version of support package manager

    Hi, where can I find the last version 0026 of Support Package Manager (NetWeaver 2004s) on Marketplace for downloading? Thanks. Regards Stefan