The coding block pop-up window of BDC screen recording cannot be recorded

Source: Internet
Author: User

 

The following situations may occur during shdb screen recording:

In normal use, a box is displayed, but the box displayed during screen recording is blank and cannot be entered (for example ).

 

In this case, the nobinpt parameter can be selected when screen recording is created (for example, in the red box section ).

 

Similarly, when using this screen recording to call T-code in the BDC program, you must set the corresponding parameters. The Code is as follows:

 

The
Error message that usually comes in status bar while you are running the transaction online might
 Appear
In a popup window when you are running that in batch. This will make your fields disabled
 Input.
This options addition will remove this problem

The
Way to use the options addition.
Declare a work area of Type ctu_params.
Fill the fields of ctu_params. The field nobinptShocould
Be set to 'x '.
This will set the SY-BINPT to space. So now the transaction which you will be calling will run in online mode.

 

Example.

 

Data: x_options type ctu_params ..

Clear x_options.
X_OPTIONS-DISMODE = 'E '.
X_OPTIONS-UPDMODE ='s '.
X_OPTIONS-CATTMODE = ''.
X_OPTIONS-DEFSIZE = ''.
X_OPTIONS-RACOMMIT = ''.
X_OPTIONS-NOBINPT = 'x '.
X_OPTIONS-NOBIEND = ''.

Call
Transaction 't-code' using t_bdcdata [] options from x_options.

 

Note:
Do not use the mode & Update additions when you are using options. The mode & Update values are passedIn
The ctu_params structure.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.