cancel
Showing results for 
Search instead for 
Did you mean: 

AFS-BW Extraction

former_member182541
Active Contributor
0 Kudos

Dear all,

I am new to AFS-BW extraction.

I have installed all the business content related AFS in BW, but for some data marts i am unable to find the datasource's from the Business Content.

most of the dataflow ends by infosource. when i checked with the sap library it explains to map with the existing datasources.

As an example i took

AFS: Billing - Schedule Line Data

Technical name: 2AF_SD_BIL_1

Based on InfoSource: 2LIS_13_VDITM (Billing Document – Item Data)

The confusion starts here for 0af_sean which field i should map from 2LIS_13_VDITM. what is data element list given here ? how can i find the fields from the given data sources.

Also can someone explain me, what is the procedure to load to load this datamarts.

Any standard steps are followed for AFS????

Regards,

Suman

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi suman,

My first sugestion to you is.

Read about SAP AFS on BW.

This link can help you.

http://help.sap.com/saphelp_nw70ehp3/helpdata/en/c7/6c0b3bbe61e405e10000000a11402f/content.htm?frame...

On AFS exists the concept of Sesion, Collection and Theme. You can extratc ATTR and TEXT for this components using the 0AF_SEAN_ATTR and 0AF_SEAN_TEXT

ATTR

http://help.sap.com/saphelp_nw70ehp3/helpdata/en/4c/e03e404e093d3ce10000000a155106/content.htm?frame...

http://help.sap.com/saphelp_nw70ehp3/helpdata/en/90/e03e404e093d3ce10000000a155106/content.htm?frame...

I hope this helps.

I am available for further questions.

former_member182541
Active Contributor
0 Kudos

Hi Vitor,

Thank you so much for the clarification.

I ran the report in ECC to reflect the AFS fields in LO Datasource's, its got reflected.

when i check in the LBWE maintaince none of the afs fields are hidden.

But when i checked the datasource in RSA2, the AFS fields are hidden in by SAP. how to enable these fields. please find the below screen shot.

Because of this issue these fields are not reflected in BW. The below screenshot states that the AFS fields are missing in BW, fields from 39 to 55 will be missing.

Kindly help me on this, how to reflect those AFS fields in BW.

Regards,

SumanT

RamanKorrapati
Active Contributor
0 Kudos

Hi Suman,

When fields are hidden by SAP, then you make them as visible by using small abap program.

REPORT  ZTEST.

Tables: ROOSFIELD.

SELECT SINGLE * FROM ROOSFIELD WHERE OLTPSOURCE = '<data source name>' AND

OBJVERS = 'A' AND FIELD ='<field name>'.

IF SY-SUBRC = 0.

ROOSFIELD-SELECTION ='P'.

MODIFY ROOSFIELD.

ENDIF.

If you have more fields to make them as visible ask abap team add proper conditions.

Or same program copy and create no of time.change field name as you need.

Just execute report one time. it makes required fields as part of your data source, check them at RSA6 or RSA2 or RSA3.

Thanks

former_member182541
Active Contributor
0 Kudos

Hi Ram,

Thanks for the Info, the fields are getting reflected.

Some more clarification required ?

1. what is the use of this "/AFS/BWEL" Structure.

2. Dimensions/Category fields [ grid fields ] --> Characteristics --> Elementary Fields.

---- 1---- functional team has already created some fields like color,size quantity in CT04.

---- 2---- Define AFS Interface ? what i have to do here i ? what is Int counter

-----3 ------ how to configure 1:n relationship here ?

----- 4------- when i executing this TCODE: /AFS/PPBW_ASSIGN I am getting mess "This function is not possible". what happens here.

-----5------- By including the "/AFS/PPBWRSAU01"  in customer exit "EXIT_SAPLRSAP_001" into the enhancement "RSAP0001" will these fields get the data populated directly, if so how ?

Waiting for you reply.

Regards,

SumanT

former_member182470
Active Contributor
0 Kudos

This message was moderated.