cancel
Showing results for 
Search instead for 
Did you mean: 

Combo box not loading when deployed in sap b1

Former Member
0 Kudos

hi,

I have designed the report in crystal report with filtering the card code in combo box bot when i deploy it in sap b1 the combo box is not showing, instead it is like edit text we need to enter all those values.Please tell me how to solve this issue whether i need to install another version.Am using crystal report (sap Crystal reports for sap business one) version 14 and sap crystal reports runtime engine for .net framework (32 and 64 bit)

former_member233854
Active Contributor
0 Kudos

The combobox it is a parameter in crystal? Please, could you share how you set the parameter field?

Accepted Solutions (0)

Answers (1)

Answers (1)

DellSC
Active Contributor
0 Kudos

There is special syntax that you need to use for dynamic prompts when publishing Crystal reports to B1. According to the "How to Work with SAP Crystal Reports in SAP BusinessOne" documentation, the name of your parameters needs to also contain the query that B1 will use to get the data for the parameter. So, it will look like this:

MyParameter@SELECT * FROM OITM

The "@" is used to specify the beginning of the query.

When you publish a report with parameters in this format to B1, it knows how to create the combo box for each dynamic parameter based on the the query you specify in the parameter name. Just the name will appear as the label on the screen - it won't include the query.

-Dell