Downloaded my hierarchy using the program z_sap_hierarchy_download

hi
I want download downloaded my hierarchy using the program z_sap_hierarchy_download but I have any problem when I using idoc method, I have this message:
Node [00001350, 00001580]: Leaf 'E010000000' already exists as child of node 00001501
Best regard
Francoise

hi
The problem is that 2 id differents has the same description.
my program is:
begin
SAP Consulting BW Tools:
Download hierarchy into a flat file. The file has the correct format
Text elements:
P_DATES Include from/to dates
P_DATETO Valid-to date
P_FNAME File name
P_HIENM Hierarchy name
P_INTER Include from/to leaves
P_IOBJNM InfoObject
P_LANGU Language
P_VERS Hierarchy version
REPORT z_sap_hierarchy_download.
TYPE-POOLS: rs, rsdm, rrh1.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
PARAMETERS:
p_iobjnm TYPE rsdiobjnm MEMORY ID rsc.
SELECTION-SCREEN END OF BLOCK b1.
SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME.
PARAMETERS:
p_hienm TYPE rshiedir-hienm,
p_vers TYPE rshiedir-version,
p_dateto TYPE rshiedir-dateto,
p_langu TYPE rshiedirt-langu.
SELECTION-SCREEN END OF BLOCK b2.
SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME.
PARAMETERS:
p_fname LIKE rlgrap-filename,
p_dates AS CHECKBOX DEFAULT 'X',
p_inter AS CHECKBOX DEFAULT 'X'.
SELECTION-SCREEN END OF BLOCK b3.
File structure
TYPES:
No dates/intervals
BEGIN OF y_s_hierfile_1,
nodeid TYPE rshienodid,
iobjnm TYPE rsiobjnm,
nodename TYPE rsnodename,
tlevel TYPE rstlevel,
link TYPE rslink,
parentid TYPE rsparent,
childid TYPE rschild,
nextid TYPE rsnext,
langu TYPE langu,
txtsh TYPE rstxtsh,
txtmd TYPE rstxtmd,
txtlg TYPE rstxtlg,
END OF y_s_hierfile_1,
y_t_hierfile_1 TYPE STANDARD TABLE OF y_s_hierfile_1,
With dates
BEGIN OF y_s_hierfile_2,
nodeid TYPE rshienodid,
iobjnm TYPE rsiobjnm,
nodename TYPE rsnodename,
tlevel TYPE rstlevel,
link TYPE rslink,
parentid TYPE rsparent,
childid TYPE rschild,
nextid TYPE rsnext,
dateto TYPE rsdateto,
datefrom TYPE rsdatefrom,
langu TYPE langu,
txtsh TYPE rstxtsh,
txtmd TYPE rstxtmd,
txtlg TYPE rstxtlg,
END OF y_s_hierfile_2,
y_t_hierfile_2 TYPE STANDARD TABLE OF y_s_hierfile_2,
With intervals
BEGIN OF y_s_hierfile_3,
nodeid TYPE rshienodid,
iobjnm TYPE rsiobjnm,
nodename TYPE rsnodename,
tlevel TYPE rstlevel,
link TYPE rslink,
parentid TYPE rsparent,
childid TYPE rschild,
nextid TYPE rsnext,
leafto TYPE rsleafto,
leaffrom TYPE rsleaffrom,
langu TYPE langu,
txtsh TYPE rstxtsh,
txtmd TYPE rstxtmd,
txtlg TYPE rstxtlg,
END OF y_s_hierfile_3,
y_t_hierfile_3 TYPE STANDARD TABLE OF y_s_hierfile_3,
With dates/intervals
BEGIN OF y_s_hierfile_4,
nodeid TYPE rshienodid,
iobjnm TYPE rsiobjnm,
nodename TYPE rsnodename,
tlevel TYPE rstlevel,
link TYPE rslink,
parentid TYPE rsparent,
childid TYPE rschild,
nextid TYPE rsnext,
dateto TYPE rsdateto,
datefrom TYPE rsdatefrom,
leafto TYPE rsleafto,
leaffrom TYPE rsleaffrom,
langu TYPE langu,
txtsh TYPE rstxtsh,
txtmd TYPE rstxtmd,
txtlg TYPE rstxtlg,END OF y_s_hierfile_4,
y_t_hierfile_4 TYPE STANDARD TABLE OF y_s_hierfile_4.
Hierarchy definition
DATA:
g_s_hiesel TYPE rsndi_s_hiesel,
g_s_hiedir TYPE rsndi_s_hiedir,
g_subrc TYPE sy-subrc,
g_t_hiedirt TYPE TABLE OF rshiedirt,
g_s_hierstruc TYPE rssh_s_htab,
g_t_hierstruc TYPE TABLE OF rssh_s_htab,
g_s_thiernode TYPE rsthiernode,
g_t_thiernode TYPE TABLE OF rsthiernode WITH KEY langu hieid objvers
nodename,
g_s_hierintvl TYPE rssh_s_jtab,
g_t_hierintvl TYPE TABLE OF rssh_s_jtab WITH KEY hieid objvers nodeid,
g_s_message TYPE rsndi_s_message,
g_t_message TYPE TABLE OF rsndi_s_message,
g_s_chavlinfo TYPE rsdm_s_chavlinfo,
g_t_chavlinfo TYPE rsdm_t_chavlinfo.
File
DATA:
g_fname TYPE string,
g_struct_s TYPE string,
g_struct_t TYPE string,
gr_s_file TYPE REF TO data,
gr_t_file TYPE REF TO data.
FIELD-SYMBOLS:
<g_langu> TYPE ANY,
<g_s_file> TYPE ANY,
<g_t_file> TYPE STANDARD TABLE.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_iobjnm.
  CALL FUNCTION 'RSD_IOBJ_F4'
    EXPORTING
      i_show_cha    = rs_c_true
      i_objvers     = rs_c_objvers-active
      i_hietabfl    = rs_c_true
    CHANGING
      c_iobjnm      = p_iobjnm
    EXCEPTIONS
      illegal_input = 1.
  CHECK sy-subrc = 0.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_hienm.
  DATA:
  l_s_hiertxt TYPE rrh1_s_hiertxt,
  l_t_hiertxt TYPE rrh1_t_hiertxt.
  CALL FUNCTION 'RRH1_HIERARCHY_HELP_VALUES_GET'
    EXPORTING
      i_iobjnm          = p_iobjnm
      i_dateto          = p_dateto
      i_hienm           = p_hienm
      i_version         = p_vers
    IMPORTING
      e_t_hiertxt       = l_t_hiertxt
    EXCEPTIONS
      no_f4_available   = 1
      dialogue_canceled = 2
      OTHERS            = 3.
  CHECK sy-subrc = 0.
  READ TABLE l_t_hiertxt INTO l_s_hiertxt INDEX 1.
  CHECK NOT l_s_hiertxt IS INITIAL.
  p_hienm = l_s_hiertxt-hienm.
  DATA:
  l_s_dynpfields TYPE dynpread,
  l_t_dynpfields TYPE STANDARD TABLE OF dynpread.
  CLEAR: l_t_dynpfields, l_s_dynpfields.
  l_s_dynpfields-fieldname = 'P_VERS'.
  WRITE l_s_hiertxt-version TO l_s_dynpfields-fieldvalue.
  APPEND l_s_dynpfields TO l_t_dynpfields.
  l_s_dynpfields-fieldname = 'P_DATETO'.
  WRITE l_s_hiertxt-dateto TO l_s_dynpfields-fieldvalue.
  APPEND l_s_dynpfields TO l_t_dynpfields.
  CALL FUNCTION 'DYNP_VALUES_UPDATE'
    EXPORTING
      dyname     = sy-repid
      dynumb     = sy-dynnr
    TABLES
      dynpfields = l_t_dynpfields.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fname.
  DATA:
  l_filename1 TYPE string,
  l_filename2 TYPE string,
  l_path TYPE string,
  l_fullpath TYPE string,
  l_action TYPE i.
  l_filename1 = p_fname.
  CALL METHOD cl_gui_frontend_services=>file_save_dialog
  EXPORTING
  window_title = 'Select Download File'
  default_extension = 'txt'
  default_file_name = l_filename1
  file_filter = 'All Files (.)|.|Text files (.txt)|.txt'
  CHANGING
  filename = l_filename2
  path = l_path
  fullpath = l_fullpath
  user_action = l_action
  EXCEPTIONS
  cntl_error = 1
  OTHERS = 2.                                               "#EC NOTEXT
  CHECK sy-subrc = 0.
  CALL METHOD cl_gui_cfw=>flush.
  IF l_action = 0.
    p_fname = l_fullpath.
  ENDIF.
