Find answers. Get support. Join conversations.
Latest stories
Säljchefens guide till smartare försäljning
I denna webcast på 30 minuter pratar Jerry Månsson, Performance Coach på Adviser Partner och Mathias Sognefors, VD på SuperOffice Sverige om hur man leder ett säljteam som levererar, utan att jaga fler leads eller pressa säljarna hårdare? Du får ett beprövat ramverk baserat på 10 nyckelfrågor som de mest framgångsrika säljcheferna använder för att skapa fokus, träffsäkerhet och tillväxt.
02/16/2026
Product Roundup 2025 | Highlights Across Marketing, Sales, Service & Integrations.
In this Product Roundup, Product Managers from Marketing, Sales, Service, and Integrations walk through key highlights from 2025 and share what they’re focusing on now. For more details and related links, see the Community article: https://community.superoffice.com/en/product-releases/whats-new/product/product-roundup---2025-highlights/
02/12/2026Product Roundup 2025: Highlights across Marketing, Sales, Service & Integrations
Watch the webinar for an overview of key highlights from 2025 and current focus areas across the product.
02/10/2026
Sneller innoveren tijdens groei: Hoe doet Fruity Line dat?
Wat gebeurt er als een snelgroeiend foodbedrijf wordt overspoeld met klantvragen, klachten en duurzaamheidsverzoeken? In deze video vertelt Fruity Line hoe groei zorgde voor meer werkdruk, minder overzicht en versnipperde klantinformatie en hoe ze dat wisten om te buigen naar betere service, meer rust én snellere productinnovatie. Meer weten over deze case? Check https://www.superoffice.nl/referenties/groot--en-detailhandel/fruity-line/ #superoffice #Fruityline #crm #innovatie
01/07/2026Dashboard improvements
Get ready for some smarter insights with these crucial dashboard improvements!
12/02/2025Latest forum posts
-
Frode BerntsenStaff
How to enable EventLog logging for Replication The Replication Client is configured to log to the Windows Event Viewer *by default* when running on a Windows operating system. Here is how it works and how you can further configure it: Where to find the logs By default, the client writes logs to: *Event Viewer* -> *Windows Logs* -> Application The *Source* will typically be `SuperOffice Replication Client` (or `.NET Runtime` for low-level crash events). This is especially useful when you have installed the client as a background service using the `Replication.Client.exe install` command. How to configure log levels (Verbosity) You can control what gets logged to the Event Viewer by modifying the `Logging` section in your `appsettings.json` file. To specifically configure the Event Log separately from the Console output, you can add an `EventLog` section like this: { "Logging": { "EventLog": { "LogLevel": { "Default": "Information", "Microsoft": "Warning", "Microsoft.Hosting.Lifetime": "Information" } }, "LogLevel": { "Default": "Information" } }, "ReplicationClient": { // ... rest of your config } } Default: "Information": Logs general progress, start/stop events, and errors. Default: "Warning": Only logs warnings, errors, and critical failures (good for reducing noise).
12 h, 37 m ago | 09:37 AM -
Hey, I am trying to generate quote/order confirmation documents using CRMScript. I just can't seem to format the dates correctly. A code snippet of the document generation: NSQuotePublishDocuments saveQuoteDocs(Integer quoteVersionId, Bool isOrderConfirmation){ NSQuoteAgent qa; DateTime timeNow = getCurrentDateTime(); DateTime expiryDate = getCurrentDateTime().addDay(expiryDateDays); DateTime followupDate = getCurrentDateTime().addDay(followUpDateDays); followupDate.addHour(followUpDateHours); NSQuoteEntity qEntity = qa.GetQuoteEntityFromSaleId(ed.getInputValue("ActiveSaleId").toInteger()); qEntity.SetPreferredEmailCulture(quoteCulture); qa.SaveQuoteEntity(qEntity); NSQuotePublishDocuments docs; if(isOrderConfirmation) { docs = qa.GenerateQuoteDocuments(quoteVersionId, orderTemplateEmailId, true, getOrderDocTmplId(), true, orderSubjectTextEmail); } else { qa.SendQuoteVersion(quoteVersionId, expiryDate, followupDate, followUpText, quoteCulture); docs = qa.GenerateQuoteDocuments(quoteVersionId, quoteTemplateEmailId, true, getQuoteDocTmplId(), true, quoteSubjectTextEmail); } return docs; } If saveQuoteDocs should generate an orderconfirmation, the following line has also been executed: qAgent.PlaceOrder(qAlternative.GetQuoteAlternativeId(), markAsSold, poNum, orderComment, culture); The code generates a document and substitutes all of the template variables like it should, except for the dates. No matter what i try, dates remain on the MM/dd/yyyy format. I need it to be on a danish format (dd-MM-yyyy). I have tried passing both "da", "DA", "da-DK", "DK", "dk" and "" as the culture argument to the PlaceOrder and SendQuoteVersion functions. I have tried adding the mergefield "Culture:da-DK" to the template itself as well. I noticed during testing, that the mergefield "Culture:" actually succeded in changing the format of numbers like the salesprice of a quoteline (e.g "Culture:en-US" = 1,234.20 ... "Culture:da-DK" = 1.234,20) , yet dates like {sdat}, {sada} remain unchanged. If i use the normal quote dialog option of "show confirmation" through the ui to generate the document, everything works correctly. I might very well have overlooked something obvious, and if so... Please enlighten me! I am running out of ideas. Help is very much appreciated :D
26 Feb 2026 | 08:48 AM -
Hi I have added a macro trigger that sets a date/time field on Request table. It works nicely, but when displaying the field in a table, the time shows an hour off. Can it be a problem with daylight savings? Is there a way to fix this? Snorre I
24 Feb 2026 | 12:13 PM -
Simen Mostuen IversenStaff
Hi, I might totally be misunderstanding this question. But you're creating a document with CRMScript, and you want the document to be displayed in the Project card under the "Activities" pane? What is your code like? Please provide a code sample. For I would do it something like this to achieve what I think you're trying to: Integer projectId; // Id of the project NSStream docStream; // Stream content of the document NSDocumentAgent docAgent; NSDocumentEntity docEntity = docAgent.CreateDefaultDocumentEntity(); // Code to set document attributes // Connect the document to the Project NSProject project; project.SetProjectId(projectId); docEntity.SetProject(project); docEntity = docAgent.SaveDocumentEntity(docEntity); docAgent.SetDocumentStreamFromId(docEntity.GetDocumentId(), docStream);
19 Feb 2026 | 09:57 AM -
Espen SteenPartner
Hi, I've tested out custom styling today and here's some immediate feedback: The class dropdown appears to be searchable, but the search doesn't work. There's no "button" selector in the class dropdown. I was able to select it by using ".form-form .Button" though. Some customers have multiple, often many, forms where they would want the same styling on all their forms. I think a good idea would be having a "CSS template" where you could make the CSS centrally, then select that CSS template in a dropdown list when you are configuring the form. That way you wouldn't have to copy the CSS to each form, and less technical users wouldn't have to worry about the code but instead just select the design someone has already made for them. Other than this I really liked it, and it worked well on first try! Espen
16 Feb 2026 | 10:06 AM -
David HollegienPartner
Hi, did you enable the custom objects feature toggles in the web config? (V1-V4)
13 Feb 2026 | 10:43 PM
Active forums
-
MB
Core CRM featuresLet's talk about contact management, privacy features, diary, document management, find and selection features, email and office integration tools that support personal productivity.
02/26/2026 208 -
Custom Objects
Introducing Custom Objects to replace Extra fields and Extra tables in Service: Auto generated archive tabs, SuperOffice Selections, Extending search capabilities on relational fields
02/13/2026 96 -
PW
Sales managementLet's talk about sales and opportunity management, sales forecasting, sales guide, sales targets and KPIs, quote management and sales documents.
01/16/2026 63 -
Marketing management
Let's talk about customer segmentation (selections), communication campaigns (mailings), tracking marketing results.
01/12/2026 46 -
AI Lab
AI Lab
12/11/2025 26 -
Custom styling
Custom styling
02/16/2026 2