Tips about deployment to third party serwers

Hi
I've been developing application in JSC. It worked fine on Sun App Server, however my production environment uses WebLogic 9.2.
I've spent couple days trying to deploy application on WL and finally managed to run it. I want to share my solution - maybe this will save somebody's time.
1. Exporting War - you have to export war in J2EE 1.3 standard
2. Add jstl.jar and standard.jar to your war file under /WEB-INF/lib
3. Error in Java Script: if you have scripts in your page (ie. you are using data table with checkboxes) you should change them because JSC changes '>' to '>'
4. If you don't have DataDirect jdbc driver for Oracle and you try to use Oracle Thin Driver, than you will get large amount of errors: SQLException: statement handle not executed: getMetaData() ... . This error does not appear if your cached row set is placed on page not in SessionBean. So all you have to do is simply execute RowSets in SessionBeand before using them. Here is how to do it:
//Page1.java
CachedRowSetDataProvider myProvider = new CachedRowSetDataProvider();
private void _init() throws Exception {
  Provider.setCachedRowSet((javax.sql.rowset.CachedRowSet)getValue("#{SessionBean1.myCachedRowSet}"));
CachedRowSetX crsx = getSessionBean1().getMyCachedRowSet();
if(!crsx.isExecuted())
   crsx.execute();
}5. Tree Component - it will not work until application is installed as exploded war
Hope this helps someone
best regards
Grzegorz

Adobe introduced the ability to publish to third part hosts such as Flickr, Smugmug and Kodak with the version PSE6. There is a Tech Note relating to PSE6 which may assist you.
Using the PSE share option for your Flickr account will not affect Organizer.
I hope this helps.
http://kb2.adobe.com/cps/403/kb403063.html

