Quantcast
Channel: SCN : Popular Discussions - SAP ERP PLM - Classification and Variant Configuration
Viewing all 692 articles
Browse latest View live

Passing information into a variant configurator

$
0
0

My company is looking to move to using SAP's variant configuration to configure our bill of materials and handle all the downstream SAP tasks.

 

Based on the limitation in the table structure and inability to handle complex iterations or math, it is very difficult to configure our product in the VC. I have a separate product that is our drawing automation software that effectively does the same thing as the VC, where is generates a full BOM but allows us to put in all of our engineering and safety rules and calculations into the program.

 

I am trying to find out if I can just pass this final bill of materials, or list of part numbers into the VC where it could handle all of the SAP tasks for sending out the order and assigning routers? All I want to do is avoid managing what are becoming too cumbersome of tables for the VC and not answering any configuration questions in the VC. I would like our end user to be able to use our automation  software to answer questions and configure a product, then have that system drop the list of part numbers that make up a BOM in a format that the SAP VC can read and then automatically move the order on.


Why FERT is used some times instead of KMAT

$
0
0

Hi

 

I have seen many threads regarding KMAT and FERT, but I have not got a very clear answer.

 

My question is;

 

I have seen on many occasions that FERT is used as a configurable material instead of using the standard KMAT material type. Can somebody please tell me why this type of a scenario might arise?

 

 

Thanks & Regards

Adithya

BAPI for Creating Sales Order For Variant Configuration Materials

$
0
0

Dear Gurus,

 

Before posting this thread, we have referred many SDN threads, OSS notes and other sites for any sort of help..but no success..All threads and other referrals are not much of help as they are kind of incomplete( Perhaps, we are unable to understand them..no offense).

 

Few checked threads on this subjects are:

 

http://scn.sap.com/thread/34590

http://scn.sap.com/thread/851070

http://scn.sap.com/community/abap/blog/2014/04/23/update-vc-variant-configuration-data-using-standard-bapi-in-sales-order

http://scn.sap.com/community/abap/blog/2014/07/15/creating-orders-with-variant-configured-items-using-bapisalesordercreatefromdat2

http://scn.sap.com/community/abap/blog/2014/04/23/update-vc-variant-configuration-data-using-standard-bapi-in-sales-order

http://scn.sap.com/thread/120144

OSS: 549563

 

Well, we're using the BAPI (BAPI_SALESORDER_CREATEFROMDAT2) which creates the sales order successfully but without the characteristic values in line items.

We're passing data to the following parameters - ORDER_CFGS_REF, ORDER_CFGS_INST, ORDER_CFGS_VALUE to create the variant config but not able to see it getting created.

 

Pls find attached BAPI coding document for your reference.

 

If you could throw any light on this issue will be of great help for us.

 

Thank You in Advance!!!

 

Reg,

Jagan-SD.

Bom during configuration

$
0
0

Dear all,

i need to have the bom result data into variant function abap , is there any fm or exit in order to have the following information?

 

Example:

 

FG A

 

Char 1 = A

 

 

FG (Configurable)

 

     SG

         

          Component 1 = $self.char 1 = 'A'

          Component 2 = $self.char 1 = 'B'.

 

 

My requirement to have the bom result in the abap function (CU66 , CU01 already created).

 

Thanks a lot

Daniele

How to get multiple values for a characteristics in sales order

$
0
0

Dear Experts,

 

I am Working on variant configuration Scenario and looking for solution for below requirement:

 

Characteristics :

 

i). CNPL

ii). ADDM

iii). COMP

 

Values:

 

i). Values for Char. CNPL: A, B, C, &D

ii) Values for Char ADDM: X, Y, Z

ii). Values for Char. COMP: 10, 20, 30, 40, 50, 60,70,80,90,100

 

 

Requirement:

 

In Sales Order

 

If I select Char CNPL with value 'A' & Char with value 'Y'

 

How System will show  20, 30, 50, 80,100 values for Char COMP.

 

Like wise for other combinations of values for Char CNPL & ADDM , Values of Char COMP will change.

 

Could you please help in this Regards.

 

Thanks

 

Prasad J

Copy Characteristic Value from Main Item to Sub Item

$
0
0

Hello All,

 

Can anybody please let me know how to copy a characteristic value from Main Item to a Sub Item.

 

 

 

Thanks & Regards

Adithya

Read component from bom

$
0
0

Dear all,

