Import and Copy Opening – One Task & One Prompt Set

  Hi Experts,
We want to create one data manager package that contains both import from BW with UI and copy opening. We ran into some issues.  Maybe you can help:
We created a new process chain that contains both tasks, and created a new DM package that has both scripts.  Users only want to enter parameters such as entity and time one time for both tasks...
When I commented out the Copy opening prompts, relying on the prompts from the Import from BW, I receive an error. The message:
Task name LOAD
INFOPROVIDER:
  Replace and Clear Submit
count: 1114
  Replace and Clear Reject
count: 0
  Aggregate count: 376
  Submit count: 312
  Reject count: 0
Invalidate
selection condition
I believe it's because we have the %SELECTION% recorded twice in the script (thinking that we will take the variables from the import and continue to use for the Copy opening).
Also thought to switch around the prompts, hard coding the cube name, and using a dimension selection screen like Copy Opening.
Any ideas for executing this would be really helpful.  Below please find the standard scripts for
import and Copy Opening.
Thank you.
Eyal Feiler
'DEBUG(ON)
  PROMPT(INFOPROVIDERSELECTION,%InforProvide%,%SELECTION%,"Please select the InfoProvider
and set selection (InfoProvider list is restricted by both
BW and BPC authority)",,)
PROMPT(KEYDATE,%KEYDATE%,"Key date",0)
INFO(%TEMPNO1%,%INCREASENO%)
INFO(%ACTNO%,%INCREASENO%)
TASK(/CPMB/INFOPROVIDER_CONVERT,OUTPUTNO,%TEMPNO1%)
  TASK(/CPMB/INFOPROVIDER_CONVERT,ACT_FILE_NO,%ACTNO%)
  INFO(%MAI_TRFILE%,\ROOT\WEBFOLDERS\MAI_CONSO\Consolidation\DATAMANAGER\TRANSFORMATIONFILES\EXAMPLES\MA\T_FILE_BW_IPROVIDER.XLS)
TASK(/CPMB/INFOPROVIDER_CONVERT,TRANSFORMATIONFILEPATH , %MAI_TRFILE%)
TASK(/CPMB/INFOPROVIDER_CONVERT,SUSER,%USER%)
TASK(/CPMB/INFOPROVIDER_CONVERT,SAPPSET,%APPSET%)
TASK(/CPMB/INFOPROVIDER_CONVERT,SAPP,%APP%)
TASK(/CPMB/INFOPROVIDER_CONVERT,FILE,%InforProvide%)
TASK(/CPMB/INFOPROVIDER_CONVERT,INFOPROV_SELECTION,%SELECTION%)
TASK(/CPMB/INFOPROVIDER_CONVERT,KEYDATE,%KEYDATE%)
TASK(/CPMB/LOAD_IP,PREPROCESSMODE,0)
TASK(/CPMB/LOAD_IP,TARGETMODE,2)
TASK(/CPMB/LOAD_IP,INPUTNO,%TEMPNO1%)
TASK(/CPMB/LOAD_IP,ACT_FILE_NO,%ACTNO%)
TASK(/CPMB/LOAD_IP,RUNLOGIC,1)
TASK(/CPMB/LOAD_IP,CHECKLCK,1)
  TASK(/CPMB/LOAD_IP,KEYDATE,%KEYDATE%)
  'supress
prompts for work status default script and replace - default as yes and yes
replace.  Default transformation file
path
Copy opening
PROMPT(SELECTINPUT,,,,"%ENTITY_DIM%,%CATEGORY_DIM%,%CURRENCY_DIM%,%TIME_DIM%")
TASK(/CPMB/OPENING_BALANCES_LOGIC,SUSER,%USER%)
TASK(/CPMB/OPENING_BALANCES_LOGIC,SAPPSET,%APPSET%)
TASK(/CPMB/OPENING_BALANCES_LOGIC,SAPP,%APP%)
TASK(/CPMB/OPENING_BALANCES_LOGIC,SELECTION,%SELECTION%)
TASK(/CPMB/OPENING_BALANCES_LOGIC,LOGICFILENAME,COPY_OPENING.LGF)

Hi Vadim,
Thanks, isn't %SELECTION% passed to the process chain?  I see that the process chain RUN LOGIC contains a field SELECTION.  If the value is passed, then I have to change that too?
2) If we change the value to SELECTION2, then how does this variable capture the parameters for the dimensions?  I am commenting out the prompt of the copy opening script keeping the first prompt below from the import from BW in order to capture the parameters for both scripts.
PROMPT(INFOPROVIDERSELECTION,%InforProvide%,%SELECTION%,"Please select the InfoProvider
and set selection (InfoProvider list is restricted by both
BW and BPC authority)",,)
Thanks
Eyal

Similar Messages

  • PSE-10 how do I import and copy from external hard drive into organizer

    Can I import and copy from external hard drive into organizer? Under Get Photos, I select import  from folders/files but after browsing to the external hard drive the copy option is disabled/greyed out. I there a method to import and copy?

    That would be mounted as an internal drive and hence the corresponding option is not checked during Import.
    Once you import the media form this drive, you can select all and go for File >> Copy/Move files option and copy them wherever you want to.
    Hope this helps
    Thanks
    Andaleeb

  • Delete existing RecordStore and then open a newer one with same name

    Hey All,
    I'm working in J2Me for Nokia S40 DP2.0 SDK 1.0.
    I want to delete my existing RecordStore (i. e; Products) and then open a new RecordStore as same name(Products) But
    There is an Exception thrown that RecordStore is Open;
    my deletion process is given below :
    public void deleteRecStore(String recordName) {
    if (RecordStore.listRecordStores() != null) {
    try {        
    RecordStore.deleteRecordStore(recordName);
    } catch (Exception e) {
    e.printStackTrace();
    public void createRecStore(String recordName, Vector data, int insertType) {
    if(recordName.equals("") && (recordName != null)) {
    try {
    if(insertType == this.NEW_REC) {
    rs = RecordStore.openRecordStore(recordName,true);
    this.closeRecStore();
    this.deleteRecStore(recordName);
    rs = RecordStore.openRecordStore(recordName,true);
    Can anybody pls help me...
    why I can't open a new recordstore like this ??
    If there any process then what is that ???
    Rania...

    This question belongs in the [CLDC and MIDP forum|http://forums.sun.com/forum.jspa?forumID=76]. I'll move it there in an hour or so.
    I would suggest that in addition to printing the stack trace of any Exception, you could append the Exception.toString() to a Form (or display it in an Alert) to see whether any exceptions are being thrown.
    db

  • Import and Copy files automatically

    Several years back I lost several photos using iPhoto because while it imported the image, the files copied into the iPhoto library were corrupted during the import process. To prevent that from happening to me again I wrote an applescript that would ask for a name of the roll (or event) then import the photos into iPhoto and then create and copy the photos into a folder of the same name on a backup drive. I now had two independent copies of the image in case one copy process went bad.
    Now on Aperture, I am looking for a plugin that does the same thing for Aperture as the script I wrote for iPhoto. Although I am fairly certain I came across the plugin before, I can't find it now.
    Any help in locating it or any other ideas would be appreciated.

    Hi Vadim,
    Thanks, isn't %SELECTION% passed to the process chain?  I see that the process chain RUN LOGIC contains a field SELECTION.  If the value is passed, then I have to change that too?
    2) If we change the value to SELECTION2, then how does this variable capture the parameters for the dimensions?  I am commenting out the prompt of the copy opening script keeping the first prompt below from the import from BW in order to capture the parameters for both scripts.
    PROMPT(INFOPROVIDERSELECTION,%InforProvide%,%SELECTION%,"Please select the InfoProvider
    and set selection (InfoProvider list is restricted by both
    BW and BPC authority)",,)
    Thanks
    Eyal

  • Various bugs – Library view issue / import and copy problem / unsupported paths message

    In addition to the issues reported in a separate thread regarding importing video, there are several other bugs that are preventing me from progressing on a project and/or indicate instability in Edge Animate.  These issues don’t occur on new projects (yet), but are present in my current composition.
    I'm using the latest version of Edge Animate CC 2014 (2014.1.1) on a Windows 8 Pro (fully updated) system.
    Issue 1 – Library View
    For all the assets that have been imported, when I twirl down to view the thumbnail of each asset in the Library, nothing appears in the thumbnail area.  In earlier iterations of this project, all the items appeared correctly, but now nothing is there for any of the assets.  See sample below of what should appear (and what was there before), and what’s there now (nothing).
    Issue 2 – Asset Import Problem
    When I try to add an already imported image asset to the stage (or try to import a new image asset in the project), the item doesn’t appear properly – it just comes in as a dot with no height or width.  See samples below of what the imported asset looks like on the stage and its size information.
    Assets that were imported and placed before this bug occurred are still visible on the stage. But, if I copy one of these assets, the copy retains the size information, but does not appear at all. See sample.
    Issue 3 – Unsupported Paths message
    When I close the project, I get an unsupported paths message.  See sample.
    Despite this message, the assets appear in the project from within Edge and are present in the project if I open/preview the HTML file in my browser.
    Since these three issues relate to project assets, perhaps they are related.  I can provide a link to download this project if you like. Any help would be greatly appreciated!

    Hi Avinash,
    I'm glad you received the (large) project.
    In the meantime, I installed Edge Animate on another system (OS - Windows 8.1).  The Edge project exhibits the same problems on the other system.
    Thanks for looking into this!
    Regards,
    - Joel

  • Importing and copying songs from my own CD

    I have imported songs and copied songs form own CD's. Today, every time I’m trying to listen any of my songs I will have on the left side on my iTunes program, an exclamation mark pop up which prevent me to open my songs or any of them. A little window will open and will say: The song i.e. “Loving you tonight” could not be used because the original file could not be found. Would like to locate it? Where to locate any of those songs, I'm already inside my library!
    Can you help to remove that general blockage preventing me to hear any music I record or copied from my personal CD’s thanks you?
    Bernard

    iTunes 11 for Windows: Import songs from CDs

  • Trouble of importing and copying songs form original CD musi

    I have imported songs and copied songs from original CD music. Today, every time I’m trying to click on a chosen song I will have on the left side on my iTunes program, an exclamation mark will come up and subsequently, forbidden me to hear any song. In the same time, a little window will open and will say: The song i.e. “Loving you tonight” could not be used because the original file could not be found. Would you like to locate it?
    Where can I locate any of those songs knowing that I'm already inside my library!
    Can you help to remove that general blockage preventing me to hear any music I recorded or copied from my personal CD’s thank you?
    Bernard

    So, you've moved a folder or some files on your hard drive. A limitation of the Windows OS is that files are referred to by full pathname and that's what your library has stored for your song location. (If you select the song, right click and select "Get Info", this will show you where iTunes thinks the file should be.)
    But you've moved the file behind iTunes back by moving or copying it in Windows Explorer and now iTunes has lost it. You should have the option of "finding the file" for iTunes so that it sync back up again -- that's the message about "would you like to locate it?" or you can delete the song with the exclamation point from the library and re-add the file back into the library in its new location.

  • Moving and Copying Plug Ins from one channel to another

    According to p305 of the Logic manual, "Command dragging plug ins from one insert to another copies them along with all parameter settings" ( in the Audio Configuration window),
    However when I do this it MOVES the settings and plug ins leaving the original track bereft...
    Any explanations gratefully received
    ms

    "holding option command copies the plug in settings" p305
    This is the obvious work around ... excuse the air space

  • I bought my Ipad in the UK.  I live in Spain.  I have installed and updated my apps frequently.  However, the last 8 updates will not install.  I keep getting a message that my account is not valid in the Spanish store and to open a UK one.  Help

    Question.  I live in Spain but am English and have used the English store to buy apps in £, and also updated apps with no problem.  Suddenly I seem to have been switched to a Spanish store and it will not update anything, there is no list under my 'purchases' (eg. Music) and the apps are priced in euros.  Why has this happened and how can I get my apps back??.

    You need to switch back to your own store.
    Settings>iTunes and App Stores>Apple ID
    Tap your ID
    Tap View Apple ID
    Enter your password
    Go to country/region in the popup window to change the store

  • In iMovie is there any way when you import your files to just make the file an alias like final cut does and not actually import and copy the whole file again into my mac. It's taking a lot of my space up. Thanks

    I just want to see if there is any way that I can import the files into iMovie as an alias like Final Cut Pro and Express does. I hate having to copy the file again because it takes up alot of space on my Mac. Thanks.

    No, but you can import your Event to an external drive from the import screen.
    It is also possible to create a symbolic link to another location. The link stays in your iMovie Events or iMovie Project folder, but the actual file resides somewhere else. I don't do it this way, so I can't share any details.

  • I need to change the hyperlink in my mac mail signature.  I go to remove it and edit and the old one is still there despite copying in a new one.  Help!

    I had a difficult time several months ago personalizing my mac mail signature, now I need to change a hyperlink and it keeps putting in the old one even when I delete it and copy in a new one.  Don't know what to do...

    Thank you!!

  • How do I copy a page from one Pages document to another using Pages 5.0?

    I posted this question on another page, and haven't recieved an answer to it yet. However I have found a temporary solution, so I am posting this here in case anyone else has a similar problem.
    The issue here is that I have just upgraded from Snow Leopard to Maverick (10.9.1), and my Pages also upgraded (to 5.0.1), altering my Pages documents. This is the issue, as as far as I can see the new Pages does not offer some of the basic needs that the old Pages did! In other words it is worse than the previous version.
    Using the upgraded new Pages 5.0.1 seems to result in some major editing problems for me. If you upgrade, make sure you KEEP the old version of Pages 09 (v 4.3). That is what has saved me!  If you have the same problems I have had - explained below, you will still be able to close the new version and open your Pages document in the old version, provided it is not a new Pages document. If it is, it will be possible to export it as a Pages 09 document and edit properly.
    After upgrading to the new Pages 5.0.1, when I open documents in Pages and try and copy a section from one document to another (easy before using the thumbnails) many of the Menu items previously available are visible but appear faded and are not possible, including Insert>Section Break/Page Break/Page Number and Edit>Cut/Copy/Delete/Undo/Redo
    This even happens if I duplicate the Pages document and try and do any of these from the Duplicate (which should be an easily editable copy).
    My solution has been to simply open all Pages documents that Iwant to edit (or may want to edit in future) in the old Pages app (v 4.3), which I never got rid of. That has meant I can continue editing and copying a section (of 1 or more pages) from one Pages document to another.
    If anyone reading this has figured out a way to edit Pages documents using the new version 5.0.1 please post an explanation, and I will try it!

    And there are those who don't like me repeating the same message over and over again in this forum!
    Apple has removed over 90 features from Pages 5.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5, after Exporting your files to Pages '09, and rate/review it in the App Store, then get back to work.
    Peter

  • Why do Preview and Textedit open up old files unbidden?

    I open a text file or image file and the LAST text file or pic I had open opens up with the one I want. Anyone know what's up with that?

    It is one of the over 250 new features of the World's Most Advanced Operating System called Resume.
    When choosing Restart, Sleep or Shutdown there is a checkbox you can uncheck to prevent the apps from launching.
    Also in System Preferences > General there is a hard-to-find checkbox under "Number of recent items" you can turn off.
    Also, you can hold the shift key to disable resume on a one time basis.
    If you want to turn it off on a per app basis, (TextEdit is by example, replace TextEdit with the name of the app)
    Launch Terminal and copy/paste this at the prompt...
    defaults write com.apple.TextEdit NSQuitAlwaysKeepsWindows -bool false
    Press return.
    You can also accomplish this through the GUI by going to ~/Library/Saved Application State/TextEdit and delete that file…
    To turn off Resume globally...
    chflags uchg ~/Library/"Saved Application State"
    Press return
    The reverse of the first one is to replace false with true.
    The reverse of the second one is
    chflags nouchg ~/Library/"Saved Application State"
    Again, you can accomplish this through Finder by going to ~/Library/Saved Application State and deleting the folder.
    When choosing Restart, Sleep or Shutdown there is a checkbox you can uncheck to prevent the apps from launching.
    Also in System Preferences > General there is a hard-to-find checkbox under "Number of recent items" you can turn off.
    Also, you can hold the shift key to disable resume on a one time basis.
    If you want to turn it off on a per app basis, (TextEdit is by example, replace TextEdit with the name of the app)
    Launch Terminal and copy/paste this at the prompt...
    defaults write com.apple.TextEdit NSQuitAlwaysKeepsWindows -bool false
    Press return.
    You can also accomplish this through the GUI by going to ~/Library/Saved Application State/TextEdit and delete that file…
    To turn off Resume globally...
    chflags uchg ~/Library/"Saved Application State"
    Press return
    The reverse of the first one is to replace false with true.
    The reverse of the second one is
    chflags nouchg ~/Library/"Saved Application State"
    Again, you can accomplish this through Finder by going to ~/Library/Saved Application State and deleting the folder.

  • Import and Syndicate Server Configuration

    Hi All,
    Is it possible to setup the time interval in Import and Syndicator, with specific to one repository.
    For example, if i have one repository, for which the import has to run every 30 mins, and for another if it has to run every 3 mins.
    Is it possibel to do it?.
    Same for syndicator as well?
    Thanks,
    Priya.

    Hello Priya,
    This is possible in MDM 7.1 without PI .
    1. For MDSS, there is a repository level MDSS.ini configuration setting for such a delay
    From the MDM 7.1 Console Reference Guide:"
    Auto Syndication Task Delay= (seconds) .
    Integer.The number of seconds MDSSu2019s automatic syndication task waits after syndicating to all ports associated with the repository. Value copied from the corresponding property in MDM Console
    2. With MDIS it is a bit more complicated as MDIS is able to process in chunks of data.
    Therefore you are able to define the delay between chunks
    From the MDM 7.1 Console Reference Guide:"
    Inter-Chunk Delay= (MS)
    Integer. The number of milliseconds MDIS waits between processing chunks of records to allow other clients access to MDS.
    These are all explained in the Console reference guide.
    I advise you to read the appropriate sections.
    Regards,
    Hedda Cohen.

  • Lightroom won't allow me to add file during import - only copy

    I'm trying to import items to my catalog.  When I choose items from my hard drive that are NOT in dropbox, Lightroom offers me the "add" and "move" options for the files.  When I choose files that are anywhere within dropbox, it only offers the "copy" import functions.  I don't want second copies of these files - I already have them imported into my computer.  It will let me import and copy TO the Dropbox files, but won't just add from them.
    One detail (that shouldn't matter, but maybe) ... Windows believes that dropbox is indeed stored on the local hard drive but only through a junction trick within Windows.  The folder is actually on a very large SDXC card permanently resident on the computer.  Windows doesn't even know this as a result of the trick being used - so Lightroom shouldn't care.  Like I said ... Lightroom lets me import and copy TO those locations but when selecting files already there it makes me copy them.  I've been using Photoshop and CR forever and this has worked fine.  Trying to use lightroom for the improved elegance of the CR feature set and the ability to non-desctructively make and save raw level changes but can't tolerate duplication of thousands of raw images.
    Help!

    Thanks for the input.
    Lightroom allows me to copy TO that location on an import but not import FROM it?  So I'm allowed to import and end up with stuff there, but not allowed to start with it there.  No sense at all in that design.  That's downright restrictive and really offers no particular benefit.  Hey, Lightroom designers ... change that!
    This computer is a powerful ultrabook with a 512 SSD which is as big as reasonably and cost-effective available with the addition of a 256 SDXC card to handle the additional extra capacity I need.  Not too many other reasonable options out there.  This computer is constantly on the go and the addition of an external drive hanging off of it simply isn't manageable.
    Any other tricks out there?

Maybe you are looking for

  • Post installation issues in Oracle 11g

    Hi, i have installed oracle 11g on my windows vista- ultimate OS. installation was successful without any error, but after the completion of installation i found that sqlplus.exe file's icon was not proper. it is like a default .exe icon of vista. mo

  • Where and how to enter plan data cost and profit center wise to get data in grr1

    Hi Gurus, Appreciate you can tell me where and how to enter plan amount cost center wise for cost elements and profit center wise for revenue elements???? So that we can get this data in grr1 report..... Can we upload this planned data, if yes how??

  • SSIS configuration Not Working With SQL agent Job

    Hi, I have created an SSIS configuration table in SQL Server where in I store all connection strings. This configuration is enabled within my package. To make even the DB where I store connection strings, I have an environment varibale. I thus have 2

  • How to get or change DPI?

    I'm very new at Photoshop. I have a photograph that I'm working with and a vendor is needing this file to be in, at a minimum, 350 DPI. I'm not entirely sure how to obtain the DPI, although I went to FIle > File Info > Camera Data tab and if understa

  • Java Coding

    hi Guys i wrote a bean for the database connection. In my bean i use the class[b] Product for creating the instance .Code goes like this ResultSet rs = s.executeQuery(sql); while (rs.next()) Product product = new Product(); product.id = rs.getInt(1);