Batch create characteristics(ct04)

HI all,
I need to create batch characteristics from transaction ct04.
i have tried bapi_character_create but i am unable to create with it.
tried BDC when i try to recording can't see the Value tabs in it.
please give some suggestions, how can i do this.
if anyone have done this before, please forward sampel code to my email address
[email protected]

Hi,
In CT04 the Single & Multiple values means.
For Example in characeteristics if you want to maintain only one reading for characteristics then select the Single value,If you want more than one value for the Characteristics then select Multiple values.
For Example say your characteristics is Speed.you are assign this characteristics to class Motor.
When you attach this class to Equipment say if only one value exist for Speed characteristics for all equipment then specify single value.or if more than one value then specify as Multiple alue.
for Motor A the Value of Speed characteristics is 1500 Rpm
for Motor B the Value of Speed characteristics is 1500 Rpm
for Motor C the Value of Speed characteristics is 1500 Rpm
In this case assign as Single value.
If for Motor A the Value of Speed characteristics is 1500 Rpm
for Motor B the Value of Speed characteristics is 1200 Rpm
for Motor C the Value of Speed characteristics is 1100 Rpm
In this case specify as Multiple value & Maintain in characteristic when you cretae the value in Equipment the 3 option will show to you.from that you can select.
For the 4 digit entry & template.
Check your User profile what template it has given.check with Basis Consultant & ask him to assign the proper user profile to user id.
In menu bar go to System -- User profile-- Own data & check the Default values tab.Check for the template there.
Regards,
Raj

