Skip to content

Instantly share code, notes, and snippets.

View JanTristanH's full-sized avatar
💭
🤷‍♂️

Tristan JanTristanH

💭
🤷‍♂️
View GitHub Profile
#!/bin/bash
# save arguments passed to script as command, excluding the first one
passed_command="${@:2}"
# write hung command to tmp file
(timeout 10m $passed_command) &> logNonReturningCommand.txt & disown
PID=$!;
# wait until first argument is found in file
var=$(grep $1 logNonReturningCommand.txt)
@JanTristanH
JanTristanH / command.sh
Last active July 19, 2022 07:45
Run deploy with logs to file and sound when finished
mbt build; cf deploy mta_archives/* | tee -a ~/deploy_logs.txt; echo -en "\007"

Fiori Elements analytical list page no chart displayed

Resulution

I resolved the issue before posting, but would still like to share, in case anybody else has the same issue in the future. May the google algorithms be with you.

I followed this blog by Gregor, and implemented the counting of records in a similar way. BUT I added the annotaion @UI.Hidden which caused my dummy field to be excluded. Removing the annotation caused the issue to be resolved.