Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
1 reply
Subscribers
5 subscribers
Views
877 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Plug-Ins
Facing issue with the getportalreportdatasubset function. Its not returning data
vineeta6579
over 10 years ago
Facing issue with the getportalreportdatasubset function. Its not returning data. Please see the below details.
Appian Version:- 7.7
Plugin: - Portal to Sail
Code:-
=load(
local!pagingInfo: a!PagingInfo(startIndex: 1, batchSize: 10),
with(
local!result:getportalreportdatasubset(cons!Report_Id,local!pagingInfo),
local!col1name: local!result.columns[1].label,
local!col1data: local!result.data[1].cells.value,
local!test: local!result.startIndex,
a!dashboardLayout(
firstColumnContents:{
a!textField(
label:local!col1name,
labelPosition:"COLLAPSED",
readOnly:true
)
},
secondColumnContents:{
}
)
)
)
OriginalPostID-140188
OriginalPostID-140188
Discussion posts and replies are publicly visible
Parents
0
abhi.jana
Appian Employee
over 10 years ago
The textfield does not display a value. Should be similar to -
a!textField(
label:"Data",
labelPosition:"COLLAPSED",
readOnly:true,
value: local!col1name
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
abhi.jana
Appian Employee
over 10 years ago
The textfield does not display a value. Should be similar to -
a!textField(
label:"Data",
labelPosition:"COLLAPSED",
readOnly:true,
value: local!col1name
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data