cancel
Showing results for 
Search instead for 
Did you mean: 

How to open Custom fields tab in sales order (VA01/VA02)?

mdmanjarejaz
Explorer
0 Kudos
152

Hi,

I am trying to do an enhancement which is in exit MOVE_TO_VBEP. I've added 3 Custom field 
Certificate, Valid from and Valid to. If we get data in Certificate field (VBAP-ZZ1_CERTIFICATE) We need to give warning and ask user to provide data in Valid from and Valid To and we need to open the Custom fields tab so that user can but those entries. How to make this possible. 

until now i tried

SET CURSOR FIELD VBAP-zz1_valid_from_sdi. - Did not work. 

SCREEN-NAME 'field' 
SCREEN-REQUIRED = 1. - Did not work

mdmanjarejaz_0-1739826769558.png

 

View Entire Topic
RobertVit
Active Contributor
0 Kudos

Hi,

i would go for a incompletion entry. Add the conditional entry via ABAP to the incompletion log.
Then on the custom UI for the additional fields control the input ready status of the field and navigation like this

  IF FEHLER 'X'.
    SET CURSOR FIELD FEHLERFELD.
  ENDIF.

 

Kind regards

Robert

mdmanjarejaz
Explorer
0 Kudos
Hi Robert, Thanks for your response 😊
mdmanjarejaz
Explorer
0 Kudos
Hi Robert, Thanks for your response 😊, I've added Incompletion Log but did not work out I was confused on what is the second part where that code needs to go? like currently all the code is in userexits.