EXPORT IMPORT not working in implicit enhancements

Hi,
I need to export from an implicit enhancement spot a deep structure data to another implicit enhancement spot.
export is_replord_conf = is_replord_conf to memory id 'REPLE' .
import is_replord_conf = is_replord_conf from memory id 'REPLE' .
For some reason i am not getting values in second implicit enhancement point.
I will be thankful if you can guide.
Thanks.

Hi sanj_dell,
why did you give me credit, I didn't give any solution! You can change it. Only Suhas gave you a clue to find the solution by yourself.
By the way, was your issue related to implicit enhancements? (I know it's not, but I'd like to hear it from you)
Thanks
Sandra

Similar Messages

  • Exported HTML not work in my host.

    Exported HTML not work in my host.
    The program works fine. Looks good in the browser preview and published in businesscatalyst, but when i exporting as html and upload it to my server is bad, all misplaced.

    Thanks for the reply.
    Everything is apparently copied and permissions are well.
    Watch this please.
    So it should be seen:
    http://koldo01.businesscatalyst.com/
    It is seen:
    http://www.koldofuentes.com/

  • Import/Export statement  not working..

    Hi all,
       I want to export some data from BADI & Import it back in user exit.
    I wrote following line of code in BADI
           export P1 FROM xstr to memory id 'ZABHI'.
    & following line of code in User Exit
          import P1 to xstr FROM memory id 'ZABHI'.
    After export sy-subrc becomes 0 hence export statement is working fine but when aftr import xstr remains blank.(sy-subrc = 4)
    I tried to execute same code in single ztest abap program & it works fine there.
    Thanks in advance.

    hi abhijeet,
    you are most welcome....
    to delete, use
    ** deletes the data to save wastage of memory
    delete from database indx(xy)
      client sy-mandt
      id 'ZABHI'.
    you need to delete it coz, its available to all programs in the R/3
    server via the ID and you don't want anybody to view the data u are
    sending into memory.
    the statement that u used earlier was program specific and hence
    not accessible to the user exit.
    Regards,
    Samson Rodrigues.

  • Import/export - templates not working?

    We're just trying to deploy our Portal application into the production environment, and having a lot of problems. We're still on 3.0.6.6.5.
    Firstly - if we import something more than once it creates a 2nd version. I've seen messages on this forum saying the -m switch has values of new/reuse, but the docs say check or create only. Is this a change at 3.0.7 or 3.0.8? I'm a little nervous about deleting objects in the production environment, we've been having random problems with metadata corruption when deleting objects in the dev environment.
    Secondly, we have our own template which is assigned to all application components. When we tried to export/import the template, we got no errors but it obviously didn't work. When we tried to edit the template to take a look at it, we got an error saying we're missing some dependent objects. The only objects referenced by the template are images and fonts - we haven't created our own, we've reused standard images & fonts, so why are we getting this error?

    Answers to your questions :
    1. One cannot import the same component twice on the same portal instance. You might have tried the import with -m check option.
    2. There are two modes in which an application/component import can run :
    CREATE and CHECK.
    3.Can you specify the exact error that you got when you tried to edit the template?
    Thanks and Regards
    null

  • Include in Export does not work in APEX 3.1

    I have a report with many columns. On screen I only show several columns, but on export to CSV I want to include all columns.
    However, when "Show on Report" is set to No, and I want to set "Include in Export" to Yes on the "Print Attributes" tab, it does not get updated.
    It only gets updated when the "Show on Report" is set to Yes.
    It also seems that the "Include in Export" on the "Report Attributes" tab is not in sync with the "Include in Export" on the "Print Attributes" tab the first time you access the "Print Attributes" tab.
    Question: Does "Include in Export" only works for columns which has the "Show on Report" set to Yes? If Yes, how can I achieve the above mentioned?
    Guido

    Marc,
    After some investigations the following can be concluded:
    On the Report Attributes tab, pick a column, and set "Show Column" to Yes, "Include in Export" to Yes, and no conditions.
    I do not want this column to be printed, so on the Print Attributes tab, set the "Column Width" to 0.
    When you run the report, you will notice that the column is not included in the export to CSV and not printed.
    Setting the "Column Width" to a value greater than 0, the export to CSV works fine, but the column is also printed.
    You can have a look at page 1 at at http://apex.oracle.com/pls/otn/f?p=261 (demo/ankpm)
    Thanks Patrick for your solution (:REQUEST LIKE 'FLOW_EXCEL_OUTPUT_%'), it works great. The column is now not show on screen but included in the export to CSV. However, you have to set the column width to a value greater than 0.
    An enhancement request for 4.0 could be to also have a property "Include in Print", and that this property and "Include in Export" are not dependent on the "Show Column" value.
    Guido

  • ExportI/Import Actual Work for each resourse day by day

    Hi all,
    this is my first post and I'm trying to export some data by Microsoft Project Project Professional 2010 32bit (version 14.0.7140.5002).
    I need your help in order to solve this issues :
    (Priority 1) export actual work for each resource of my Project in the following format:
           DAY;Resource Name;Summary Task Name; Task Name; hours
    (Priority 2) Import actual work for each resource inmy Project in the following format:
           DAY;Resource Name;Summary Task Name(if needed); Task Name; hours
    I'm searching into forum but I'm not clear what is the correct object to use.
    Thanks a lot for your help.
    Alberto

    In primis thanks a lot for your answer.
    I want create a macro VBA and add a "botton" on task bar in order to execute this macro - output format is CSV file but I think is excellent if I write it in Excel format.
    I have partially closed first priority (you can see below code) - I need create a little message box in order to receive period and path output.
    I appreciate your collaboration in order to help me. :)
    Thanks
    Sub ResourceActualWorkDetail()
        Dim rs As Resources
        Dim r As Resource
        Dim A As Assignment
        Dim TSV As TimeScaleValue
        Dim TSVS As TimeScaleValues
        MsgBox ActiveProject.Name
        Close #1
        Open "C:\Users\xxx.xxx\Desktop\" & ActiveProject.Name & " - TimeReport.csv" For Output As #1
        Write #1, "Summary Task;Task Name;Risorsa;Giorno;Ore"
        'Header
        Set rs = ActiveProject.Resources
        For Each r In rs
                For Each A In r.Assignments
                    For Each TSV In A.TimeScaleData("01/01/2015", "31/12/2015", pjAssignmentTimescaledActualWork, TimeScaleUnit:=pjTimescaleDays)
                        If TSV.Value <> "" And TSV.Value > "0" Then
                            Write #1, _
                                A.TaskSummaryName _
                                & ";" & A.TaskName _
                                & ";" & r.Name _
                                & ";" & TSV.StartDate _
                                & ";" & TSV.Value / 60
                        End If
                    Next TSV
                Next A
        Next r
        Close #1
     End Sub

  • Aperture export is not working, "Choose" buttons also  not reacting

    Suddenly I can't export versions, originals, metadata and export as library anymore. Also all "Choose" buttons do not react anymore. For example its not possible to open another Library or choose the external photo editor in Preferences. If I login with my second useraccount Aperture does work just fine.
    On Monday I had no problems at all. Sofar I did the following things:
    FIRST.
    Repair Diskpermissions and Verify disk which was OK.
    Moved to desktop following files:
    ~/Library/Preferences/com.apple.Aperture
    ~/Library/Caches/com.apple.Apertue
    ~/Library/Containers/com.apple.Aperture
    Emptied the trash and restarted. The problem is not solved.
    SECOND.
    All the above actions and restart.
    Aperture Photolibrary first aid, "Repair Permissins" , "Repair Database" and "Rebuild Database".
    The problem is not solved.
    THIRD.
    Uninstalled Aperture and removed all files containing the frase "Aperture" (as far as these files had any connection with the application).
    Repair Diskpermissions and Verify disk which was OK.
    Emptied the trash and restarted.
    Installed Aperture from DVD and update via Apstore.
    Still the same problems so I am asking the form members for help.
    Mathieu

    Are you having any troubles wiht other applications run from  this account?
    From what you wrote you seemed to have covered all the bases not sure what else to suggest. What is the system?
    Do you have any plugins installed in Aperture ?  What about any applications, plugins etc, for this account?
    You can try doing a safe boot (hold the shift key down as soon as you hear the start up chime. Hod it until the Apple appears on the screen) Safe boot takes longer to come up, there will be a status bar at the bottom of the screen while it boots. Once it is up you will see Safe Boot in red letters at the top of the screen on the login page. This might not work if you have File Vault turned on.
    Once booted in Safe mode log in. Aperture use to not run in Safe mode because the graphics card is restricted but I believe in 3.5. it will run. Note everything will be slow and jerky.
    See if that makes a difference. Once done testing boot normally and try it again.

  • Oracle.ifs.admin.export.ExportUsers NOT working in SILENT mode

    I'm trying to export my CMSDK users via the commandline script (since the GUI tool MAKES YOU SELECT EACH USER ONE AT A TIME!!!) but it is not working. The CMSDK doc incorrectly tells you to run oracle.ifs.admin.export but I've found that you have to run ...ExportUsers. However my def file has the runsilent attr set but the GUI app still pops up???? Below is my script
    #!/bin/sh
    IFS_ROOT_HOME=$ORACLE_HOME/ifs
    export IFS_ROOT_HOME
    . $ORACLE_HOME/ifs/common/bin/ifsunixcmds
    . $ORACLE_HOME/ifs/cmsdk/bin/system/ifssetenv
    CLASSPATH=${IFS_CLASSPATH}
    export CLASSPATH
    java -Xmx64M oracle.ifs.admin.export.ExportUsers /d01/app/oracle/product/oas904mid/ifs/cmsdk/export/export-users.def
    And here is my def file...
    IFS.EXPORT.RunSilent=true
    IFS.EXPORT.Username=system
    IFS.EXPORT.Password=manager9ifs
    IFS.EXPORT.Service=IfsDefault
    IFS.EXPORT.SchemaPassword=gapp1969
    IFS.EXPORT.LogFile=export-users.log
    IFS.EXPORT.USER.ExportedUsers=bdillon
    IFS.EXPORT.ExportSetName=dev-users
    IFS.EXPORT.ExportToPath=/d01/app/oracle/product/oas904mid/ifs/cmsdk/export/
    IFS.EXPORT.ExportTreeSize=50
    IFS.EXPORT.USER.GetAllAncestors=true
    IFS.EXPORT.USER.GetDirectAncestors=false

    Pl see your other thread here - libxp.so.6
    You cannot terminate an install before successful completion and expect things to work flawlessly ;-)
    Srini

  • Export function not working in Internet Explorer

    so i've got a report displayed in IE, but when i go to export to any file format, IE opens a new tab and that's it. depending on certain settings (like adding the server to intranet zone), i can get the new tab to say nothing or "Blank Page".
    i've tried adding the server to the safe zones, i've played with some tabs settings, i enabled the "run active x" options...
    finally i reset all settings of IE to their defaults. i still can't figure out what i'm missing. if i copy the url to another browser the export works fine, as expected. on another machine i found this "rsclientprint 2008" addon so i downloaded
    that but i still got nothing.
    on a working machine, when i click the export button, a new tab opens with the name of the reporting server in it, it thinks a bit, then that tab closes and i get the "open or save" message in the original tab. on the one that's not working, it
    opens the new tab, DOESN'T show the server name and that's the end of it. so it seems like it can't connect to the server on the export function. (but report creation works just fine)
    anyone know of anything glaring that i'm missing??
    ~if this were /. this sig would be funny

    good call - i'll try that now.
    the app i had installed before was Classic Shell so that Windows Explorer's (win7) left hand pane doesn't jump around on you when you double click.
    i just completely uninstalled the application and rebooted. still nothing.
    going to do a repair while classic shell is uninstalled. brblol
    UPDATE:
    so i couldn't run the IE installer (per MS suggestions) because i have a newer version. so i tried the fixer that i found here:
    http://support2.microsoft.com/mats/ie_performance_and_safety
    and it found the following "errors":
    Issues found
    Data Execution Prevention disabled
    Detected
    Enable Data Execution Prevention
    Not Run
    Security settings
    Detected
    Reset Security settings
    Not Run
    Pop-Up Blocker disabled
    Detected
    Enable Pop-Up Blocker
    after fixing, the problem still exists!
    ~if this were /. this sig would be funny

  • AWI (Auth Workstation Importing) not working

    Hi,
    we are experiencing a really strange behavior of our ZDM 6.5SP2 AWI service; we get the error in zenwsimp.log
    Mar 5, 2008 5:13:29 PM Politica_Import_Remove_CCRTV:General:Importar desde la estacin.BORA-NCS.SRV_CENTRAL.CCRTV
    Mar 5, 2008 5:13:29 PM Version = ZfD4
    Mar 5, 2008 5:13:29 PM User name =
    Mar 5, 2008 5:13:29 PM IPX address =
    Mar 5, 2008 5:13:29 PM IP address = 172.19.110.12
    Mar 5, 2008 5:13:29 PM Subnet mask = 255.255.0.0
    Mar 5, 2008 5:13:29 PM DNS name = pc040023899.ad-ccrtv.local
    Mar 5, 2008 5:13:29 PM Computer name = PC040023899
    Mar 5, 2008 5:13:29 PM Server name = TRAMUNTANA
    Mar 5, 2008 5:13:29 PM OS = WINXP (5.1 Service Pack 2)
    Mar 5, 2008 5:13:29 PM CPU = PENTIUM III
    Mar 5, 2008 5:13:29 PM MAC address = 00:14:38:08:9D:B8
    Mar 5, 2008 5:13:29 PM Tree =
    Mar 5, 2008 5:13:29 PM User context =
    Mar 5, 2008 5:13:29 PM Login count = 0
    Mar 5, 2008 5:13:29 PM A user name is required to create the workstation according to policy: Politica_Import_Remove_CCRTV:General:Importar desde la estacin.BORA-NCS.SRV_CENTRAL.CCRTV
    Mar 5, 2008 5:13:29 PM Connection closed: /172.19.110.12:1062
    the server AWI policy defined (Politica_Import_Remove_CCRTV) says to put the newly created workstation into the user container, that's why uses the user to locate the destination container.
    What I've been observing is that the process to automatically create the workstation runs before the user writes his login/password (I suppose the process is initiated by the Workstation Manager), so no username is still defined !!!! (as you can see in the log file, in the line under "Version=zfd4", "username=")
    Why the Workstation Manager launches the process in the AWI server BEFORE the user logins??????
    Some week ago, once the user got logged, without automatically creating the workstation object, if we run "zwsreg", then the workstation was rightly created. That's was our salvation. Unfortunately, now even this method is not working ...
    I had the intuition (now discarded) that the error was in the ZDM 6.5SP2 AWI server; so I've installed a new ZDM 7SP1 server, and a new AWI policy. But the results were the same. With a ZDM 6.5sp2 agent in the workstation, or a ZDM 7sp1 agent. It doesnt matter.
    So it seems the problem is on the eDir 8.7.3 tree, or maybe on the workstation, but haven't done any important changes in both elements before the problem appeared.
    Another thing I've noted is that the login count doesn't get incremented !!!!
    I've followed the TID 10056909 "Automatic Workstation Import/Removal Errors and Suggested Remedies", and the TID 10074993 "Unable to import workstations to User's Container"; the version of the ZENPOL32.DLL is 08/09/2005 ... I've re-created several times the AWI policy.
    Any idea ????
    DATA :
    server : NW 6.5 SP6, with ZDM 6.5SP2
    clients : Windows XP SP2, with NW Client 4.91SP1, agent ZDM 6.5SP2
    We are using Universal Password
    I hope someone experienced the same problem and could help us ...
    Best regards,
    Carles Ciutat
    BARCELONA
    (SPAIN)

    Yes, in the registry key you've noted we have the exact name of our tree ...
    Other keys under Workstation Manager\Identification are
    ImagingUserDefinedTree
    NALUserSingleTree
    Preferred Connection
    Tree
    Any idea ???
    Regards,
    Originally Posted by Marcus Breiden
    On Wed, 05 Mar 2008 17:06:02 GMT, in
    novell.support.zenworks.desktop-management.6x.management-agent you wrote:
    > Why the Workstation Manager launches the process in the AWI server
    > BEFORE the user logins??????
    it launches during boot, after the user logged in, when the user logs out,
    when you shutdown the wks and when you run zwsreg..
    check if you have the correct treename
    HKLM/Software/Novell/Workstation Manager/Identification/Tree
    Marcus Breiden
    If you are asked to email me information please remove the - in my e-mail
    address.
    The content of this mail is my private and personal opinion.
    DIDAS AG

  • Report Export - Spreadsheet not working for one User: ECC6, SAPGUI710

    Hi,
    Our setup: SAP ECC6, Solaris10, Oracle 10g, SAPGUI Patch 9
    Normal download like List ->export ->Local file is working
    But when user click excel icon (list ->export->spreadsheet) it is not working and even it is not giving any error message.
    Only one user ID we are getting problem, all other user ids are ok.
    There is no issue with his work station or SAP GUI patch level as for other user id on his workstation export function is working fine. One more info with this problematic user id export function is not working in any workstation.
    Any thing we need to do with user parameters/user settings or authorization????
    Anyone faced this problem eralier . . .
    Advance thanks

    It is not hte problem with workstation, as for other user ids on his workstation working fine. Also with his user id on other machines also not working.
    Regarding trace in ST01, how to switch the trace for other users as there is no user selection option???
    Is it ok if I procedd as below:
    1. ST01 -> Edit menu ->Write to database
    2. Selected all trace components
    2. General Filters ->under "Trace for User Only" I give this problematic user id.
    3. From menu "Goto" ->"Save Trace file in" I give this user id, client and time
    But I am getting following message when I click "Analysis"
    No records that correspond to these search criteria found
    regards

  • Export Button not working properly in custom OAF page.

    Hi,
    I have a custom page with a table region is there. There is an export button which exports the rows in an excel sheet.
    But it is not working properly, as all the rows are not getting extracted.
    Properties set for the export button::
    Export all rows :: False
    Any sugestion is highly appreciated.
    Regards,
    Arindam.

    Hi Arindam,
    Refer below links.
    Mukul's Oracle Technology Blog: Implementing Export Button Functionality Programatically
    http://dilipoaf.blogspot.in/2013/02/export-selected-rows-data-functionality.html
    Thanks,
    Dilip

  • Export Funtionality not working in R12

    HI,
    We have some custom forms that we have upgraded to R12.
    But the export funtionality is not working for these forms.
    When we open the form, standard funtionality like Menu> Record> Last are not working in R12.
    Any body can please help in this.

    Hi,
    Does this happen with all forms (custom and standard)?
    Please see if the documents referenced in this thread help.
    Export to EXCEL doesnt work
    Export to EXCEL doesnt work
    Regards,
    Hussein

  • Export functionality not working in R12

    HI,
    We have some custom forms that we have upgraded to R12.
    But the export funtionality is not working for these forms.
    When we open the form, standard funtionality like Menu> Record> Last are not working in R12.
    Any body can please help in this.

    You should post your question in the eBusiness-forums, maybe here OA Framework

  • File export keystroke not working

    According to the menu, this keystroke is shift command E (Mac). Does not work at all. Puzzled.
    btw, on this forum, why is that that you enter a title to ask question, then you have to enter that title again.

    Hi,
    What is the version of LR ?
    Version of MAC ?
    You have to select the images you want to export and then press Shift+Command+E, it shoud open the Export box.
    Thanks,
    Baljeet

