cancel
Showing results for 
Search instead for 
Did you mean: 

Enabling Input Fields

Former Member
0 Kudos

Hello.

I am creating a web dynrpo application for creating a sales order. I am using Bapi_salesorder_createfromdat1.

All the input fields on screen are disabled when application is deployed and viewed on browser. I set the enabled property of input fields as true. But still fields are disabled.

Can anyone tell me how to solve this??

regards

Vijay Kalluri

Accepted Solutions (1)

Accepted Solutions (1)

former_member262988
Active Contributor
0 Kudos

Hi,

Uncheck the READ_ONLY property ....

Thanks,

Shailaja Ainala.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello Vijay,

As my Understading, you need to bind Bapi_salesorder_createfromdat1 values to screen input fields.

Process:

1. First you need to map your RFC node from Model to Controller , Then Map the node from Controller to you Sales order screen.

2. once done above process, then open your sales order view & go to context Tabe , then assign required fields from node to your sales order input screen.

3. Finally deploy the application, now u can able to see your input fields as enable.

Please let me know, still you are facing any problem.

Thanks

Siva.

Former Member
0 Kudos

Dear Vijay,

Try this..

Create a new Value Node with the Structure Binding with the model node in which your values are coming.

Then use the CopyService to copy the values from the Model node to the newly created Value Node.


IWDNode ValueNode = wdContext.nodeYourValueNode();
IWDNode ModelNode = wdContext.nodeYourModelNode();
WDCopyService.copyElements(ModelNode,ValueNode);

Now bind the Value node to your input field.

Hope this helps!!

Warm Regards

Upendra Agrawal