i need to read item bom quantity of the bom and fill this value in the char_q of configuration ( refered to STPO-MENGE).

 

I have already create the following procedure : $SELF.char_q = MDATA $ROOT.char_q  and  assgn it to item bom.

 

But when run CU50 the char is empty.

 

What am I doing wrong?

 

Thanks a lot

Daniele

Combing multiple characteristic values

$
0
0

I'm looking to perform something like the following in a variant config action

 

All three characteristics conatin two character country values and use table T005 as a lookup check table.

I have two organizational groups that are allowed to ban shipping products to specific countries.

For example:

- The laboratory can ban a batch from going to a country because of a failed spec.

- The governemnt group can ban a batch because some temporary ban due to embargos/regulatory approvals, etc..

 

Access to each characteristic is controlled via organizational groups so one group can't change the others.

 

So Char 1 has the value of MX (Mexico)

     Char 2 has the values PA, ES, (Panama, Spain)

 

We want Char 3 to have the values of MX, PA, ES.

I.e. the union set fo Char 1 and Char 2

 

I've tried numerous versions of this to no avail.  I can't get past the syntax check!!

Here's some of the things I've tried:

 

$SELF.CHAR3 = CHAR1 + CHAR2

$SELF.CHAR3 = SELF.CHAR1 + SELF.CHAR2

$SELF.CHAR3 = CHAR1 & CHAR2

$SELF.CHAR3 = SELF.CHAR1 & SELF.CHAR2

 

And numerous others...

 

Any suggestion as to how I can do this?

 

In the end, we'd used CHAR 3 to set the LOBM_COUNTRY_NOK characteristic that SAP provides to block shipments to these countries by accident in batch determination.

 

Craig


Fetching characteristics and their values assigned in configuration

$
0
0

Hello All,

 

I need to fetch the characteristics and it's values maintained in configuration.

 

For material class (001), I can use FM 'BAPI_OBJCL_GETDETAIL' to get the values assigned to the material in classification view of material master.

 

But, my requirement is to fetch the values for class type '300', i.e. the values of characteristics assigned in configuration of production or sales order.

I checked many function module but still unable to find the solution.

 

Kindly help me to get the values of characteristics assigned in configuration for class type '300'. (either by linking tables, or, by FM).

Thanks in advance.

 

Regards,

Anuj

problme in the production order confermation for entry batch

$
0
0

hi every body

there are some users in our system that can confirm in co11n according blow screenshot:

Capture.JPG

Capture2.JPG

but when I want to confirm in co11n this error coming after push the save button. actually second screenshot dose not  appear.

 

Capture3.JPG

Line Item plant allocation

$
0
0

Hi,

         Have set one item in a VC top level BoM to be 'Relevant to sales'. Selection is dependent on characteristic selection.

 

  If you select the correct value, the part appears in the sales order as a separate line item. The extra item uses the same delivering plant as the configurable item...

 

  Capture_01.JPG

  Item 10 is the configurable part, item 20 is the additional part. Item 10 is set as plant 1000, therefore item 20 is automatically set to plant 1000.

 

  My question is, can the plant selection for item 20 be variable / overridden? For instance can you override & select plant 6000 (for instance). Currently the field is restricted.

 

  Any thoughts..., please advise.

 

  Thanks in advance.

 

  Rob.

CUPR_SET_DEFAULT

$
0
0

Dear all,

i would like to use the following fm  CUPR_SET_DEFAULT to setting default value through variant function, but using it we can't change the default value set.

 

Is possible use this function CUPR_SET_DEFAULT and to have a behavior like :

 

I would like to have the same behavior of syntax ?=

 

Thanks a lot

Daniele

Purchase order in configuration

$
0
0

Dear all,

i have the following scenary:

 

FG (Configurated material with configuration profile )

    

Super Bom of FG is as structured:

 

PF

     SG ( purchasing material with own configuration profile )  

 

 

When i create a sales order for the FG con the following configuration:

 

Char a =  value 1

Char b = value 2

 

 

the system create after mrp run a purchase order for the SG , but into it there is the configuration of the FG and is not able to configure the purchase material SG.

 

Are there some setting to do in order to can configure the SG with the owm chars?

 

Thanks a lot

Daniele

Inconsistent characteristic value assignment error

$
0
0

Hi,

 

I am new to VC and working for Steel Industry.

 

I want to do characteristic Value Assingment using MM01/MM02 - MRP3 view - > clicked Configure Variant.

 

