2013 May 07 1:47 PM
We have a requirement that we need an adobe form on the ECC system as interactive.
1. User inputs a Transaction code.
2. Adobe interactive form open.
3. User fill all the data on the form.
4. Click on submit button.
5. Sucesssful message there.
Can this be done wihtout using Webdynpro ABAP.
2013 May 07 1:49 PM
You can use CAF (Composite Application Framework) and Visual Composer
2013 May 07 1:52 PM
Hi Peter,
Could you please provide me with some links or documents for that same. That will be really helpful. Thanks,
Regards,
Susmitha Pritam
2013 May 07 2:09 PM
2013 May 07 2:28 PM
Are you sure we need CAF/VC for this?
I'm pretty sure we can simply create a report and call FM FP_JOB_OPEN with IE_OUTPUTPARAMS-NODIALOG = abap_true and IE_OUTPUTPARAMS-PREVIEW = abap_true.
This would open the form on the screen (SAP GUI), then you can enter the data and push submit and process the data afterwards.
Cheers,
Custodio
2013 May 07 2:35 PM
Hi Custodio,
That might be possible. I was just answering the question if WD is needed and mention some alternatives. In no way I try to say that those were the only alternatives.
I just happened to have followed the Netwaever BPM (=CAF) course at SAP and there we generated interactive forms with Adobe designer and also with VC.
2013 May 07 2:44 PM
Hi All,
If I wasn't clear earlier. I need to have an interactive ADOBE form in my ECC system WITHOUT using WEBDYNPRO ABAP.
Thanks,
Susmitha Pritam
2013 May 07 2:48 PM
Hi Susmitha,
Again, I'm pretty sure you can achieve it the way I just said. I'd give you more details but don't have my system at this moment.
Cheers,
Custodio
2013 May 08 2:35 AM
2013 May 07 3:06 PM
2013 May 07 3:41 PM
Hi susmitha,
I dont think this is possible, an alternative can be making function module as web service and calling it in adobe or use webdynro for making it interactive.......
thanks and regards,
narayan
2013 May 07 4:01 PM
2013 May 07 6:58 PM
Hi susmitha,
I have found something below from the below link
http://wiki.sdn.sap.com/wiki/display/ABAP/SAP+Interactive+Forms+by+Adobe........plz let me know your final answer , if yes then how...........
regards,
narayan
2013 May 08 8:22 AM
Hi Susmitha,
After developing Adobe form in SFP. Can use below f.m in a custom report to call the adobe
1.FP_FUNCTION_MODULE_NAME - Pass the form name
2. FP_JOB_OPEN - Pass the output parameters
3. call executed number of adobe form and pass
fp_docparams-fillable = p_ia. (Make the form Intractive )
4.Errors can be achieved in fm FP_GET_LAST_ADS_ERRSTR
5.FP_JOB_CLOSE - close the form.
pass the required message.
Regards,
Anand Raj.S