Barmaley lead me to the correct path I did it with setting the type to Calls.ContentType.
Intent showCallLog = new Intent();
showCallLog.setAction(Intent.ACTION_VIEW);
showCallLog.setType(CallLog.Calls.CONTENT_TYPE);
context.startActivity(showCallLog);
This intent should do the trick.