JD Edwards E1 Financials touch point with Distribution and Manufacturing

Hi E1 Gurus, I am trying to get a comprehensive list of touch points of Distribution and Manufacturing modules with Financials (GL), from set-up and transactional perspectives?
Thanks

Control the process with Outside Process Work Orders. You create a Work Order and a parts list in the normal way but have a two step routing, the first step is the Outside Process done by the Third Party and the second step is receipt of the goods back from them (JDE will not allow an Outside process to be the last step on a routing)
With the first operation you will need a OP item number, this is part number which is made up of the Item being manufactured plus the characters OP plus the operation number, this part number represents the service that the 3rd party is providing and is set up as a Stock Type X, Line Type X
When you run R31410 to attach the parts list it will automatically raise a Purchase Order on the 3rd party
You can then issue the parts to the Work Order in the normal fashion and since you have a P/O for the manufacturing process this will acount for the 3rd party labour
Look on Oracle Support for document 647965.1
Steve

Similar Messages

  • What are the integration points with sd and qm

    hi,
    sap gurus,
    good morning to all,
    what are the integration points with SD and QM.
    in r/3.
    regards,
    balaji.t
    09990019711

    Dear balaji
    Before doing PGI, there will be a preinspection stage where SD will have to integrate with QM.  Similarly after sales, whenever there is sales returns, QM will come into picture.
    To control the above scenarios, in material master, go to "Quality management" view and click on "Insp.setup" where you need to assign Inspection Types like 04, 06 etc.
    thanks
    G. Lakshmipathi

  • QM Touch Point with other modules

    Dear Gurus,
    I am new to QM and have to work on Qm with Pm. Please help me with touch pionts with other modules, List of T- Codes, Config Doc and user mannual.
    regards,
    PMAddi

    HI,
    QM is linked with PM in only one concept. 
    Calibration of Equipments 
    Inspection type is the main to generate inspection lot for all modules.
    In Material master, QM view the inspection type is assigned.
    For Ex: 01  will generate inspection lot for Goods receipt for PO
               05  for Goods receipt for others 501 mvt type
               10, 11  - for SD sales order delivery
                03,04 - PP Module
    In PM customizing, 14 insp type is to be maintained for order type .
    Create inspection plan for that equipment - QP01
    Create maintenance order
    Then it will  generate  inspection lot for orders
    Select the inspection lot from QA32 tcode.
    Check the status of lot. It should be released status. If not assign the inspection specification (task list, plan) with correct usage
    Then record the results and do usage decision via QA32.
    Regards,
    Alagesan

  • Distance between two points with degrees and minutes

    I would like to store several points in the database given degrees and minutes as position. In this example I have point 1 that is E 150, 0/S 30, 0 and points 2 that is E 150, 0/S 30.1. For example if I enter 2 km as distance from position of point 1 I would like the search to return all points witin 2 km.(should return points 2 that is very near)
    If I run the query
    SELECT c.name
    FROM cola_markets_cs c
    WHERE
    SDO_WITHIN_DISTANCE(c.shape,
    SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(150.0, 30.1, NULL), NULL, NULL),
    'distance=10000 unit=KM')
    = 'TRUE';
    I get result both position 1 and 2, but if I decrease to distance=1000 no rows is returned.
    Can you see what I am doing wrong here?
    Can I also combine SDO_WITHIN_DISTANCE with SDO_NN_DISTANCE so I can ask for all points 10 km in distance from the reference point and I can also see the actual distance for each point?
    Thank you
    I have tested with the following code. Do I save the position wrong..?
    CREATE TABLE cola_markets_cs (
    mkt_id NUMBER PRIMARY KEY,
    name VARCHAR2(32),
    shape MDSYS.SDO_GEOMETRY);
    INSERT INTO cola_markets_cs VALUES (
    1,
    'Point 1',
    MDSYS.SDO_GEOMETRY(
    2001,
    8307,
    MDSYS.SDO_POINT_TYPE(150.0, 30.0, NULL),
    NULL,
    NULL
    INSERT INTO cola_markets_cs VALUES (
    2,
    'Point 2',
    MDSYS.SDO_GEOMETRY(
    2001,
    8307,
    MDSYS.SDO_POINT_TYPE(150.0, 30.1, NULL),
    NULL,
    NULL
    -- UPDATE METADATA VIEW --
    -- Update the USER_SDO_GEOM_METADATA view. This is required
    -- before the Spatial index can be created. Do this only once for each
    -- layer (i.e., table-column combination; here: cola_markets_cs and shape).
    INSERT INTO USER_SDO_GEOM_METADATA
    VALUES (
    'cola_markets_cs',
    'shape',
    MDSYS.SDO_DIM_ARRAY(
    MDSYS.SDO_DIM_ELEMENT('Longitude', -180, 180, 10), -- 10 meters tolerance
    MDSYS.SDO_DIM_ELEMENT('Latitude', -90, 90, 10) -- 10 meters tolerance
    8307 -- SRID for 'Longitude / Latitude (WGS 84)' coordinate system
    -- CREATE THE SPATIAL INDEX --
    -- Must be R-tree; quadtree not supported for geodetic data.
    CREATE INDEX cola_spatial_idx_cs
    ON cola_markets_cs(shape)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    --This search only return if distance is 10 000 km...
    SELECT c.name
    FROM cola_markets_cs c
    WHERE
    SDO_WITHIN_DISTANCE(c.shape,
    SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(150.0, 30.1, NULL), NULL, NULL),
    'distance=10000 unit=KM')
    = 'TRUE';
    --According to this search the distance to point 1 is 3331198,72256398,
    --this  should be zero..
    SELECT
    c.mkt_id, c.name, SDO_NN_DISTANCE(1) dist
    FROM cola_markets_cs c
    WHERE SDO_NN(c.shape,
    sdo_geometry(2001, 8307,sdo_point_type(150.0, 30.1, NULL), NULL, NULL),
    'sdo_num_res=2', 1) = 'TRUE' ORDER BY dist

    Hi,
    What version of Oracle are you using? I got this using your example:
    SELECT
    c.mkt_id, c.name, SDO_NN_DISTANCE(1) dist
    FROM cola_markets_cs c
    WHERE SDO_NN(c.shape,
    sdo_geometry(2001, 8307,sdo_point_type(150.0, 30.1, NULL), NULL, NULL), 'sdo_num_res=2', 1) = 'TRUE'
    ORDER BY dist ;
    MKT_ID NAME DIST
    2 Point 2 0
    1 Point 1 11085.3285
    This is 10.1.0.4
    Also:
    Can I also combine SDO_WITHIN_DISTANCE with SDO_NN_DISTANCE so I can ask for all points 10 km in distance from the reference point and I can also see the actual distance for each point?
    No, but you can add a distance calculation:
    SELECT
    c.mkt_id, c.name, SDO_GEOM.SDO_DISTANCE(c.shape,sdo_geometry(2001, 8307,sdo_point_type(150.0, 30.1, NULL), NULL, NULL),1) dist
    FROM cola_markets_cs c
    WHERE SDO_WITHIN_DISTANCE(c.shape,
    sdo_geometry(2001, 8307,sdo_point_type(150.0, 30.1, NULL), NULL, NULL), 'distance=10 unit=km') = 'TRUE'
    ORDER BY dist ;

  • What are the integration points with sd and pm

    hi,
    sap gurus,
    good morning to all,
    what are the integration points SD and PLANT MAINTAINCE.
    REARDS,
    balaji.t
    09990019711

    Balji,
    There is no major integration b/w SD and PM.
    But PM is integrated with CS for all service and repair orders.,
    If you really want to see where they can be ssen integrated
    Eg:
    Pm deifines the roles for the people in shopfloor,if you can make use of these roles and give authorization of removal of credit block to them then it is integrated.
    Even when a new machine is purchased or repaired or overhauled the amount is passed to repective cost center internally.
    regards

  • Ipod Touch works with APPLE and not WINDOWS

    I have a first generation touch. Yesterday the PC crashed while syncing with the iTouch. After that it would not see the iPod any longer. However the APPLE I have sees it just fine. I have gone through the detailed uninstall and re install itunes process several times and tried cleaning the registry - still nothing http://support.apple.com/kb/HT1923 .
    The PC based iTunes syncs with another 2G and a nano and a shuffle just fine. Windows also sees the 1G Touch..... ideas other than moving my library to my laptop? I have also reset the 1G and upgraded the software now to the latest firmware. It still works with the APPLE but not with the PC. I am sure this is a driver issue but I cannot get it fixed.

    Well I happened on the answer after doing a lot of searches. Why doesn't apple post the fix on their site. This problem is due to their installation package for Vista and the fix does not require all the uninstalls and re installs you have been asked to do so many times....
    THANK YOU BeeBopp
    Posts: 3
    From: USA
    Registered: Feb 15, 2009
    Re: Ipod touch is recognized as a camera
    Posted: Feb 16, 2009 7:43 AM in response to: Twin195 Reply Email
    This solution is very similar to one above but worked for me. Am using iPod Touch 2nd Gen with 32 bit version of Windows Vista where the iTouch is being seen by Windows but does not show in iTunes. In my case it was being identified by Windows as a camera. I tried un-installing and re-installing iTunes and all the other Apple apps with no luck. Was almost ready to throw in the towel when I did one last search for alternate solutions and found the following instructions to reinstall the drivers, but instead of having the system look to the c:\Windows\inf or c:\windows\system 32 folders for the drivers, the path is changed to C:\program files\common files\Apple\Apple Mobile Support\Drivers, which is apparently where Vista installs the drivers. Once I changed the path the driver properly reflected the iTouch as a USB device, and not a digital camera. Try this if you are having similiar issues.
    Here are the steps:
    1. Verify you have the following files usbaapl.cat, usbaapl.inf & usbaapl.sys in the following directory "C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers"
    2. Log in using an ADMINISTRATIVE account
    3. Single left click on START
    4. Single left click on RUN (You may need to change the start menu to 'classic view' to see RUN, you can change back after if you like)
    5. Type in " devmgmt.msc " then hit Enter (Don't type in the quotes)
    6. Look for Imaging in the Device Manager window, and click on plus sign (In Vista you may not see the "Imaging" option. Look under "Portable Devices" as an alternative)
    7. Now you should see " Apple iPod " as a device underneath Imaging (or Portable Devices)
    8. Right click on " Apple iPod " then single left click on Properties
    9. Single left click on the " Driver " tab
    10. Single left click on " Update driver "
    11. Select " Install from a list or specific location " or "Browse my computer" whichever shows on your version of Vista
    12. Single left click on " Include this location in the search " if shown
    13. Paste " C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers " (Don't type in the quotes) into the box " Include this location in the search "
    14. Single left click NEXT and keep clicking through until " Apple iPod USB Driver " is detected, if no list appears then you should see the little animated circle thingie spinning. It's looking and working. Be patient.
    15. Hopefully you will get a successful message.
    16. The correct drivers(s) are now installed.
    17. Start up iTunes, and see if you iPod is detected again.
    Hope this works for you as it did for me and several others.

  • Navigation back and forth between anchor points with "prev" and "next" buttons?

    Hi all,
    I am working on a horizontal layout site that has anchor points on each part. As the user scrolls, it snaps to each anchor point. It works fine with just the mouse wheel, but I'd like to have previous and next buttons that allow for easy navigation between the points. I know on each section I can have the buttons to jump from say A>B>C and then C>B>A, but this is a single "prev" and "next" set of buttons that are pinned to the page. So, as the page scrolls left to right, the buttons stay put. Is there a way to just have them go to the previous and next point in the line, rather than linking a button to anchor point A/B/C, etc?

    I'm not sure I'm making my question very clear. Your response doesn't address what I'm asking, unfortunately. I know how to make buttons that are linked to individual anchor points. But I'm trying to make buttons to link to the next anchor point, or a specific spot on the page. Think of how you would navigate on a horizontal page, that's what I'm looking to duplicate.

  • Why wont my ipod touch sync with itunes, and how can I fix it

    Key Facts:
    -I have an ipod touch (model number MC008LL)
         -It's probably running the same iOS id did in the package
    -It won't sync (and more importantly update to i0S5)
         -It's not a failed/slow sync, the option to sync as well as all other options under "Devices" is Grayed out
    -I am running iTunes 11.0.4
    -the Belkin cord I am using charges the ipod, and I think it was the one I used to sync it before.

    You have a 3G iPod and those can go as high as 5.1.1.  What exactly happens when you connect the iPod to your computer and try to update via iTunes? You need iTunes 10,5 or higher on the computer.
    After you get it updated see if syncs.

  • Problems with distribution and images

    (I have posted this thread on the new to java forum as well).
    the problem is that when i try to distribute my application on other peoples computers i cannot get the images to show up. i use netbeans and you use a browser to select the image file from somewher in your computers directory. the problem is that when i try to run it on other peoples computers they don't have the image files. does any one know how i can make it so that the image files are part of my application. could i put the image files in one of the folder in my application and then use the browser to select them. but even if i do that surely they are still under my c drive because it woudl be c:user\netbeans\netbeansproject\app(awhatever)\folder\imagefile; either way they would not have my c directroy or netbeans to get to the image file.
    does any one know what i should do.

    please let's keep this in one thread, here:
    http://forum.java.sun.com/thread.jspa?messageID=9875969

  • Distribution and commision management in insurance industry

    dear all
    Could anybody help to provide some solution model with distribution and commission management in insurance industry?
    Thanks  a lot

    Zhuoija,
    Are you looking at industry standard process models or solution architectures for the same ?
    Arun
    P.S There are a few of them in the IBM website.... with regard to Process models
    http://www-03.ibm.com/industries/financialservices/doc/content/bin/fss_iaa_poster_jun2006.pdf

  • I got a 8gig ipod touch from a freind and all I get on the screen is a usb plug with an arrow pointing towards the itunes logo. How do I resolve this?

            I got a 8gig ipod touch from a freind and all I get on the screen is a usb plug with an arrow pointing towards the itunes logo. How do I resolve this? I don't know what operating system it runs, or what year it was manufactured, it is a chrome one.

    http://support.apple.com/kb/TS1369
    There have been some problems accessing pages on the Apple web site.  If the hyperlink gives you a "We're sorry" message, try again.

  • Compact Field Point with Touch Panel

    Hi.
    Have anyone designed a NI Compact Field Point or Compact RIO with a connected Touch Panel Monitor?
    I have an instrument with RS232 output (serial data). Since I am using LabVIEW 8,   
    the executed application should run in Embedded WinXP. But, I need a touch panel for control and monitoring.
    I would appreciate any advise please.
    Thanks in advance.
    Bon

    Hey Bon,
    What kind of information are you looking for? NI sells a TPC 2006 device which is a touch panel and runs windows CE. This device can be programmed using LabVIEW PDA. This device has a Ethernet port so that you can also communicate to the cRIO or the cFP. Is this what you are looking to do? You can call in on (888) 280-7645 and a sales person would be able to understand your application much better and advise you accordingly.
    Regards,
    Chetan K
    Application Engineering
    NI

  • Touch input with 2 touch point

    I need driver for touchsmart IQ512 for win 8 who support touch input with 2 touch point
    This question was solved.
    View Solution.

    Touchdrivers needed for your system would be available through Windows update. You can even try downloading the drivers from the following weblink:
    http://www.nextwindow.com/assets/files/NWFilter1.4.0.0.zip
    I am an HP employee.
    Regards,
    Vidya
    Make it easier for other people to find solutions, by marking my answer “Accept as Solution” if it solves your problem.
    ***Click on "Thumbs up" button to the bottom right side of my post to say thanks!***

  • Replace secondary site with distribution point

    I have a client that would like to remove some unnecessary secondary sites and replace them with distribution points on the same hardware. Is there a built-in way of doing this from the SCCM console? What should be taken into consideration before doing
    such a thing?
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

    No there is no built in way to do this. It's essentially an uninstall (of the Secondary site components) and an fresh install of the DP. Content and boundaries are the only real considerations; you may want to use pre-staged content to essentially
    cache a local copy so that it doesn't have to be replicated across the WAN. Technically, if you leave the sccmcontentlib in place, it may be able to reuse this but that's not supported so it may or may not work.
    Jason | http://blog.configmgrftw.com

  • Problem with again and again returned retired application to distribution process

    Hi,
    I have strange problem. In my SCCM enviroment, I have retired application (Flash Player). For time to time, this application is appear on some Distribution Points with status "In process". Application is not deployed. 
    Why it is still returning to distibution on DP? How to remove it pernamently?
    Thank you for answer.

    Probably I have found issue...
    I have found issue appear only on few DP's during system deployment. Next I have compared it with DP's where this issue not appear and found I have few DP's where "retired" application is missing. So, when system deployment process starting, and in TS is
    task where is defined installaltion of this application, DP trying download missing content. Becuse it is "retired" application, thi sprocess is still in "In process" state. 
    Now I need just only check TS where retired application appear and exchange it with newer version.

Maybe you are looking for

  • I can't save a picture to my camera roll from an email

    I emailed a picture from my MBP to myself then downloaded the email on my IPhone 4S. When I tried to open the picturethe only options I had were to email the pic, post to FB or Twitter or print it out. There used to be an option of saving th picture

  • HP Password Encryption Utility

    Hi There, I have HP Z230 Workstation. I want to use HP Password Encryption Utility to create a BIOS password which  will be saved in an encrypted file. I have downloaded the SoftPaq from HP website (sp69088) but after installation of this SoftPaq I a

  • Dialog instance installation error

    Hi all, While installing a dialog instance of ECC (EHP 5 for  SAP ERP 6.0) on AIX 7.1  I am facing an error in phase "Unpack SAP archives" the error is as under An error occurred while processing option Enhancement Package 5 for SAP ERP 6.0 > SAP App

  • What will happen if I downgrade my mac?

    My computer is running realy slow and I think it's because of the ugrade that this computer was not made for. It's updated to 10.7 (Lion) when it first came out, and now I want to downgrade it to how it came, which was 10.5 (leopard). I have the CD t

  • Accordion widget -  Toggling the Panel?

    I know this is probably simple but... 1) How do I make the Accordion widget Panels "Open & Close" by clicking on the same Panel twice? What I mean is that my Accordion Panel works fine & "Opens" when clicked once, but will not "Close" when clicked ag