INITIALIZATION.
  GET PARAMETER ID 'RSC' FIELD p_iobjnm.
START-OF-SELECTION.
Check input
  CHECK NOT p_fname IS INITIAL.
  IF p_langu IS INITIAL.
    p_langu = sy-langu.
  ENDIF.
  IF p_dateto IS INITIAL.
    p_dateto = '99991231'.
  ENDIF.
Read hierarchy
  CLEAR g_s_hiesel.
  g_s_hiesel-objvers = rs_c_objvers-active.
  g_s_hiesel-hienm = p_hienm.
  g_s_hiesel-version = p_vers.
  g_s_hiesel-iobjnm = p_iobjnm.
  g_s_hiesel-dateto = p_dateto.
  CALL FUNCTION 'RSNDI_SHIE_STRUCTURE_GET'
    EXPORTING
      i_s_hiesel        = g_s_hiesel
      i_no_nodenm_table = rs_c_true
    IMPORTING
      e_s_hiedir        = g_s_hiedir
      e_subrc           = g_subrc
    TABLES
      e_t_hiedirt       = g_t_hiedirt
      e_t_hierstruc     = g_t_hierstruc
      e_t_thiernode     = g_t_thiernode
      e_t_hierintvl     = g_t_hierintvl
      e_t_message       = g_t_message.
  IF g_subrc <> 0.
    READ TABLE g_t_message INTO g_s_message INDEX 1.
    IF sy-subrc = 0.
      MESSAGE ID g_s_message-msgid TYPE 'I' NUMBER g_s_message-msgno
      WITH g_s_message-msgv1 g_s_message-msgv2
      g_s_message-msgv3 g_s_message-msgv4.
    ELSE.
      MESSAGE ID 'RSBO' TYPE 'I' NUMBER 899
      WITH 'Hierarchy read error'.
    ENDIF.
    EXIT.
  ENDIF.