Similar Messages

  • Deploying a third party API in a J2EE application.

    Hi there
    I have a small J2EE applicaion made up of EJBs, servlets and JSPs
    packaged and deployed as an EAR file in WebLogic 6.1.
    I'd like to make use of a third-party API (that is packaged as a JAR
    file) from the servlet and EJB components within the application, but
    am a little confused as to where to place the JAR file.
    I've tried placing it in the WEB-INF/lib directory of the WAR file,
    the servlets found the library successfully but the EJB components
    threw ClassNotFoundExceptions.
    I've tried placing it in the EAR file at the same level as the WAR and
    EJB JAR file, ie:
    App.EAR
    /application.xml
    /EJB.JAR
    /WEB.WAR
    /LIB.JAR
    but then the servlets were unable to find it.
    Finally, I tried placing one copy in the WEB-INF\lib and one copy as
    described above in the EAR file, but still - the EJBs were unable to
    find the library.
    Unfortunately, the API needs to be configured on a per-application
    basis, so placing a reference to the JAR file in the CLASSPATH when
    starting WebLogic is not an option.
    Any one encountered or solved this kind of problem before ?
    Kind regards
    Eea

    Hi Eea,
    There are many articles in the Internet talking about
    packaging of j2ee compenents, for example:
    http://www.onjava.com/pub/a/onjava/2001/06/26/ejb.html
    And, you may try to put your 3rd party API into weblogic
    classpath in your startserver command file...
    Regards,
    Slava Imeshev
    "Eea" <[email protected]> wrote in message
    news:[email protected]..
    Hi there
    I have a small J2EE applicaion made up of EJBs, servlets and JSPs
    packaged and deployed as an EAR file in WebLogic 6.1.
    I'd like to make use of a third-party API (that is packaged as a JAR
    file) from the servlet and EJB components within the application, but
    am a little confused as to where to place the JAR file.
    I've tried placing it in the WEB-INF/lib directory of the WAR file,
    the servlets found the library successfully but the EJB components
    threw ClassNotFoundExceptions.
    I've tried placing it in the EAR file at the same level as the WAR and
    EJB JAR file, ie:
    App.EAR
    /application.xml
    /EJB.JAR
    /WEB.WAR
    /LIB.JAR
    but then the servlets were unable to find it.
    Finally, I tried placing one copy in the WEB-INF\lib and one copy as
    described above in the EAR file, but still - the EJBs were unable to
    find the library.
    Unfortunately, the API needs to be configured on a per-application
    basis, so placing a reference to the JAR file in the CLASSPATH when
    starting WebLogic is not an option.
    Any one encountered or solved this kind of problem before ?
    Kind regards
    Eea

  • How to Deploy the third party EJB 3.0 jar in web application

    I have a web application which calls services provided by EJB 3.0 beans packaged in third party jar. How do a configure the ViewController project to deploy the beans to the weblogic server when I run the application rather than deploy the EJB ear as a stand application to the server?
    The jar file has already referenced by the project. In the "EJB Module" of project properties I've set the EJB Version property to 3.0, but the Annotated EJB 3.0 Bean Classes list remains empty, presumably because I have no beans defined in the sources of the application. When running the project the EJB jar did not deploy automatically. Is there something wrong? How can I achive this goal?
    Best Wishes~
    ELeven.Xu
    IDE: JDeveloper 11g (11.1.1.2.0)
    OS: Linux

    I don't think this technique will work. I added a META-INF/ejb-jar.xml file to the application, and added a <session> section for one of the EJB 3.0 beans from my third party jar. I specified values for <ejb-name>, <ejb-class>, and <session-type> hoping the rest of the configuration would be determined from the annotations in the class. When the server starts, this warning message is displayed:
    Oct 30, 2009 12:06:41 PM com.evermind.server.ejb.logging.EJBDeploymentMessages warningSessionBizInterfaceNotDefined
    WARNING: \[current-workspace-app: ... \] - The session bean does not has at least one business interface defined for client access. The bean is not accessiable and usable at runtime.
    Ready message received from Oc4jNotifier.
    Embedded OC4J startup time: 11042 ms.
    \[sic\]
    EJB 3.0 beans are not required to define business interfaces, as they are supposed to be generated by the container.
    Good idea, but still cannot deploy beans from the third party EJB 3.0 jar referenced by my project to the embedded OC4J container. Still investigating.
    Thanks,
    Steve
    By the way, I have been able to use your technique to deploy EJB 2.1 beans from third party jars in other projects, just not EJB 3.0 beans that do not provide ejb-jar.xml deployment descriptors, nor business interfaces.
    Edited by: user10375549 on Oct 30, 2009 9:51 AM - Added relevant comment regarding technique described for solving problem. It works for EJB 2.1 beans but not EJB 3.0 beans.

  • Presence deployment on 'third party specs-based' VM platform & integration with other UC apps on MCS hw

    I have a client who's currently running UCM ver 9.1.1 on MCS hw .. each for Call Mgr., UCxn, CCX.. they want to add Presence & IM on their own VM hardware and infrastructure.. on 'third party specs-based' platform.  Besides complying with VM hw compatibility list and supported CPU..Would full Presence features be available or only chat/ IM?  Has anyone had deployment experience with hybrid integration of  UCM apps on separate MCS hw and introducing Presence on VM platform ?  Client just purchased new MCS hw 2-yrs ago.  I'm assuming ISO file for Presence available for download without additional cost for actual media/ software; is that also true?

    As long as the HW is supported, there is no limitation on what you get out of the product.
    If they have verified their VM infrastructure complies to the Cisco requirements, and it does, whether the other apps are on MCS, UCS, 3rd party specs, etc. makes no difference at all.

  • Deploying a third-party portlet.

    I have downloaded and installed Oracle Application Server 10g, using the "Portal and Wireless" installation type. I have a J2EE web app, packaged as a JSR-168 compliant portlet in a WAR file, and I am floundering around trying to figure out how to deploy it to the sample portal that's running on OAS10g. I should also mention that my WAR file is deployed as a normal webapp to the same OAS10g server.
    I've pored over lots of docs, and I've found hints scattered here and there, but nowhere have I found the list of steps I need to follow. Can anyone refer me to the correct document, or provide some other clues? I'm about at my wit's end. I tried the administration screens in the sample portal, where I only enter the URL of the running webapp, but that didn't work.
    When I deployed this to the Pluto reference implementation server, the deployment process modified my web.xml file, adding a new servlet and mapping for a servlet that actually invokes my javax.portlet.GenericPortlet subclass, and I assume OAS10g's portal server would do something similar.
    If anyone can point me in the right direction, I would be enormously grateful.

    Hi David,
    The
    [url=http://www.oracle.com/technology/products/ias/por
    al/standards.html]WSRP and JSR 168 page on Portal
    Center is a good strating point.The rough steps you need to do:
    1) Download and install the
    [url=http://www.oracle.com/technology/products/ias/por
    al/files/portlet-container.zip]Java Portlet
    Container (JSR 168) on top of an OC4J.
    2) Deploy your portlet to portlet container. (Your
    portlets deployed to Oracle's Java Portlet Container
    are exposed automatically through WSRP).
    3) Register your WSRP producer with a WSRP compliant
    portal server (such as the
    [url=http://www.oracle.com/technology/software/product
    /ias/preview.html]Developer's Preview Portal,
    or the hosted WSRP compliant server on
    portalstandards
    oracle.com).
    Hope this helps - let us know if you have more
    questions.
    It was very helpful -- thanks very much -- and I do have questions. I was able to do step one without any glitches at all, per the instructions. For step two, I deployed my JSR-168 compliant portlet/webapp/warfile to the OC4J_WSRP instance I created in step one.
    So far so good. Then I try to register it to the sample portal running on the same OAS10g server, in an OC4J instance named OC4J_Portal. I still get cryptic error messages about the URL being invalid, even though I know it's not... I decide to check out the "Developer's Preview Portal". Oh no, not another 53mb download and another component to install. I get an idea... maybe I can install the portletapp in wsrp-samples.ear, and my WAR file (which I've now packaged into an EAR file) to the OC4J_Portal instance... So I undeploy them from OC4J_WSRP and stop that, configure the datasource in the instructions in the OC4J_Portal instance, deploy everything from the command line, and now when I try to hit the portal's opening page, at http://hostname/pls/portal, I get a stacktrace on my screen:
    <pre>
    500 Internal Server Error
    java.lang.NoSuchMethodError: oracle.webdb.utils.HTTPUtils.getCookie(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
         at oracle.webdb.page.PageBuilder.processPortalSessionCookie(Unknown Source)
    </pre>
    ... etc.
    Should I be able to deploy my portlet on the sample portal server that's automatically deployed on the OAS10 Portal and Wireless setup? Why does this have to be so complicated? It is (or was) a working portal server, and I have a JSR-168 compliant portlet. I don't understand why I can't just deploy it without having to pore through docs scattered throughout a dozen zip files scattered throughout a dozen web pages and installing all kinds of extra components. I thought the idea behind JSR-168 was to make this process uniform.
    Sorry about the rant, Peter, but this process is like a nightmare that I can't wakeup from. I'm a huge fan of Oracle products, but I'm getting really close to recommending to my employer that we buy Weblogic instead.

  • Query about integration of third party database with SCE

    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    Hi,
    We have SCE2020. We want to use the SCE for content filtering purpose.In this context,
    a. Can we integrate external database with SCA-BB? I saw on Cisco doc that it is possible to integrate Surfcontrol? But can any other database be integrated? If yes, can anyone please suggest some for us to explore whether those databases can serve our purpose? 
    b. If the external database can be used, then with which protocol database communicate with SCE/SCA-BB?
    If anyone has some suggestion, then please provide us.
    Thanks in advance.

    Hi,
    The Cisco CPA client runs on the SCE platform. It sends URL queries to the CPA server for categorization, and updates SCA BB with the categorization results.
    The CPA client is installed as part of the SCA BB application (PQI) installation.
    CPA client uses the Content Portal Authority (CPA) protocol from SurfControl, which is proprietary protocol I guess...
    Based on this, I'm not sure if some other database (besides SurfControl) can be used for dynamic URL checking...
    There is an option to use internal SCE URL database, and feed it periodically with categorized URL list using a script, but there is a limit of 100.000 URLs that internal SCE database can hold.
    Best regards,
    Jasmina

  • Doubt about third party process

    Hello SD Consultants.
    Recently i joined in a company...so here we implement third party process.. My colleague has implemented third party process.
    here he has done...va01...me21n...migo...miro and vfo1......but when i take coaching they dint say about migo in third party...so
    friends please help me..what is the relevance of migo here...we are not receiving any goods from  vendor...so whats the use...
    Thanking you

    Dear K. Ram
    MIGO - goods recipt, MIRO - invoice verification.
    Third party process sales order > PR > P.O  > MIRO > Invoice (delivery done by vendor to customer)
    Individual purchase order (IPO)   sales order > PR > P.O  > MIGO >  MIRO > Invoice (delivery done by vendor to company n then to customer).
    You are right concept wise. Ask ur friend or team leader and try to have a discussion on business process.
    Also check the Item category group  is BANS (Material master), Item category  TAS (Sales order)  for third party .
    If it is showing BANC, TAB. It is IPO as mentioned above and u have been disguised with business process explanation from your friend/ seniors or they din't understand the process.
    You can discuss n debate , also raise a point of reducing the master data by eliminating migo transaction in third party.
    This is what been taught to us too.
    Regards
    Pavan Kumar

  • Third-Party Order - Cost from PO incl. Freight into Sales Invoice

    Hello SD gurus,
    Had a question about drop shipments(Third Party Orders). At our company, the third-party order related PO sometimes has Freight/Customs conditions, but they do not come on to the VPRS(cost) condition on the corresponding Sales Invoice. What should I do to make them add up on VPRS?
    See sample PO conditions and history tabs below
    You can see the correct amount(including freight) shows up as cost of goods sold(in the accounting doc for its GR document) below
    But the VPRS line on the sales invoice only shows the GR amount, does not include freight/customs charges as seen below
    Is there any way I can get VPRS to include the Freight/Customs amounts as well. Please help me out....
    My third-party order copy control VTFA configuration for OR =>F2 for ItemCategory TAS, the billing quantity is currently set to F.
    Document Flow for our drop-ship orders is as follows: Creation of sales order triggers creation of a purchase requisition which in-turn gets converted into a PO. Once the GR happens on this Vendor PO the Goods Issue and Sales Invoice is triggered immediately. The Vendor IR comes last.
    Thanks and regards,
    Wayfarer

    Hello
    As per the standard Third party process, cost in the billing document will be picked from Invoice receipt of the vendor (MIRO).
    Basically here the cost determination happens from below three sources.
    1. MIRO (invoice receipt of Vendor)
    2.Goods receipts (MIGO )
    3.Purchase order
    Highest priority is given to the number 1. MIRO.
    In your both the cases, kindly check MIRO price & quantitiy.
    thank you
    Anirudh

  • Delivery Address changes in third Party Scenario

    Hi All,
    System is not allowing to make changes in delivery address (At PR/ PO Level) for Third party Scenario (Sales Order based).
    I had checked the Field Groups of PO/ PR Knowm to me and try to make delivery address field editable. but didnt get any success. Is it Possible to get the dellivery address field in change mode for third party Scenario. If yes, how?
    pls. Note: I'm not talking about the Manual third party order processing.
    Regards,
    S Anand

    Why dont you want to make a change at SO level?
    From OSS note 550192 - FAQ: Changing third-party and individual PO items
    Question: What do I have to consider when I change the ship-to party for the entire sales order or for a third-party item?
    Answer: In the third-party scenario, the ship-to party of the third-party item in the sales order is identical with the delivery address of the respective purchase order item. Up to and including Release 4.5, there is no automatic function for a synchronous change so that this must be done manually in both documents. As of Release 4.6, the system automatically updates the delivery addresses from the purchase order items if the ship-to party of the third-party item changes. The change of the delivery address in the purchase order is therefore no longer possible; thus the 'Delivery address' is only displayed in the display mode in the purchasing transaction.
    For additional information, refer to Note 204190.

  • How do you add a third party sensor to LabVIEW for Lego Mindstorms​?

    I recently purchased an IR Sensor from Mindsensors (DIST-Nx-Long-v3) which I need for a SLAM (Simultaneous Localization and Mapping Application) that I am developing using the LabVIEW for Lego Mindstorms software.  I installed the Mindsonsors IR Sensor, and it works under NXT-G and RobotC, but am having trouble finding a way to get LabVIEW for Lego Mindstorms to install the sensor.
    The Mindsensors website gives the following instructions for installing the IR Sensor:
    1.Unzip the folder mindsensors.com LVEE
    2.Open a blank vi in LVEE
    3.On the Block Diagram Go to Tools->Advanced->Edit Palette Set...
    Unfortunately, on the Block Diagram of the LabVIEW for Lego Mindstorms, there is no "Advanced->Edict Palette Set" under Tools.
    As an alternative, I consulted the documentation that came with LabVIEW for Lego Mindstorms.  The Schematic Editor of LabVIEW for Lego Mindstorms lists several sensors, i.e. the Lego Mindstorms sensors and several Hi-Teach (HT) sensors, but there are no procedures listed in the documentation for adding other third party sensors to the Functions Palette.
    So, how does one go about adding a third party sensor to LabVIEW for Lego Mindstorms?

    Hi Ethan,
    As you can see from my Word document, I am a little light on the proper terminology.  That's because LVLM comes with inadequate documentation.
    I have already followed your recommended protocol for installing a 3rd party sensor (in fact, its the protocol recommended by Mindsensors) with the application set in the Remote Mode (.lvrbt), and it does create a sub-palette with all the Mindsensors functions on it.  But when I drag the Mindsensors icon to the Block Diagram and select "Distance Sensor," the Distance Sensor (an IR sensor) doesn't work (even though the Mindsensor's Distance Sensor does work with NXT-G, RobotC and LVLM under other circumstances (see below)).
    If I repeat the above process with the application set in the Direct Mode (.vi), I also get the sub-palette with all the Mindsensors functions on it.  When I drag the Mindsensors icon to the Block Diagram and select "Distance Sensor," the Distance Sensor does work.
    What I need for my mapping application is for the Distance Sensor to work in the Remote Mode.  I called NI tech support and the first engineer told me to simple drag the Mindsensors Functions (.vi) onto the Block Diagram.  I did this, but when I selected the Distance Sensor, the icon appeared, but the sensor did not work.  Since I have no idea what's under the hood of the vi or a function, I assumed that simply dragging the vi/function onto the desktop didn't install the vi/function properly.  I went back to the Applications Engineer, and he confessed that he did not understand the LVLM product.
    My frustration is being punted to new people, none of whom so far (other than you, of course) understand LVLM.

  • Templates, third party

    Hi.
    I am totally new here.
    So it's a basic (prabably pretty simple).
    How do i go about using the third party DW templates with
    Dreamweaver?
    They are not handled as extensions (just a collection of
    .html and .jif files) are they?
    Should I open each every page in DW and then save it as a
    templte?
    Any sugestions?
    Thanks
    z

    DW templates have the extension *.dwt. If you don't have one
    of those
    files, you do not have a DW template.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "zfrid" <[email protected]> wrote in message
    news:eecqe3$qe$[email protected]..
    > Hi.
    >
    > I am totally new here.
    >
    > So it's a basic (prabably pretty simple).
    >
    > How do i go about using the third party DW templates
    with Dreamweaver?
    >
    > They are not handled as extensions (just a collection of
    .html and .jif
    > files) are they?
    >
    > Should I open each every page in DW and then save it as
    a templte?
    >
    > Any sugestions?
    >
    > Thanks
    >
    > z
    >

  • Why is it that I have to install a third party software to control my fan speeds when my iMac gets hot. Should't the system manage this. My iMac is over heating because of this. Is there a way to let me iMac manage the fans?

    I've read many posts talking about using a third party software to manage the fans in my iMac. Can the iMac not do this on its own?

    You don't have to do anything. The fans will run when the temperature gets hot enough to trigger them.
    My new 2012 iMac isn't like my older 2007 iMac in terms of fan noise. I knew when the 2007 fans were running, I could hear the sound of rushing air and under heavy load they were load. Because the new 2012 models are very different in construction I don't hear that typical sound. In fact, until I saw a teardown I wondered if it had fans. The fan sounds more like a hum and I just never associated it with being a fan. Yes, the top of the computer does get hot, I think part of Apple's design is to use the alumnium back as a heat sink.

  • HealthKit Compatibility of Third Party Products

    Hello,
    With iOS8 being released in two days I'm curious about support by third party products for the new HealthKit framework.  I've seen statements about Health app and HealthKit supporting standard bluetooth medical devices but I don't know what "standard" is (any LE BT 4.0?  specific bluetooth communication standards used by medical devices?).  I've also seen many references to support by third parties like WiThings but the context is never clear to me as to whether that's an example of the type of companies that could integration; that they've announced they WILL integrate; and/or whether that applies to future product releases or existing devices.  I'd like to pick up a few products to work with this new framework but right now I lack clarity as to which (if any) current devices will have this support.  I don't want to throw everything away in six months when the wave of actual HealthKit supporting devices come out (or natively supporting of the Health app versus having to keep using the menagerie of other apps to pass data back and forth through Health).
    Anyone have insight on who does or does not support this?  Is the an equivalent to MFI that is a HealthKit specific certification?
    Thanks!

    still technically an accurate response but doesn't get me where I'm hoping to go
    I've done some searching and didn't find anything but I'm appealing to the discussion forum in case anyone else knows of anything or has better search skills than I. 
    So, we've established that Apple doesn't have a big list, that's OK.  We all agree that manufacturers would probably have this data somewhere they control.  Here are some more specific questions that I hope clarify what I'm after:
    Is anyone aware of third party manufacturers that have stated HealthKit or Health app compatibility in their current product line?  (press release, statement on web site, have it on good authority, etc...)
    Does anyone know if Apple has claimed support for a specific BlueTooth protocol for their native support of BT medical devices in either HealthKit or Health app?  Looking for the possibility to just select any device that adheres to that specific BT protocol.
    Is there any certification that third party manufacturers have/will obtain for items that are compatible with HealthKit or Health app?  (a la MFI)
    Thanks!
    PS Meg: I hope this doesn't sound snarky, I appreciate you taking time to respond.

  • Cisco support for third-party apps on SRE?

    Hi - I am thinking about running some third-party unified communications apps under VMWare ESXi5 on a Cisco SRE 900 module.   According to the Cisco docs, third-party apps are supported on these modules (see table below) but the app in question is NOT on Cisco's list below.  
    http://www.cisco.com/en/US/prod/collateral/modules/ps10598/data_sheet_c78-553913.html
    Some questions:
    1.  As long as the third-party app is capable of running under VMWare/VSphere ESXi5, is there anything on the SRE that would prevent you from running this third-party app even though it's not on Cisco's list?
    2.  What is Cisco's policy on the use of third-party apps that are not on their list?    For example, will they take a support call on the SRE running a non-listed app (I am not expecting them to help me with the app but I don't want to void any sort of support contract through the use of a third-party app not on their list).
    Thanks !

    As long as 3rd party app is capable of running on ESXi 5 it would run on SRE hardware. Cisco doesn't prevent these apps from running even if they are competitive. From a support perspective Cisco TAC will not take any support calls for these applications nor would know how to redirect the call to these 3rd party partners. Cisco TAC will only support SRE and ESXi related issues.

  • Consignments and Third Party

    Hello,
      Could any one give me a pdf document which has detailed information about consignments and third party processing, I tried in help.sap, but did not have any luck, it would be great if someone can provide me pdf files..
    Thanks

    Hello Raj,
    In third-party order processing, your company does not deliver the items requested by a customer. Instead, you pass the order along to a third-party vendor who then ships the goods directly to the customer and bills you.
    In this scenario, the shipping notification received is entered as a dummy goods receipt in consumption. This allows you to create the customer invoice before the incoming invoice is received from the vendor.
    Check this link: <a href="http://help.sap.com/bp_blv1470/BL_US/index.htm">Best Practices</a> and navigate to Building block library-baseline package-third party w/wo Shipping notification for scenerios and building blocks to set-up the same in SAP.
    Also, check these links:
    http://help.sap.com/bestpractices/BBLibrary/Documentation/J54_BPP_EN_US.doc
    http://help.sap.com/bestpractices/BBLibrary/Documentation/J54_BB_ConfigGuide_EN_US.doc
    http://help.sap.com/bestpractices/BBLibrary/Documentation/J54_Scen_Overview_EN_US.ppt
    Regards
    Gauravjit.
    Reward points if the documents are helpful

