‎2009 Feb 05 5:28 AM
I have a data in internal table. Is there any FM in which by passing this internal table , data will upload in DB13?
‎2009 Feb 05 5:32 AM
‎2009 Feb 05 5:32 AM
‎2009 Feb 05 5:59 AM
Thanks alot,
tell me one more thing...all my data is in I_final. so what to pass where?
‎2009 Feb 05 10:19 AM
Hi.
Thanks alot.
I have cleared the data from SDBAP and SDBAR.
I have uploaded the data in Internal table I_FINAL.
after doin this, am callin FM :
CALL FUNCTION 'ADD_DBA_PLANNING_ALL'
EXPORTING
PLANNING_DESC = PLANNING_DESC
PLANNING_STRUCT = PLANNING_STRUCT
START_IMMED = START_IMMED
TASK_STR =
TASK_NAME =
IMPORTING
PLANNING_RC =
TABLES
RESOURCE_TABLE = I_FINAL
EXCEPTIONS
PROBLEMS = 1
OTHERS = 2
.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
but the database is still empty.
Please help me out.
Is this FM is right?
‎2009 Feb 05 5:38 AM
Hi,
Check GUI_UPLOAD.
It will upload a file into sap database from desktop.
Hope this will work.
Regards:
Alok
‎2009 Feb 05 5:45 AM
Hi,
Please check the Below Function Module 'ALSM_EXCEL_TO_INTERNAL_TABLE'
Hope this is Helpful to you,
Thanks
Kalyan B
‎2009 Feb 05 5:52 AM
Hi
You can try to use this FM CNV_UPLOAD_TABLES
Thanks
Viquar Iqbal
‎2009 Feb 05 5:57 AM