Defined output structures
  IF p_dates IS INITIAL AND p_inter IS INITIAL.
    g_struct_s = 'Y_S_HIERFILE_1'.
    g_struct_t = 'Y_T_HIERFILE_1'.
  ELSEIF p_dates = 'X' AND p_inter IS INITIAL.
    g_struct_s = 'Y_S_HIERFILE_2'.
    g_struct_t = 'Y_T_HIERFILE_2'.
  ELSEIF p_dates IS INITIAL AND p_inter = 'X'.
    g_struct_s = 'Y_S_HIERFILE_3'.
    g_struct_t = 'Y_T_HIERFILE_3'.
  ELSE.
    g_struct_s = 'Y_S_HIERFILE_4'.
    g_struct_t = 'Y_T_HIERFILE_4'.
  ENDIF.
  CREATE DATA gr_s_file TYPE (g_struct_s).
  ASSIGN gr_s_file->* TO <g_s_file>.
  CREATE DATA gr_t_file TYPE (g_struct_t).
  ASSIGN gr_t_file->* TO <g_t_file>.
Nodes
  REFRESH <g_t_file>.
  LOOP AT g_t_hierstruc INTO g_s_hierstruc.
    CLEAR <g_s_file>.
    MOVE-CORRESPONDING g_s_hierstruc TO <g_s_file>.
Texts for nodes
    READ TABLE g_t_thiernode INTO g_s_thiernode WITH TABLE KEY
    langu = p_langu
    hieid = g_s_hierstruc-hieid
    objvers = rs_c_objvers-active
    nodename = g_s_hierstruc-nodename.
    IF sy-subrc = 0.
      MOVE-CORRESPONDING g_s_thiernode TO <g_s_file>.
    ELSE.