Maybe you are looking for

  • I am interested in an iMac 20" but need help

    I was looking into getting a new computer because the PC i have is a bit old and a bit unstable. I checked out dell because i like to play games like WoW and HL2 and BF2 and that stuff. My question is would those games run well on the windows side of

  • Macbook Pro / iTunes / Airport Express MISERY!!

    Yes, life used to be good. I got a new Macbook Pro to replace my PB Ti, got all my CDs loaded, got an airport express, began streaming, YES, life was good. Always careful about software, used just mainsteam apps, repaired permissions, etc, always car

  • Optimal use of many resource

    Hi Folks My System: OS: linux OEL 5.2 x86_64 Memory: 112GB CPU: 4*6Core = 24Cores Filesystem: ASM 11.1.0.7 RDBMS: Oracle 11.1.0.7 Archivelogmode We have recently migrated an OLTP Database (~1.3TB) to this server above. It is a Single Instance DB and

  • Regarding Page Nos...

    Hello, I am a new user and I am creating a school magazine of 200 pages in Adobe Indesign CC .... I want to add page nos. to the bottom of each and evry page help me how to add automatic continous page nos.....in every pages...

  • Trouble with ACR loading

    Hi, Because PSE 11 suddenly stopped editing my images, and after exhausting other avenues, I uninstalled and re-installed the PSE 11 program.  The plug-in for ACR is version 7.1.  I have tried downloading the most recent, 8.3 but failed.  I then trie