EXPORT DYNPRO or GENERATE DYNPRO

hi Experts,
I want to know how to use these two ABAP Keywords
Can anyone help me to with example.
EXPORT DYNPRO
GENERATE DYNPRO

trying diff method

Similar Messages

  • Help with exporting document and generating an enumerated value error

    Can anyone help me figure out why I cannot get this script to export the document and save it for the web?
    I keep getting the same frustrating "Enumerated Value expected".
    here is the script thus far:
    * attempting to create a script to insert names automatically within photoshop cs2. Similar to the PSP.
    tag = app.activeDocument;
    var lee = ["Barb","Belle","Betty","Carmel","Christy","Connie",
    "Debbie","Debra","Denise","Diamond","Dolceluna","Irene","Jacqui"];
    //determine if active layer is a text layer or not.
    if(tag.isBackground == true){
    alert("this is a background layer and cannot be changed.");
    else{
    alert("this is the name layer.")
    for(i=0;i<lee.length;i++){
    tag.activeLayer.textItem.contents = lee[i];
    var options = new ExportOptionsSaveForWeb();
    options.format = SaveDocumentType.PNG-24;
    options.interlaced = false;
        options.PNG8= false;
    var fName = lee[i];
    var newName = fName+'-'+tag.name+'.png';
    alert(newName);
    //EXPORT DOCUMENT KEEPS GENERATING ENUMBERATED VALUE EXPECTED
    // web.matte = MatteType.NONE;
    tag.exportDocument(File(tag.path + '/' + newName),ExportType.SAVEFORWEB,options);
    } // closes for loop
    }// end of else statement

    Yes the guide is misleading. It says 'For this property, only COMPUSERVEGIF, JPEG, PNG-8, PNG-24, and BMP are supported.'
    It really should say 'For this property, only COMPUSERVEGIF, JPEG, PNG, and BMP are supported.'
    But if you look under SaveDocumentType you will not find PNG-8 or PNG-24 listed in the values.

  • Export sql insert generates to_date('1987-04-19','DD-MON-RR')

    export sql insert generates buggy dates :
    Scott --> Tables --> EMP --> export --> sql inserts
    Columns --> ALL
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7788,'SCOTT','ANALYST',7566,to_date('1987-04-19','DD-MON-RR'),3000,null,20);
    the to_date is invalid.
    this bug happens only when selecting ALL columns
    cheers
    Laurent

    Hi Sue,
    I have version 1.0.0.15.57 Linux x86 (downloaded last week).
    Is there a way to produce trace files or additional info so that we can debug this one?
    $ env
    PATH=/bin:/usr/bin
    LANG=en_US.UTF-8
    HOME=/home/lsc
    DISPLAY=:0.0
    _=/usr/bin/env
    $ cat /etc/SuSE-release
    SUSE Linux Enterprise Server 10 (i586)
    VERSION = 10
    $ /home/lsc/sqldeveloper/sqldeveloper
    Oracle SQL Developer 1.0
    Copyright (c) 2005 Oracle Corporation.  All Rights Reserved.
    Working directory is /home/lsc/sqldeveloper/jdev/bin
    Assert: Initializing.. [email protected]
    Assert: Unknown Node:8: USER
    Assert: Unknown Node:8: SHARED QUERIES
    Assert: Unknown Node:8: TABLE EDITORS
    Assert: Unknown Node:8: VIEWS
    Assert: Unknown Node:8: MVIEWS
    Assert: Unknown Node:8: SYNONYM
    Assert: Unknown Node:8: SEQ
    Assert: Unknown Node:8: Recycle Bin
    Assert: Unknown Node:8: DB Link
    Assert: Unknown Node:8: MVIEW LOG
    Assert: Unknown Node:8: PLSQL
    Assert: Unknown Node:8: TRigger
    Assert: Unknown Node:8: INDEX
    Assert: SQLView initedAssert: Folder:Unsupported node in report.xml:#text
    Assert: Folder:Unsupported node in report.xml:#text
    Assert: Folder:Unsupported node in report.xml:#text
    Assert: Folder:Unsupported node in report.xml:#text
    Assert: Folder:Unsupported node in report.xml:#text
    Assert: Folder:Unsupported node in report.xml:#text
    Assert: Folder:Unsupported node in report.xml:#text
    Assert: Folder:Unsupported node in report.xml:#textexpand "connections "
    expand "LSC02"
    expand "Tables"
    select "EMP"
    right-click EMP
    chose EXPORT--SQL INSERT
    Format=INSERT Output=File TABLE=EMP File=/home/lsc/EMP.sql Columns=ALL
    Click apply
    $ cat EMP.sql
    -- INSERTING into EMP
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7369,'SMITH','CLERK',7902,to_date('1980-12-17','DD-MON-RR'),800,null,20);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7499,'ALLEN','SALESMAN',7698,to_date('1981-02-20','DD-MON-RR'),1600,300,30);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7521,'WARD','SALESMAN',7698,to_date('1981-02-22','DD-MON-RR'),1250,500,30);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7566,'JONES','MANAGER',7839,to_date('1981-04-02','DD-MON-RR'),2975,null,20);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7654,'MARTIN','SALESMAN',7698,to_date('1981-09-28','DD-MON-RR'),1250,1400,30);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7698,'BLAKE','MANAGER',7839,to_date('1981-05-01','DD-MON-RR'),2850,null,30);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7782,'CLARK','MANAGER',7839,to_date('1981-06-09','DD-MON-RR'),2450,null,10);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7788,'SCOTT','ANALYST',7566,to_date('1987-04-19','DD-MON-RR'),3800,null,20);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7839,'KING','PRESIDENT',null,to_date('1981-11-17','DD-MON-RR'),5000,null,10);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7844,'TURNER','SALESMAN',7698,to_date('1981-09-08','DD-MON-RR'),1500,0,30);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7876,'ADAMS','CLERK',7788,to_date('1987-05-23','DD-MON-RR'),1100,null,20);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7900,'JAMES','CLERK',7698,to_date('1981-12-03','DD-MON-RR'),950,null,30);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7902,'FORD','ANALYST',7566,to_date('1981-12-03','DD-MON-RR'),3000,null,20);
    Insert into "EMP" ("EMPNO","ENAME","JOB","MGR","HIREDATE","SAL","COMM","DEPTNO") values (7934,'MILLER','CLERK',7782,to_date('1982-01-23','DD-MON-RR'),1300,null,10);

  • Import/Export dynpro not working

    IMPORT DYNPRO h f e m ID id
    http://help.sap.com/abapdocu_70/en/ABAPIMPORT_DYNPRO.htm
    I would like to use IMPORT DYNPRO to import screen attributes and program flow and then perform necessary changes and export/generate the modified screen.
    well i used the sample from http://www.sapfans.com/sapfans/repos/poonam.htm, but regardless of how many times I tried, I couldn't get it to work. I'm still stuck at the first step, IMPORT DYNPRO will return sy-subrc = 4 (screen does not exist) no matter what program/screen I use.
    Any idea?, Thanks
    Edited by: afro100 on Oct 22, 2009 9:45 AM
    Edited by: afro100 on Oct 25, 2009 8:24 AM

    See the following example
    Double click on the method name; on the editor write the following code:
    METHOD onactionaction_find .
      DATA: node_node_vbak           TYPE REF TO if_wd_context_node,
        elem_node_vbak                      TYPE REF TO if_wd_context_element,
        stru_node_vbak                        TYPE if_input_view=>element_node_vbak .
    navigate from <CONTEXT> to <NODE_VBAK> via lead selection
      node_node_vbak = wd_context->get_child_node( name = if_input_view=>wdctx_node_vbak ).
    get element via lead selection
      elem_node_vbak = node_node_vbak->get_element(  ).
    get all declared attributes
      elem_node_vbak->get_static_attributes(
       IMPORTING static_attributes = stru_node_vbak ).
      DATA: ls_where(72) TYPE c,
            lt_where LIKE TABLE OF ls_where,
            lt_vbak TYPE STANDARD TABLE OF zstr_vbak.
    create where condition
      IF NOT stru_node_vbak-vbeln EQ ''.
        CONCATENATE 'VBELN = ''' stru_node_vbak-vbeln '''' INTO ls_where.
        APPEND ls_where TO lt_where.
      ENDIF.
      IF NOT stru_node_vbak-erdat EQ '00000000'.
        CONCATENATE 'ERDAT = ''' stru_node_vbak-erdat '''' INTO ls_where.
        IF stru_node_vbak-vbeln NE ''.
          CONCATENATE 'AND' ls_where INTO ls_where SEPARATED BY space.
        ENDIF.
        APPEND ls_where TO lt_where.
      ENDIF.
      SELECT VBELN ERDAT ERZET ERNAM ANGDT BNDDT AUDAT VBTYP TRVOG AUART
             AUGRU GWLDT SUBMI LIFSK FAKSK NETWR WAERK VKORG VTWEG SPART
             VKGRP VKBUR GSBER GSKST GUEBG GUEEN KNUMV
      FROM vbak INTO TABLE lt_vbak WHERE (lt_where).
      DATA:
        node_node_alv                       TYPE REF TO if_wd_context_node,
        stru_node_alv                       TYPE if_input_view=>element_node_alv .
    navigate from <CONTEXT> to <NODE_ALV> via lead selection
      node_node_alv = wd_context->get_child_node( name = if_input_view=>wdctx_node_alv ).
    get all declared attributes
      node_node_alv->bind_table( lt_vbak ).
    ENDMETHOD

  • How to export dynpros to files

    Hi,
    I have to export several sap objets (reports, smartforms, dynpros, alvs, etc.) to files (binary or text) in order to store it in a external database.
    For example, I use RSTXSCRP report to export sapscript and smartforms, but now I need to export in some way dynpros in order to be stored in my external database.
    It would be perfect if exists something that permits store in an unique file a report (or module-pool) and it's associated dynpros.
    How can I do this?

    Hi javier,
    1. somebody told me that it's possible to export all objets in the request to a file.
      It happens THIS way only on the app server.
    2. Whenerver we RELEASE a request,
    3. co files
       data files are created on the server.
    4. These files have the name same as the REQUEST NUMBER
    5. We can download these files from app server
      to front-end server.
    6. The data files contain all the data
      of the objects
      (ie object name, its contentts (source code , table fields, comments etc, --- everything ))
    7. These files contain data in ZIP/compressed/
       encoded format.
       so such files are of no use to us.
    8. only SAP can understand the format and contents
    regards,
    amit m.

  • Exporting to PDF generating duplicate pages

    Post Author: raja6791
    CA Forum: Exporting
    Hi,
    I have a crystal report which includes 4 sub reports. The report contains 9 pages. Which is exported to PDF. It is working fine till last week.  Now  it is generating around 60 duplicate pages of same content.I am using ASP.NET 1.1 & Crystal Reports 11. Please help me. Thanks,Rajasekhar 

    I would suggest you to observe the properties of the sub report table in a section where the Page Layout > 'Repeat on every new page' property is checked. If yes, then uncheck the 'Repeat on every new page' property option.
    Publish the report again with subreport and test the issue.

  • Aperture 3: multiple export hangs while generating thumbnails?

    Sigh. I was almost ready to write a blog post claiming that while AP3 has its share of bugs, it's not the unusable mess some have painted it to be. This morning I'm no so sure anymore. I think this is stellar update with tons of potential. When it works it screams on my machine and the new features are amazing. But guys, i need the basics to work.
    Here's what I've just sent t via the feedback form:
    I've been trying to export 29 pictures in web format for the past 40 minutes. I've had to force-quit AP three times and restart my machine twice. Aperture starts exporting at a normal pace but then completely hangs on a "generating thumbnails" process. At this point it becomes impossible to either cancel the task or quit Aperture normally. It also kicks my iMac's fan into overdrive - something that NEVER happens.
    This is not good.
    Other problems:
    - random crashes while using brushes.
    - second display doesn't follow "blank" command and keeps reverting to "alternate" even when the menu says Blank.
    This is a great version of Aperture with a lot of potential. These bugs are killing me though.
    I've just rebuilt the database. If it's still not working I'm going to remove plugins and see if it helps.
    Anyone else having problems with this?

    Absolutely has to be a bug. This isn't a setting or configuration problem. It might even be a Snow Leopard problem. I had the same problems with A2.1.4 on SL as I do with version A3.0.1. Export hangs seem to happen on images that came from my A2 library that was imported into A3 but originally adjusted in A2. These images were imported from scanned TIFF files. If the adjustment mechanism was flawed in prior Aperture versions then Apple needs to create and distribute a utility that converts these images into something that A3 can use.
    I will have to revert to A2 running on Leopard until Apple can get this fixed. If I cannot export, there is no point in running the software. On this discussion thread, we are just trying to fly by flapping our arms.

  • Export-csv only generating the output only for single server

    Hi Team,
    From the below script I'm unable to generate the single output file for all the condition. The script only giving the last server output, It's skipping the all the other servers in the file.
    $ScriptBlock = {
        param
            $Server,
            $ExportCSV
    $Counters= import-csv "G:\testcounter.csv"
    foreach($Counter in $Counters)
    $ObjectName=$Counter.ObjectName
    $CounterName=$Counter.CounterName
    $InstanceName=$Counter.InstanceName
    $Result=Get-Counter -Counter "\\$server\$ObjectName($InstanceName)\$CounterName"
        $CounterSamples = $Result | % {$_.CounterSamples}
        $MasterArray = @()
        foreach ($CounterSample in $CounterSamples)
            $TempArray = @()
            $TempArray = "" | Select Server, ObjectName, CounterName, InstanceName, SampleValue, DateTime
            $Split = $CounterSample.Path.Remove(0,2)
            $Split = $Split.Split("\")
            $TempArray.Server = $Split[0]
            $TempArray.ObjectName = $Split[1].Split("(")[0]
            $TempArray.CounterName = $Split[2]
            $TempArray.InstanceName = $CounterSample.InstanceName
            $TempArray.SampleValue = $CounterSample.CookedValue
            $TempArray.DateTime = $CounterSample.TimeStamp.ToString("yyyy-MM-dd HH:mm:ss")
            $MasterArray += $TempArray
        $MasterArray | Export-Csv $ExportCSV -NoType
    $Servers = import-csv "G:\testcounter.csv"
    foreach ($Server in $Servers)
        $server=$server.server
        If (Test-Connection -quiet -computer $server){
            $ExportCSV = "G:\PerformaneData.csv"
            Start-Job -ScriptBlock $ScriptBlock -ArgumentList @($server, $ExportCSV)

    Hi RatheeshAV,
    In addition, to export the result to csv file, please also try to wait for all the jobs to complete then retrieve all the data and write it to a file in one step:
    $ScriptBlock = {
    param ($Server)
    #SCRIPT
    $MasterArray }
    $Servers = import-csv "G:\testcounter.csv"
    Get-Job | Remove-Job
    $jobs=@()
    foreach ($Server in $Servers){
    $server=$server.server
    If(Test-Connection -quiet -computer $server){
    Write-Host $Server -ForegroundColor green
    $ExportCSV = "G:\PerformaneData.csv"
    $job+=Start-Job -ScriptBlock $ScriptBlock -ArgumentList $server
    $jobs | Wait-Job
    $jobs | Receive-job | Export-CSV 'd:\temp.csv' -NoTypeInformation
    Refer to:
    PS3 Export-CSV -Append from
    multiple instances to the same csv file
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang

  • RH11: Word export: Subchapters are generated with same heading as chapter above

    Dear community,
    when I export my RH project to word, RH generates for each chapter (that has any subchapters) an additional subchapter with the same heading as the chapter above. In the project as in the chm export, the chapter does have content (as I want). But not in the word export.Here the chapter is empty,its content is put into that new subchapter. Got me?
    You can see what is happening in the export dialog.
    So whats happening there, what do I wrong?
    Thanks for your support!

    Sorry, you did post an image.
    It looks like you have created a book with the same name as the first topic. In the document you should see a book called Ubersicht followed by a topic called Ubersicht.
    The document is following the structure you have defined. I think what you are wanting is that Ubersicht is not indented one level as shown. Use the Left arrow above.
    I also suspect you have the book in the online help set up to open the topic. Experiment with that unlinked.
    This is all covered in the pages on my site. It does take a little trial and error to get it working as you want but it will become obvious.
    Hope that solves it for you.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Import/Export wizard auto-generates all columns as DATE

    Hi
    I'm trying to use the Import/Export Wizard as I used to, as a handy tool to figure out what a series of T-SQL statements (in an SSIS package) is doing - or, if I'm lucky, what on earth the original dev
    intended them to do.
    Version: SQL 2014 64-bit running on Win 7 64-bit
    The code is pretty dreadful:
    SELECT DISTINCT on one set of column names,
    join this set to another table but not on exactly the same set of column names,
    embedded (SELECT MAX(bla) FROM SameTable WHERE [match to outer set on another set of columns] GROUP BY [hey, yet another set of columns!]) inside the SELECT column list...
    and it all goes to a nasty #Tmp, which is then abused with further bad code further down.
    Imp/Exp is always handy to quickly get the intermediate results into an auto-created real table, so I can figure out exactly what the effect of this is.  I use it to export from the database back to the same database, but to a persisted table.
    This time (first time with SQL2014) it's not working.  The source is "write a query" (paste the actual query).  The destination I set to a new table.  The auto-generation of the new table creates every column as type
    date.  Not surprisingly, this doesn't work, as the original data is mostly not of
    date time.
    Looks like a bug.  Any idea of a workaround or fix?
    thanks!

    Sorry, but I think you're still not getting what I'm saying.
    This is not a production SSIS package design, but a quick'n'nasty diagnosis technique I'm used to using:
    - Find some SQL in an existing query/script that I'm trying to debug
    - Paste it into Import/Export wizard as a source
    - Wizard creates a new table for the result - I then have the results persisted for examination, comparison with the results from refactored code, etc.
    And I can't even put suitable CAST/CONVERT statements in, because the wizard is mis-identifying the
    input column data types, with no way to change them.   It's somehow thinking that every column in the input (the SQL query) is of type
    date(500), when the columns are obviously not of this type.

  • ODI metadata export from Essbase generates a filter error

    I am trying to extract Essbase metadata into SQL with ODI v. 10.1.3.5. Several of my dimension names contain spaces. This creates an error as the MEMBER_FILTER_VALUE for the "Time Periods" dimension is interpreted as "Time" by the LKM because of the space. Spaceless dimension names export without issue. I have tried to use single quotes, double quotes, brackets, braces, etc. Nothing works. Has anyone encountered this before?

    Yes, you need to patch ODI, I recommend at least path 10.1.3.5.5
    Cheers
    John
    http:/john-goodwin.blogspot.com/

  • How to export a dynamically generated datatable into excel sheet 2013?

    I have one data table and in that data table i am fetching data from sharepoint 2013 lists.
    When I export that data table into excel sheet, what ever data is static will be shown but the data which I fetch from lists are not coming.
    How should I get that data in my excel sheet from that data table?
    This is the code for Export to Excel:
    public void ExportToExcel(DataTable dt)
    if (dt.Rows.Count > 0)
    string filename = "WebTrafficReport.xls";
    System.IO.StringWriter tw = new System.IO.StringWriter();
    System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
    DataGrid dgGrid = new DataGrid();
    dgGrid.DataSource = dt;
    dgGrid.DataBind();
    //Get the HTML for the control.
    dgGrid.RenderControl(hw);
    //Write the HTML back to the browser.
    //Response.ContentType = application/vnd.ms-excel;
    Response.ContentType = "application/vnd.ms-excel";
    Response.AppendHeader("Content-Disposition", "attachment; filename=" + filename + "");
    this.EnableViewState = false;
    Response.Write(tw.ToString());
    Response.End();
    Thanks in Advance.

    ublic void ExportToExcel(DataTable dt)
    if (dt.Rows.Count > 0)
    string filename = "WebTrafficReport.xls";
    System.IO.StringWriter tw = new System.IO.StringWriter();
    System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
    DataGrid dgGrid = new DataGrid();
    dgGrid.DataSource = dt;
    dgGrid.DataBind();
    //Get the HTML for the control.
    dgGrid.RenderControl(hw);
    //Write the HTML back to the browser.
    //Response.ContentType = application/vnd.ms-excel;
    Response.ContentType = "application/vnd.ms-excel";
    Response.AppendHeader("Content-Disposition", "attachment; filename=" + filename + "");
    this.EnableViewState = false;
    HttpContext.Current.Response.Write(sw.ToString());
                        HttpContext.Current.Response.Flush();
                        HttpContext.Current.Response.End();
    }}try this should help

  • Issue with GENERATE DYNPRO

    Hi,
    I have used IMPORT DYNPRO statement(SAP say's its for internal use) and fetched the screen values into an internal table....later I have sorted the fields in that internal table and did EXPORT DYNPRO and GENERATE DYNPRO.....with this all the fields got sorted and screen fields are wrongly functioning...could you please let me know how to revert it?
    IMPORT DYNPRO ls_dynp_header lt_dynp_fields lt_dynp_logic  lt_dynp_matchc ID ls_dynproname.
    SORT lt_dynp_fields BY fnam.
    READ TABLE lt_dynp_fields ASSIGNING <fs_dynp_fields> WITH KEY fnam = lc_fldnam BINARY SEARCH.
    IF sy-subrc = 0.
          IF im_v_readonly = 0.
            <fs_dynp_fields>-stxt = lc_save_proceed.
          ELSE.
            <fs_dynp_fields>-stxt = lc_proceed.
          ENDIF.
    ENDIF.
    EXPORT DYNPRO ls_dynp_header lt_dynp_fields lt_dynp_logic  lt_dynp_matchc ID ls_dynproname.
    GENERATE DYNPRO ls_dynp_header lt_dynp_fields lt_dynp_logic  lt_dynp_matchc ID ls_dynproname
                MESSAGE ls_msg LINE ls_msg WORD ls_msg.
    I hope because of the SORT statement, all the screen fields got disturbed.
    I logged off and logged on but still facing the issue.
    Please help.
    Thanks & Regards,
    Adithya M.

    Hi,
    Normally a version exists in the "development database" once the workbench object is created using development tools. Unless the dynpro is deleted (before it was exported=version written to "version database"), this version should remain available. So what I meant with the question - does the export/generate dynpro writes the changes that need to be reverted to the (active) version in "development database" as well?
    One can at any time "force" generation of a version in "version database". Here I have generated two versions of a local object that will never get transported:
    Those versions remain available even after DELETE DYNPRO.
    I like versions
    cheers,
    Janis

  • Upload / download gui-status/dynpro when function group

    Hi All,
    I'm coding a program where I can download and upload reports and module pools but I tried to do the same with function groups and I found It is different to upload dynpro and gui staus when the objet to generate is a function group.
    Could anyone help me a little in order to complete and finish this issue?
    Below is shown the routines I coding in order to achive that:
    For gui-status uploading I use:
    CALL FUNCTION 'RS_CUA_INTERNAL_WRITE'
        EXPORTING
          program   = prog
          language  = sy-langu
          tr_key    = tr_key
          adm       = adm4
        TABLES
          sta       = sta4
          fun       = fun4
          men       = men4
          mtx       = mtx4
          act       = act4
          but       = but4
          pfk       = pfk4
          set       = set4
          doc       = doc4
          tit       = tit4
          biv       = biv46c
        EXCEPTIONS
          not_found = 1
          OTHERS    = 2.
    For screen uploading I use:
    GENERATE DYNPRO gs_d020s gt_d021s gt_d022s gt_d023s  ID dynp_id
                          MESSAGE mess  LINE line   WORD    word.
        IF sy-subrc = 0.
          EXPORT DYNPRO gs_d020s gt_d021s gt_d022s gt_d023s  ID dynp_id.
        ENDIF.
    But both options don't work when uploading function groups
    Regards...
    Edited by: Rob Burbank on Jun 1, 2011 11:58 AM
    Edited by: Kenneth Castañeda on Jun 2, 2011 7:31 PM
    Edited by: Kenneth Castañeda on Jun 2, 2011 7:34 PM

    Hi Kenneth,
    sorry, it is really not obvious that [there is a link behind zsaplink|http://code.google.com/p/saplink/].
    From the link:
    "SAPlink is an open source project that aims to make it easier to share ABAP developments between programmers. It provides the ability to easily distribute and package custom objects."
    This software allows you to up- and download all kinds of SAP objects. It is distributed under the GNU General Public License.
    I think this is exactly what you are looking for - or I did not understand your question.
    Regards,
    Clemens

  • Essbase Full Export generating erroneously large data files

    On 9.2.1. using BSO
    I have a 1 GB page file that routinely is exported for backups. generates 1 text file about 1.2 GB. using buffered i/o and rle compression.
    recently, the backup occurred as normal but generated 6 text files totaling 10GB.
    I did a maxl force restructure and the .ind and .pag files remained about the same as they were prior to the restructure.
    The restructure did seem to take much longer than normal..
    Any ideas?
    Thanks
    Jeff

    Is this an automated export, or do you go through the user prompts in EAS to create a backup. The size you provided (1.2G off a 1G page file) sounds like a lev0 export. Exports are always going to come out much larger due to the binary and compressed nature of the page files.
    This "feels" like it may have just been an extra/different option checked. The difference between Lev0/Input/Full exports and Columnar/Essbase can easily make jumps in storage space like that...especially changing to Columnar ("Export in column format") can cause a big bump in export sizes. If your member names are long, it causes an even bigger impact on the size of columnar export files.
    Also, I usually encourage Level0 exports, which is smaller and faster than "All Data". However, the default method is "All Data" which would also grow the resultant files, especially with many upper levels.
    On a different note, I would test out your choice of RLE compression. I've personally found very few cases where bitmap wasn't far and away the best choice.

Maybe you are looking for

  • [SOLVED]Terminal at Lower Resolution

    Hello, I am on Arch linux with Gnome (GDM) and I have a question- 1. When there was no Gnome. I couldn't get my resolution to be my native one. That login screen text was huge(resolution was low). Initially it was all good(when I was using nouveau),

  • Error Message - ORA-01722 Invalid Number

    Hello: I have the following situation. When I create an organization, a record is inserted into the following table, AGREEMENTS, and populates four fields. I have an update form which selects the organization from the AGREEMENTS table so the user can

  • Website login fails on iPad 2 Safari after iOS6 Update

    Upgraded to iOS6 9/19/2012. I just spent half an hour troubleshooting why a site I developed for a client fails its login. Passwords are salted and hashed in Javascript, POSTed to an AJAX PHP page to compare password against stored salted password in

  • ODI load error into essbase

    HI All I tried to ETL data from SQL table into Essbase. I got the following error: org.apache.bsf.BSFException: exception from Jython: Traceback (most recent call last): File "<string>", line 26, in <module>      at com.hyperion.odi.essbase.ODIEssbas

  • Proposition: a new video workflow tutorial website

    A few weeks ago, I was helping a buddy of mine--who happens to be a recent convert from FCP, thanks to me--get a better handle on a few things in Premiere Pro that he was struggling with in his transition. I'd also offered up a few bits of collected