How to get a list with calc scripts and forms from a planning application?

Hi gurus,

Is it possible, using SQL charly or something else, to get a list with the data forms and its calc scripts associated with the place of open one by one and their Visual verification?

Thanks in advance

Try looking at HSP_FORM, HSP_FORM_CALCS, HSP_OBJECT

See you soon

John

http://John-Goodwin.blogspot.com/

Tags: Business Intelligence

Similar Questions

  • How to get a list of the methods and functions to use in the Transformation

    I am developing a transformation to apply the schema of a table in the relational model according to its type of classification. I was able to do this, but I have a doubt, in other words, how get the name of the first additional classification type, listed in the dropdown list of "Selected" of the "additional part" of the section "Types of Classification" of the table "Properties".

    This is the code that I'm working on:

    tables = model.getTableSet () .toArray ();

    for (var t = 0; t < tables.length; t ++) {}

    table = table [t];

    rating = table.getAdditionalClassificationTypes () .toArray ();

    SchemaName = ";

    {if (rating. Length = 0)}

    SchemaName = table.getClassificationType ();

    } else {}

    for (var s = 0; s < classif.length; s + +) {}

    {if (rating [s]! = table.getClassificationType ())}

    SchemaName = rating [s];

    }

    }

    }

    table.setSchema (schemaname);

    }

    The problem lies on the fact that I am able to get the ID of the Type of ranking, but not it's name...

    I was wondering if there is some document that lists the methods, functions, and namespaces that I could use in Data Modeler?

    Thanks in advance

    Wolf Goebel

    Wolf Hello,

    You can find the description of the API in the following directory:

    \datamodeler\datamodeler\xmlmetadata\doc

    Best regards

    Joop

  • How to get all the style of paragraphs and their policies of an indesign file and write all the info with info para in a txt file with scripts

    @

    How to get everyone how to get all the style of paragraphs and their policies of an indesign file and write all the info with info para in a txt file with scriptingstyle and their policies of an indesign file and write all the info with info para in a txt file with scripts

    Hello

    Try this,

    var doc = app.activeDocument,
        pstyles = doc.allParagraphStyles,
        report = "";
    for(var i =0;i
    

    Kind regards

    Cognet

  • How to make a list with the DB control

    Hello

    I need fill a listbox using the dbcontrol, I saw how to define a textBox control with a recordset from the database by making a custom_query and call it through java script, example:

    infra_custom. SQL:

    Get Prueba_Nak
    DESCRIPCIÓN SELECT THE
    OF DB_PRUEBA
    WHERE CALL_NUMBER =: nCALL_NUMBER

    Custom_inCallDetails.js:

    function pruebaQueryMuestra() {}
    var db = document.all.DB;
    DB. ClearParam();
    DB. AddParam ("CALL_NUMBER", document.all.CALL_NUMBER.value);
    var RS = db. GetRecordSet ("Get Prueba_Nak");
    document.all.EXTFLDV_500004.value = RS("DELESDE").value;
    document.all.MI_POLLA.value = "HELLO";
    }

    function customLoad() {}
    pruebaQueryMuestra();
    }

    Well, this work well for complete results, but, if I need more lines for painting, a list, how can I make a loop in a recordset with only one result?

    Kind regards

    The first thing I would say is that you just use the SU_SELECT_VALUES table & fill if possible through Designer.

    If you don't want really dynamically change the menu drop down content based on the number of appeal then you could populate the drop-down list dynamically using JavaScript.

    something like...

    fill in the parameters...

    var r = da. DB. GetRecordset...

    If (! r.BOF) r.MoveFirst;
    If (r.Fields.Count > 2)
    do something here.  There are not enough columns in the query results to populate a drop-down list with a ref and name.
    on the other
    {
    FAL EXTFLDV_500004.options. Length = 0;
    While (! r.EOF)
    {
    Like var = document.createElement ("OPTION");
    oOption.value = r("REF").value;
    oOption.text = r("NAME").value;
    FAL EXTFLDV_500004.options. Add (option);
    r.MoveNext;
    }
    }
  • How to get a list of the rooms

    Hello

    How to get the list of rooms associated with an ALCCS (Adobe LiveCycle Collaboration Service) account . I tried to use the caller class and the requestRoomList() method, but I don't get that. If anyone can guide me...

    you need a bit of luck.


    http://www.Adobe.com/2006/mxml"layout ="absolute"xmlns:rtc ="AfcsNameSpace">
       
            Import mx.automation.AutomationManager;
    import com.adobe.rtc.events.AccountManagerEvent;
    import com.adobe.rtc.authentication.AbstractAuthenticator;
    import com.adobe.rtc.util.AccountManager;
               
    private var acmanger:AccountManager;

    private void onRoomListReceiveHandler(event:AccountManagerEvent):void
    {

    }

    private void onLoginSuccessHandler(event:AccountManagerEvent):void
    {
    acmanger.requestRoomList ();
    }

    private void onLoginFaultHandler(event:AccountManagerEvent):void
    {

    var roomList:Array = event.list in the table;

    }

    private void onSync(event:Event):void
    {

    }
    private function createRoom (): void {}
    acmanger = new AccountManager();
    acmanger.accountURL = "https://connectnow.acrobat.com/youraccount";
    acmanger.isAuthenticated = false;
    acmanger. Authenticator = myAccount;
    acmanger. Login());
    acmanger.addEventListener (AccountManagerEvent.ROOM_LIST_RECEIVE, onRoomListReceiveHandler);
    acmanger.addEventListener (AccountManagerEvent.LOGIN_SUCCESS, onLoginSuccessHandler);
    acmanger.addEventListener (AccountManagerEvent.ACCESS_ERROR, onAccessErrorHandler);
    }
    private void onAccessErrorHandler(event:Event):void {}
                   
    }
    private void onCreateRoomHandler(event:AccountManagerEvent):void {}
                   
    }
    ]]>
       
       
           
               
           

       

       
       

  • How to get a list of the tables more fragmented in Oracle?

    Is there a SQL on how to get a list of the tables more fragmented in the Oracle DBMS?

    Update the statistics on the table and try this, you should see very fragmented tables upstairs with high wasted_space.

    select table_name,round((blocks*8),2) "size (kb)" ,
                                round((num_rows*avg_row_len/1024),2) "actual_data (kb)",
                                (round((blocks*8),2) - round((num_rows*avg_row_len/1024),2)) "wasted_space (kb)"
    from dba_tables
    where (round((blocks*8),2) > round((num_rows*avg_row_len/1024),2))
    order by 4 desc
    

    I changed the query a little because the ORDER BY will not work if we concat | ' Ko ' with the column because this makes the output a character column data.
    And added a WHERE condition to see that these tables where the total size is greater than the actual size of data.

    Published by: zahid79 on July 23, 2010 13:40

  • How to get the string (specified by row and column) of txt file with labview

    Hello world

    How to get the string (specified by row and column) of txt file with labview

    THX

    As far as I know, a text file has no column.  Be more specific.  Do you mean something like the 5th word on line 4, where the words are separated by a space, and lines are separated by a newline character?  You can read from the spreadsheet String function and set the delimiter to a space.  This will produce a 2D channels table.  Then use the table to index and give the line number and column number.

  • How to get a list of files using BB10 native waterfall?

    Hello

    Please help me how to get the list of all the files in the root directory of the memory card. I try to use QDir::entryInfoList and then repeatedly use QFileInfo::isFile or isDir to search all files in the memory card. But I can't find the files or the directory of the path root only like that, I found., /, /, /, /. Can someone help me please?

    Thanks for any help.

    Victor.

    Take a look at https://developer.blackberry.com/native/reference/cascades/qdiriterator.html

  • How to get a list of options (excel applications such as the browser, etc.) when you view the simultaneous release of request?

    How to get a list of options (excel applications such as the browser, etc.) when you view the simultaneous release of request? Profile options to define?

    Discovered that in order to get the display options, it must implement the system administrator--> Install--> the Display Options Display Options

  • How to get the list of RDM?

    Hi all

    In our environment both of RDM is presented to different virtual machines in physical compatibility mode. It was very difficult for me to keep track

    Could you get it someone please let me know, how to get the list of the RDM presented to ESXI 5.0 host?

    Thank you!

    Ravindra Reddy

    Thank you... A P... for your response tools RV is the right tool, but I wanted to naa number of LUNS as well.

    After 2 hours, I had below power CLI command to get the list of the virtual machine.

    PowerCLI C:\ > Get - VM | Get-hard drive - DiskType "RawPhysical", "RawVirtual" | Select name, Parent, ScsiCanonicalName, DiskType | FL | Out-file C:\RDMlist.xlx

    Thank you!

  • How to get the list of active users in Essbase 6.5.6

    Hi gurus,

    How to get the list of active users in Essbase version 6.5.6

    I can't find any Esscmd list of active users...

    I used the command LISTLOGINS in ESSCMD, but it did not help me...

    pls suggest me an approach to find the list of active users.

    Thanks in advance...

    Hi guru,.

    When you connect to the application, you will find the security option---> connect you will find active use in the ESSBASE.

    If you need the list of users in the use of ESSBASE that recommends essmsh

    go for the race---> essmsh---> login user server use this tribute

    (1) session view all this;

    If you want to export the active users usebelow congratulate.

    2)

    spool to 'D:\suresh.txt ';

    poster session;

  • How to get a list of all components in the EPM environment and their versions?

    Hi all

    E.M.P. verison 11.1.2.2.x

    I was wondering if there is an easier way to get a list of all components of the EPM environment (planning, Shared Services, EAS, Manager of Calc, etc.) and versions for them all.

    Currently I just go to help-> about the browser, but through the workspace, it gives only the version of workspace of the tabs and irrelevant.

    I'm trying to find the version so that I can apply the relevant patches.

    Thank you

    See you soon,.
    Abhishek

    Access

    c:\Oracle\Middleware\oracle_common\OPatch and race

    opatch.bat lsinventory - oh C:\Oracle\Middleware\EPMSystem11R1 - jre c:\oracle\middleware\jdk160_21-details

    This will give you the complete list of products.

    Concerning

    Celvin

    http://www.orahyplabs.com

    Please check the answers as useful/correct as appropriate

  • How to get in touch with customer service?

    How to get in touch with customer service? Twice I had a cat and I would get an answer in the coming days. Never heard a thing! I need an invoice for my accounts but I can't download it. It is said: the customer service contact. But I chatted for 2 times, tried to call, they don't answer the phone. Where is the customer service!

    Hi Regine43b,

    Please visit the following link to get your monthly bill: http://helpx.adobe.com/x-productkb/policy-pricing/print-creative-cloud-receipt.html

    If in case still encounter you problems, please contact support @ https://helpx.adobe.com/contact

    Kind regards

    Sheena.

  • How to get after effect with out having to pay permanently?

    How to get after effect with out having to pay permanently?

    http://www.Adobe.com/products/catalog/CS6._sl_id-contentfilter_sl_catalog_sl_software_sl_c reativesuite6.html

  • How to me to work with Outlook 2016 and 10 windows iCloud?

    How to me to work with Outlook 2016 and 10 windows iCloud?

    1. uninstalled and reinstalled iCloud several times - no luck

    2 reinstalled Outlook 2016 - no luck

    3. the module removed and reinstalled only - no luck

    Help please... step by step would be appreciated.

    Hi xinggirl45,

    Thanks for your question.  Can you elaborate a little bit and let us know exactly what does not work?  The resources below provide some troubleshooting steps basic to work with Outlook and iCloud for Windows.

    Get help using Outlook with iCloud for Windows

    Take care.

Maybe you are looking for

  • How to join two pictures together in a Photo on macbook

    I can't move pictures from one album to another on the Photos on my Macbook help!

  • Firefox opens with no address bar, bookmarks, etc.. It starts as a blank screen turning slowly black.

    As my title says every time I open my firefox address bar and all appears not on top with her starts white followed by a small black square until the entire area of the browser is blackened.Any help would be appreciated!

  • Family Safety notifications

    I installed family security essential software. After activation it whenever the Internet explore, 'Notification' like WE security family originating from the taskbar of loading. If my child can read. How to remove the notifications. I want to use pa

  • Windows 7 RC add a mistake of the printer 0x0000052e

    Windows 7 doesn't seem like our environment at all.  The last problem is when I try to add a network printer; After that I entered the name of the UNC \\SERVER\SHARE printer and click Next, I get this:Windows cannot connect to the printer.Operation f

  • programming socket

    I hope someone can offer suggestions. I am new to the development of blackberry and java, so I'm a little out of my element. I need a direct socket to my server connection. I'm using an object SocketConnection and helps open InputStream and OutputStr