Texts for characteristic values
      REFRESH g_t_chavlinfo.
      CLEAR g_s_chavlinfo.
      g_s_chavlinfo-c_chavl = g_s_hierstruc-nodename.
      APPEND g_s_chavlinfo TO g_t_chavlinfo.
      CALL FUNCTION 'RSD_CHAVL_READ_ALL'
        EXPORTING
          i_iobjnm                  = g_s_hierstruc-iobjnm
          i_langu                   = p_langu
          i_dateto                  = p_dateto
          i_check_value             = space
          i_sid_in                  = space
          i_hieid                   = g_s_hiedir-hieid
          i_objvers                 = g_s_hiedir-objvers
        CHANGING
          c_t_chavlinfo             = g_t_chavlinfo
        EXCEPTIONS
          info_object_not_found     = 1
          routines_generation_error = 2
          check_table_not_existing  = 3
          text_table_not_existing   = 4
          OTHERS                    = 5.
      IF sy-subrc = 0.
        READ TABLE g_t_chavlinfo INTO g_s_chavlinfo INDEX 1.
        IF sy-subrc = 0.
          MOVE-CORRESPONDING g_s_chavlinfo-e_chatexts TO <g_s_file>.
          ASSIGN COMPONENT 'LANGU' OF STRUCTURE <g_s_file> TO <g_langu>.
          IF sy-subrc = 0.
            <g_langu> = p_langu.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
Intervals
    IF g_s_hierstruc-intervl = 'X' AND p_inter = 'X'.
      READ TABLE g_t_hierintvl INTO g_s_hierintvl WITH TABLE KEY
      hieid = g_s_hierstruc-hieid
      objvers = rs_c_objvers-active
      nodeid = g_s_hierstruc-nodeid.
      IF sy-subrc = 0.
        MOVE-CORRESPONDING g_s_hierintvl TO <g_s_file>.
      ENDIF.
    ENDIF.
    APPEND <g_s_file> TO <g_t_file>.
  ENDLOOP.
Download output table
  g_fname = p_fname.
  CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
      filename                = g_fname
      write_field_separator   = space
    TABLES
      data_tab                = <g_t_file>
    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 'RSBO' TYPE 'I' NUMBER 899
    WITH 'Hierarchy download successful!'.
  ELSE.
    MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
end

