cancel
Showing results for 
Search instead for 
Did you mean: 

ADOBE forms - table cell with dynamic URL

0 Kudos
659

Hello,

I am seeking advice on handling dynamic URLs in the table cell.

Example:

ADOBE form contains a table with columns [ Product ], [Carrier Name ], and [ Tracking Number].

Example:

Product_1 Carrier_ID Tracking_Number_URL_1

Product_2 Carrier_ID Tracking_Number_URL_2

Product_3 Carrier_ID Tracking_Number_URL_3

Business wants to avoid seeing the long URL value, just a tracking number itself.

There are a few similar discussion threads, but I need help locating a complete solution.

I appreciate any help you can provide.

Accepted Solutions (0)

Answers (2)

Answers (2)

0 Kudos

Solving one issue at the time - This property will take care of the question 1

Zhehui_Xia
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Alex,

I'm not sure if it can really help you but just give an example.

We received a requirement from our customer that our customer wants to merge duplicate rows in Adobe Forms. We found there were some BAdIs can help us realize our requirement. We can use this BAdI to set a logic to change the data. You can know more information from the link below. But it is only used for the APP "Create Correspondence". I'm not sure if there is a BAdI can satisfy your requirement but you can try to search.

App Extensibility: Create Correspondence | SAP Help Portal

Best Regards,

Zhehui

0 Kudos

Thank you, Zhehui, for trying to help. The BADI you mentioned can be used in the scenario that you described.

I am facing a different issue, and I believe it is all about how to make it work in SFP.

By defining a table cell as a button, its caption can be bound to the context, i.e., tracking number. It will take care of the short description.

I still have to find answers to two issues:

1) These parameters make the table cell with URL (set up as a button) clickable. However, every other cell in the table also becomes ready for input. How to make only one column ready for the user's action?

CALL FUNCTION 'FP_JOB_OPEN'

* All changes allowed
*A Only new content is possible
*F Can be filled out and signed
*N Can be filled out and signed; comments allowed
*X No changes allowed
ie_outputparams-pdfchangesrestricted = 'F'." abap_false.

CALL FUNCTION <generated FM> to submit the PDF:

* X - generates an interactive online form with UsageRights. Users can enter and save data in the form in Adobe Acrobat or Adobe Reader.

* N - generates an interactive online form without UsageRights (data entry not possible).
* F - generates an interactive offline form with UsageRights, like FILLABLE = X.
/1bcdwb/docparams-fillable = 'N'.

* generates a dynamic form displaying and processing in Adobe Acrobat or Adobe Reader.
/1bcdwb/docparams-dynamic = abap_true.


2) Event CLICK allows using the hardcoded URL. What is the proper way to refer it to the URL from the context?