How to Bring Characterstics into COPA form & Report

HI,
I have created some user defined characterstics in COPA. I need to bring them in to COPA form & Report. Now in COPA form Creation, i am able to get those Charcterstics to select. But after selecting those characterstics - system is asking to select the Heirarchy from the hierarchy node.
Even those charcterstics are coming in KES1 transaction code. But when i double click them in KES1 it is giving error message this program doesnot support.
Kindly advise me how to fix this and how can i get the hierarchy details in COPA form.
Thanks
Kishore

Hi Guru / Experts,
Could u suggest me how i can bring Product  wise / Product group wise / customer group wise Profitability report, Senirio is Manufacturing Plants are four plants different location are producing the same Finished goods and the same to stock moved to single werehouse location for sales activity so  here material /  Material group is unique , same material number is  extended to all manufacturing plants, how i can bring in copa using charastrics using customer and material table which table is sutable for our requirements, please advice me ,
your valid points are accepted,
Regards,
Vinu

Similar Messages

  • How to convert smartforms into Adobe forms.

    Hi......
    How to convert smartforms into Adobe forms.
    Regards
    Anbu B

    Hi,
    You need to use the Function Module CONVERT_OTF.
    Please check the below code
    REPORT zsuresh_test.
    Variable declarations
    DATA:
    w_form_name TYPE tdsfname VALUE 'ZSURESH_TEST',
    w_fmodule TYPE rs38l_fnam,
    w_cparam TYPE ssfctrlop,
    w_outoptions TYPE ssfcompop,
    W_bin_filesize TYPE i, " Binary File Size
    w_FILE_NAME type string,
    w_File_path type string,
    w_FULL_PATH type string.
    Internal tables declaration
    Internal table to hold the OTF data
    DATA:
    t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
    Internal table to hold OTF data recd from the SMARTFORM
    t_otf_from_fm TYPE ssfcrescl,
    Internal table to hold the data from the FM CONVERT_OTF
    T_pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE.
    This function module call is used to retrieve the name of the Function
    module generated when the SMARTFORM is activated
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = w_form_name
    VARIANT = ' '
    DIRECT_CALL = ' '
    IMPORTING
    fm_name = w_fmodule
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Calling the SMARTFORM using the function module retrieved above
    GET_OTF parameter in the CONTROL_PARAMETERS is set to get the OTF
    format of the output
    w_cparam-no_dialog = 'X'.
    w_cparam-preview = space. " Suppressing the dialog box
                                                        " for print preview
    w_cparam-getotf = 'X'.
    Printer name to be used is provided in the export parameter
    OUTPUT_OPTIONS
    w_outoptions-tddest = 'LP01'.
    CALL FUNCTION w_fmodule
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    control_parameters = w_cparam
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    output_options = w_outoptions
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    job_output_info = t_otf_from_fm
    JOB_OUTPUT_OPTIONS =
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    t_otf[] = t_otf_from_fm-otfdata[].
    Function Module CONVERT_OTF is used to convert the OTF format to PDF
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    MAX_LINEWIDTH = 132
    ARCHIVE_INDEX = ' '
    COPYNUMBER = 0
    ASCII_BIDI_VIS2LOG = ' '
    PDF_DELETE_OTFTAB = ' '
    IMPORTING
    BIN_FILESIZE = W_bin_filesize
    BIN_FILE =
    TABLES
    otf = T_OTF
    lines = T_pdf_tab
    EXCEPTIONS
    ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    ERR_BAD_OTF = 4
    OTHERS = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    To display File SAVE dialog window
    CALL METHOD cl_gui_frontend_services=>file_save_dialog
    EXPORTING
    WINDOW_TITLE =
    DEFAULT_EXTENSION =
    DEFAULT_FILE_NAME =
    FILE_FILTER =
    INITIAL_DIRECTORY =
    WITH_ENCODING =
    PROMPT_ON_OVERWRITE = 'X'
    CHANGING
    filename = w_FILE_NAME
    path = w_FILE_PATH
    fullpath = w_FULL_PATH
    USER_ACTION =
    FILE_ENCODING =
    EXCEPTIONS
    CNTL_ERROR = 1
    ERROR_NO_GUI = 2
    NOT_SUPPORTED_BY_GUI = 3
    others = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Use the FM GUI_DOWNLOAD to download the generated PDF file onto the
    presentation server
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE = W_bin_filesize
    filename = w_FULL_PATH
    FILETYPE = 'BIN'
    APPEND = ' '
    WRITE_FIELD_SEPARATOR = ' '
    HEADER = '00'
    TRUNC_TRAILING_BLANKS = ' '
    WRITE_LF = 'X'
    COL_SELECT = ' '
    COL_SELECT_MASK = ' '
    DAT_MODE = ' '
    CONFIRM_OVERWRITE = ' '
    NO_AUTH_CHECK = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    WRITE_BOM = ' '
    TRUNC_TRAILING_BLANKS_EOL = 'X'
    WK1_N_FORMAT = ' '
    WK1_N_SIZE = ' '
    WK1_T_FORMAT = ' '
    WK1_T_SIZE = ' '
    IMPORTING
    FILELENGTH =
    tables
    data_tab = T_pdf_tab
    FIELDNAMES =
    EXCEPTIONS
    FILE_WRITE_ERROR = 1
    NO_BATCH = 2
    GUI_REFUSE_FILETRANSFER = 3
    INVALID_TYPE = 4
    NO_AUTHORITY = 5
    UNKNOWN_ERROR = 6
    HEADER_NOT_ALLOWED = 7
    SEPARATOR_NOT_ALLOWED = 8
    FILESIZE_NOT_ALLOWED = 9
    HEADER_TOO_LONG = 10
    DP_ERROR_CREATE = 11
    DP_ERROR_SEND = 12
    DP_ERROR_WRITE = 13
    UNKNOWN_DP_ERROR = 14
    ACCESS_DENIED = 15
    DP_OUT_OF_MEMORY = 16
    DISK_FULL = 17
    DP_TIMEOUT = 18
    FILE_NOT_FOUND = 19
    DATAPROVIDER_EXCEPTION = 20
    CONTROL_FLUSH_ERROR = 21
    OTHERS = 22
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks,
    Ruthra

  • How to install database 10g and forms&reports developer 10g?

    hi
    how to install database 10g and forms & reports developer 10g on windows xp 32 bit? and which one is to install first? how to connect them together? where can i find complete guide

    Gul wrote:
    hi
    how to install database 10g and forms & reports developer 10g on windows xp 32 bit? and which one is to install first? how to connect them together? where can i find complete guideThis link will help you http://tahiti.oracle.com/

  • How long Oracle plans to support Forms/Reports 6i ?

    Hello dear Oracle Forms users/developers,
    The "Oracle Forms: Features Obsolescence for Release 9i", which I downloaded from OTN, clearly indicates that the client-server runtime will be obsolete in 9i, and (quote) "users who currently deploy their application in a client-server environment and who wish to upgrade to 9i will have to Web-deploy their application as part of the upgrade process" (page 3). It also indicates that Oracle Graphics will not be shipped with Forms 9i. If someone needs Graphics, then Graphics 6i (not 9i) need to be installed into a separate Oracle_Home...
    I have been trying to convince some Oracle product managers for years to continue supporting the runtime environment. Oracle always refused to include the "runtime only" installation option for any flavor of unix (eventhough it was available for windows).
    The above news (of the fading away of client-server runtime option) really did upset me.
    We have been developing applications with Oracle Forms/Reports/Graphics for the client-server environment as the database frontend to different simulation models. Our forms includes buttons that allows the end-users to download/upload ascii files to the file system/database. We and our customers (including the international users) are very happy with the client-server runtime option and don't want to use the forms server (or the iAS) just to be able to run these complex forms/reports/graphics applications.
    Oracle keeps telling people that it will be cheaper to move to iAS and serve the forms via iAS forms services. For small size client-server applications this is absolutely not true. We are an Oracle partner and I have discussed the licensing issues with them and am aware of the deploying costs. Let me tell you couple of things:
    1. Oracle forms/reports services included only in the enterprise version of 9iAS, not the standard version.
    2. If the end-user is licensed for Oracle database server and has a copy of Forms/Reports Developer 6i, then they can run the client-server application without any extra license (number of users does not apply in this case).
    3. Forms/Reports Developer 6i is not a separate product and could be obtained by purchasing iDS (internet Developer Suite) or iAS EE license. iDS is a windows only product and includes designer 6i, Jdeveloper additional to the forms/reports developer 6i. Someone might say, "the end-user might not need all the extra just to be able to run your forms". Answer to that is the cost of purchasing a 2 years license for iDS is almost equal or cheaper than the cost of 2 years named user license (based on the fact that 9iAS EE has a 10 named user minimum requirement). And the end-user can install only the forms/reports part of iDS (given the fact that forms/reports 6i is available for different platforms including solaris - does not have to be windows).
    4. This information if from the Oracle Partnership and any Oracle employee which doubts about it should talk to them to verify.
    Here are my questions:
    ========================
    Given all these FACTS (our satisfaction level with the client-server environment with Forms/Reports Developer 6i and the licensing information) I would like to ask to those Oracle employees (or personnel) how they justified the termination of the client-server runtime in Forms 9i?
    If the Forms/Reports Developer 6i will be the only (and the last) version that supports client-server runtime environment, how long Oracle is going to support it?
    I need to know to decide if we should use the forms/reports in our future projects or not.
    Thank you (for reading all this crap) and best regards.
    Zafer AKTAN
    Oracle DBA/Developer

    Question 1
    I would like to ask to those Oracle employees (or personnel) how they justified the termination of the client-server runtime in Forms 9i?
    This descicion was made from feedback from our customers. Feedback from the Forms Customer Advisory Board and the Oracle Developer Tools Group (ODTUG) indicated that they are 1)in the process of moving their client-server applications to the web, 2)have already moved to the web, 3)are looking at web stategies and 4)this is also the direction that Oracle Applications division is taking.
    It is proven that while liscencing for the web may not be cheaper in itself, the total cost of ownership is cheaper with web deployment once you figure in the ease of maintanence, deployment, and configuration.
    Question 2
    If the Forms/Reports Developer 6i will be the only (and the last) version that supports client-server runtime environment, how long Oracle is going to support it?
    Yes, Forms 6i is the last version to support client-server runtime. 6i will be patched through 2006 with extended support through 2008.
    Regards,
    Candace Stover
    Forms Product Management

  • How to add metadata into XDP form

    Hi,
    I am new to LiveCycle Designer. Wondering if there is a way to add PDF metadata into XDP form?
    I tried adding it into the XML source under the <x:xmpmeta> section, but the rendered PDF output file lost the metadata I added in the XDP.
    <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.2.1-c041 52.337767, 2008/04/13-15:41:00        ">
       <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
          <rdf:Description xmlns:xmp="http://ns.adobe.com/xap/1.0/" rdf:about="">
             <xmp:ModifyDate>2009-09-14T15:44:32+05:30</xmp:ModifyDate>
             <xmp:CreateDate>2009-09-14T15:44:31+05:30</xmp:CreateDate>
             <xmp:MetadataDate>2010-12-08T19:42:13Z</xmp:MetadataDate>
             <xmp:CreatorTool>Adobe LiveCycle Designer ES 8.2</xmp:CreatorTool>
          </rdf:Description>
          <rdf:Description xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" rdf:about="">
             <xmpMM:DocumentID>uuid:129e34eb-49a8-43f4-a934-43f67f5d6891</xmpMM:DocumentID>
             <xmpMM:InstanceID>uuid:ee103292-b266-4bb8-b1d1-71d29fe339e2</xmpMM:InstanceID>
          </rdf:Description>
          <rdf:Description xmlns:dc="http://purl.org/dc/elements/1.1/" rdf:about="">
             <dc:format>application/pdf</dc:format>
          </rdf:Description>
          <rdf:Description xmlns:pdf="http://ns.adobe.com/pdf/1.3/" rdf:about="">
             <pdf:Producer>Adobe LiveCycle Designer ES 8.2</pdf:Producer>
          </rdf:Description>
          <rdf:Description xmlns:ABC="ABC (http://www.abc.com)" rdf:about="">
             <ABC:XYZ>&lt;?xml version="1.0" encoding="utf-8"?&gt;
    &lt; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.abc.net/API/3.0"&gt;
    </ABC:XYZ>
          </rdf:Description>
          <rdf:Description xmlns:desc="http://ns.adobe.com/xfa/promoted-desc/" rdf:about="">
             <desc:version rdf:parseType="Resource">
                <rdf:value>8.0.1291.1.339988.308172</rdf:value>
                <desc:ref>/template/subform[1]</desc:ref>
             </desc:version>
          </rdf:Description>
       </rdf:RDF>
    </x:xmpmeta>
    Appreciated!
    lcfun

    Ohh, I see.
    But I think you can do this in a workaround with PDF, like the following.
    1. Load a form in Designer
    2. Delete possibly existing metadata in the XML Source <desc> ... </desc>
    3. Add fragment with the scripting for the metadata changes
    4. Save as PDF
    5. Close the PDF
    6. Reopen the PDF
    7. Save as XDP

  • How to bring different Word docs in Reports 6i

    Hello,
    I want to bring some formatted text (Word file) into my report.
    In fact, for every customer in my report I have a different formatted text to display.
    Using OLE2(Create from File)I have to specify exactly the name of the file(one file for the entire report).
    What I want is that the name of the file to be different from one customer to another.
    Does anybody know how can I do that?
    I don't want to use txt files and format them in the report.
    Thank you,
    Monica

    Mira,
    The trick here is not to create the OLE object directly in the layout (as you have been), but to use the Read From File functionality provided.
    For any field in the layout, you can go to the property palette and set the 'Read From File' property to be 'Yes'. Once you do this you'll get another property 'File Format' which you can set to the be the format of file to read (in your case OLE2).
    Now, when Reports runs instead of just formatting this field, it will look at the value and try to open that file from the filesystem. Take a look at the on-line help and examples of 'Read From File' for more information.
    Regards,
    Danny

  • How to bring InfoAreas into BEx Analyzer

    Hi Experts,
    Q1: I have a total of 24 InfoAreas in InfoProvider(Admn Workbench), but I do see only 7 of them in Open Query dialog box of BEx Analyzer. How do I bring in a particular InfoArea(and all related objects) into Open Query Dialog box.
    Q2: I want to see all the queries in Transport Connection's Query Elements(for selection to transport). I have 7 queries in BEx, but I could see only 2 in Transport Connection.
    Please help.

    Hi,
    You can only see those for which you have queries created...to see all, click on the new query icon (blank page).
    You can click on Select Objects and look for the other queries. The list is just like some 'history' viewing.
    Hope this helps...

  • How to convert files into pdf forms? (claiming winning forms)?

    How to convert into forms into pdf files?

    Please refer : http://www.adobe.com/content/dam/Adobe/en/products/acrobat/pdfs/adobe-acrobat-xi-convert-f orms-into-fillable-pdf-tutorial_ue.pdf

  • How to bring content into portal

    Hi, I am new to the portal world.  The company i work for has their own "intranet" site and I want to bring some content from our "intranet" site into the portal.  How do I go about doing this?

    Hi,
    You can do this in many ways.
    One ideal way of doing it is by using an appintegrator.
    You will be creating a system that points to the url.
    Then you should be creating an iview to point to the system.
    Then you can configure usermapping for this.
    Please refer to the following link:
    Step-By-Step Guide to implement Application Integrator
    If you are directly using the url Iview then,you cannot access the content from outside the network.
    You can also use a proxy in order to point to the intranet website.
    A simple example would be to set up an IISproxy and create a web site(which can be accessed from outside).
    This website will have pages which point to intranet content.This website url can be used in configuring a url Iview.
    For more information on IIS Proxy,
    you can refer to the Microsodt documentation on the internet.
    You can also use other intermediary servers,
    Regards,
    Harish
    Message was edited by: HARISH SUBRAMANIAN
    Message was edited by: HARISH SUBRAMANIAN

  • Struts: how to populate info into a form?

    Hi there,
    quick question in struts: a user logs in the system and immediately sees his account information (composed of name, address...)
    the user's info is retrieved from the db during the login phase.
    Q: after the login, how can I populate the user's info in the form of the accountPage.jsp?
    I tried to do this (login.java):
    UserInfomationFrom uif = new UserInformationForm();
    uif.setUser(user);but that of course dies because of the scope
    thanks

    PjonesCET wrote:
    Right Click Desired Field to create multiples of:
    this menu will come up : http://screencast.com/t/NzI4ZDA1
    Choose  and then place fields as needed.
    Phillip, this won't work as it creates fields with different names. grafiti's answer is the best.

  • How to bring my iCal over form old Mac to my new Mac?

    Just bought a new MacBook Pro and I want to bring my calendars over from my old Powerbook into my new MacBook. Any ideas?
    Charles

    ciazzi,
    Do you have Tiger installed on the Powerbook?
    If so, it should be very easy. I will assume that you are using Tiger on your current iMac. In that case, just use iCal>File>Back up Database..., and transfer the .icbu file which was created to your new Mac. Then open the iCal application on your new Mac and select the .icbu file by using iCal>File>Import...>Import...
    ;~)

  • How to create an install for forms & reports

    I would like to create an install file that would load an application we developed (used 6i forms and reports). This application would be installed on the client side and will be used to access a database on the server side. I vaguely remember something called a "make file", but I am finding nothing on it. Any info would be greatly appreciated.

    You can use Oracle File Packager (C:\orawin95\BIN\OISFP10.EXE). I use it successfully. Your installation will look like Oracle installation.
    Helena

  • How to bring new rupee symbol in reports

    Dear Gurus,
    We have a requirement that in all the exixting reports we need to show the new rupee symbol as $ comes doe USD.
    Please help me with the steps to do this.
    Thanks in advance.

    Suggested by SAP in OSS 1503523
    Solution
    We recommend to postpone usage of the new character INDIAN RUPEE SIGN until the character and its code point have been formally released with Unicode standard 6.0.
    When you decide to use INDIAN RUPEE SIGN before it is formally released, make sure, that your input methods and fonts use the code point U-20B9 for the INDIAN RUPEE SIGN and that the official layout of the INDIAN RUPEE SIGN is used.
    Using a different code point for the INDIAN RUPEE SIGN will cause future problems with data consistency, data communication and searching.
    SAP currently does not provide input methods or fonts which cover the INDIAN RUPEE SIGN nor has any suggestions, which input methods or fonts can be used.
    INDIAN RUPEE SIGN cannot be used in Non-Unicode SAP systems.

  • How to bring pictures into icloud for friends to see and download?

    Is it possible to communicate my pictures in icloud to my friends? They should be able to download them on their devices like in e.g. dropbox.

    No. iCloud does not currently have a publicly viewable web gallery feature.

  • How to merge spreadsheets into PDFs form at the right locations.

    The spreadshhet is in .xlsx format.
    Ideally I'd like for the pdf to update from the data in Excel and when a change is made to the Excel data, the pdf would change also.  However, if we need to make it where I have to update the pdf by clicking an update key, that would work too.
    Here - https://www.dropbox.com/home/Trying%20to%20do%20it ; is a layout of what I trying to do.  I am only looking at D to E right now. If you want to see the original PDFs file and spreadsheet, please feel free to ask.
    Kindly help me it is very important for me.

    Try adding an 'open finder items' to the end of the workflow.
    You can then 'save as' to any location you require and check the pdf to make sure its all been got in step 1.
    I can't see another free way of doing this.
    The 'save result' part of this set of actions might do it:
    http://www.apple.com/downloads/macosx/automator/automatorworkflowadditions.html
    but is a demo, so will cost.

Maybe you are looking for