Jars for Excel related Functions in an Ecommerce Application

Hi,
I am currently working on an Ecommerce application .There is one requirement to download an Excel file with products and and then upload the Updated Excel file to create an order.Can somebody help me if there is an already existing jar file in Ecommerce application that contains Excel file related classes.
Please let me know if there is any way we can find out all the jars present in our Active DCs in NWDS.
Thanks and Regards
Arpita Saxena

Hi,
First check Go to Webdynpro Perspective here go to Navigator tab and check if there are any External Library DCs. These DCs contain all the JAR files used.
And also check Public Parts of that External Library DCu2019s Applications. Expand External Library DCu2019s Applications--Go to def. here out DC Public parts available. And Expand External Library DCu2019s Applications--Go to libraries here we can find out our jar Files
Finally were have to find out where we can use that Public parts in your Ecommerce application. Go to you are DC-DC Meta Data-Here we can find out that Public Part Name
By using that Public part we can easily finout what jar files we can use that DCu2019s Applications.
Hope this helps!!
Regards
Vijay K

Similar Messages

  • MySAP replacements for Excel upload function modules?

    I am doing some development in SRM 4.0 (WAS 640) and I notice that a few of my favorite function modules are no longer available.  Specifically, I'm missing these the most:
    KCD_EXCEL_OLE_TO_INT_CONVERT
    ALSM_EXCEL_TO_INTERNAL_TABLE
    Are there new equivalents?  I know how to access XLS files by writing my own OLE calls, but sometimes it's just easier to use the standard function modules instead.
    Yes, I've done a function module search, but I've found nothing that looks to the the same as my old friends.

    Hi Chris,
    I can't give you an alternative function module per say. Obviously, the downside of using SAP functions, that were probably never released for customer consumption anyway is that they can easily disappear. The suggestion I have is to use the features offered by DOI (desktop office integration). There in lies a set of classes and methods for generically accessing various documents (e.g. ms word, excel etc.) There is some examples in the re-use library (tcode se83). So here you don't need to be worried about the OLE either. Possibly in WAS there might also be some other classes that might access Excel sheets. Downside of finding a new function is that it might disappear in the next version you go to, whereas DOI is unlikey to disappear in a hurry. Best of luck.
    p.s. there are a few other postings in the forum, maybe one will give you an answer, if you haven't search already.
    Message was edited by: Michael Bennett

  • Unifiers for drag & relate with oracle forms application

    Hi All,
      Is it possible to do drag & relate functionality in the portal with oracle forms application?? Is there any unifiers already available for drag & relate functionality with oracle forms application ?? If yes, then can anyone share the information.
    Regards
    Moses

    Hi Moses, you can use D&R with querys in Oracle using query iviews.
    You can find a lot of information in:https://www.sdn.sap.com/sdn/ep.sdn?page=unification_welcome.htm
    Regards.

  • Error in running a function to convert coordinates in degrees to decimal for EXCEL VBA

    For your information, I have 3 cross-posts regarding this question - and all I can said there is still no firm solution regarding this error.
    1) http://stackoverflow.com/questions/27634586/error-in-running-a-function-to-convert-coordinates-in-degrees-to-decimal-for-exc/27637367#27637367
    2) http://www.mrexcel.com/forum/excel-questions/826099-error-running-function-convert-coordinates-degrees-decimal-excel-visual-basic-applications.html#post4030377 
    3) http://www.excelguru.ca/forums/showthread.php?3909-Error-in-running-a-function-to-convert-coordinates-in-degrees-to-decimal-for-EXCEL-VB&p=16507#post16507
    and the story of the error is as below:
    Currently I am working on VBA excel to create a widget to verify coordinates whether it lies under the radius of ANOTHER predefined and pre-specified sets of coordinates.
    In the module, I want to convert the coordinates from degrees to decimal before doing the calculation - as the formula of the calculation only allow the decimal form of coordinates.
    However, each and every time I want to run the macros this error (Run-time error '5', invalid procedure call or argument) will appear. Then, the debug button will bring me to below line of coding:
    degrees = Val(Left(Degree_Deg, InStr(1, Degree_Deg, "°") - 1))
    For your information, the full function is as below:
    Function Convert_Decimal(Degree_Deg As String) As Double
    'source: http://support.microsoft.com/kb/213449
    Dim degrees As Double
    Dim minutes As Double
    Dim seconds As Double
    Degree_Deg = Replace(Degree_Deg, "~", "°")
    degrees = Val(Left(Degree_Deg, InStr(1, Degree_Deg, "°") - 1))
    minutes = Val(Mid(Degree_Deg, InStr(1, Degree_Deg, "°") + 2, _
    InStr(1, Degree_Deg, "'") - InStr(1, Degree_Deg, "°") - 2)) / 60
    seconds = Val(Mid(Degree_Deg, InStr(1, Degree_Deg, "'") + _
    2, Len(Degree_Deg) - InStr(1, Degree_Deg, "'") - 2)) / 3600
    Convert_Decimal = degrees + minutes + seconds
    End Function
    Thank you.
    Your kind assistance and attention in this matter are highly appreciated.
    Regards,
    Nina.

    You didn't give an example of your input string but try the following
    Sub test()
    Dim s As String
    s = "180° 30' 30.5""""" ' double quote for seconds
    Debug.Print Deg2Dec(s) ' 180.508472222222
    End Sub
    Function Deg2Dec(sAngle As String) As Double
    Dim mid1 As Long
    Dim mid2 As Long
    Dim degrees As Long
    Dim minutes As Long
    Dim seconds As Double ' or Long if only integer seconds
    sAngle = Replace(sAngle, " ", "")
    mid1 = InStr(sAngle, "°")
    mid2 = InStr(sAngle, "'")
    degrees = CLng(Left$(sAngle, mid1 - 1))
    minutes = CLng(Mid$(sAngle, mid1 + 1, mid2 - mid1 - 1))
    seconds = Val(Mid$(sAngle, mid2 + 1, 10)) ' change 10 to 2 if only integer seconds
    Deg2Dec = degrees + minutes / 60 + seconds / 3600
    End Function
    As written the function assumes values for each of deg/min/sec are included with unit indicators as given. Adapt for your needs.
    In passing, for any work with trig functions you will probably need to convert the degrees to radians.

  • Jar-file for XPath extension functions

    Hi all,
    can anyone tell me which jar-file contains the class for the following xpath extension function / method:
    oracle.tip.pc.services.functions.Xpath20.currentDate
    I need this for an ant xsl validation which runs without JDev.
    Thanks in advance, Ingo

    When you go to :
    <ORACLE_HOME>/bpel/system/config
    you will find the file : xpath-functions.xml
    In this file you will see :
        <function id="getCurrentDate" arity="0">
            <classname>com.collaxa.cube.xml.xpath.functions.datetime.GetCurrentDateFunction</classname>
            <comment>
            <![CDATA[This function returns current date as string.
            <p/>
            The signature of this function is <i>ora:getCurrentDate('format'?)</i>.  The argument (optional) specifies a string formatted accoding to java.text.SimpleDateFormat format.]]>
            </comment>
            <property id="namespace-uri">
                <value>http://schemas.oracle.com/xpath/extension</value>
                <comment>Namespace URI for this function</comment>
            </property>
            <property id="namespace-prefix">
                <value>ora</value>
                <comment>Namespace prefix for this function</comment>
            </property>
        </function>This classname can be found in the orabpel.jar
    sorry..wrong function..
    Message was edited by:
    Eric Elzinga (IT-Eye)

  • Can anyone recommended an app for excel spreadsheet. One that I can username iPad that can do the same functions as excel of desktop,or laptop ??

    Can anyone recommended an app for excel spreadsheet. One that I can username iPad that can do the same functions as excel of desktop,or laptop ??

    Thanks for the advice. Just don't want to waste money on apps trying to get the right on. Not looking to do too much, just add filters maybe create a pie chart. Will the app you mentioned give added sums at the end of the spreadsheet like it would on the windows version?

  • Is therre drag and relate functionality in CRM  4.0 busi pack for sap 60.2

    Is there drag and relate functionality in CRM  4.0 busi pack for sap 60.2 .
    Rajendra redekar

    Hi Sriram,
    Mobile component changed to .Net  in 5.0 so the first upgrade of support packages should not be a problem.  Your only concern will be the rollout of the support package upgrade to the users in the field.
    I don't know much about the upgrade from 4.0 to 7.0 and the complications around the custom code migration from vb to .net.  I imagine this is something you may need to talk to SAP about.
    Depending on the amount of work involved it may be easy to upgrade the CRM system and do a re-implementation of the mobile component.
    Good luck.
    Cheers
    Andrew

  • Function module for finding related IDOCs of a document

    Hi All,
    I have a requirement where the inout will be shipment numbers. The expected output is the list of all the IDOCs that are related to the shipments. I know that this is a replica of the WE09 functionality but the users will not have access to WE09 and more over WE09 takes a long time to give this result.
    My expectation is someting like the relationship in the "Services for objects2 that we have in the document which will give this detail very quickly.
    I know one function module (WFMC_PROTOCOL_GET) which will give the list of outbound IDOCs if we know the output type  and the shipment number. Also there is another function module GOS_EXECUTE_SERVICE which will do very similar to the servie for objects. But I need to know exactly the class or function module which will give me the relationship output alone so I can use this for further processing.
    Also kindly let me know if there is some other standard way of looking  at this requirement.
    regards,
    Vijay V

    Vijay,
    You can use FM  'DRB_NEIGHBOURS_GET' for the required functionality . Here is sample code :
    DATA : L_BORIDENT  TYPE  BORIDENT ,
            T_RELATIONS TYPE TABLE OF BORIDENT .
      L_BORIDENT-OBJKEY = Delivery_no .      "Document no
      L_BORIDENT-OBJTYPE = 'LIKP' .          "Object type e.g. LIKP , BUS2025 
        CALL FUNCTION 'DRB_NEIGHBOURS_GET'
          EXPORTING
            BORIDENT           = L_BORIDENT
          TABLES
            T_RELATIONS        = T_RELATIONS.
    Linked Idoc type will be in table T_RELATIONS with OBJTYPE value equal to 'IDOC' .
    - Tushar Shukla

  • Analyzer for Excel and Office 2007: Issue on Data Refresh and Parameters

    Hi all,
    for a customer BIP workshop I want to prepare a demo and experience a strange issue. Hope this is known and bugfix or workaround exists.
    Created a very simple demo report with two columns and a numeric parameter. Called Excel Analyzer, the document opens correctly in Excel, data are filtered properly using the parameters initial value. I always have to log in to BI Publisher Server first, when a new instance of Excel is opened.
    Then I choose 'Show parameters' from the BIP add-on menu. My parameter is shown with its correct inital value. But: After pressing 'Refresh Data' (regardless if parameter value has been changed or not), a VBA error message (Code 1004) occurs. Then the excel cursor remains hourglass and no BIP related function is available in this opened Excel instance anymore.
    And another thing: After choosing 'Show Parameters' there appears a new empty column under 'Report Parameters' and the first cells of the table data are overwritten with parameter values.
    Think, something goes wrong there with Excel 2007. Unfortunately I only can use this version.
    Thanks in advance for hints. If I cannot fix this until Friday, customer will probably not be exalted by BIP :( .
    Edited by: KaiMoeller on 10.08.2009 23:57 'typos'

    fschulze,
    I face the same issue in Excel 2003: Run-time error 91, Object variable or With block variable not set.
    This happens everytime when I try to refresh the data after I open a saved excel template. But the refresh works fine when the report is initially downloaded using the Analyzer for Excel button
    Have you found the workaround for this problem ?
    Thanks.

  • Can I use NI Measure for Excel for stimulus response sequence?

    it seems the NI software 'Measure' for Excel allows for simple AI or AO but
    not sequential AO/AI, e.g. stim AO measure AI repeat for N rows of data.
    I can do one or the other but cannot see how to setup a button to
    do such a sequence. It is amazing to me that such basic functionality
    is not available out-of-the box, or am I missing something?
    Are there any more detailed VBA examples available online other
    than the extremely rudimentary ones provided on the CD?
    Apparently, this 'Measure' product hasnt been updated since 1998?
    Does this lack of development indicate there is a better alternative
    for doing Excel-based data acquisition?
    tia

    I have see this KB before.
    But I don't understand the simultaneous sampling.
    "E-Series Data Acquisition Cards multiplex all acquired signals to a single A/D converter. This introduces a slight phase delay between the acquired signals. In the case of the Lock-In Amplifier, the signal to be analyzed would then be phased relative to the acquired reference signal. That phase delay would adversely affect the phase accuracy of the Lock-In Amplifier."
    It mean I still can use E-series DAQ card, but the phase maybe not the real phase?
    If I can use the E-series DAQ card for a Lock-in Amplifier, what should I change the Lock-in amplifier start-up kit?
    Thanks

  • Problem for Report Generation Toolkit for excel 2000

    Hi all,
    Now I am Developing my program with Report Generation Toolkit 1.1.0 and Labview 7.1.
    In my computer I am using Excel XP, and there is not any problem. But when I build to
    a exe file, and use in a computer with Excel 2000, it didn't work.
    And I try to check the source file in this computer, I found that there any some connection
    error. And this is caused by the active X class. As I know Excel 2000 is using Microsoft Excel
    Object Library 9.0, but i cannot find it in the list of active x. So it is using Microsoft Excel Object
    Library with a very old verison. So in the property node there are missing functions, such as the
    UsedRange in _Worksheet in the Excel_Get_Range.vi. However, In VBA, I can find the 9.0 Library.
    Is it the problem of 9.0 library? How can I solve the problem? How can I upgrade the library to 10.0?
    Thanks.
    Regard,
    Ryan

    Hi Mike,
    Since my program is for all the staff in office, everyone may use it.
    I cannot call the whole office to upgrade the excel to XP.
    And I think Report Generation Toolkit is alway support Excel 2000,
    since the old version of it is not support for Excel XP.
    Regard,
    Ryan

  • Deployment Issues, Different  Jars for Diff Java in one application.

    HI,
    I need to put classpath (Jars) for my WEB-INF/classes. Different Jars for Diff files in one application.
    The problem is , for one ofmy application, the lib files are x.jar and y.jar , x is older than y but have same
    lib files. in x and y, there is one class , r.java , which have a method method1(). whey they are doing modifications in y.jar , the r.java has changed to new vertion, the method method1() they re-written the body.
    My application have 5 java files, in which 2 files uses r.java imported from the x.jar earlier.
    Now we need to use y.jar because , the y.jar have more files added with good futures. But the earlier 2 files are giving exception if i use y.jar.
    I need solution for this. how can i put classpath for the 2 files to use the x.jar and other files to use y.jar in the same application.
    I am using a Tomcat 4 server. only Servlets, JSPs I am using.
    Thank you,
    Kiran

    I may be missing something here, is y.jar a newer version of x.jar? And if it is do you need x.jar at all? Are there classes in x.jar that do not exist in y.jar? Can you modify your application to provide the same functionality and only use y.jar?

  • How can I create a Text-Input Field in BexAnalyzer for a Planning Function

    Hello,
    i want to create a pre calculation(contribution accounting) for Materials in BI-Integrated Planning. These Materials aren't in the master data. So I create a new Info Object for pre calculated materials with only a material-number as key and a text-description.
    Now I want to write a Exit-Function, which creates new materials in these Info Object. The user should start this function in a planning application in BexAnalyzer. There the user should have the possibility to enter a text-description for the new material. How can I create such a Text-Field in BexAnalyzer and how can I read this text filed in a planning function (exit).
    Thanks in advance

    Hi Jürgen,
    you can create a parameter for this in the exit function and a variable for the parameter. In BEx Analyzer then create a button for the planning function; in the button parameterization use VAR_NAME = , i.e. use an Excel formula here to get the value from an Excel input field.
    The command range should be some 'hidden area' in your Excel sheet.
    But may be you don't need this. Use a characteristic without master data. Then ensure that that the query uses the option 'key' as display. In new lines you can then enter the key, the system creates a SID on the fly (but the text table will not be updated). In this scenario you may take text also from the key. May be you can update the text table (online or in batch) by simply using function modules from function group RSNDI_MD (not released by SAP).
    But observere that the system in BI Planning reads only the active version, i.e. if you change something on the fly the changes may not be visible.
    Regards,
    Gregor

  • Creation of Sales org views for customers related to vendor

    Hello All,
                 Can any body tell me is there any functional module which can be used to created the sales org views for customers related to vendors.
    Regards
    Srinivas

    Hi Ravi,
    the number of sales area possible would be 6 sales area,
    yes you can of course use the common master data functionality
    After creating the organizational structure and relevant master records you want to use as the masters, that is, in the distribution channels and divisions you are going to use as a reference, you can group distribution channels and divisions separately for master data (which combines customer master and material master records), group condition records, or both master data and condition records.
    Letu2019s say you have a product range that is not different for the four different distribution channels you have (the channels could be telesales, retail, industry, and wholesale.) Neither is there a difference in the customersu2019 details when they purchase through one or the other. Thus, you will not want to create a multiple of four views of customer master and material master records. Merely create the customer master records and material master records in one of the distribution channels, such as retail. Then assign the other distribution channels you created in the organizational structure setup to this one.
    Donu2019t forget this means you can only create or change master data in the distribution channel that is being referenced. In the scenario above, this means you can only change data for the retail distribution channel. Even if you should access a customer or material master in change mode, press F4 (possible entries), and select telesales, industry, or wholesale, you will receive a message u201CSales area is not defined . . . u201D
    The same is true for the sharing of conditions. If conditions are shared, you need only create a condition in the distribution channel or division you are using as the reference. Obviously, this only pertains to conditions that have the distribution channel and/or division in their key, such as a price based on sales area
    Revert if helpful
    Mohit Singh

  • Best practice for read-only functionality

    Hi,
    I'm part of the development team of a system with about 100 screens. The customer would like us to add some read-only functionality to the system, so that certain users are able to access the screens but not change any of the data on them. We already have policies in place on the database level that keeps read-only users from saving data, but it's not very user friendly to allow users to change data on a screen, only to tell them that they're not allowed to save those changes once they try to do so. It would clearly be better if all components are rendered as read-only components for read-only users, making them unable to make any data changes in the first place.
    User privileges in the system are controlled by roles defined and set in the system (not ADF roles or Weblogic roles). At any given time and place, it's possible to check whether the current user has a certain role. We already use this in a number of places to make it possible to control which user has access to which screens. In a few places we even control which functionality should be enabled for the current user within a screen, but mostly the access control is currently on the screen level. With read-only users getting access to all screens, it seems we will need lot of extra in-screen access control to keep these users from changing anything.
    But what's the best practice here? One way to go would be to add some logic to every single active component on every single screen, to determine whether it should be rendered as active or disabled/read-only. But that would require a lot of extra coding.
    So my question is: Is there a smarter way to do this? Maybe something done through skinning? Or something else?
    (I'm not sure how relevant this is for this sort of question, but we're currently using JDev 11.1.1.4.0, and expect to upgrade to 11.1.1.6.0 within the next 6 months)
    Best regards,
    Andreas

    Hi Guna, Puthanampatti and Don,
    Thanks a lot for your replies. I'm currently looking into implementing something along the lines of what Guna has suggested:
    Our application consists of a number of individual work spaces that are deployed as adflibs which have all been added to a "master application work space", and the master application is deployed as an .ear file. Most of the individual work spaces are for all the different functional areas of the application, with their own task flows, page fragments etc. The rest are work spaces with common functionality, like datamodel (entity definitions), utility methods, page templates, and framework extensions. In the latter, we have defined custom classes for all the base classes (somewhat similar to what Don describes, I believe).
    In our custom class for ViewRowImpl, I have added an isAttributeUpdateable method, and in our custom class for ApplicationModuleImpl I have added an isReadOnlyUser method. The isAttributeUpdateable method uses the isReadOnlyUser method to determine if the current user is a read-only user or not; if the user is a read-only user the isAttributeUpdateable method will return false, otherwise true. The isReadOnlyUser method in our base class is just a dummy method that always returns true. But in the ApplicationModuleImpl classes of our individual work spaces, i've written an override for isReadOnlyUser, giving the answer that is relevant for the work space in question (for instance, whether or not the current user has the role "User Administrator").
    That pretty much takes care of all input fields in tables and forms, which is a big step in the right direction. This still leaves some work to be done for components that are not directly linked to view object attributes (like buttons), but I guess that can't be helped. Also, there are a few of the work spaces that contain a number of pages that are related to different user privileges (as in: page 1 requires user privilege A, and page 2 requires user privilege B); in these cases I will have to do something different than just writing an override in the "local" ApplicationModuleImpl class.
    @Don: What you describe seems to be pretty close in functionality to what we already have, though your implementation is different from ours. You have used your custom base ApplicationModuleImpl class to keep read-only users from committing changes. We use Virtual Private Database and database policies to the same end: If a user without the required full-access role tries to commit data it will cause a database error, which we then handle in the application (so the user gets a message like "You don't have the required privileges to changes this data", rather than an ORA message). Unfortunately, our customers are not content with this. They want a solution where all input fields and most of the buttons etc. are disabled for read-only users, and that's why I'm looking into the best/smartest way to do this.
    @Puthanampatti: We already use something similar to what you're suggesting. The challenge I'm currently facing is how best to disable/enable components based on the current user's roles, not how to determine and store those roles.
    Best regards,
    Andreas

Maybe you are looking for