Major crawler issues - removal of trailing slashes from URLs and (seemingly) poor regex implementation

I've been suffering from two issues when setting up a crawl of an intranet website hosted on a proprietary web CMS using SharePoint 2010 Search. The issues are:
1: The crawler appears to remove trailing slashes from the end of URLs.
In other words, it turns http://mysite.local/path/to/page/ into http://mysite.local/path/to/page. The CMS can cope with this as it automatically forwards requests for http://mysite.local/path/to/page to http://mysite.local/path/to/page/ -
but every time it does this it generates a warning in the crawl - one of the "URL was permanently moved" warnings. The URL hasn't been moved, though, the crawler has just failed to record it properly. I've seen a few posts about this in various places,
all of which seem to end without resolution, which is particularly disappointing given that URLs in this format (with a trailing slash) are pretty common. (Microsoft's own main website has a few in links on its homepage - http://www.microsoft.com/en-gb/mobile/
for instance).
The upshot of this is that a crawl of the site, which has about 50,000 pages, is generating upwards of 250,000 warnings in the index, all apparently for no reason other than the crawler changes the address of all the pages it crawls? Is there a fix for this?
2: The Regex implementation for crawl rules does not allow you to escape a question mark
... despite what it says
here: I've tried and tested escaping a question mark in a url pattern by surrounding it in square brackets in the regex, i.e.: [?] but regardless of doing so, any URL with a question mark in just falls right through the rule. As soon as you remove the 'escaped'
(i.e. seemingly not actually escaped at all) question mark from the rule, and from the test URL pattern, the rule catches, so it'd definitely not escaping it properly using the square brackets. The more typical regex escape pattern (a backslash before the
character in question) doesn't seem to work, either. Plus neither the official documentation on regex patterns I've been able to find, nor the book I've got about SP2010 search, mention escaping characters in SP2010 crawl rule regexes at all. Could it be that
MS have released a regex implementation for matching URL patterns that doesn't account for the fact that ? is a special character in both regex and in URLs?
Now I could just be missing something obvious and would be delighted to be made to look stupid by someone giving me an easy answer that I've missed, but after banging my head against this for a couple of days, I really am coming to the conclusion that Microsoft
have released a regex implementation for a crawler that doesn't work with URL patterns that contain a question mark. If this is indeed the case, then that's pretty bad, isn't it? And we ought to expect a patch of some sort? I believe MS are supporting SP2010
until 2020? (I'd imagine these issues are fixed in 2013 Search, but my client won't be upgrading to that for at least another year or two, if at all).
Both these issues mean that the crawl of my client's website is taking much longer, and generating much more data, than necessary. (I haven't actually managed to get to the end of a full crawl yet because of it... I left one running overnight and I just
hope it has got to the end. Plus the size of the crawl db was 11GB and counting, most of that data being pointless warnings that the crawler appeared to be generating itself because it wasn't recording URLs properly). This generation of pointless mess
is also going to make the index MUCH harder to maintain. 
I'm more familiar with maintaining crawls in Google systems which have much better regex implementations - indeed (again, after two days of banging my head against this) I'd almost think that the regex implementation in 2010 search crawl rules was cobbled
together at the last minute just because the Google Search Appliance has one. If so (and if I genuinely haven't missed something obvious - which I really hope I have) I'd say it wasn't worth Microsoft bothering because the one they have released appears to
be entirely unfit for purpose?
I'm sure I'm not the first person to struggle with these problems and I hope there's an answer out there somewhere (that isn't just "upgrade to 2013")?
I should also point out that my client is an organisation with over 3000 staff, so heaven knows how much they are paying MS for their Enterprise Agreement. Plus I pay MS over a grand a year in MSDN sub fees etc, so (unless I'm just being a numpty) I would
expect a higher standard of product than the one I'm having to wrestle with at the moment.

Hi David,
as i know in sharepoint 2010 crawl there is a rule to include or exclude the URL that using '?' characters, if i may know have you implemented the rule?
In the Crawl Configuration section, select one of the following options:
Exclude all items in this path. Select this option if you want to exclude all items in the specified path from crawls. If you select this option, you can refine the exclusion by selecting the following:
Exclude complex URLs (URLs that contain question marks (?)). Select this option if you want to exclude URLs that contain parameters that use the question mark (?) notation.
Include all items in this path. Select this option if you want all items in the path to be crawled. If you select this option, you can further refine the inclusion by selecting any combination of the following:
Follow links on the URL without crawling the URL itself. Select this option if you want to crawl links contained within the URL, but not the starting URL itself.
Crawl complex URLs (URLs that contain a question mark (?)). Select this option if you want to crawl URLs that contain parameters that use the question mark (?) notation.
Crawl SharePoint content as HTTP pages. Normally, SharePoint sites are crawled by using a special protocol. Select this option if you want SharePoint sites to be crawled as HTTP pages instead. When the content is crawled by using the HTTP
protocol, item permissions are not stored.
for the trailing slash issue, may i have your latest cumulative update or your sharepoint database number? as i remember there was a fix on SP1 + june update regarding trailing slash, but not quite sure if the symptoms are the same with your environment.
Sharepoint may use sharepoint connector regarding regex, but older regex may not able to have a capability to filter out the parameters so, a modification regarding the trailing slash may happend.
please let us know your feedback.
Regards,
Aries
Microsoft Online Community Support
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.

Similar Messages

  • Remove the trailing slash from a folder

    Hi everyone,
    My company has several remote sites that rely on documentation I write here at WHQ in order to deploy macs according to company standards. Since these documents are in constant update mode, I wrote a small droplet that I use to just drop the documentation folder on and copy it to the remote site servers overwriting any existing documentation folder.
    I have the following piece of code:
    if CHIError is not equal to "" then
    display alert CHIError giving up after 5
    else
    repeat with anItem in droppedItems
    if ((kind of (info for anItem)) = "Folder") then
    set anItem to quoted form of POSIX path of anItem
    do shell script "cp -rf " & anItem & space & "/Volumes/MacPackaging$/MacDocumentation/"
    else
    set anItem to quoted form of POSIX path of anItem
    do shell script "cp -f " & anItem & space & "/Volumes/MacPackaging$/MacDocumentation/"
    end if
    end repeat
    end if
    The problem I am running into is that when anItem is a folder and converted to a POSIX path, it ends up with a trailing slash, causing cp -r to copy only the contents of the folder and not the folder itself... Is there a way to remove the trailing slash or another conversion method I can use to copy the entire folder?
    If I take out the if statement to check for a folder and the -r flag on cp, cp errors out telling me that anItem is a directory and can't be copied, which is to be expected. Ah... how I wish bash could do droplets...

    By the way, since the “info for” command is now deprecated, you could as well write your repeat block as follows:
    *repeat with anItem in droppedItems*
    *   if last character of (anItem as text) is ":" then*
    *      set anItem to quoted form of text 1 through -2 of POSIX path of anItem*
    *      do shell script "cp -rf " & anItem & space & "/Volumes/MacPackaging$/MacDocumentation/"*
       else
    *      set anItem to quoted form of POSIX path of anItem*
    *      do shell script "cp -f " & anItem & space & "/Volumes/MacPackaging$/MacDocumentation/"*
    *   end if*
    *end repeat*
    On the other hand, if you would like to use pure AppleScript, you could also replace the whole repeat block with the following single line of code:
    *tell application "Finder" to duplicate droppedItems to POSIX file "/Volumes/MacPackaging$/MacDocumentation/" with replacing*

  • [svn:fx-trunk] 11376: Remove external image support from BitmapImage and BitmapFill.

    Revision: 11376
    Author:   [email protected]
    Date:     2009-11-02 11:39:44 -0800 (Mon, 02 Nov 2009)
    Log Message:
    Remove external image support from BitmapImage and BitmapFill.
    QE notes: none
    Doc notes: ASDoc updated. Any other docs that mention loading external images in BitmapImage, BitmapFill, or Border need to be updated.
    Bugs: none
    Reviewer: Jason
    Tests run: checkintests, cyclone
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/BitmapFill.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Border.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/BitmapImage.as

    That PKGBUILD doesn't work, primarily because _svnmod is not set correctly.  The remaining problems are mostly down to not being in the $srcdir directory when checking out the ImageMagick source.  It's also good practice to copy the source and do the build in the copy.  That way, it will be possible to successfully update the source and rebuild the package at a later date.  Otherwise, the PKGBUILD certainly works with the following modifications but I've no idea whether the package is viable because I didn't try installing and testing it.
    _svntrunk=https://www.imagemagick.org/subversion/ImageMagick/trunk
    _svnmod=ImageMagick
    build() {
    cd ${srcdir}
    if [ -d $_svnmod/.svn ]; then
    cd $_svnmod
    svn up
    else
    svn co $_svntrunk $_svnmod
    fi
    rm -r ${srcdir}/${_svnmod}-build
    cp -r ${srcdir}/${_svnmod} ${srcdir}/${_svnmod}-build
    cd ${srcdir}/${_svnmod}-build
    if [ "${CARCH}" = "x86_64" ]; then
    patch -Np1 < ../libpng_mmx_patch_x86_64.patch || return 1
    fi
    Etc., etc.
    Last edited by azleifel (2010-04-11 22:15:09)

  • Accidentally switched off iMac at mains. Now only goes to grey sceen when switched on. Have removed all USB's from ports and cable from screen rear but still grey screen. What next?

    Accidentally switched off iMac at mains. Now only goes to grey sceen when switched on. Have removed all USB's from ports and cable from screen rear but still grey screen. What next?

    I would reset the PRAM
    http://support.apple.com/kb/HT1379
    or
    I would try and reset the SMC
    http://support.apple.com/kb/ht3964

  • Issue removing a site collection from Sharepoint Online

    A sharepoint site owner deleted their site by going to site settings delete this site.  This didn't remove the site collection from the Sharepoint Online admin portal in Office 365.  When I attempt to delete here I get the following error "
    Sorry, something went wrong
    There is no site in the current site subscription matching the HiddenSiteSelection control's value.
    I've tried running using Powershell commands to delete the site and I get an error.  
    What do I need to do to remove the site from the admin portal.
    Thanks

    HI,i would recommend  run the PowerShell cmdlet to check if this website exists. Here are the detailed steps:
    1. Set up the SharePoint Online Management Shell Windows PowerShell environment
    http://technet.microsoft.com/en-us/library/fp161372.aspx
    2. Run the command Get-SPOSite, it will return all site collections.
    3. Check if the problematic public site collection is shown in the result. If it shows up, run another command to remove it. For example:
    Remove-SPOSite -Identity https://expertsharepoint/sites/site1 -NoWait
    This will remove the site collection named https://expertsharepoint/sites/site1 from the site collections list and moves it to the Recycle Bin.
    4. Delete the site from the Recycle Bin:
    Remove-SPODeletedSite -Identity https://expertsharepoint/sites/site1
    Anil Avula[MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • How can i remove my phone number from imessage and just use email address ?

    Hi all
    I've searched all the forums and still can't find an answer for what i need (what i think i need!)
    I have an iphone without a data plan so whenever anybody who is registered with imessage sends me a message i will not
    receive it until i am back on wifi.
    What i want to achieve is to be able to receive sms messages from imessage users when i am not on wifi and then imessages when i am back on wifi.
    My assumption is that if i can unlink my mobile number from iMessage and only have it associated with my email address that this should work, but i cannot seem to remove my phone number from imessage, in the settings > iMessage > send and receive it will allow me to un-tick the associated email addresses but my phone number is greyed out and will not allow me to untick.
    On my home Mac i can go into messages app and deselect the phone number but not on the iphone.
    One solution says to deregister my phone on https://supportprofile.apple.com/ which i have tried (i can't see how that would work anyhow as there is no phone number in that registration)
    Any advice would be greatly appreciated,
    thanks, Andy

    Regardless if using your cell phone number or your Apple ID email address, iMessage requires an internet connection via an available wi-fi network or via your carrier's cellular network. Without a data plan and no internet access with your carrier's cellular network, an iMessage addressed to your email address can be received only when your iPhone is connected to an available wi-fi network no different when an iMessage is addressed to your cell phone number.
    You cannot deselect or remove your cell phone number below you can be reached by iMessage at with iMessage on an activated iPhone. The iPhone's phone number is activated along with your Apple ID.

  • How do I remove my card details from payment and make it none again

    need to find out how to remove my bank card from payment info and make it none again

    On a Mac or PC, iTunes>Store>click your name in the toolbar and select 'Account Info' (in older iTunes click 'Account' in the links on the right). Presumably the iOS version is similar.
    Sign in. Click 'Edit' to the right of 'Payment information. You will see various credit card types listed, plus there should be a 'None' button. Click that then 'Done' at the bottom right.
    There have been reports that some people have been unable to carry this out. In that case probably only Support can help you. Go to https://getsupport.apple.com . Click 'See all products and services', then ' 'iTunes', and then 'iTunes Store', then 'Purchases, Billing & Redemption', then 'iTunes Store account billing'.

  • Removing adobe reader icon from excell and outlook

    How can I permanently remove the adobe reader V9 icon from Excel and Outlook? I used toolbar customize to delete the icons but they come back when I restart the programs.

    Sorry, your question is not clear.  Can you give us the exact wording (or a screenshot) of that notification?
    What is your operating system?

  • Diffference between reading from URL and reading using Sockets

    Hi,
    For my AJAX call, if the URL is out side my domain, then I am not able to get the js and css for that url.
    what can be the other approaches to resolve this issue?
    again, what is the difference between reading from URL / reading from a socket connection?
    Does AJAX call through socket solve my problem??
    Your input is appreciated.
    Thank you,
    Regards,
    Chintan

    Converting Between a Filename Path and a URL
    Copying One File to Another

  • Read file from URL and save to FTP

    Hi,
    I have worked in java few years back, now I am out of touch. My friend asked me to create an applet program for him which he can use to download a file from remote location to his ftp server.
    For e.g.
    File
    http://www.demo.com/filename.avi
    Saved to
    ftp://username:password@ftpsite_address/foldername
    I was searching for the classes which I can use to achieve this functionality.
    To save to FTP
    URL url = new URL("ftp://username:[email protected]/folder/filename");
    URLConnection urlconnection = url.openConnection();
    long l = urlconnection.getContentLength();
    OutputStream outputstream = null;
    outputstream = urlconnection.getOutputStream();Using the above code I can get the outputstream to which I can write.
    I am now stuck here, have some doubts.
    What all classes should I use to read a file like
    http://www.demo.com/filename.avi
    I know I can use URL to open connection to URLS and then streams to read the url.
    I am interested in knowing the class which I should use to read any type of file. File can be zip/avi/rar or anything else.
    What all method of the class should I use to read the file which will support all type of files.
    Which classes should I use to write the files. The files are going to be huge in terms of size.
    I have searched everywhere but every place different classes are used.
    Any help is appreciated.

    Ok now I have started coding but facing a problem.
    [PHP]try {
         URL url = new URL("http://url_to_file/test.txt");
         URLConnection urlconnection = url.openConnection();
         long l = urlconnection.getContentLength();
         fTextArea.append("Content Length = " + l);
         BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
         String line;
         while ((line = in.readLine()) != null)
              fTextArea.append("\n"+line);
         in.close();
    } catch (Exception e) {
    fTextArea.append(e);
    return;
    [PHP]
    When I run this code locally it works fine but when run in browser it shows security exception
    java.security.AccessControlException: access denied (java.net.SocketPermission site:80 connect,resolve)
    What should I do to resolve this error. Sorry for being such a noob but do not have much info about this.

  • How can I fully remove MyStart by IncrediBar from Firefox and my computer?

    I have no idea how MyStart by IncrediBar got on to my computer. Initially, it hijacked my browser, where upon opening Firefox (8.01) it re-directed my homepage to a MyStart search page. I have never intentionally allowed MyStart, IncrediBar, or IncrediMail into my system.
    Using the Control Panel (Vista Home Premium – 64-bit), I uninstalled the program. Then, I went into Firefox Options and disallowed and/or deleted all references to these programs. I also reset my homepage to where I had previously set it to be. I tried to do a System Restore twice, but each time it failed, returning a message indicating that “An unspecified error occurred during System Restore.” I did a complete system scan with Norton 360, which turned up nothing.
    Now, my homepage opens to my desired site and MyStart no longer shows up as a search engine choice in the upper-right search box, but when opening Firefox, a second tab immediately opens with the MyStart search page and the url “http://mystart.incredibar.com/?a=6Oyn8n6bDE&i=26.” I also have Internet Explorer 9 on my pc. I was able to completely remove MyStart from that browser. I have searched the Firefox Help website and applied all suggested tactics noted there (including the suggestion from kevinsenjaya regarding about:config), but still have the problem.
    I would appreciate guidance on two items: (1) Should I be concerned that my computer is no longer secure because of MyStart and (2) How do I prevent MyStart from automatically opening each time I open Firefox?
    Thanks for your help.
    Don

    *Open the <b>about:config</b> page via the location bar and do a search for <i>mystart</i> via the Filter at the top of the about:config page.<br />
    *Reset all <i>mystart</i> related prefs that appear bold (user set) via the right-click context menu to their default values.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold (user set).
    *Preferences can be reset to the default via the right-click context menu if they are user set
    *Preferences can be changed via the right-click context menu: Modify (String or Integer) or Toggle (Boolean)
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • How can I remove all my bookmarks from iCloud and start a fresh with only the ones on my iMac

    I accidentally deleted bookmark gilders on my iPad 4 and iCloud removed them from my iMac, iPhone 5, iPhone 4, iPad 2 and MacBook Pro. I turned off Safari on all devices for syncing with iCloud and used Time Machine to restore my Bookmarks.plist on my iMac, but iCloud keeps removing it and replacing the plist with the latest version. I want to remove all the Safari a bookmarks from iCloud, but don't know how to do this, can anyone help.

    Just a note about the difference between these two things:
    * "export" and "import" use an ancient HTML document format that all browsers can understand. When you import bookmarks, Firefox may place them into an Imported Bookmarks folder, or into Unsorted Bookmarks. This does not displace existing bookmarks, and Firefox does not automatically remove duplicates.
    * "backup" and "restore" use a more comprehensive JSON data file, which contains extra information about your bookmarks (such as tags) not contained in the traditional export file. HOWEVER, a restore completely replaces all existing bookmarks, so the restore feature cannot be used to merge in a set of additional bookmarks.
    Related support articles:
    * [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]]
    * [[Import Bookmarks from a HTML file]]
    * [[Restore bookmarks from backup or move them to another computer]]
    Some users find the disk-based Windows Favorites folder a convenient way to organize bookmarks. If you do, too, and you do not need to preserve tags on your bookmarks, you could export each profile's bookmarks to HTML and import them all into IE11. Organize them in the Windows Favorites folder, then export from IE11 to HTML and import that file into each Firefox profile. See: [http://windows.microsoft.com/en-us/internet-explorer/add-view-organize-favorites].

  • Why Apple is silent about 4s wifi getting greyed out and not responding to this issue? many ppl suffer from this and this is absurd!

    Why Apple is silent about iPhone 4s wifi getting greyed out with iOS updates 8.0.2 and 8.1 and did not respond to this issue officially? Many people are suffering from this affected service. How can you trust us to buy new iPhones when you stop supporting us with the ones we have since they are still upgradable to the latest iOS.
    Is there any chance that we will be given the support and would this issue be fixed with any upcoming updates? My iPhone when its battery is drained totally and I start it again the WIFI works until I try to choose another network or somehow I disable it then blackout!
    This is definitely a software issue that we never had problems before this update.
    Show us that you care for your products at least and provide us with a solution please.

    nartal wrote:
    That doesn't help at all.. I can only have it enabled if the battery gets drained out totally then when I restart it the WIF is on. then back greyed out.. that is not a serious reply, really!
    Yes, it's a serious reply. Did you actually read the information at the link I posted? Especially the last sentence? The fact that it appeared when you updated to iOS 8 has no bearing on the validity of the article. It is not specific to any version.

  • Reader XI: Removing Tools|Sign|Comment from Menu and Toolbar

    Has anyone been able to accomplish this? This is a rather annoying 'feature' of Reader XI

    Guys, when you ask Adobe to be consistent and to allow easy removing of these items in the same way as toolbar items... You seem to overlook simple fact that "Tools" is in fact spam which is advertising Adobe's paid services, so obviously it's seen as revenue center. Gotta love sincere amusement of Adobe representative who probably really believes that this spam has value.
    To Adobe rep: the users are never going to use these features simply because they don't expect this functionality from Adobe Reader. Adobe is not alone in this - many large software vendors make an effort to make their product the center of customer's universe, so they stuff it with all kinds of "value-added" junk. That's how Windows Media Player becomes a monster where the modest objective of playing video file is hard to find in the pile of libraries, catalogs, online stores and everything else. Makers of Winamp follow the suit by spending time of their developers on "library". You want to download driver for your printer, and this is 200MB "suite" with 20 constantly running applications that among other things check health of your computer and of course deliver oh so valuable "offers". It's not an overstatement to say that all these components are in fact spam and viruses - they are unsolicited software that finds its way onto user's computer without his consent, and it pursues commercial goal, so it fits the definition 100%. Ironically, the users are so concerned about "protecting" their computers from viruses that they buy commercial antivirus, while their system tray is already occupied by 50 "legitimate" "value-added" titles that bring their system to its knees. If those are not viruses, then what is. So, guess what, "Tools" in Reader is pretty much the same stuff, designed and created by the same spamming hands.
    Your company would do so much better if you focused the efforts of your developers on the functionality your users really want - which is very easy to find on these very forums (and it's not anything even remotely close to the "Tools") - rather than listened to your "marketing team" , aka your own professionals spammers, who have no computing culture, so they recommend all this junk and convince your management that "it will sell". Did your company ever look at the sales generated by these features? compared them to the cost of their development?
    Adobe Reader is very good product, and users like it - however they like it for very specific narrow purpose, and the fact that they like it does not mean that they are going to use it for other purposes - same as however you like your own car, you probably aren't thinking about using it for cooking your dinner. Would you appreciate if your car acquired a microwave occupying 1/3 of your dashboard? that's about how the users feel about your Tools.

  • How do remove my phone number from imessage and only use email?

    I do not have a data plan on my iphone so i cant use imesssage when not in wifi. so in order for me to be able to be apart of my friends group messages without having to turn imesssage on and off i need to only use my email address, but it will not let me send and recieve messages from only my email.

    Regardless if using your cell phone number or your Apple ID email address, iMessage requires an internet connection via an available wi-fi network or via your carrier's cellular network. Without a data plan and no internet access with your carrier's cellular network, an iMessage addressed to your email address can be received only when your iPhone is connected to an available wi-fi network no different when an iMessage is addressed to your cell phone number.
    You cannot deselect or remove your cell phone number below you can be reached by iMessage at with iMessage on an activated iPhone. The iPhone's phone number is activated along with your Apple ID.

Maybe you are looking for

  • After Effects CS5.5 - Poor performance

    The tech info: After Effects 5.5 Version 10.5.1.2 Windows 7 x64 SP1 The problem persists when no video is present No error messages are being shown Atempting to "Play" in preview or attempting to "Ram Preview" will show the larges problems, seeking i

  • How to hide the Condition types in item condition screen in Sales Order ?

    Hi Experts, We got new requirement from the Client. Pricing Condition types  are ZZBG, ZPBG, ZPBA, ZFSG, ZBDG and ZBHG part in Pricing Procedure. These condition types have Condition records. These need to be hidden in Item conditions screen in Sales

  • Running Total does not reset when group changes

    I have a manual running total for group3 that does not reset for group2 Group2 Header (Order Status 3=Open,4=Closed) WhilePrintingRecords; currencyVar WIP=0; Group3 footer (Order Number) WhilePrintingRecords; currencyVar  WIP; WIP := WIP + {@NETWIP}

  • Deleted purchased item by mistake, can I download again?

    Hi, I bought the entire series of Heroes, so basically they all download as soon as they are available. After some moves of my libraries, the file for the latest download looks as if it has been deleted.... ...does anyone know if you can download (ag

  • If it's possible to inactive material's batch function

    Hi Friends, Is there any way to inactive material's batch attribute temporarily? Here is my purpose. I am trying to print out physical inventory count sheet without batch display. Since it seems impossible not to show the batches on the sheet once th