SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

Bapi for CU50



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
madhurao
Участник
Участник



Joined: 02 Apr 2010
Posts: 2

PostPosted: Fri Apr 02, 2010 7:57 pm    Post subject: Bapi for CU50 Reply with quote

Dear all,

Hi all. Today only i joined in this forum . Here our materials are configurable . I want to see all the default characteristics of a material . Suppose a material may 30 characteristics .

In ct04 for some characteristics i click the radio button not display . Then these characteristics are not appeared in cu50 screen. Here we are maintaining two tabs one is options second is general .


The same characteristics i can see in va21 or va01 when i want to create an order or quotation. It will show some different characteristics that is maintained at ct04 . Here my issue is i ma using the fm VC_I_GET_CONFIGURATION to see the default characteristics of that material .


I passed the instance value which comes from mara table to VC_I_GET_CONFIGURATION . Then it is giving the characteristics which is under general tab ( cu50 and cto4 ) . Here i am not getting the option characteristics which is under second tab .

Is there any fm or bapi to get these two tabs . I hope you can share your ideas with me .

Regards,
Madhu.[/b]
Back to top
View user's profile Send private message
vga
Мастер
Мастер


Age: 200
Joined: 04 Oct 2007
Posts: 1218
Location: Санкт-Петербург

PostPosted: Sun Apr 04, 2010 5:43 pm    Post subject: Reply with quote

Try FM CLAF_CLASSIFICATION_OF_OBJECTS.
Get result in the table t_objectdata.

Code:
data: t_class like sclass occurs 0 with header line,
      t_objectdata like clobjdat occurs 0 with header line,
      object like ausp-objek.

call function 'CLAF_CLASSIFICATION_OF_OBJECTS'
               exporting
                           classtext = 'X'
                           classtype = '300'
                            language = sy-langu
                              object = 'R-FA31' " Material name
                         objecttable = 'MARA'
                  tables
                             t_class = t_class
                        t_objectdata = t_objectdata
              exceptions
                   no_classification = 1
                       no_classtypes = 2
                  invalid_class_type = 3.

_________________
Молитва - это запрос разработчику на изменение кода программы.
Back to top
View user's profile Send private message Blog Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.