Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Upload Data to CATS

Former Member
0 Likes
2,350

Hi All,

I want to upload time data to CAT2 for several personnal numbers please provide the standard available options or Custom Dev i srequired.

Thank You

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,686

Hi,

You may use the BAPI BAPI_CATIMESHEETMGR_INSERT.

Br/Manas

Hi All,

I want to upload time data to CAT2 for several personnal numbers please provide the standard available options or Custom Dev i srequired.

Thank You

5 REPLIES 5
Read only

Former Member
0 Likes
1,687

Hi,

You may use the BAPI BAPI_CATIMESHEETMGR_INSERT.

Br/Manas

Read only

Former Member
0 Likes
1,686

if ur looking at uploading dat into catsdb table

u can us ethe fm:

CALL FUNCTION 'BAPI_CATIMESHEETMGR_INSERT'

this id the Bapi to update CATSDB if entries already exist:

CALL FUNCTION 'BAPI_CATIMESHEETMGR_CHANGE'

Read only

Former Member
0 Likes
1,686

BAPI_CATIMESHEETMGR_INSERT is your answer.

Here is some additional information on the same:


  CALL FUNCTION 'BAPI_CATIMESHEETMGR_INSERT'
       EXPORTING
            profile         = +Name of the Data Entry Profile+
            testrun         = +If its Test mode+
*           RELEASE_DATA    =
*           AGENT           =
       TABLES
            catsrecords_in  = +Input records+
*           EXTENSIONIN     =
            catsrecords_out = +valuated and completed data records+
*           EXTENSIONOUT    =
*           WORKFLOW_TEXT   =
            return          = ret_val.

Hope this helps!

Regards

Shital

Read only

0 Likes
1,686

Dearest ,

Please can u help me if u have sample code to update cats ??

best regards,

Hahu

Read only

Former Member
0 Likes
1,686

thanks resolved