DATAEXPORT file  in custom defined Order?

Hi ,
I had a requirement to export Lev0 (Dynamic Calc) data from BSO application. I am able to do the export by using "DATAEXPORT" function, but the export file contain the default order as per dimensions design from outline.
I am pretty sure that i can do from the UDF fictions like "JExport", but my company policy won't entertain us to use CDF/UDF.
Appreciate if you Could suggest is there any way to export the data in custom defined order by using "DATAEXPORT" function?
Thanks,
Sriknath Reddy.

in dataexport, the column order is dictated by the dense and sparse dimensions and the dimension order in the outline. You could change but it could have performance impacts on other things. Another option would be to export into a relational table then you could extract from there in any order yo0u want. If this is not an option , the perhaps a report script

Similar Messages

  • Error while creating Custom Defined Functions in Essbase

    <p>Hi All,<br>I am trying to create CDF(Custom Defined Functions) in Essbase. Iwant to create a function which take list of child member andreturn the first child. For this, i have created a java file called"ChildAccess.java" which contains the following code:<br>public class ChildAccess<br>{<br>public static char GetFirstMember(char [] members)<br>{<br>return members[0];<br>}<br>}<br>I have compiled and made jar file called"ChildAccess.jar" and pasted it at"ARBORPATH/java/udf". Then i restarted the Essbase Serverand run the following MaxL command to register the function<br>create or replace function '@ChildAccess' as<br>'ChildAccess.GetFirstMember'<br>spec '@ChildAccess(memberRange)'<br>comment 'adds list of input members'.<br>Till here i am not getting any error but when i am using thisfunction in my calc script as given below<br><br>FIX(@ChildAccess(@CHILDREN("Abc")))<br><br>it gives the following error<br>"Error:1200414 Error parsing formula for [FIX STATEMENT]<br>(line 2)"argument[1] may not have size[6] in function[@CHILDREN]"<br>NOTE: The SIZE[6] is giving the no. of child in member"ABC".<br><br>Thanks in Advance<br>Arpit</p>

    If you want to use the CDF in a FIX statement you need to make sure that it returns a member name rather than a number:<BR><i><BR>public class ChildAccess<BR>{<BR>    public static String GetFirstMember(String[] members)<BR>    {<BR>        return members[0];<BR>    }<BR>}<BR></i><BR>I prefer to define the function against a specific application rather than globally because you only need to restart the application in order to pick-up any modifications to the .jar file. So the MaxL function definition would be:<BR><i><BR>    create or replace function appname.'@_GETFIRSTMEMBER' as<BR>        'ChildAccess.GetFirstMember(String[])';<BR></i><BR>and in the calculation script the FIX statement would become:<BR><i><BR>    fix ( @member( @_GetFirstMember( @name( @children( "Abc" ) ) ) ) )<BR></i><BR>This looks a little messy so you can use a macro to simplify it:<BR><i><BR>    create or replace macro appname.'@GETFIRSTMEMBER'(single) <BR>        as '@member( @_GETFIRSTMEMBER( @name( @@1 ) ) )' <BR>        SPEC "@GETFIRSTMEMBER(memberRange)";<BR></i><BR>and then the FIX statement could be written:<BR><i><BR>    fix( @getfirstmember( @children( "PRODUCT" ) ) )<BR></i>

  • I transferred files from a NAS server to the Mac Mini Snow Leopard Server and now some of the files have Custom Access and can't  be opened by some users.  How do I fix this?

    We're setting up our Mac Mini Snow Leopard Server, and in the process transferred files that had been stored and accessed from our Blackarmor NAS server over to the Mac.  These files were all created on PC's and are Office Excel files, WordPerfect files or PDF's.  When you look at the files on the Mac from the Mac and bring up Get Info for the affected file, it says that the file has Custom Access.  The files that work properly don't have that configuration.  I can access and open the files on some computers, but some users can't open the files from their computer even though they can see it.  We're all using PC's and they get the Error:  Access Denied-Contact your administrator--or something similar.  I've seen on the web similar issues and it may have something to do with ACL permissions.  I don't know enough about Mac OS to understand this, but what is baffling is that they can be opened from some PC's but not others, and all of the Users have the same accessibility to the files.  Thanks for a solution!!

    Oh, on the losing Internet, try this...
    Make a New Location, Using network locations in Mac OS X ...
    http://support.apple.com/kb/HT2712
    10.7 & 10.8…
    System Preferences>Network, top of window>Locations>Edit Locations, little plus icon, give it a name.
    10.5.x/10.6.x/10.7.x instructions...
    System Preferences>Network, click on the little gear at the bottom next to the + & - icons, (unlock lock first if locked), choose Set Service Order.
    The interface that connects to the Internet should be dragged to the top of the list.
    Instead of joining your Network from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.
    For 10.5/10.6, System Preferences>Network, unlock the lock if need be, highlight the Interface you use to connect to Internet, click on the advanced button, click on the DNS tab, click on the little plus icon, then add these numbers...
    208.67.222.222
    208.67.220.220
    Click OK.
    PS. Your English is quite good & completely understandable.

  • Populating the Partners from Sales document (Customer/Sales order/delivery)

    Hi All,
    Is there any way to Populate the Partners which are mantained in Sales document (Customer/Sales order/delivery) into Customer Quality notification (Q1)
    Presently only Sales to party and ship to party is getting populated when we create Q1 notification.
    Thanks in advance
    jay

    Explore :
    Quality notification>Notifcation creation->partner->Define partner fuction procedure->Assign Partner Functions to Notification Type--->
    Check here whether you can get here the partner function.

  • How to get custom defined messages in WAD

    Hi
    can you please help me how to get customized error messages in WAD.
    While I'm executing in RSRT the customer exit variable throws error message saying that 'No Sales orders exist for this Sold_To Party' but when I execute same query using Bex WAD, then no error message throwing for me for given sold_to party. I tried with all options as given in below code, but WAD gives me system error that "No values found for the customer exit variable 'Zxxxx'. Please help me in this regard. Should I do any settings in WAD to get custom defined messages. Kindly let me know
    my code is as below
    I_STEP = 2.
    CASE i_vnam.
    WHEN 'Custome exit variable'.
    IF sy-subrc = 0.
    ELSE.
                   MESSAGE e060(/bmc/bw).  "No Authorization exist
                    g_errflag1 = 'X'.
                   exit.
                   CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
                      EXPORTING
                        i_class  = '/bmc/bw'
                        i_type   = c_e                                    "'E'
                        i_number = '061'
                        i_msgv2  = l_msgv2.
                         RAISE NO_REPLACEMENT.
                    l_s_range-low = g_soldto.
              l_s_range-sign = c_sign_i.
              l_s_range-opt  = c_range_opt_eq.
              APPEND l_s_range TO e_t_range.
    ENDIF.
    I_STEP = 3.
      READ TABLE i_t_var_range INTO w_s_var_range
                  WITH KEY vnam = 'customer exit variabel'.
      IF sy-subrc = 0.
    Check the flag and throw message 'No Sales orders'.
        IF g_errflag1 = 'X'.
          l_msgv1     = 'No Sales orders'.
    Call the FM to populate message
          CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
            EXPORTING
              i_class  = c_r9
              i_type   = c_e                                    "'E'
              i_number = c_000
              i_msgv1  = l_msgv1
            EXCEPTIONS
              dummy    = 0
              OTHERS   = 0.
         CALL FUNCTION 'RRMS_MESSAGES_SHOW'.
         CALL FUNCTION 'RRMS_MESSAGES_DELETE'.
          RAISE NO_REPLACEMENT..
        ENDIF.
    Thanks & Regards
    silu

    Hi
    Custom Messages WAD

  • Internal Error in reading a Table of Oracle custom-defined objects.

    Hi,
    We are running into an Oracle internal error when trying to extract data from an OUT parameter of a stored procedure. The OUT parameter is of the type TABLE of Oracle custom-defined OBJECT.
    Any help on this issue will be greatly appreciated.
    Thanks, in advance,
    OraNew
    Program:
    package test;
    import java.sql.CallableStatement;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Types;
    import java.util.ArrayList;
    import java.util.List;
    import oracle.sql.ARRAY;
    import oracle.sql.STRUCT;
    import src.vo.ProfileBank;
    public class TestOracle {
    * @param args
    public static void main(String[] args) {
    try{
    Connection con = getConnection();
    ResultSet rsBalance = null;
    CallableStatement cs =
    con.prepareCall("{ CALL acr_profiles.get_profile_bank( ?, ?, ?)}");
    cs.setLong(1, new Long(133).longValue());
    cs.setLong(2, new Long(29032).longValue());
    cs.registerOutParameter(3,Types.ARRAY,"ACR_USER." + "ACR_PROF_BANK_TAB");
    cs.execute();
    ARRAY array = (oracle.sql.ARRAY) cs.getObject(3);
    System.out.println("length: "+ array.length());
    System.out.println("isConvertible: " + array.isConvertibleTo(Object.class));
    System.out.println("isInline: " + array.isInline());
    rsBalance = array.getResultSet();
    showResultSet(rsBalance);
    } catch (Exception sql){
    System.out.println("Exception "+ sql);
    public static void showResultSet (ResultSet rs) throws SQLException
    System.out.println("ResultSet = "+ rs.toString());
    List profileBanks = new ArrayList();
    while (rs != null && rs.next()) {
    STRUCT struct = (STRUCT)rs.getObject (2); //getting the Internal Error on this line.
    Object[] attribs = struct.getAttributes();
    System.out.println("Bank Alias Id"+ (java.math.BigDecimal) attribs[0]);
    System.out.println("Bank Name"+ (String)attribs[1]);
    System.out.println("Bank set flag "+ (String) attribs[2]);
    ProfileBank pBank = new ProfileBank();
    pBank.setBankAliasId(new Integer(((java.math.BigDecimal) attribs[0]).intValue()));
    pBank.setBankName((String) attribs[1]);
    pBank.setSelBankFlag((String) attribs[2]);
    profileBanks.add(pBank);
    public static Connection getConnection() throws ClassNotFoundException, SQLException {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    System.out.println("Driver loaded");
    // establish a connection
    Connection conn = DriverManager
    .getConnection(
    "jdbc:oracle:thin:@(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=10.3.11.201)(Port=1521)) (CONNECT_DATA=(SERVICE_NAME= aada.a.al)))",
    "acr_user", "acr_user");
    System.out.println("Database connected");
    return conn;
    Console Output:
    Driver loaded
    Database connected
    length: 2
    isConvertible: false
    isInline: true
    ResultSet = oracle.jdbc.driver.ArrayDataResultSet@1f3aa07
    Exception java.sql.SQLException: Internal Error
    Partial Stacktrace obtained from the Eclipse Debug window:
    oracle.jdbc.driver.DatabaseError.throwSqlException(int) line: 292
    oracle.jdbc.oracore.OracleTypeCOLLECTION.initCollElemTypeName() line: 1192
    oracle.jdbc.oracore.OracleTypeCOLLECTION.getAttributeType(int) line: 1225
    oracle.jdbc.oracore.OracleTypeADT(oracle.jdbc.oracore.OracleNamedType).getFullName(boolean) line: 119
    oracle.jdbc.oracore.OracleTypeADT(oracle.jdbc.oracore.OracleNamedType).getFullName() line: 93
    oracle.sql.StructDescriptor(oracle.sql.TypeDescriptor).initSQLName() line: 497
    oracle.sql.StructDescriptor(oracle.sql.TypeDescriptor).getName() line: 392
    oracle.sql.StructDescriptor.getClass(java.util.Map) line: 2003
    oracle.sql.STRUCT.toJdbc(java.util.Map) line: 983
    oracle.jdbc.driver.ArrayDataResultSet.getObject(int, java.util.Map) line: 1379
    oracle.jdbc.driver.ArrayDataResultSet.getObject(int) line: 1198
    test.TestOracle.showResultSet(java.sql.ResultSet) line: 53
    test.TestOracle.main(java.lang.String[]) line: 38
    Environment:
    Database: Oracle 10g (10.2.0.3)
    JDBC Drivers: version 10.2.0.3 (ojdbc14, orai18n)
    Database Server: HP-UX
    Client machine: Windows XP
    <end of thread>

    hi Thom,
    most error relating to table DOKTL are caused by misconfigured network card.
    if this is a "home" system, install a loopback adapter from Microsoft and use IP address 127.0.0.1 and also check "hosts" file for inconsistency. do not use the IP adddress provided by your ISP as it may change.

  • Custom purchase order text

    Hi,
       I need to create new custom purchase order text to display in ME23N and to capture some data.
    I have created new text id and configured for the required PO document types. But I still don't see the new custom text appears in ME23N.
    As far as I understand, I need to add an entry to 'define text type and copying for po header text' under purchasing as a last step. But I cound't add to this as there is no way I could select the custom text id here.
    Also, is it possible not to print this text when we print POs? This is used only for internal purposes.
    Please let me know.
    Regards,
    Sundar.

    Hi,
    why dont you put text in Po suppliment in ME24, so that it would be on system.
    Regards
    Kedar Kulkarni

  • How do you add a directory to a manifest.mf file, andf in what order.

    How do you add a directory to a manifest.mf file in a JAR file, andf in what order.
    I know how to set a classs files and file class's & Main Class's not a problem, but how about a directory/folder.
    The Directory/folder contains class's. My prog can run the class's from a Jlist, as long as I set the classpath directly by control panel user varaibles manully or by a Bat file running in the back ground.
    any crazy ideas I'll excecpt and give a bloody good try.
    I tried.
    Class-Path: C:/bb/
    Class-Path:C/bb
    Class-Payh:bb
    Class-Path:bb/
    Class-Path: \bb\
    Class-Path:bb\ Not to sure if I've tried this, ttto many beers cans drunk at this stage.
    Friday night is beer night.
    WHAT am I doing wrong, or doing that can't be done with a JManifestMF file.
    Maybe Wrapper, and not the type that turn decks, and look at very low cameras while singing.

    If I open Font Book, and choose named font, I can see a list of symbols, e.g.
    If I open Character Viewer, and switch to Pictographs, I can see something like this
    so I assume that named font includes chars in the category Pictographs, which you can use at ease, I hope.
    If you need them frequently, you may create your custom keyboard layout, if you wish this, come back with what you wish.
    Screenshots are in Lion, but the procedure is the same, I hope.

  • How to copy Customer Sales Order number to Purchase Order for 3rd party sal

    Hi experts,
    We are doing third party sales. So once we create Customer Sales Orders manually via VA01, users also manually create Purchase Req for it.
    We do not automatically create PR from Sales Order, as this is not my clients requirement. So we don't use item category group BANS in the material master.
    In the item level in the PR under the Contact Person tab, the creation indicator shows "V Sales & distribution document". Once PR is created this updates the PR number under the item level Schedule lines in the Sales Order.
    After PR creation, we run a job to create PO's.
    But the new requirement from the client is to automate this PO creation thru EDI.
    Our SAP is 4.6C & the Idoc type we use is ORDERS05 & Message Type is ORDERS. We are using EDIFACT std.
    Once I get the idoc xml file for this PO, I find that my Customer PO number (from the Sales Order) & also the Customer Sales Order number is not copying to the xml output.
    Please advise what needs to be done inorder to have it.
    This will be great help & I will reward for the answers !
    Rgds,
    Pri

    Tables are related.
    MATNR
    WERKS
    MBDAT
    LGORT
    CHARG
    etc fields are common in both VBBS and VBBE.
    May be you can generate a condition a fetch data using this.
    I hope it helps.
    thanks

  • Picking up files in a sequence order

    Hi,
    My requirement is to picking up the files in a sequence order,
    The sequence no. (say for eg 1, 2, 3,etc)will be attached along with the files.
    i.e file1.xml,file2.xml,file3.xml etc
    suppose if my input folder contain file1.xml, file2.xml,file4.xml
    PI has to pick up file1 and file2 and it has to wait for file3 to arrive.
    ie. it shouldnt pickup file4.xml since there is no file3.xml.Sequence no3 is missing.
    If i give processing sequence as name, it will pick file1 first and then file2 and file4.it will never check file3 is missing or not. how can i achieve this?
    Is there any way to do this with out writting a shell script?

    Hi,
    I think in that case, just use the dynamic getFileName java UDF in your mapping and in that UDF you can define the thread.Sleep interval after checking with the conditions for the file sequence.
    Although I have never tried but this might be a right approach to achieve this functionality.
    Thanks!

  • Question on Sorting of files in custom manner.

    Hi,
    I need to sort the files but sorting is done in custom manner. Based on the words present in the file I need to sort it. For e.g., if the file name containing allocated and System it needs to be sorted at first position. Qos and Interface needs to be sorted in second position, and lsp and dynamic on third position.
    Suppose these are the files sorted in ascending order.
    Allocated
    Dynamic
    Interface
    Lsp
    Qos
    SystemI need to sort in this way,
    Allocated
    System
    Qos
    Interface
    Lsp
    DynamicIs there any good way to do this?
    Thanks in advance.

    Look for examples on how to use a Comparator. This one seems pretty decent for example:
    http://www.javadeveloper.co.in/java-example/java-comparator-example.html

  • LR - Creating Custom Sort Orders in Lightroom | The Complete Picture with Julieanne Kost | Adobe TV

    Julieanne Kost shows the best ways to take advantage of Adobe Lightroom’s Custom Sort Order feature in this Lightroom 2 tutorial.
    http://adobe.ly/y3dj94

    This was helpful, Julieanne, however, I have one more question on custom sort order. I am trying to sort a Collection that is made up of photos from several different import files. It's a vacation collection where I have created a different file for each day of the vacation as well as by who took the photos. So i have a file for my daughter's shots, my shots, my son's, etc, to keep things organized. Now that i have selected the "best of" from each original import file, I have created a new User Collection where I am putting them all together. The problem is, my entire Collection won't sort. I want to sort them all by capture time, but LR keeps grouping them by the original file source, and only sorting by capture time within each group. Can you help?

  • Custom sort order still lost

    This was not fixed as reported by Apple with Aperture version 2. When I move custom sorted images from one project to another, or export and import a project with custom sorted images, the sort order is lost. The order after the move, or import is either in file name order or sometimes in a completly random order. This occurs on both my MacBook Pro (late 2008) and my 8 core (16GB RAM) Mac Pro.
    This makes it impossible to do efficient work in the field and export the work.

    Followup: I spoke to Andre with Aperture support. He could not confirm this, at first, using a small number of images dragged from project A to Project B. Using a larger number (99 in his case), he was able to confirm the loss of custom sort order. The Apple web site says this has been corrected for import/exports and that is also not fixed. He will refer the problem to engineering for correction in a future update.
    I suspect (have no proof) the problem relates to the way Aperture divides each download (from card or camera) to a project into separate folders. To see this, export a project and open it (show package contents). Within the project package are separate folders for each of the downloads to the project. Aperture does not consolidate the images into a single folder. It appears that when a set of images are downloaded at one time is interposed between images taken previously, the sort order is not lost when the images are moved to another project or exported as a project.
    I still would like to know if there is a work around for this.

  • Custom print order in Address Book

    HI all,
    I want to print an member List for my organization in address book with a Custom Sort Order.   I don't know how to do it.  
    Here is the thing: 
    I made a contact list of the members of the organization so that I can have on File.   Select my Contacts and go to Print:
    ON the print menu I select LIst.   It is all beatiful the only problem is that it is sorted by Alphabetical Order and I want to manuelly sort it.   Prisident, vice preside...  Etc.....    How can I do This?   

    Michael,
    probably not a direct answer to your question but you might want to take a look at "Snail Mail" - it gives you a lot of additional options and features for printing envelopes from the Address Book:
    http://nixanz.com/products/snailmail/README.html
    Andreas

  • Customer Purchase Order type.

    Hello gurus
    Can any one give me details about the configuration aspect of customer Purchase order type in Sales order.
    Just FYI this is a field  at Item level in SALES order.
    Thanks

    Hi,
    In this menu option you define the possible order types which indicate how the customer has transmitted an order.
    When processing a sales document, you specify the order type for the purchase order data at header level. This specification is copied into the items.
    At the line items you can enter the purchase order type also but then it is better to give it at the header level. If there are suppose 20 items in a sales order giving the purchase order type at the header level is easier and is applicable for all 20 line items.
    For the configuration of the purchase order type:
    IMG-Sales & Distribution-Sales -Sales Documents-Sales document header-Define purchase order types.
    Here you can create your own purchase order type also.
    Reward points if solution helps.
    Regards,
    Allabaqsh G. Patil

Maybe you are looking for

  • I am trying to delete a podcat but don't see the option is mine and I...

    I am trying to delete a podcat but don't see the option mentioned in the article. "is mine and I would like it removed from the Music Store". I see "remove a podcast" but that is all. My problem is that I published my first podcast from iWeb and woul

  • How to Import/Export database tables from one server to other in oracle8i

    Hello friend, Please can any one tell me how to import/export groups of database tables from one server with oracle to another using VB.net. It would be nice if some one can provide some code of it. I am a software developer and I am in middle of a l

  • SAP business one application messaging service

    Tried to get mailer working but I am not sure if it s because of SAP business one messaging service is stuck in a starting mode.

  • Streaming to Xbox 360

    Anyone having issues with the media hub streaming to their Xbox 360?  I can see the device and all image folders remotely from the xbox, but when I want to view a picture from a folder, it just sits there saying Picture Loading for a few minutes. 

  • Premiere Pro Crash every time I quit the program

    This has been a constant problem over the last several months. Sometimes it's harmless, but I believe it's leading to corrupt files in certain cases and I'm losing work and time because of it. This is the problem: 1. I working in PP and I save my pro