The error shows as :

 

Inconsistent characteristic value assignment

Message no. C1821

 

The characteristic conflict shows for the characteristic Grade.

 

I have created the below masters.

 

Characteristics (CT04)

Class type 300 with Characteristics (CL02)

Material Master Classification assigned the class type 300 (MM01/MM02)

Configurable Material (MM01)

Dependency - (CU01/CU02)

Configuration Profile (CU41/CU42)

 

 

Anybody can please help me to solve this issue.

 

Thanks in advance.

 

Devaraj

Maintenance Cost Planning

$
0
0

Hello All,

 

Is there any standard transaction in SAP where we can do the reporting related to cost elements as per each maintenance plan.

 

I am aware of transaction IP31 and IA16 .But in IP31 we can give one maintenance plant in foreground or n number of maintenance plans in background.

 

After executing in background it gives the total costing as per the cost elements.Is there any way of generating report broken down per individual maintenance plant.

 

IP31.png

Regards,

Richa


F4 Help for Characteristics

$
0
0

Hi Experts,

 

I have created a characteristic 'Department' and when I assign the table 'T527O' in the Value tab it gives an error " Check table T527O has too many key fields".

 

In the error it says that "Check tables with more than one key field are not supported. However,

if  you enter a function module for checking values, you can refer to any check table in your own coding."

 

I am able to see one radio button called "Function Module" when I click on Other Value Check on Value tab, but do not know how to use that.

Could anyone please guide me in this.

 

My requirement is:

1. create a characteristic called department.

2. link it to a class,

3. while creating a document in CV01N the f4 help should be available in department field.

 

Thanks & Regards

Rajiv Roshan

Setting default value in multivalue characteristics

$
0
0

Dear gurus,

i need to setting with a procedure two or more default value for a characteristic multivalue.

 

I used the following syntax :

 

$SET_DEFAULT ($SELF, <characteristic>, <string>)

 

 

but i need to setting simultaneously two values because in the next procedure i would like to check the value specified or not, and if i use the different row as decribed below :


$SET_DEFAULT ($SELF, a, value1 )

$SET_DEFAULT ($SELF, a, value2 )


i can't try this situation.

Therefore my question is : is possible setting for car a the value 1 and value 2 with the same procedure?


$SET_DEFAULT ($SELF, a, value1, value 2 ) ? for example?


Thanks a lot

Daniele





Classification for Notification Type

$
0
0

Hi All,

 

I have been trying to find a Notification Class, like something we have for Materials (001), Batch (023), ECM (025)..., but am unable to find anything. I think it does not exist. My business requirement is that I need to add some information (example Product Lines) to a Notification while creating/changing it (IQS1/IQS2). Would have had been great if a Class Type for Notification exist, then I could have had done it through Characteristics. Is their a way I can use some other fields within Notification, where I can input information.

 

I am not looking for long text.

 

Can someone kindly guide.

 

Best Regards,

Sachin

Configurable material pricing based on Characteristic values

$
0
0

Hi Experts,

Need your help on one of the client requirement as below.

 

Below are the characteristics of the Config.Material.

 

1. Product

2. Variety

3. Density

4. Color

5. Length

6. Width

7. Thickness

8. ... few other attributes

 

Length, Width and Thickness will have predefined values and also it should be a free text as customer places order in non standard sizes also.

 

per KG price will be maintained based on Product, Variety, Density Customer group and geographical location.

We have to calculate how many KGs of the product is ordered based on the Length, Width and Thickness. Derive the price with per KG price and apply it for the item of the order.

 

Now the question is how do we handle this as per standard pricing for variant configuration. I have explored pricing factors also but not sure how it really works for this requirement.

 

Appreciate if you can provide some help on this requirement.

Cost estimate for make to order products

$
0
0

For cost estimate, is it only done for top level BOM material only?

 

For make to stock products, I can understand it. Cost estimate is only done for the top level material with procurement type E. So only the top level material is entered into CK40N and BOM explosion will take care of it drilling down to all lower level materials.

 

What about make to order products, how is the cost estimate done?

 

E.g. BOM structure:

Level 0- ProductA

Level 1- Option1, Option2

Level 2- Option1compoent, Option2component.

 

When sales order is created for ProductA, either Option1 or Option2 needs to be selected.

 

At which level should cost roll be done? and does it matter for E or E50 procurement type?

Viewing all 692 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>