WebTools Sync - Orders from Web Tools to B1

Hi everyone,
Hopefully this is a simple question...  What is the proper way to sync an Order from Web Tools to B1?  I have a few fields that I want to update and cannot find an object type to set it to that will sync for orders.  The sample says that you should use WebToolsUsers for BP's, but there is no WebToolsOrders for Orders.  What is the proper object type that I should use.
Thanks so much for your time!
Kristen

In 2007 you don't need to worry about getting the queue.  The synch takes care of this for you.
The WebToolsToB1() method will be called for every order in queue, you need to use the qData object passed in to get the data you need.
public override void WebToolsToB1(NetPoint.SynchSBO.framework.NPQueueObject qData) {
            if (qData.TranType == TransactionType.Add ||
                qData.TranType == TransactionType.Update) {
                NPOrder o = new NPOrder(Convert.ToInt32(qData.KeyFieldValues[0]), NPConn, NPSecurityTicket.PrivateKey);
                // your stuff

Similar Messages

  • Create Shipments from Web Tools

    Hello everyone,
    I am creating a shipment inside of Web Tools based on an order, however when it synchs over to B1, it does not link the delivery to the sales order.  I am using the latest patch for 2007.  Just curious how this was supposed to work.
    Thanks for your help!
    Kristen

    Hi Kristen,
    You should technically not be able to create a shipment in webtools. This is because the order needs a payment associated with it in SBO prior to being picked/shipped. Webtools has no GA account functionality, just display.
    I think that the functionality is there more for testing/demo purposes. Also for the possibility of running stand alone.
    James

  • Attaching a PDF document to an order from Web

    Hi,
    We have a requirement to attached a PDF document to an order in SAP from a web front end (its a custom web application written in cold fusion). We currently create orders from this web application which talks to SAP via XI. I know that using the "Services For Object" option in SAP GUI we can upload external document. Is there a BAPI that can be used to send the document from WEB to be added as an attachment on the order?
    Any response will be greatly appreciated.
    Thanks,
    Paresh

    Hi Tom,
    ArchiveLink is a service integrated in the SAP Web Application Server for linking archived documents and the application documents entered in the SAP system.
    Linking documents according to content guarantees long term easy access to the documents. From the screen of the application document, you can directly display the stored document that is associated with it. You can also use attributes to search for documents. This replaces time consuming processes such as making copies of originals, searching for procedure-related information, etc.
    There would definitely be content repository which will be connected to SAP through archivelink. Pls confirm the same with Basis.
    You can look at the customizing through
    IMG->SAP Web Application Server -> Basis Services -> ArchiveLink
    Also pls refer to:
    http://help.sap.com/saphelp_47x200/helpdata/en/16/56a539a908455de10000000a114084/frameset.htm
    Pls award if helpful.
    Reg
    Sachin

  • Syncing photos from Web Gallery

    I've been using my web gallery for the past year, and it has worked out great. Family from all over are able to view and upload pictures, which is perfect for me to "sync" and then make fun calendar's, books and slideshows out of. I recently created a new album of my cousin's wedding and have been able to sync just fine until the other day. Now, there are dotted outlines of new pictures in iPhoto, but not the pictures themselves....any ideas on how to fix this?
    Thanks,
    Kat

    Welcome to the Apple Discussions. That occurs when iPhoto loses the path to the original file. It can happen if there's an interruption while iPhoto is writing to the database file, Librry6.iPhoto, or if the user renames or moves files within the iPhoto Library package from the Finder.
    Try the three fixes below in order as needed:
    1 - launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select all options.
    2 - rebuild the library using iPhoto Library Manager as follows:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    1 -Download iPhoto Library Manager and launch.
    2 -Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    4 - In the next window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: It may take some time to create the new library if you have a lot of photos.
    3 - start over with a new library and import the Originals folder from your original library as follows:
    Creating a new library while preserving the Events from the original library.
    Move the existing library folder to the desktop.
    Open the library package like this.
    Launch iPhoto and, when asked, select the option to create a new library.
    Drag the Originals folder from the iPhoto Library on the desktop into the open Photo window
    This will create a new library with the same Events as the original library if you have the Finder checkbox unchecked in the Events preference pane.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Creating Sales Order from WEB Dynpro

    Background:
    My client has the requirement to front end SAP Sales Order Create with a WEB Dynpro screen.
    This WEB Dynpro screen is used to enter minimum data required to create a sales order, plus custom VBAP fields, (added to VBAP using append structure).
    I am using BAPI_SALESDOCU_CREATEFROMDATA2 to create the sales order.  All is working fine.
    New Requirement:
    Client now has an additional requirement to calculate Net Value (VBAK-NETWR and VBAP-NETWR) based on item conditions and a custom item field VBAP-ZZUSE.  I have all the data I need to calculate custom Net Value (VBAK-NETWR and VBAP-NETWR), however these fields are is not available in BAPI_SALESORDER_CREATEFROMDAT2, structure BAPISDH1 or structure BAPISDITM.
    Question:
    Does anyone have any suggestions?  I have searched for a different BAPI where NETWR is available, but can find none.  An option I am considering is to code a custom BAPI that uses RV_SAPES_DOCUMENT_UPDATE where both VBAK and VBAP are available, just to update NETWR.  This function is used during execution of VA01.
    Any other suggestions or ideas?

    Additional Information:
    My client is a services based client.
    For example a material represents a service (drilling) this material is priced at value per day.  Number of days is stored in VBAP as a custom field ZZUSE.  The requirement is to use existing condition and ZZUSE (number of days 1 - 99) to calculate Net Value and update VBAK-NETWR and VBAP-NETWR based on condition and ZZUSE. 
    I can not allow BAPI_SALESORDER_CREATEFROMDAT2 to calculate VBAK-NETWR and VBAP-NETWR based only on conditions.
    Does this clarify my requirement?  Do you have any suggestions?

  • Release Sales Order from web service

    Hi Team,
    I have been trying to use the relase action in the ManageSalesOrder web service to no avail.  Everytime I use the xml to SOAPUI to send the request with sales order id, it kicks back saying not authorized.
    I am using the ManageSalesOrder to do multiple other things through SOAPUI, this one seems to be the only stickler.
    1. I can create the sales order just fine.
    2. I can set the price of the item
    3. Various other things.
    Any thoughts would be greatly appreciated!!

    That was great insight and worked great!
    I am trying to take the released sales order all the way to invoice.
    Sales Order > Release >  Delivery Propsal > Release > Invoice Request
    Once I am at Invoice Request the status of my sales order (invoice) is "Processed" when it should be "To Be invoiced"
    I am not clear on this:
    When I am at Work Center : OutBound Logistics > Delivery Control: Delivery Proposal
    How and which web service do I use to "Post Goods Issue"(in the GUI when "Post Goods Issue" button is clicked it requires you to fill out "Actual Quantity").
    In this screen shot:
    the first item was create through the GUI use the Devlivery Propsal "Post Goods Issue" button.
    the second item was created throug ManageSalesOrder web service.
    Any feedback will be greatly appreciated!

  • Service Orders not displayed in Web Tools

    Hello everyone,
    We are creating Service Type Orders within B1 and they are syncing over to Web Tools just fine, however they are not displayed on the Order History page for the user.  Is that 'as designed'?  I know there is no traditional information that can be displayed about these, but was just curious how these should be viewed if at all within WebTools or if I should create custom development for this.  Any thoughts are greatly appreciated.  FYI, we are using Web Tools 2007 PL 01.
    Thanks,
    Kristen

    Hi Bryce,
    I am talking about orders of type 'Service' versus 'Item'.  So, it is just a Service Order, for a dollar amount to a G/L Account, rather than having a list of items.  These are shown in the Web Tools tables, but are not displayed to the user.  Just curious if they were designed to or not.  Please let me know if that makes sense.
    Thanks,
    Kristen

  • New inventory options for existing Web tools customers

    The free upgrade from Web tools to zed E-Commerce provides a number of new inventory display management options.  Web only warehouses, decrement onhand inventory count on order placement(pre-synchronization), and the ability to show or hide an item on the storefront based on stock status(stock status also customizable)  Check it out today!
    Link to Youtube video explaining new functionality:
    http://www.youtube.com/watch?v=k4I0zgKXswk

    Hi homerhotspur,
    Word of warning.  Make sure you get your deal confirmed in writing or by email.  I did a deal with the options team.  My bill was correct for the first month so I threw my call log away.  The second bill was wrong and BT deied any knowledge of the agreed deal.  It tokk quite some time and effort to get things sorted.  I am just hoping and praying that my May bill is correct otherwise it will be a bigger pain still sorting that out as BT will owe me money.  Is there such a thing as a reverse Direct Debit ?
    Best regards,
    dfenceman

  • Error Business Partner Synch - Web Tools 2007 PL 01

    Hello everyone,
    I recently upgraded to Web Tools 2007 PL 01 (from 2007 PL 00) and my business partners do not synch from Web Tools to B1.  I receive the following error:
    Object reference not set to an instance of an object.
       at NetPoint.SynchSBO.SBOObjects.SBOPartner.NetPointToSBO(NPQueueObject qData)
       at NetPoint.SynchSBO.SynchObjectBase.Synch()
    Anyone have any suggestions?  Everything else seems to be synching fine.
    Thanks for your assistance,
    Kristen

    Hi Kristen,
    This appears to be a bug.
    This thread may be helpful, if you haven't already read it.
    Problem synching B2C accounts

  • Web Tools Code missing under TABLES (Sync Manager)

    Hello Experts,
    I have recently did my testing on the Sbo_Demo Database.
    I felt it was time for me to graduate and move on to the real data.
    So i changed the database in SYNC manager to the one i would like to use.
    Once i did this i started setting up my B2C Business partner and everything else needed for a successful sync.
    i noticed an error stating PRX _ fields were missing. I figured i would start the procedure over using the document to successfuly uninstal any traces of WEBTOOLS.
    So i started up a fresh install of web tools all seemed to go fine i setup my database when i went to sync manager under tables my WEB TOOLS CODE COLUMN was missing, in short my PRX_Fields were never constructed. i followed the removal process step by step from the included documents section page 13 " Removing the application"
    Does anyone know what i am doing wrong? i thought the PRX files were created automattically with the webtools installer or sync manger
    neither seem to be doing so.
    Thank you very much for you time

    Hello Sebastiano,
    These columns are created by clicking "Install Plugin" on the first screen of the isynch manager. It is necessary to run this function every time you switch SBO databases. Also it is necessary to enter codes on the tables and click on the "Initialize Synch" button on the synchronization screen. This clears the webtools db of data from your previous SBO db. I believe this is covered in the installer guide.
    Good luck,
    James

  • HT1386 how do i sync photos from iphone to pc in order to delete them?

    how do i sync photos from iphone to pc in order to delete them?

    You import them as you would with any digital camera:
    iOS: Importing personal photos and videos from ... - Support - Apple

  • Create PDF from Web page using Acrobat X - Page Order

    I have a structured web site that is in fact Program Help The web pages are structured as follows:
    index.html - Main Topic Index page with links to all topic subject index pages
    topic/index.html - Topic Subject Index Page with links to all subject pages
    topic/subject.html - Subject page
    .....etc
    Using Acrobat 5 "Create PDF from Web Page" created a perfect logical PDF  page structure in the page order of of the web site. In Acrobat 5 page 1  was the Main Topic Index Page, page 2 was the 1st Topic Subject Index  Page, page 3 was the 1st Subject Page, then the 2nd subject of the 1st  Topic, etc. until the Topic Subjects were exhausted after which the 2nd  Topic Subject Index Page and so it went on. As a result the bookmark  structure was sensible. The page order was as follows:
    Main Topic Contents
    Topic 1 Contents
    Subject 1 of Topic 1
    Subject 2 of Topic 1
    Topic N Contents
    Subject 1 of Topic N
    Subject 2 of Topic N
    Acrobat X (just purchased) produces a differently structured PDF from the same HTML pages. The order is:
    Main Topic Contents
    Topic 1 Contents
    Topic 2 Contents
    Topic N Contents
    Main Topic Contents (a second time)
    Subject 1 of Topic 1
    Subject 2 of Topic 1
    Subject N of Topic 1
    Subject 1 of Topic 2
    Subject 2 of Topic 2
    Subject N of Topic N
    Question: Is there any way I can get back with Acrobat X the same page order I got with Acrobat 5?
    Any help appreciated. The website is www.caliach.com/caliach/vision/help/index.html
    Chris

    Acrobat is using the underlying mark up of the rendered HTML page.
    This may or may not provide an adequate input to Acrobat when it is noodling out how and what to tag.
    I suspect you may find that, to obtain an adequately tagged PDF, you may have to capture the web page content with the create bookmarks and create tags options off.
    Once you have the PDF make working copies.
    Try letting Acrobat tag this already created PDF to see what happens.
    You may have to manually tag the PDF.
    n.b., The default read order for western language can be altered by user selections in the accesibility setup or by selection in the PDF page(s) Page Properties.
    Be well...

  • OSM task web client buttons getting disabled on submitting orders from creation task

    Hi,
               I am relatively new to OSM. I am facing a strange issue. After installing OSM 7.2 in my local machine I have deployed bb_ocm_demo cartridge which comes along with the design studio as a sample cartridge. After deploying the cartridge, I have assigned user to the work group from osm admin and placed an order. After entering data in the creation task, as soon as I am submitting the order by pressing the submit button, all the buttons(including the submit and delete button) are going to disabled mode(characterized by their blurred appearance). Those are preview, full preview, Process History, Change State/Status, Save, Add Remark, Exception.
    The order is not getting submitted and is continuing to remain in the creation task only. From the worklist, it is visible that the order is still in the creation process in Not Started with the creation task in accepted state.
    I would like to add a few more information. I checked the server logs and found the below error:
    'weblogic.kernel.Default (self-tuning)'> <oms-internal> <> <0000KAGhR_C5i^WjLxrI8A1I^uCz000001> <1385407331809> <BEA-000000> <cache.GenericTransactionManagerLookup: Failed to perform a lookup for [java:/TransactionManager (JBoss, JRun4)]>
    I am not sure whether it is relevant or not. It is not that this message props up every time I submit an order from creation task.
    I would also like to mention that prior to installing osm, I have carried out the below installation.
    1. Oracle Database 11g R2
    2. Oracle Database Patch 14828076
    3. Opatch 6880880
    4. ODAC 11.2 Release 4 (11.2.0.3.0) with Oracle Developer Tools for Visual Studio.
    5. jdk-6u37
    6. Oracle WebLogic Server 10.3.6
    7. Oracle ADF 11.1.1.5.0
    8. Oracle Enterprise Pack for Eclipse(12.1.1.1.0) (Design Studio)
    9. JBoss-Cache 1.4.1.SP12
    10. Saxon 9-1-0-7
    As a pre-requisite to OSM installation I have granted connect privileges to system with admin option, execute on SYS.dbms_lock to system with grant option, select on SYS.v_$parameter to system with grant option and select on SYS.dba_tablespaces to system with grant option.
    I don't have any clue how this issue is coming up. Any sort of help will be highly appreciated.
    Regards

    Pantelis;
    Are you using the same user-id in both the OM client and the Task client?
    Are all orders in question of the same order type?
    In the Task client, did you select one row per order or one row per task?
    I would be surprised if this had anything to do with it, but is this behaviour only exhibiting in the 2 node cluster or does it happen even when only 1 node is up and running?
    Brian.

  • HT4061 How do I keep photos in alpha-numerical order when syncing them from my laptop?

    How do I keep photos in alpha-numerical order when syncing them from my laptop?

    Read this: http://support.apple.com/kb/HT4221

  • Why is that in itunes my playlist is in order from the recently added to oldest but when it syncs into my ipod , it doesnt arrange it that way. its in artist order

    why is that in itunes my playlist is in order from the recently added to oldest but when it syncs into my ipod , it doesnt arrange it that way. its in artist order

    That does happen.  It depends on how hard the server is being hit, as well as the connection speed of your system.  If you are on a windows system, you will want to disable any antivirus or firewall software during the download.

Maybe you are looking for

  • Useing Excel table genarate the report in bi publisher 11g

    Hi All, Can anyone share your ideas pls... Using Excel files we upload the data into data set excel but could't generate the reports in Bi-Publisher 11g...we are getting the error :"Null". We are using open office...is this could be a problem..? Rgds

  • I need a case that fits with iPhone 4 and bumper

    Does anyone know of any cheaper cases that fit on a iPhone 4 that is fitted with a bumper case?

  • I just upgraded to the latest itunes -cant make AIFF's

    Hi, evidently, I  mistakenly upgraded to the latest version of itunes.  On version 10, I had "convert to AIFF' under the "Advanced" drop down menu.  That doesn't seem to be available on the new itunes.  Is there something I'm missing?  Did they disco

  • Why can't I email iphone 5 videos from my mac?  They show up black

    After I import videos from my iphone 5 (OS 7.1.2 - but I've had this problem through multiple operating systems), I sometimes want to email them from my MacBook Pro (OS X Lion 10.7.5).  No matter what email program I use, (gmail/mac mail), the attach

  • Why is memory being drained

    Hi There, Can anyone tell me why all my RAM is draining away? I have tried the usual tools - repairing disk permissions, restoring from a recovery disk and finally a complete zap of the entire system and a reinstall of all my apps/data. I have tried