cancel
Showing results for 
Search instead for 
Did you mean: 

Set nobinpt via bdc_transaction (SAP standard form for bdc)?

Tanishaa
Participant
0 Kudos
242

I want to set nobinpt so that it does not get set as X when the BDC report is getting called. Currently, we are using bdc_transaction because we are also skipping the initial screen of PA30. Now, in this, we cannot set nobinpt so, I tried to set this via ctu_params and use the following instead of bdc_trasaction. 

CALL TRANSACTION ‘PA30’ USING bdc_data OPTIONS opt MESSAGES INTO mess tab.

now, the issue is that binpt is getting properly set, but the initial screen is not getting skipped, even though I have mentioned it properly in bdcdata.

Any suggestions on how to achieve this would be appreciated.

View Entire Topic
RaymondGiuseppi
Active Contributor
0 Kudos

Did you try to use opt-dismode = 'N' or 'P' so dynpros wont be displayed?

Tanishaa
Participant
0 Kudos
I did, and when I set dismode as N or P, it just expires the session
RaymondGiuseppi
Active Contributor
0 Kudos

Did you also set opt-nobiend if you want to see the dynpro for input/action at end of bdc table?

  • Also it's not always possible to skip first screen - prerequisites
Tanishaa
Participant
0 Kudos
@RaymondGiuseppi yes I did
RaymondGiuseppi
Active Contributor
0 Kudos
Try not to set binpt but only nobiend (so binpt would change at end of data)
Tanishaa
Participant
0 Kudos
The issue is not with nobinpt. It is working fine. Issue is with skipping the first screen. That is not happening
Tanishaa
Participant
0 Kudos
Hey @RaymondGiuseppi, the issue is finally resolved. Turns out, we have to set both nobinpt and nobiend as ‘X’. Thank you for your responses!