Maybe you are looking for

  • How to show asterisk * effect once the user starts editing the document??

    I wrote a java text editor. I creat a new internal frame and allows to open a document. How to have an effect (an asterisk * follows the filename in title bar) once the user starts editing the document? And once I save that file, that asterisk * will

  • New Mac Mini won't connect with new Dell Monitor

    I connected the power cord and then the HDMI from Mini to Monitor, but it said it needed a DVI-D cable. or it would in 5 minutes go into power save mode, which it did, so there's no picture from Mini Where would that connect on the Mini? Where can I

  • Combine PDF feature missing from right click option Acrobat Pro 9/Windows 7

    I combine PDF's all day long and need this feature. I had it on my old computer and since moving over to the new computer I do not have the option to combine PDF's when right clicking on PDF documents. I have searched the forum and found other fixes,

  • One way only video on ichat with aim to pc

    I can only get one way video. I have a imac and my friend has a pc. He downloaded aim 6.8 and I also got an aim account. When we try to video conference with ichat he can see me fine but I can't see him. He also has a built in camera. The instant mes

  • Problems with microphone/recording in Windows 7

    Daughter has dyslexia. Learning program requires Windows. Added Parrell and Windows so I could run it. Has been working fine for 2 weeks and now the recording feature isn't working. I've tested on the Mac side - microphone works fine. Test on the Win