Similar Messages

  • Create characteristics t code CT04

    Dear,
    In t code CTO4 when I m creating characteristics , under value assignment there are two radio selection
    1 Single-value
    2 Multiple value
    what is the significance of it. ??? which one I need to select , so that I can use this characteristics to my measuring point or counter.
    One more field is there template when I select my data type and char  predefine template is automatically selected. & this template is applied to my respective measuring  pt and doc.
    and I m facing problem to enter reading in measurement doc.
    e.g
    I have a characteristics with unit NO , data type numeric and no of char 10
    but in measurement doc I m able to enter only 4 digit value . to enter further digit I has to delete template.
    why it is so ???
    Thanks,
    Prasad.

    Hi,
    In CT04 the Single & Multiple values means.
    For Example in characeteristics if you want to maintain only one reading for characteristics then select the Single value,If you want more than one value for the Characteristics then select Multiple values.
    For Example say your characteristics is Speed.you are assign this characteristics to class Motor.
    When you attach this class to Equipment say if only one value exist for Speed characteristics for all equipment then specify single value.or if more than one value then specify as Multiple alue.
    for Motor A the Value of Speed characteristics is 1500 Rpm
    for Motor B the Value of Speed characteristics is 1500 Rpm
    for Motor C the Value of Speed characteristics is 1500 Rpm
    In this case assign as Single value.
    If for Motor A the Value of Speed characteristics is 1500 Rpm
    for Motor B the Value of Speed characteristics is 1200 Rpm
    for Motor C the Value of Speed characteristics is 1100 Rpm
    In this case specify as Multiple value & Maintain in characteristic when you cretae the value in Equipment the 3 option will show to you.from that you can select.
    For the 4 digit entry & template.
    Check your User profile what template it has given.check with Basis Consultant & ask him to assign the proper user profile to user id.
    In menu bar go to System -- User profile-- Own data & check the Default values tab.Check for the template there.
    Regards,
    Raj

  • {SOLVED] Create characteristics with BAPI_CREATE_BATCH

    Hello,
    In my program I create a batch before a good receipt. This good receipt is created with the bapi 'BAPI_GOODSMVT_CREATE'. In this last bapi I'm able to add the batch number.
    If I create the batch I have also to add some characteristics. So I have looked for an example and found one. The example I follow is "Batch create and characteristics via BAPI (example)".
    http://www.sapfans.com/forums/viewtopic.php?t=125320&highlight=bapibatchcreate.
    The creation of the batch number and the creation of the objectkey works fine but when I come to the form 'extract_original_batch' with the bapi 'BAPI_OBJCL_GETDETAIL' I receive the following error message "Assignment does not exist or is not valid on".
    The class it self is valid till 31129999 and I'm able to assign values during a good receipt with MIGO.
    What could be wrong or has an other example to find out what's the problem.
    This is what I inserting into the bapi:
    p_matnr = '0000010393'  a valid materialnumber
    p_werks = '0010'
    p_charg = '0001000125'
    w_object = 00000000000001039300100001000125
    p_class  = 'ZMMGASOPSLAG'
    p_klart  = '023'
    Here is a part of the program.
          FORM build_object_key                                         *
    FORM build_object_key
       TABLES
          p_it_messages          LIKE it_messages[]
          p_it_object            STRUCTURE bapi1003_object_keys
       USING
          P_WERKS                LIKE EKPO-werks
          P_MATNR                LIKE EKPO-matnr
          P_WA_ONTV_BEST_LGORT   LIKE EKPO-lgort
          P_charg                LIKE mcha-charg
          p_ebeln                LIKE EKPO-ebeln
          p_ebelp                LIKE EKPO-ebelp
       CHANGING
          p_object               LIKE bapi1003_key-object.
    DATA: BEGIN OF XEMSEG OCCURS 1.
            INCLUDE STRUCTURE BAPIRET2.
    DATA: END OF XEMSEG.
      CLEAR XEMSEG.
    build the object key
      CLEAR: it_object.
      REFRESH: it_object.
      it_object-key_field = 'MATNR'.
      it_object-value_int = p_matnr.
      APPEND it_object.
      it_object-key_field = 'WERKS'.
      it_object-value_int = p_werks.
      APPEND it_object.
      it_object-key_field = 'CHARG'.
      it_object-value_int = p_charg.
      APPEND it_object.
      CALL FUNCTION 'BAPI_OBJCL_CONCATENATEKEY'
           EXPORTING
                objecttable    = 'MCHA'
           IMPORTING
                objectkey_conc = p_object
           TABLES
                objectkeytable = it_object
                return         = XEMSEG.
      IF not xemseg is initial.
           PERFORM ins_errors
              TABLES
                 it_messages
                 xemseg
               USING
                  p_ebeln
                  p_ebelp.
       ENDIF.
    ENDFORM.
    Kind regards,
    Richard Meijn
    Message was edited by: R. Meijn

    Srinivas,
    Thanks for your reply,
    I have tried both commits with and without wait. Both didn't work but I have look and tried the hole day.
    After some headache I have maybe found the solution. I will try it out.
    My conclusion is the following.
    The BAPI 'BAPI_BJC_CONCATENATEKEY' creates the key as shown in the table INOB but the bapi don't stores the key.
    In my program I have to create a good movement. This is also done with a BAPI. When this BAPI is finalised the key is stored in the INOB table. So my conclusion is that the key is created with the BAPI 'bapi_goodsmvt_create' when necessary.
    After the creation of the key I could follow the example to modify the characteristics.
    If everything is working I will explain the solution.
    Kind Regards,
    Richard Meijn

  • Create Characteristics, Data Type - Currency

    Hi All,
    I am trying to create characteristics in transaction CT04 for our PO release strategy.
    Data type is Currency. After giving all required details when I press enter the value range becomes NNNNNNNNNNNNN.NN. So I am unable to select value in release strategy classification tab.
    Does anybody have any idea that why values are getting converted to  NNNNNNNNNNNNN.NN.
    Is any configuration missing?
    Is the problem with template?
    Regards
    sapmm1234

    I have done the following settings:
    Charateristrics PO_Value
    Valid from Today Date
    Decription Total Net Order Value
    Status Released
    Data Type Currency
    Number of Class 15
    Decimal Places 2
    Currency QAR
    Template I ahve not selected anything but defaults it is taking NNNNNNNNNNNNN.NN
    Even If I delete this when I press enter It is taking NNNNNNNNNNNNN.NN
    Multiple values & Interval Values allowed
    Additional Data:
    Table CEKKO
    Field GNETW
    Not Ready for Input Checked
    Unformatted Entry Checked
    Propose Template is not checked
    Values
    <= 2500
    > 2500
    <= 10000
    > 10000
    After giving this value when I press enter all values becomes
    <= NNNNNNNNNNNNN.NN QAR
    > NNNNNNNNNNNNN.NN QAR
    <= NNNNNNNNNNNNN.NN QAR
    >= NNNNNNNNNNNNN.NN QAR
    So I could not select any value in RElease strategy --> Classification tab
    Any Idea why Value are getting converted into this format.
    Regards
    sapmm1234

  • Characteristics(CT04) Issue.

    Dear SD Consultants,
            I am having some standard Characteristics(CT04) in Development Server. But i am not having the same in Production Server. Can any one please guide me to transport the standard Characteristics from DEV to PRD.
    PLease help me ASAP.
    Thanx
    Subramanian.Ramasamy

    Hi
    Subramanian Ramasamy
    U need to create Characteristic in CT04 in PD server. It can not be traspoprted from Dev to PD .
    THX.

  • Multiple UOMs in Characteristics (CT04)

    Hi Friends,
    I have some doubts regarding Characteristics in ECC (created using CT04). The characteristic, say Frequency, can have only one Unit of Measure (Hz) associated with it. However, business users would like to have values entered in other related units (KHz, MHz & GHz). They would like to enter 3 MHz rather than 3,000,000 Hz. Could this be achieved?
    Regards,
    Anil Madhavan

    As far as i know  you can only assign 1 UoM to a characteristic. Maybe create additional characteristics for the other UoM's.

  • Bapi to create characteristics combination?

    Hi all!
    Anyone knows if there is any bapi to create characteristics combinations?
    If there is not, i guess i´ll have to use a 'call transaction' with the old-fashioned batch input method.
    Thanks everybody for reading.
    wlundgren

    Not sure if this answer helps you. I am going through the same process of identifying this and i found a way easier then using call transaction. Whey you use the transaction /SAPAPO/MC62 for the first time for a given master planning object structure it generates a program in the background.  You can get the name of the program when you get the screen for creating the Charateristics combination ( looking up system status). You should be able to copy of this program and make the necessary modifications to suit your needs.  THis is a good process when the CVC's are to be created interactively and a few at a time.
    Another alternative is to use the BW process and load the data into a cube and use the cube to create charateristics combination. You can link all this activities uing a process chain ( a BW functionality). We have used this process extensively and works well when you have to create multiple charateristics combination in one go. Let me know if this helps and if you need more details we can discuss.

  • Create Characteristics for CO-PA

    Hi Experts,
    I am facing another problem while creating the Characteristics BZIRK (Sales District) with reference to table VBKD. Currently this characteristic BZIRK is available in the system but this is created with reference to table KNVV. While creating characteristics BZIRK again with reference to table VBKD, I am receiving message saying “Field BZIRK is already defined as Characteristics, chose another name. Then I tried to delete this characteristics BZIRK but I am receiving the message saying “Field BZIRK does not have set system type CUS”. I then further continued but now the system is giving error saying “Field BZIRK is a technical/fixed field -> Choose another name”.
    Please suggest:
    1) How to create new characteristics BZIRK  again with reference to table VBKD? We want to use characteristics BZIRK created with reference to table VBKD in our operating concern instead of characteristics BZIRK created with reference to table KNVV.
    Also we want to create characteristics VKBUR and VKGRP with reference to table VBAK to include in our operating concern. Currently these characteristics are available in the system but are created with reference to table KNVV.
    Regards,
    Bijay

    Hi Experts,
    I am facing another problem while creating the Characteristics BZIRK (Sales District) with reference to table VBKD. Currently this characteristic BZIRK is available in the system but this is created with reference to table KNVV. While creating characteristics BZIRK again with reference to table VBKD, I am receiving message saying “Field BZIRK is already defined as Characteristics, chose another name. Then I tried to delete this characteristics BZIRK but I am receiving the message saying “Field BZIRK does not have set system type CUS”. I then further continued but now the system is giving error saying “Field BZIRK is a technical/fixed field -> Choose another name”.
    Please suggest:
    1) How to create new characteristics BZIRK again with reference to table VBKD? We want to use characteristics BZIRK created with reference to table VBKD in our operating concern instead of characteristics BZIRK created with reference to table KNVV.
    Also we want to create characteristics VKBUR and VKGRP with reference to table VBAK to include in our operating concern. Currently these characteristics are available in the system but are created with reference to table KNVV.
    Regards,
    Bijay
    For any new characteristic you are creating  should start "WW". For example  Create new characteristics for BZIRK by renaming as WWBZK and giving Origin table VBKD and origin field BZIRK
    Refer IMG documentation for Maintain Characteristics in SPRO for further clarification

  • Acrobat 9 Pro - Batch Create Multiple Files from InDesign CS5 files

    When attempting to batch create PDFs from Indesign CS5 files using Acrobat Pro 9's File>Create PDF>Batch Create Multiple Files ... option the operation fails with the error 'Could not find the application that created this file: [path to file] Please select a file created by an application that resides on your computer.' as shown in the screenshot below:
    Acrobat 9 Professional was bundled with Creative Suite 5 Design Standard so shouldn't this work? My machine is running OS X 10.6.7, Acrobat Pro 9.44 and InDesign CS5 7.04.
    Any help to solve this issue would be most gratefully received - this feature had previously saved me a lot of time on my old machine with 10.5.8, Acrobat Pro 9 and CS4.

    I have uploaded the files and shared them.  These are the links
    Grade 11 Maths Standardisation Project Paper 2 2013.doc
    https://files.acrobat.com/preview/9694310d-ca7f-4919-883d-c53b36215d89
    Grade 11 Maths Standardisation Project Paper 2 Analysis Grid 2013.doc
    https://files.acrobat.com/preview/97da9e5f-d412-4d25-9bbc-d1a525d90826
    Grade 11 Maths Standardisation Project Paper 2 Diagram Sheet 2013.doc
    https://files.acrobat.com/preview/f50dd62e-af04-4060-85c5-fa81ce6803d8
    Grade 11 Maths Standardisation Project Paper 2 Formula Sheet 2013.doc
    https://files.acrobat.com/preview/7fc6007b-aaa6-4d65-9a8c-bf99818474a5
    Grade 11 Maths Standardisation Project Paper 2 Marking Guidelines 2013.doc
    https://files.acrobat.com/preview/b3a715bb-3683-48df-b0ec-3d17442275be
    Grade 11 Maths Standardisation Project Paper I Analysis Grid 2013.docx
    https://files.acrobat.com/preview/ab62e6b6-0261-434e-8a2f-382f74335685
    The first file is the problem file.  If you create this file separately, Acrobat will convert it perfectly.  But "Batch create multiple files" and the graphics are deconstructed on page 8

  • Batch create multiple pdf's while using epilogue.ps for setting initial view and opening bookmarks

    Hi,
    I'm trying to batch create multiple pdf's from word files, and use the epilogue.ps file for setting the initial view and opening the bookmarks panel, but i keep getting no satisfying result.. i'm probably missing something fundamental.
    I've read some forum posts and adobe help posts explaining this, so i'm pretty sure this would be possible?
    Reference:
    http://help.adobe.com/en_US/acrobat/X/pro/using/WS58a04a822e3e50102bd615109794195ff-7f0f.w .html  see advanced panel options
    http://help.adobe.com/en_US/acrobat/using/WS58a04a822e3e50102bd615109794195ff-7f14.w.html
    System: Windows 7
    Acrobat: Acrobat X professional
    i've searched for and found a way to overwite the epilogue.ps file and have inserted the following:
    %  Insert your custom PostScript here...
    [ /PageMode /UseThumbs
    /Page 1 /View [/Fit ]
    /DOCVIEW pdfmark
    After that i checked my Adobe Acrobat preferences, and in the categorie 'Convert to Pdf' i selected 'Microsoft office word' in the select area 'Converting to pdf'.
    Clicked 'Edit settings' to allow creating a joboptions file (field: 'adobe pdf settings') which has the option 'Use epiloque.ps and prologue.ps' checked in the advanced section.
    So now i thought i would have everyting setup to create my pdf's, however, my view isn't changed to fit, nor are there any bookmarks or in this case thumbs (i used /useThumbs) visible.
    Did i miss something obvious? Is there a better way to test this? Any help would be appreciated!

    i like it about that ok in how to open my site

  • Batch create from Word files

    Hi everyone,
    I'm trying to use the batch create multiple files command in Acrobat 10.1.3 to create a pdf from multiple word files but when I try to add the files, all Word files are greyed out.
    Is it possible to batch create from Word files or is that why they're greyed out?
    Appreciate any help.

    In the current version of Acrobat on the Macintosh, Word files are not supported. They are supported in the Windows version. It's been this way for a very long time.

  • Acrobat 9 - Batch Create Multiple Files

    Hopefully someone can help me with this problem, or at least shed some light on it for me.
    I am using Acrobat 9. I have Creative Suite 4 (InDesign, Illustrator, Photoshop, etc.) There is a new feature in Acrobat 9 called "Batch Create Multiple Files", which can be found in the File menu, under "Create PDF".
    This feature is supposed to create pdfs from multiple native file types, including InDesign. Acrobat uses the native application, in this case InDesign CS4, to open each file selected in the batch and then create a pdf file from it. This would be a really cool feature if I could get it to work.
    Each time I try to run this, I get an error message stating "Cannot open the document". I have an operator who can get this to work, if they use CS3 InDesign documents (she also has CS3 installed on her mac), which doesn't make sense to me because Acrobat 9 is a part of CS4.
    Is it possible that I am missing a plug-in? Has anyone experienced a similar problem, or does anyone have a solution for me?
    Thanks,
    Jeff

    You should remember that Acrobat 9 Pro came out BEFORE InDesign CS4. It has not yet had an update. The release InDesign CS4 format DID NOT EXIST when Acrobat 9 Pro came out, so it cannot yet convert it.
    You'll have to wait for an update to Acrobat 9 Pro.

  • Combine functionality Batch Create Multiple files and Set Security

    Greetings,
    Is there any way to combine the functionality of Acrobat Pro’s “Batch Create Multiple Files” (File (drop down) -> Create PDF -> Batch Create Multiple Files…) and running a batch process (Advanced -> Document Processing -> Batch Processing -> Batch Sequences -> Set Security)?
    Ideally I’d like to either:
    1)      Add the “Set Security” batch process to the “Batch Create Multiple Files … command located under the File (drop down) -> Create PDF
    or
    2)      Be able to create a batch process that first allows me to select the documents (Word, Excel, etc.) I want to convert into PDF files, then converts them, then runs the Set Security batch process.
    Right now it isn’t too much trouble to first “Create Multiple Files…” then run the batch process Set Security, but it would be nice to be able to do both with a single command.
    Any suggestions?
    Thank you,
    TPK

    I have uploaded the files and shared them.  These are the links
    Grade 11 Maths Standardisation Project Paper 2 2013.doc
    https://files.acrobat.com/preview/9694310d-ca7f-4919-883d-c53b36215d89
    Grade 11 Maths Standardisation Project Paper 2 Analysis Grid 2013.doc
    https://files.acrobat.com/preview/97da9e5f-d412-4d25-9bbc-d1a525d90826
    Grade 11 Maths Standardisation Project Paper 2 Diagram Sheet 2013.doc
    https://files.acrobat.com/preview/f50dd62e-af04-4060-85c5-fa81ce6803d8
    Grade 11 Maths Standardisation Project Paper 2 Formula Sheet 2013.doc
    https://files.acrobat.com/preview/7fc6007b-aaa6-4d65-9a8c-bf99818474a5
    Grade 11 Maths Standardisation Project Paper 2 Marking Guidelines 2013.doc
    https://files.acrobat.com/preview/b3a715bb-3683-48df-b0ec-3d17442275be
    Grade 11 Maths Standardisation Project Paper I Analysis Grid 2013.docx
    https://files.acrobat.com/preview/ab62e6b6-0261-434e-8a2f-382f74335685
    The first file is the problem file.  If you create this file separately, Acrobat will convert it perfectly.  But "Batch create multiple files" and the graphics are deconstructed on page 8

  • Changing the pdf profile of batch create multiple files in Acrobat?

    Is it possible to load another pdf profile for batch create multiple files from Acrobat? I am batching indesign pages and I need to use a high resolution pdf profile with printer marks
    The default seems to be low res rgb. Any idea if this can be done?

    it is a custom Pdf Profile but basically an X1a with a few tweeks, When I try a watch folder with distiller it just errors out all the files.
    Batch Processing using the "Create PDF, Batch Create Multiple Files " in Acrobat works but does not let me choose a pdf profile.
    C

  • Batch create Multiple files in Acrobat X and X1 cannot convert Word 2010 with graphics

    I work for an exams board where hundreds of exam papers are produced. Once approved, these exams are converted to PDF and sent to print.  Using the Batch Create Multiple Files option is therefore essential to getting these papers print ready on time.  We have found that using this function to convert multiple Word 2010 files with graphics will not render it properly.  It deconstructs the graphics which loses the integrity of the exam paper. 
    I have trialled the same group of files on Acrobat X1 with the same result.
    Have other Acrobat Pro Users experienced the same problem?  Is there a fix? 

    I have uploaded the files and shared them.  These are the links
    Grade 11 Maths Standardisation Project Paper 2 2013.doc
    https://files.acrobat.com/preview/9694310d-ca7f-4919-883d-c53b36215d89
    Grade 11 Maths Standardisation Project Paper 2 Analysis Grid 2013.doc
    https://files.acrobat.com/preview/97da9e5f-d412-4d25-9bbc-d1a525d90826
    Grade 11 Maths Standardisation Project Paper 2 Diagram Sheet 2013.doc
    https://files.acrobat.com/preview/f50dd62e-af04-4060-85c5-fa81ce6803d8
    Grade 11 Maths Standardisation Project Paper 2 Formula Sheet 2013.doc
    https://files.acrobat.com/preview/7fc6007b-aaa6-4d65-9a8c-bf99818474a5
    Grade 11 Maths Standardisation Project Paper 2 Marking Guidelines 2013.doc
    https://files.acrobat.com/preview/b3a715bb-3683-48df-b0ec-3d17442275be
    Grade 11 Maths Standardisation Project Paper I Analysis Grid 2013.docx
    https://files.acrobat.com/preview/ab62e6b6-0261-434e-8a2f-382f74335685
    The first file is the problem file.  If you create this file separately, Acrobat will convert it perfectly.  But "Batch create multiple files" and the graphics are deconstructed on page 8

