Tables, function modules for variant config data

Hi all,
I need to extract characteristics and values for variant material from sales order and production orders. Could you please tell me the relevant tables and function modules?
Regards,
Sachin M

Hi
Try the following;
Function module to find values of characteristics - CLAF_CLASSIFICATION_OF_OBJECTS .
Table # AUSP also holds values of characteristics, you can link to it via table INOB,which should also linked to table KONDH if you are using the same.
Transaction code for Variant Config - CC04 (Product Structure browser)
Cheers
Chandra

Similar Messages

  • Function module for access OM Data from infotype 1001

    We had a function module for accessing OM data viz. Infotype 1001. Could you let me know.
    Advanced thanks,
    Dasaradh kosana

    Hi Dasaradh,
          Do you want the fm which fetches the data from HRP1001 , if this is the case you can use this FM RH_READ_INFTY_1001.
    Reward Points if it is helpful
    Regards,
    Kiran I

  • Function Module for Variant Configuration

    Is there any Function Modules available for getting the Characteristics and values of configured material. Input will be a material number.
    Points assured for any helpful answers

    Hello,
    I don't think FM is available for getting the Characteristics values of the Material . Better use this code.
    * Selection for class
      IF NOT S_KLART[] IS INITIAL.
        PERFORM F_GET_OBJECTNUMBER.
      ENDIF.
      IF G_CLASS_NE IS INITIAL.
    * Fill Selection table fields
        PERFORM F_FILL_FIELDS.
    * Selection for materials
        PERFORM F_GET_MATERIAL.
        SORT G_T_MAT BY MATNR.
    * Read if necessary classification
        IF G_T_MATNR[] IS INITIAL AND ( NOT G_T_MAT[] IS INITIAL ).
          PERFORM F_GET_MAT_KLASS.
        ENDIF.
    * Select the basic data text and fill final table
        PERFORM F_GET_BASIC_TEXT.
      ENDIF.
    FORM F_GET_OBJECTNUMBER.
      DATA: L_R_OBJECTS  TYPE TY_OBJECTS.
      DATA: L_OBJECTS TYPE TY_OBJECTS.
      CLEAR: G_T_OBJECTS.
      REFRESH: G_T_OBJECTS.
      SELECT A~CUOBJ A~OBJEK A~KLART B~ATINN B~ATZHL B~ATWRT B~ATFLV
             B~ATAWE B~ATFLB B~ATAW1 C~CLINT D~CLASS
        INTO CORRESPONDING FIELDS OF TABLE G_T_OBJECTS
        FROM INOB AS A INNER JOIN AUSP AS B
          ON A~CUOBJ = B~OBJEK AND
             A~KLART = B~KLART
             INNER JOIN KSSK AS C
             ON B~OBJEK = C~OBJEK AND
                B~KLART = C~KLART
             INNER JOIN KLAH AS D
             ON C~CLINT = D~CLINT
       WHERE A~OBJEK IN S_MATNR AND
             A~OBTAB EQ 'MARA'  AND
             A~KLART IN S_KLART AND
             B~ADZHL EQ '0000'  AND
             C~LKENZ EQ ' '     AND
             D~CLASS IN S_CLASS.
      CLEAR : G_T_KSML.
      REFRESH: G_T_KSML.
      SELECT CLINT IMERK KLART
       FROM KSML
       INTO CORRESPONDING FIELDS OF TABLE G_T_KSML
        FOR ALL ENTRIES IN G_T_OBJECTS
      WHERE CLINT EQ G_T_OBJECTS-CLINT.
      IF NOT G_T_KSML[] IS INITIAL.
        SORT G_T_KSML BY CLINT.
        SORT G_T_OBJECTS BY CUOBJ OBJEK  CLASS ATINN.
        LOOP AT G_T_KSML.
          READ TABLE G_T_OBJECTS WITH KEY ATINN = G_T_KSML-IMERK
                                          CLINT = G_T_KSML-CLINT
                                          BINARY SEARCH.
          IF SY-SUBRC NE 0.
            CLEAR: L_OBJECTS.
            READ TABLE G_T_OBJECTS WITH KEY KLART = G_T_KSML-KLART
                                            CLINT = G_T_KSML-CLINT
                                            BINARY SEARCH.
            IF SY-SUBRC = 0.
              MOVE-CORRESPONDING G_T_OBJECTS TO L_OBJECTS.
              CLEAR G_T_OBJECTS.
              G_T_OBJECTS-ATINN = G_T_KSML-IMERK.
              G_T_OBJECTS-KLART = G_T_KSML-KLART.
              G_T_OBJECTS-CLINT = G_T_KSML-CLINT.
              G_T_OBJECTS-CUOBJ = L_OBJECTS-CUOBJ.
              G_T_OBJECTS-OBJEK = L_OBJECTS-OBJEK.
              G_T_OBJECTS-CLASS = L_OBJECTS-CLASS.
              APPEND G_T_OBJECTS.
              CLEAR G_T_OBJECTS.
            ENDIF.
          ENDIF.
        ENDLOOP.
      ENDIF.
      DELETE ADJACENT DUPLICATES FROM G_T_OBJECTS
                                   COMPARING OBJEK KLART CLASS ATINN ATAWE.
      IF NOT G_T_OBJECTS[] IS INITIAL.
        SORT G_T_OBJECTS BY CUOBJ OBJEK  CLASS ATINN.
        CLEAR: G_T_MATNR,G_R_MATNR,G_T_CLASSDESC,G_T_CHARDESC,G_T_CABN,
               G_T_CAWNT.
        REFRESH: G_T_MATNR,G_T_CLASSDESC,G_T_CHARDESC,G_T_CABN,G_T_CAWNT..
        SELECT CLINT KSCHL
          FROM SWOR
          INTO CORRESPONDING FIELDS OF TABLE G_T_CLASSDESC
           FOR ALL ENTRIES IN G_T_OBJECTS
         WHERE CLINT EQ G_T_OBJECTS-CLINT AND
               KLPOS EQ '01'              AND
               SPRAS EQ SY-LANGU.
        IF NOT G_T_CLASSDESC[] IS INITIAL.
          SORT G_T_CLASSDESC BY CLINT.
        ENDIF.
        SELECT ATINN ATBEZ
          FROM CABNT
          INTO CORRESPONDING FIELDS OF TABLE G_T_CHARDESC
           FOR ALL ENTRIES IN G_T_OBJECTS
         WHERE ATINN EQ G_T_OBJECTS-ATINN AND
               SPRAS EQ SY-LANGU.
        IF NOT G_T_CHARDESC[] IS INITIAL.
          SORT G_T_CHARDESC BY ATINN.
        ENDIF.
        SELECT ATINN MSEHI
          FROM CABN
          INTO CORRESPONDING FIELDS OF TABLE G_T_CABN
           FOR ALL ENTRIES IN G_T_OBJECTS
         WHERE ATINN EQ G_T_OBJECTS-ATINN.
        SELECT ATINN ATWTB
         FROM CAWNT
         INTO CORRESPONDING FIELDS OF TABLE G_T_CAWNT
          FOR ALL ENTRIES IN G_T_OBJECTS
        WHERE ATINN EQ G_T_OBJECTS-ATINN AND
              ADZHL EQ '0000'            AND
              SPRAS EQ SY-LANGU.
        LOOP AT G_T_OBJECTS.
          AT NEW OBJEK.
            G_R_MATNR-MATNR = G_T_OBJECTS-OBJEK.
            APPEND G_R_MATNR TO G_T_MATNR.
          ENDAT.
        ENDLOOP.
      ENDIF.
      IF G_T_MATNR[] IS INITIAL.
        G_CLASS_NE = 'X'.
      ENDIF.
    ENDFORM.                    " f_get_objectnumber
    FORM F_GET_MAT_KLASS.
      DATA: BEGIN OF L_T_OBJECT OCCURS 0,
             OBJEK TYPE OBJNUM,
             MATNR TYPE MATNR,
            END OF L_T_OBJECT.
      DATA: L_OBJECTS TYPE TY_OBJECTS.
      CLEAR: L_T_OBJECT.
      REFRESH: L_T_OBJECT.
    * Fill the object number
      LOOP AT G_T_MAT INTO G_R_MAT.
        AT NEW MATNR.
          L_T_OBJECT-OBJEK = G_R_MAT-MATNR.
          L_T_OBJECT-MATNR = G_R_MAT-MATNR.
          APPEND L_T_OBJECT.
        ENDAT.
      ENDLOOP.
      CLEAR:G_T_OBJECTS,G_T_CLASSDESC,G_T_CHARDESC,G_T_CABN,G_T_KSML,
            G_T_CAWNT.
      REFRESH: G_T_OBJECTS,G_T_CLASSDESC,G_T_CHARDESC,G_T_CABN,G_T_KSML,
               G_T_CAWNT.
    * Get the material classification details
      SELECT A~CUOBJ A~OBJEK A~KLART B~ATINN B~ATZHL B~ATWRT B~ATFLV
             B~ATAWE B~ATFLB B~ATAW1 C~CLINT D~CLASS
        INTO CORRESPONDING FIELDS OF TABLE G_T_OBJECTS
        FROM INOB AS A INNER JOIN AUSP AS B
          ON A~CUOBJ = B~OBJEK AND
             A~KLART = B~KLART
             INNER JOIN KSSK AS C
             ON B~OBJEK = C~OBJEK AND
                B~KLART = C~KLART
             INNER JOIN KLAH AS D
             ON C~CLINT = D~CLINT
         FOR ALL ENTRIES IN L_T_OBJECT
       WHERE A~OBJEK EQ L_T_OBJECT-OBJEK AND
             A~OBTAB EQ 'MARA'  AND
             A~KLART IN S_KLART AND
             B~ADZHL EQ '0000'  AND
             C~LKENZ EQ ' '     AND
             D~CLASS IN S_CLASS.
      IF NOT G_T_OBJECTS[] IS INITIAL.
        SELECT CLINT IMERK KLART
          FROM KSML
          INTO CORRESPONDING FIELDS OF TABLE G_T_KSML
           FOR ALL ENTRIES IN G_T_OBJECTS
         WHERE CLINT EQ G_T_OBJECTS-CLINT.
      ENDIF.
      IF NOT G_T_KSML[] IS INITIAL.
        SORT G_T_KSML BY CLINT.
        SORT G_T_OBJECTS BY ATINN KLART.
        LOOP AT G_T_KSML.
          READ TABLE G_T_OBJECTS WITH KEY ATINN = G_T_KSML-IMERK.
          IF SY-SUBRC NE 0.
            CLEAR: L_OBJECTS.
            READ TABLE G_T_OBJECTS WITH KEY KLART = G_T_KSML-KLART.
            IF SY-SUBRC = 0.
              MOVE-CORRESPONDING G_T_OBJECTS TO L_OBJECTS.
              CLEAR G_T_OBJECTS.
              G_T_OBJECTS-ATINN = G_T_KSML-IMERK.
              G_T_OBJECTS-KLART = G_T_KSML-KLART.
              G_T_OBJECTS-CLINT = G_T_KSML-CLINT.
              G_T_OBJECTS-CUOBJ = L_OBJECTS-CUOBJ.
              G_T_OBJECTS-OBJEK = L_OBJECTS-OBJEK.
              G_T_OBJECTS-CLASS = L_OBJECTS-CLASS.
              APPEND G_T_OBJECTS.
              CLEAR G_T_OBJECTS.
            ENDIF.
          ENDIF.
        ENDLOOP.
      ENDIF.
      IF NOT G_T_OBJECTS[] IS INITIAL.
        SELECT CLINT KSCHL
          FROM SWOR
          INTO CORRESPONDING FIELDS OF TABLE G_T_CLASSDESC
           FOR ALL ENTRIES IN G_T_OBJECTS
         WHERE CLINT EQ G_T_OBJECTS-CLINT AND
               KLPOS EQ '01'              AND
               SPRAS EQ SY-LANGU.
        IF NOT G_T_CLASSDESC[] IS INITIAL.
          SORT G_T_CLASSDESC BY CLINT.
        ENDIF.
        SELECT ATINN ATBEZ
          FROM CABNT
          INTO CORRESPONDING FIELDS OF TABLE G_T_CHARDESC
           FOR ALL ENTRIES IN G_T_OBJECTS
         WHERE ATINN EQ G_T_OBJECTS-ATINN AND
               SPRAS EQ SY-LANGU.
        IF NOT G_T_CHARDESC[] IS INITIAL.
          SORT G_T_CHARDESC BY ATINN.
        ENDIF.
        SELECT ATINN MSEHI
        FROM CABN
        INTO CORRESPONDING FIELDS OF TABLE G_T_CABN
         FOR ALL ENTRIES IN G_T_OBJECTS
       WHERE ATINN EQ G_T_OBJECTS-ATINN.
        SELECT ATINN ATWTB
          FROM CAWNT
          INTO CORRESPONDING FIELDS OF TABLE G_T_CAWNT
           FOR ALL ENTRIES IN G_T_OBJECTS
         WHERE ATINN EQ G_T_OBJECTS-ATINN AND
               ADZHL EQ '0000'            AND
               SPRAS EQ SY-LANGU.
      ENDIF.
    ENDFORM.                    " f_get_mat_klass
    If useful reward.
    Vasanth

  • Function Module for separating a date range into days

    Hi all,
    Does anyone know if there is a function module which gives back the list of days when we give a date range as input parameter to the function module. For example, we enter the range 10.07.2006 - 13.07.2006 and the function module gives back a table  in form 10.07.2006, 11.07.2006, 12.07.2006, 13.07.2006.
    Thanks,
    Sükrü

    Hi suekrue,
    1. Exactly for this purpose,
       i have written an
       INDEPENDENT FORM (subroutine)
      wherein we pass
       a) fromdate
       b) todate
       c) ITAB
    2. and it gives all the dates in the internal table.
    3. just copy paste
    4.
    data :  itab type table of sy-datum with header line.
    parameters : fromdate type sy-datum default '20060701'.
    parameters : todate type sy-datum default sy-datum.
    perform getdays tables itab using fromdate todate.
    break-point.
    FORM
    form getdays
    tables itab
    using fromdate todate.
      data : curdate type sy-datum.
      curdate = fromdate.
      do.
        if curdate > todate.
          exit.
        endif.
        itab = curdate.
        append itab.
        curdate =  curdate + 1.
      enddo.
    endform.                    "getdays
    regards,
    amit m.

  • Function Module for Changing delivery date

    Hi Friends ,
        I am held up with a scenario of changing the delivery date while creating purchase order. Could you please suggest any function module to change the delivery date in purchase order if it is less than 5 days.
    With Regards ,
    Sudhir S
    Moderator message: please do some own research before asking.
    Edited by: Thomas Zloch on Feb 21, 2011 11:45 AM

    Hi praveen for u r requirement there is no need of any FM
    Try this code
    parameters:
      p_date like sy-datum,
      p_no type i.
    data:
      w_date like sy-datum.
    w_date = p_date - p_no.
    write: / w_date .
    it is enogh for u r requirement
    plzz reward if it is usefull...
    for any further quiries my mail id is [email protected]
    plzz dont forget to reward

  • Function Module for getting J1IEX Data

    Dear All,
    Is there any F.M available for getting details whatever is posted in  J1IEX, like ED, Ecess, HEcess etc.
    regards,
    paras
    Point Assured.

    Hi,
    I'm not sure what you mean with 'textmodule' but try with function module READ_TEXT.
    Regards,
    Eduardo

  • Function module for converting German Data/Time to Indian Date/Time

    Dear All,
    My requirement is to convert German date and time to Indian date and time. Is there any function module available or any way we can get it?
    Thanks and regards,
    Atanu

    hi,
    first get the timezone of that country
    CALL FUNCTION 'TZON_LOCATION_TIMEZONE'
          EXPORTING
            if_country        = p_it_userid-zcountry
          IMPORTING
            ef_timezone       = l_tzone
          EXCEPTIONS
            no_timezone_found = 1
            OTHERS            = 2.
    then use the below statements
    -- Convert from server time to GMT
          CLEAR l_tstmp.
          CONVERT DATE l_datum
                  TIME l_ctime
             INTO TIME STAMP l_tstmp TIME ZONE sy-zonlo.
    *-- Convert from GMT to user backup time
          CONVERT TIME STAMP l_tstmp TIME ZONE it_usr_timezone-ztzone
            INTO DATE it_usr_timezone-zdate
                 TIME it_usr_timezone-ztime.

  • IDOC / BAPI for Variant Config

    Can anyone help with getting data out of Variant Config detailing all possibilities?  Does an extract/upload BAPI / IDoc exist?
    If not does anyone have any other advice on how to do this?
    Rgds,
    Mark

    Hi,
    If you are looking for Variant Config data of a Sales Order, then the function is VC_I_GET_CONFIGURATION
    The function expects VBAP-CUOBJ as the input
    regards,
    Advait
    Edited by: Advait Gode on Oct 28, 2008 10:16 PM

  • Function module for year todate

    Hi ,
    Here i am looking for a functiona module for year to date (YTD ) .
    For example fiscal year is Apr 2010 to till date we need to have the information . to get this kindly suggest the FM .
    Thanks
    Venkat

    Hi
    Please take some pain in searching on Forum.
    However have a look at this link but make sure you search for available information on SCN for all your future basic queries.
    [http://wiki.sdn.sap.com/wiki/display/ABAP/FunctionModulerelatedonDate+calculations]
    Regards
    Abhii

  • Any BAPI/Function Module for adding new record with dates in PA0027

    Hi all,
    I am tryig to find is there any BAPI/Function module for updating new record with Start Date and End date for specified Personal Number in PA0027 Table.
    In PA0027 table i will be passing start date and end date for selected personal number, it needs to add new record with this details in the table checking the condition that this start date and end dates should not be between any of of start date and end dates for the specified personal number.
    thanks for ur time.
    Murali

    Hi Raj/Suresh thanks for ur answers.
    but i am having a problem,i gave this values.
    INFTY               -
                0027
    NUMBER              -
                00000010
    SUBTYPE             -
                010
    OBJECTID
    LOCKINDICATOR
    VALIDITYEND         -
                03/12/2006
    VALIDITYBEGIN       -
                03/01/2006
    RECORDNUMBER        -
                000
    RECORD              -
                P0027
    OPERATION           -
                CHK
    TCLAS               -
                A
    DIALOG_MODE         -
                0
    NOCOMMIT            -
                Y
    VIEW_IDENTIFIER
    SECONDARY_RECORD
    i am getting short dump saying that
    The source field is too short.
    The current program, "SAPLHRMM", tried to assign a field to a field symbo
    However, the field is shorter than the type of the field symbol, which
    is not allowed.
    The statement in question is in the form ASSIGN f TO <fs> CASTING or
    ASSIGN f TO <fs> with a field symbol that was created using the
    STRUCTURE addition.
    I tried  operation - Chage,Create (same thing for all inputs)
    is this correct funtion moduel for my requirment?
    what ever i am passing the start and end dates this should check in the table records with this personal number and if this start date and end dates are not between of any start and end dates then it should add new record with this dates.
    Thanks for ur time.
    Murali.

  • Functional module for Getting Material classification data.

    Please tell me Functional module for Getting Material classification data like class type , class, characteristics and characteristics values for material.

    Dear,
    FM:
    CLAF_CLASSIFICATION_OF_OBJECTS
    Table KLAH Class Header Data
    - KSML Characteristics of a Class
    Regards,
    R.Brahmankar

  • How to create ENQUEUE function module for s567 table

    Hi Experts,
    Anyone Plz tell the steps how to create a ENQUEUE function module for the table s567.
    Its somewht urgent, plz help me.
    <REMOVED BY MODERATOR>
    Mohana
    Edited by: Alvaro Tejada Galindo on Mar 10, 2008 4:21 PM

    Hi,
    You can create a lock on a object of SAP thorugh transaction SE11 and enter any meaningful name start with EZ Example EZTEST_LOCK.
    Use: you can see in almost all transaction when you are open an object in Change mode SAP could not allow to any other user to open the same object in change mode.
    Example: in HR when we are enter a personal number in master data maintainance screen SAP can't allow to any other user to use same personal number for changes.
    Technicaly:
    When you create a lock object System automatically creat two function module.
    1. ENQUEUE_<Lockobject name>. to insert the object in a queue.
    2. DEQUEUE_<Lockobject name>. To remove the object is being queued through above FM.
    You have to use these function module in your program.
    Hope this will give a basic idea.
    Regards
    Sudheer

  • Function module for BSEG table

    Hi Guru's,
      SELECT bukrs
             belnr
             gjahr
             budat
             monat
             waers
             awkey
        FROM bkpf
        INTO TABLE i_bkpf_data
        WHERE  bukrs EQ pa_bukrs AND
               budat IN so_budat.
    SORT i_bkpf_data BY bukrs belnr gjahr.
        IF i_bkpf_data[] IS NOT INITIAL.
          SELECT bukrs belnr gjahr koart dmbtr wrbtr pswsl
                 kokrs kostl hkont aufnr lifnr ebeln buzei shkzg
            FROM bseg
            INTO TABLE i_bseg_data
            FOR ALL ENTRIES IN i_bkpf_data
            WHERE 
                    bukrs  EQ pa_bukrs AND
                   belnr    EQ i_bkpf_data-belnr AND
                   gjahr    EQ i_bkpf_data-gjahr AND
                   kostl    IN so_kostl AND
                   lifnr      IN so_lifnr AND
                   hkont   IN so_hkont.
       ENDIF.
    I got performance issue on this Query..while accessing the data from BSEG table,its makes performance issue in my program so i want to improve performance of the program.i was analysed that BSEG table makes performance issue..
    Hi..Anybody give the solution imporving this Query or give some function module for accessing BSEG table..
    Note..I want to pass my selection inputs also into function module..i was seen some function module for BSEG,those are not satisfying the my inputs so those also making performance issue..
    Regards
    P.Senthil Kumar

    Hi Everybody,
    About how to use this function Does anyone have an idea?
    I've found it.
    call function 'FI_DOCUMENT_READ'
    exporting
       i_awtyp = 'VBRK'
       i_awref = vbfa_tab-vbeln
       i_awsys = vbrk-logsys
       i_bukrs = vbrk-bukrs
       i_gjahr = vbrk-gjahr
    tables
       t_bkpf = xbkpf
       t_bseg = xbseg
    exceptions
    wrong_input = 1
    not_found = 2.
    But this is not enough.
    Best Regards Rasim.

  • How to config Check Digits function module for Student Number Validation

    Hi SLCM Experts,
    In the SAP-SLCM, How to use check digits function module for validate student number.  Just only config it or need to customizing program.
    *Any idea to student number validation in SLCM?*
    Best Regards,
    Suvatchai K.

    Hi ,
    Can you expalin it further ?
    You configure the St. no in piq_matr . And set it  as external or internal no. range which suits your business .
    What is the validation you are looking for ?
    Regards
    Gajalakshmi

  • Function Modules for Data and Time

    Hi all,
              I need 2 function modules for date and time. when we pass current data(sy-datum) and current time (sy-uzeit) into function modules, shoud get date in <b>dd/mm/yyyy or dd.mm.yyyy</b> and time in<b> HH:MM:SS</b> formats.
    Thanks in advance

    Hi Ranjith,
    i think this will b usefull for you..
    SAP Bar Chart Function Modules and what they are used for
    Function module
    Used for
    BARC_GRAPHIC_PBO
    Starting bar chart at PBO time, using a graphic profile (parameter PROFILE)
    BARC_GRAPHIC_PAI
    Analyzing data returned by the graphic
    BARC_SET_TIME_AXIS
    Setting start and end of time axis
    BARC_SET_OPTIONS
    Setting options
    BARC_ADD_CHART
    Creating a chart
    BARC_SET_CHART_ATTRIB
    Setting chart attributes
    BARC_ADD_SECTION
    Creating a section on the time axis
    BARC_SET_SECTION_ATTRIB
    Setting section attributes
    BARC_ADD_RIBBON
    Adding a ribbon to the time axis
    BARC_SET_RIBBON_ATTRIB
    Setting attributes for ribbons in the chart
    BARC_ADD_GRID
    Adding a time grid
    BARC_SET_GRID_ATTRIB
    Setting grid attributes
    BARC_ADD_LAYER
    Adding a layer (graphic elements)
    BARC_SET_LAYER_ATTRIB
    Setting layer attributes
    BARC_ADD_LINE
    Adding a line
    BARC_ADD_CALENDAR
    Creating a calendar
    BARC_SET_CALENDAR_ATTRIB
    Setting attributes for a calendar
    BARC_ADD_TIME_PROFILE
    Creating time profiles
    BARC_SET_TIME_PROFILE_ATTRIB
    Setting attributes for time profile
    BARC_ADD_INTERVAL
    Adding a time interval
    BARC_SET_INTERVAL_ATTRIB
    Setting time interval attributes
    BARC_ADD_TIME_OBJECT
    Creating a time object
    BARC_CONVERT_DATE
    Creating a date string in bar chart format
    BARC_REVERT_DATE
    Converting a date string in bar chart format to date and time
    BARC_ADD_DATELINE
    Creating a date line
    BARC_SET_DATELINE_ATTRIB
    Setting dateline attributes
    BARC_GET_PROFILE_CONTENTS
    Obtaining profile contents for customizing a chart
    BARC_GET_COLUMN_WIDTH
    Selecting new column width
    BARC_SET_COLUMN_WIDTH
    Setting the column width
    BARC_GET_TEXTINDEX
    Obtaining the text index of a field
    BARC_SET_LABELS
    Positioning the chart display
    BARC_SET_COLUMN_ATTRIB
    Setting column attributes
    BARC_SET_ROW_ATTRIB
    Setting row attributes
    BARC_SET_ROW_HEIGHT
    Setting the line height
    BARC_SET_MAXCHARTS
    Setting the maximum number of charts sent
    <b>If its usefull reward points
    </b>

Maybe you are looking for

  • Single Line and Stacked Bar Graph Representation

    Data to be plotted on graph is as follows Year and Month               Study               Planned Subject               Study-Site ID #               # Enrolled           2001 / 03          AMXN 9374               50     US-001               1      

  • Windows 8 will not download disc for officejet 4500

    My Officejet 4500 all in one cd will not download on a Windows 8 upgrade. Windows 8 sees the printer but not the scanner. HP web site support drivers do not make the scanner work either. What else can I do to make it detect the scanner?

  • Column number in JTextArea?

    Hi How do I get column number of current cursor in JTextArea? I need to display this info in my editor. This is complicated by the fact that tab size is not fixed, typing a combination of space and tabs randomly can result in tabs having tab size of

  • Trouble with carrying values over to other pages and calculating

    Hi folks - I have a calcuation I'm trying to do with five fields.  Three of the fields come from other pages in my PDF (there are 10 pages total).  When the first value gets carried over to my calculation, that number should show up in my 'Total' fie

  • Quick launch icon will not launch firefox 3.6.12

    this problem started two days ago. the only way I can launch Firefox is to launch in safemode