Similar Messages

  • I just renewed my subscription (today, at 24:30 am), but so far I could not use the program (4:37 pm are). I tried to call in the support numbers, but no one answers. When I try to re-download the program, nothing happens.

    I just renewed my subscription (today, at 24:30 am), but so far I could not use the program (4:37 pm are). I tried to call in the support numbers, but no one answers. When I try to re-download the program, nothing happens.

    Hmmm, odd. Take a look at the "correct answer on at this link: Re: "Renew your Subscription" This Adobe help link too: Sign in, activation, or connection errors | CS5.5 and later
    If that doesn't help you will need to contact Adobe directly: Contact Customer Care 1 (800) 833-6687
    Benjamin

  • What do I have to do to bring iPhoto up so that I can use the program?

    This morning we received a software update for iPhoto (36MB) immediately after this download and installation we received a second software update for iPhoto (57.7MB). Shortly after finishing the second update I tried to open iPhoto to work on a slideshow of holiday activities.
    I went to:
    Dock > iPhoto
    Message: " The photo library needs to be upgraded to work with this version of iPhoto."
    upgrade ( I clicked on the upgrade button)
    "Loading photos... " " Examining Photo Library "
    Everything stopped.
    New screen: " There is a problem accessing one or more files in your iPhoto Library folder. >Finder, >iPhoto Library, >get info., ... check read/write permissions."
    I proceeded as directed. Permissions were all read/write for the iPhoto Library folder.
    I went back to iPhoto... repeat of problem.
    What do I have to do to bring iPhoto up so that I can use the program.

    Welcome to the Apple Discussions. What was updated and did you repair disk permissions after it was completed?
    As a first fix attempt download and run BatChmod on the iPhoto Library folder with the settings shown here, putting your administartive name in the owner and group sections. You can either type in the path to the folder or just drag the folder into that field.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB file backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Can you use the programs in the creative cloud on multiple computers?

    Hey,
    I was wondering if it is possible to use the programs on multiple computers when you have the membership?
    Thanks

    From the doc : http://www.adobe.com/products/creativecloud/faq.html
    "You can install the desktop applications available in Creative Cloud on your primary computer and one backup computer, as long as they are not running at the same time. You will have access to both the Mac OS and Windows versions, so if you have a Mac at home and a PC at work, for instance, you can install your applications on both. See the product license agreements page for more information."

  • If I am buying single app adobe premier pro by annual prepaid plan,after the after the end of the year subscription would it be possible to use the program further without updating or I should pay each year?

    If I am buying single app adobe premier pro by annual prepaid plan,after the after the end of the year subscription would it be possible to use the program further without updating or I should pay each year?

    Thanks
    2 бер. 2015 15:50, користувач "Peru Bob" <[email protected]> написав:
        If I am buying single app adobe premier pro by annual prepaid
    plan,after the after the end of the year subscription would it be possible
    to use the program further without updating or I should pay each year?
    created by Peru Bob <https://forums.adobe.com/people/Peru+Bob> in *Premiere
    Pro* - View the full discussion
    <https://forums.adobe.com/message/7243337#7243337>

  • F-43 and F-22 tcode will work by using the program RFBIBL00 in LSMW?

    Hi Guys,
    Currently we have the requirement like we need to post the vendor open items and customer open items by using the tcodes
    F-43 and F-22.
    Is it possible to create the records by using the program RFBIBL00 in LSMW?
    Thanks in advance
    SRS Reddy

    Dear Reddy,
    FB01 is the generic and classic transaction to post an FI document. There is no difference at all with F-43 and F-22 that are only linked to a specific document type and posting key.
    I hope this helps You.
    mauri

  • How do I download Adobe Acrobat using the Agreement Number provided by my employer.  Having difficulty connecting to Adobe Chat with Support option.

    How do I download Adobe Acrobat using the Agreement Number provided by my employer?  Having difficulty connecting to Adobe Chat with Support option.

    Hi,
    If you already have the serial number then I would request you to download the software from the below link and install it.
    http://www.adobe.com/downloads/other-downloads.html
    Regards,
    Anand

  • How to use the program "Generate test data for BAI bank statement" ?

    Hi all,
    I use the program RFEBKAT5 to create an Electronic Bank Statement file in BAI format ,but it doesn't generate the file .
    I don't know how to generate the file.
    Please help me !
    Thanks all !

    You need to suitably adjust your GL accounts for "Posting Offset Account" (Whisch is defaulted as ++++++++19" and Checkout/Funds Out/Funds IN GL accounts to your configuration.
    Once you do this try generating the file again.

  • When i first inst photoshop cs6 i was able to see the 3D icon, but on the next time i used the program there is no more 3D icon. when i launch photoshop it say " photoshop detected graphic hardware is not officially supported if you experience problem ple

    when i first inst Photoshop cs6 i was able to see the 3D icon, but on the next time i used the program there is no more 3D icon. when i launch Photoshop it say " Photoshop detected graphic hardware is not officially supported if you experience problem please unchecked the use graphic processor check box in the performance panel of the preference dialog" Is this the cause? If so how to uncheck that box? Thanks

    Your video card is underpowered for the task.
    Go to Photoshop > Preferences > Performance and click on the tick mark next to the box labeled "Use Graphics Processor":

  • I have CS 6 which requests I sign in to access my serial numbers, which I have already, and it fails to connect so that I cannot use the programs. How do I get past this, is there a direct line to customer support?

    I have CS 6 which requests I sign in to access my serial numbers, which I have already, and it fails to connect so that I cannot use the programs. How do I get past this, is there a direct line to customer support in the UK?
    Thanks

    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • Can we copy a CD tutorial onto an iPad? Does it work like the MacBook Air when downloading or copying using the iMac?

    Can we copy a CD tutorial onto an iPad? Does it work like the MacBook Air when downloading or copying using the iMac?

    So it can be .mp4 format.
    If not you have to convert it.
    Try import it into iTunes then sync it to your iPad.
    Message was edited by: ckuan
    Video formats supported: H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format

  • I can't download any software using the built in web browser. Any ideas?

    Hey hey! Thanks in advance for everyone's help.
    I just got a new Treo 755p for Verizon. I can't seem to download any software using the built in web browser. When I initiate the download it sits on the download screen and does nothing. I've tried several sources of software all resulting in the same thing.
    Could it be settings on the Treo itself? Not sure! Any ideas would be greatly appreciated.
    Sincerely,
    Minnesota Mike
    Post relates to: Treo 755p (Verizon)

    Hi, and welcome to the Palm Community Forums.
    Where are you trying to download the applications from, and what file format are they?
    Do you have an expansion card installed?
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • IDoc delta loads using the program RBDMIDOC

    Hi ALL,
    We are doing some delta loads for ALE-IDOC using the program RBDMIDOC and we are using the message type HRMD_A.Under this message type we have configured two diff distribution models with different infotype data.
    So when we execute the program we have only one input parameter that takes the message type.based on our setup will the program send the delta loads for both the distribution models since they are using the same message type which we do not want.
    How do we restrict the program to send the delta loads only for the intended distribution models even though they are using the same message type.
    Thanks
    Bala Duvvuri

    Hi Bala, 
    Assuming that based on IDoc content there is some way to determine which system should be the recipient, you could do the following (requires ABAP development as indicated by Mylène):
    Define a new filter object type if required via BD95.
    Assign new or existing filter object to E1PLOGI segment field FILTER1 or FILTER2 via BD59
    Create BAdI implementation for HRALE00OUTBOUND_IDOC and implement method FILTER_VALUES_SET to set values for FILTER1 or FILTER2
    Even without the BAdI implementation you'd see the new filter value appearing in your distribution model for message type HRMD_A. However, you need the ABAP logic for filling the fields with actual values that you can utilize. 
    Cheers, harald

  • How to use the program called ZSAPLINK to import Function Name

    How to use the program called ZSAPLINK to import Function Name

    Not sure why you posted into this forum?
    Note the header for this forum:
    This forum is dedicated to all other development-related questions which are not directly addressed by other forums. This includes Business Objects SDKs, products, or technologies which do not fall under BusinessObjects Enterprise, BusinessObjects Edge, Crystal Reports Server, or Crystal Reports (for example Desktop Intelligence SDK, Universe Designer SDK, Portal Integration Kits, Java User Function Libraries, and other third party technologies or development languages).
    Ludek

  • I am confused. Tell me what to do.. I am using Indesign and want to go on using the program as cheap as possible. Which possibilities have I got?

    I am confused. Tell me what to do.. I am using Indesign and want to go on using the program as cheap as possible. Which possibilities have I got?

    Not enough information to provide an answer... do you have a licensed (old) version, or do you have a Cloud subscription?

Maybe you are looking for

  • Reporting action with a parameter

    Hi, I am having an issue setting up a reporting action with a parameter. The report I am trying open is non-cube based database report. I tried a few syntax variations for the parameter value such as: UrlEscapeFragment( [Dimension].[Attribute].Curren

  • India Localization - Does it support use of IR / ISO accross OUs

    HI Does India Localization support use of IR and ISOs between two different operating Units? we are on version R12.0.6 Regards, Utkarsh

  • Xml document parse Exception

    Hi, when i am parsing the document having encoding scheme is US-ASCII doc = docBuilder.parse(url);      it throws Exception : com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: Byte "146" is not a member of the (7-bit) ASCII c

  • Safari 4.0 (not beta)

    downloaded the new safari. some web pages it seems to crash. i've noticed this with going to the Canadian Apple store. i click store and it crashes time after time. What gives?

  • Captivate 4 does not Capture Recorded Slides

    Hello, I tried to add slides to a demo I have been building, set the recording mode to demo, hit the record button and then went through the demo actions.  When I pressed the End Key to stop recording, nothing happened.  No new slides appeared.  When