Questions tagged [knowledge-management]

Knowledge Management treats information as an asset, often in a commercial and organizational context.

Knowledge Management treats information as an asset, and seeks to identify, capture, evaluate, retrieve, share and generally make use of that asset. Knowledge Management is typically (though not necessarily) viewed in a commercial and organizational context. It prompts disciplined inquiry into documents, procedures, databases, and personal human expertise, experience and perception.

83 questions
1
vote
1 answer

Is there any way to migrate from Microsoft knowledge base to Plone knowledge base CMS?

I was working on IIS and Microsoft's Knowledge base CMS but I want to switch to open source and Linux based CMS which can handle easily knowledge base management stuffs. I know Plone could be best solution. But how to migrate all the data from…
Jassi
  • 521
  • 6
  • 31
1
vote
1 answer

Issues with displaying salesforce rich text editor image

We are having few rich text box in our custom objects in force.com enterprise edition. These rich text box are rendered in an android application given to our clients. Till now we were using the android app online but due to huge customer demand, we…
lokesh
  • 11
  • 1
  • 2
1
vote
1 answer

Salesforce: SOQL - Top viewed articles titles

Article title is present in KnowledgeArticleVersion table and View Normalized Score is present in KnowledgeArticleViewStat table. The parent of both tables is KnowledgeArticle, but I can't join it to KnowledgeArticleVersion, because there is no…
user1570815
  • 178
  • 3
  • 9
1
vote
4 answers

Pragmatic Programmer: Knowledge Management

I am unsure what to tag this under, but I'd imagine it's a question that's relevant to most developers. Throughout my working day, I often come across snippets of information and knowledge that will come in useful again. These may be general coding…
DJ180
  • 18,724
  • 21
  • 66
  • 117
1
vote
2 answers

where do you keep track of interesting articles?

Like many developers I read alot of articles of different code methodologies, patterns, blogs, examples etc etc along with trailing through github, codeplex etc for code samples. I have used delicious bookmarks in the past to keep track of…
amateur
  • 43,371
  • 65
  • 192
  • 320
1
vote
4 answers

Project planning, Note taking tool for developers

i am looking for a project planning tool that include features like a organizer, todo list, target * deadlines of projects. since i am a developer, it will be good to have a tool that can also do modelling like UML/ERD etc. i am also looking for…
iceangel89
  • 6,113
  • 8
  • 40
  • 55
0
votes
3 answers

Code Repo/Wiki for Academic Research Cluster?

(Not sure if this is the best SE, but nothing else seemed close enough) I'm a 'fresh' PhD Researcher, and after chatting with most of my cluster-colleagues (including staff), I suggested putting together a system for sharing 'acquired experiential…
Bolster
  • 7,460
  • 13
  • 61
  • 96
0
votes
1 answer

Verify the type of relations of knowleage base like Symmetric, Transitive

Recently, I've been working on building a dataset. I have downloaded some open-source datasets like YAGO, and my next step is to determine whether the relationships in these datasets have certain properties such as Symmetric, Asymmetry,…
0
votes
1 answer

How do people figure out what goes where?

Okay so I recently started my career as a Jr. Software Engineer, and after training for a couple of months I feel baffled. So far I have been following coding tutorials and books to make a web application, but whenever I imagine making something…
0
votes
1 answer

How can i define the predicate skos:hasTopConcept?

My question is short, I am confused about the above predicate. I have used it like this; ex:Superclass a skos:Concept; skos:prefLabel "Superclass"; skos:altLabel "Parent class"; skos:hasTopConcept ex:Class,…
0
votes
1 answer

Is it not possible to use an SOQL query, from an outside system like a mobile app, to fetch Knowledge articles?

I understand that there are no article types once Knowledge is enabled on Lightining. Which means that the following query fails: SELECT Article_Body__c,Id,KnowledgeArticleId,Question__c,Summary,Title FROM FAQ__kav where FAQ was one of the article…
0
votes
1 answer

Know how transfer of a framework (Eclipse Plugin Development and Debugging - How to find out what's going on?)

I've just been talking to a very! frustrated co-worker of mine, I'm looking for advice instead of him :-) He is maintaining a complex eclipse plugin (actually rather an application) and he has no clue what is going on when he e.g. clicks a list. The…
Toskan
  • 13,911
  • 14
  • 95
  • 185
0
votes
0 answers

How to define Related Product for Knowledge article in Dynamics crm?

I have a Knowledge article and also i set a Product in Related Products of this article. problem is that when i open my product , My "Knowledge base Search"'s grid is empty , and i can't find any article in it ..
0
votes
1 answer

In Prolog, how to sort even and odd numbers represented with symbols and chains of predicates?

The title might be fuzzy, just see the code number(one, odd). number(two, even). number(three, odd). number(four, even). number(five, odd). greaterThan(five, four). greaterThan(four, three). greaterThan(three, two). greaterThan(two,…
Zhang Xinye
  • 73
  • 1
  • 8
0
votes
1 answer

In Prolog, how to make comparison when order is defined in a chain of predicates?

Having the following definition: biggerThan(a,b). biggerThan(b,c). biggerThan(c,d). How to define a rule is_bigger(X,Y), such that is_bigger(a,c) and is_bigger(a,d) will return true. Besides, I am very new to Prolog. Did the title properly…