cancel
Showing results for 
Search instead for 
Did you mean: 

Formatted search - Copy Business Partner address of active screen

Former Member
0 Kudos

Hello,

I am using a credit card addon that creates a tab in Business Partner Master Data labeled "Credit Card". On this tab, credit card information is stored for the business partner. This includes CC Name, CC Type, CC Cardholders Name, CC Number etc.

Credit cards are added on this tab, similar to an address being entered on the address tab. You have to click "Add New"

The business process is the following:

- CSR receives call from random customer (no BP data exists)

- CSR creates new BP

- Enters address for Bill to and Ship to.

- We are required by this addon to enter address on credit card for a third time. This is where we would like to streamline the process by creating a formatted search to copy the Bill to information from the Address tab, to the address information on the credit card tab.

This is where my dilema is. I am not sure how to capture the active record's information and bring it over to the credit card tab.

Does anyone have an recomendations?

John Sefton

Accepted Solutions (1)

Accepted Solutions (1)

former_member583013
Active Contributor
0 Kudos

From what I have noticed. You can create individual FMS and place them in the respective fields in the CC Tab. I could only test this on the BP Remarks and they seem to work.

For Address Name

SELECT $[$178.1.0]

For Street

SELECT $[$178.2.0]

For Block

SELECT $[$178.3.0]

Please enable system information from the VIEW menu for the other field co-ordinates

..

.

.

Answers (2)

Answers (2)

Former Member
0 Kudos

Adding to Suda's answer, you need to put your cursor on the desired bill to address before you copy to CC address. When you have more than one entry in the bill to address, only the current one will be selected.

Thanks,

Gordon

Former Member
0 Kudos

Suda - your answer worked perfectly.

Thanks to all of you for your input, I GREATLY appreciate it.

John Sefton

Former Member
0 Kudos

Hi John you could capture active screen data by using a query like this :


SELECT $[OCRD.CardName], $[OCRD.CardType] 

But be careful, you only could capture data from active screens and tabs. If u would capture data from the billing adress tab - and it is not active - you won't get any input.

regards