Maybe you are looking for

  • When are you planning to release a new firmware fo...

    When are you planning to release a new firmware for the N95 NAM? I am tired of waiting for the automatic screen rotation on the N95NAM. This feature is aleady available in the european version. I switched from an iPhone to this nokia, and now i have

  • Color grading render out of PS CS4 Problems

    Ive got some footage shot from my Canon T2i (1080p @ 30fps) that ive edited the levels in to adjust the color. When I go to export it in Apple Pro Res 422 it works fine, the only problem is the file is MASSIVE. Ive got a 9 second clip that renders ou

  • Webi does not pick correct Data

    Hi Guys, I have a webi. The Universe for the Webi is based on  Bex Query. I see correct Data in Bex Query but when I create a webi report it does not pick correct data. I have checked following points already:- 1] No Resstriction at Query Level 2] No

  • Third Party Invoice

    Hi Gurus, Could you please tell me steps involved to do partial billing in third party order? I have created third party sales order> PR>PO>Invoice receipt> Billing In have made invoice receipt for 5 quantity where as sales order and PO has 10 quanti

  • Upgrading Source System to ECC 6.0 - What is my role in BI

    Hi, Our Production R/3 System is being upgraded from 6.4 to ECC.60.  The machine and client will remain exactly the same.  Before and after the R3 Upgrade what will I have to do from a BI System Perspective? Hope and Pray?      Thanks...