I just wonder, whether it is possible to build/ to insert a module without the source code. Say I have downloaded an openSuse operating system, and the kernel source code did no
To build a module you need the kernel headers not the entire source code. NVidia rebuilds it's kernel module this way, so this would be one way of how the industry has solved the problem. Linux is not very friendly to binary only modules and in fact the kernel developers used to routinely change ABIs and structures to break binary only modules.
It is unclear what industrie you're talking about. Why do they use linux? Where - on the server, on the client? As desktop system?
If they know that they might need to build modules - why don't they have kernel sources?
I don't know specifically for OpenSuse, but for Ubuntu, you can download the kernel headers for the current patchlevel of your kernel. Then you can compile modules. It's not hard to find them in synaptic, the software repository managing program.
If you are a hardware manufacturer, ideally you would get your driver in the official linux development tree, so all distributions would eventually inherit it. You will no doubt get some rather frank feedback on your original submission, and getting it accepted for inclusion would require making whatever coding style/quality, interface choice, etc changes the maintainers insist on.
If you are a small volume integrator purchasing boards with a binary-only distro already on them, realize than in addition to technical challenges, you'll probably get some grief (or worse) from ultimate customers who know they are supposed to be able to request to get the source for it.
If you are doing it for in-house use only, then you just have the technical challenges. Likely for an unmodified upstream-supported architecture you can obtain a close enough set of kernel headers, possibly from Suse, or even the upstream tree, once you figure out what you need. However, if your board has hardware which is not officially supported (lacks public data sheets) and relies on unpublished kernel patches and/or unpublished gcc patches, then you are in a tough spot - there is probably no fully aboveboard path using a system based on such a chip, unless you can reverse-engineer enough of the hardware uniqueness to be able to build your own kernel form source using a compiler you can build from source. There are a lot of grey-market Android tablets stuck in such limbo right now.
Ultimately, if your project relies on a binary of a software base such as linux or gcc which you cannot re-create from source, you are in a precarious position. If it's a project intended for more than incidental internal usage, you should probably think about switching to a platform where the necessary support code - or at least the data sheet details needed to re-implement it - is published.