cancel
Showing results for 
Search instead for 
Did you mean: 

Start Proessing of documents in CV04N

Former Member
0 Kudos

Hi Guru's

Even though i have done the configuration for start processing of documents,I couln't able to get the process button in CV04N transaction.

Kindly let me know what has to be activated in configuration to get process button in CV04n.

Regards

Bhanu

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Bhanu,

Have you checked incase the user-id/role in question has requisite authorizations for processing DIR's(CV02n)? Also,do verify incase the DIR is in 'Original Processing Status'.This status(when defined in status mgmt) is set automatically when you process the originals.Only the specified user can edit the DIR. The DIR is locked for everyone else.

Regards,

Pradeepkumar Haragoldavar

Answers (3)

Answers (3)

Former Member
0 Kudos

Issue is resolved

christoph_hopf
Advisor
Advisor
0 Kudos

Hi Bhanu,

I'm glad to hear that the issue could be solved. Maybe you can provide us a short feedback how the issue got solved and please assign point for useful information.

Best regards,

Christoph

christoph_hopf
Advisor
Advisor
0 Kudos

Dear Bhanu,

I hope that the following coding of include LCV119F05 can be useful for you to find out why the process button is not visible.

*                                                                      *
***INCLUDE LCV119F05 .
*                                                                      *
*&                                                                     *
*&      Form  PROC_GET_DATA
*&                                                                     *
*  Get process list
*                                                                      *
FORM proc_get_data TABLES ptx_list TYPE dms_tbl_proc
                   USING  pf_proc_type TYPE dms_proc01-proc_type
                          pf_profile TYPE dms_prof01-profile_name
                   CHANGING pfx_error TYPE c.

  DATA: lt_prof04 TYPE TABLE OF dms_prof04,
        lt_proc02 TYPE TABLE OF dms_proc02,
        ls_proc02 TYPE dms_proc02.

  FIELD-SYMBOLS: <fs> TYPE dms_rec_proc.
**

  CLEAR ptx_list. REFRESH ptx_list.

**
** if a profile exists -> check for profile-process-relation
**
  IF NOT pf_profile IS INITIAL.
    SELECT * FROM dms_prof04 INTO TABLE lt_prof04
    WHERE profile_name = pf_profile.
    IF sy-subrc <> 0.
      EXIT.
    ENDIF.
  ENDIF.
**
** get all corresponding data from dms_proc01
**
  IF NOT lt_prof04[] IS INITIAL.
    SELECT * FROM dms_proc01
    INTO CORRESPONDING FIELDS OF TABLE ptx_list
    FOR ALL ENTRIES IN lt_prof04
    WHERE proc_name = lt_prof04-proc_name.
    CHECK sy-subrc = 0.

  ELSE.
    SELECT * FROM dms_proc01
    INTO CORRESPONDING FIELDS OF TABLE ptx_list.
    CHECK sy-subrc = 0.
  ENDIF.

So one reason for the invisible button could be that the parameter 'pf_profile' is filled with a profile where no process are maintained.

Best regards,

Christoph

Former Member
0 Kudos

Hi Chris,

Issue resolved by doing configuration in Define Profile and assigning profile key with process...

Thanx once again

Regards

Bhanu

Former Member
0 Kudos

Hi Christoph,

I have indeed two profiles

ZP001 - this profile has several process options assigned

ZP002 - this profile has no process options assigned.

If I have an user who is connected to both profiles through the role assignment I do not see the process button, because in LCV119F05 the parameter ''pf_profile' is filled with value ZP002.

Do you know how to solve this issue?

Regards,

Johan

Former Member
0 Kudos

Hi Bhanu,

The start processing button can appear in CV01n,CV02n transaction. Kindly check whether it is available in CV03n,CV04n.

Regards,

Ravindra