List of standard template without relationship defined

Hi, please give me way to generate list of standard templates without defined relationship in its activities.

go to Txn CN49N
choose db profile 0000.........1
change db profile to incude std structures
tick the std structures box woth * in project def field
set filter on rel type field
you need no rel means the field should be null

Similar Messages

  • Save a calendar list as a template without data - not all views are getting saved

    I have read plenty of articles showing how to save a list as a template and create a new list from that template. I have a very large calendar list that I want to save as a template. I do not need that data as it is last years. All I want to do is save it
    as a template and create a new list for 2014 using that template.
    Following the process, everything worked fine, but the template that got saved did not save all of the views. I have searched all over for a solution, but no luck. This calendar list has every user as a view, so there are a lot of views created.
    Is there a limit for the number of views in a list that would be saved? How do i create a new calendar with the same views. I do not need that old data.
    Bruno

    SAP support was able to help => Solution is SAP note 1237688.

  • How to implement custom lov button without the standard template.fmb?

    hello,
    i am developing a application using oracle forms 10g. i can't use the standard template.fmb because my application does not run in ebs. there comes the problem: i want to implement the lov button function like the template does, such as :
    1. when the text item get focus, lov button display.
    2. when the text item lost focus, lov button disappear.
    3. when scrollbar scrolls, the position of lov button adjust accordingly.
    4. there is only one lov button in one form and the lov button was created dynamicly.
    i found it's so complex to do this.
    anyone can help?

    Try to change the following setting to true
    app.ui.lovButtons=falsein $ORACLE_HOME\forms\java\oracle\forms\registry\registry.dat

  • DataModeler v3.3.0 - Naming standards template for surrogate keys creation

    I'm using DM 3.3.0.734 and in the logical model we now can define in the entity properties to "Create Surrogate Key".
    When we use Engineer to relational model, for each entity is automatically created a new column using the naming template {entity}_ID as NUMERIC (without precision) and is defined as primary key.
    My questions are:
    Is possible to define a different naming standard for surrogate key creation?. We define id_{entiry}
    Is possible to set the precision of NUMERIC surrogate key?
    If we define entity's column as Primary UID, these columns are included in an unique constraint, but are using the naming standards for PK.
    As consequence are created the following:
    Unique constraint name: entity_PK
    Primary key(surrogate)name: entity_PKv1
    There is any way to define naming standards like "{entity}_UID" for unique constraints, or even, "{entity}_SK" for surrogate primary key name?
    Can anyone help with some of these topics?
    Regards,
    Ariel.

    Hi Ariel,
    Naming standards template for surrogate keys creation I logged enhancement request for that.
    How to change those bad names (going to change them one by one is not an option):
    1) If those "transformed" unique keys are the only ones you have in relational model then simply can apply naming standards
    2) You can write transformation script to do that for you
    3) you can use new functionality - search, export to excel file, change the names there (using find/replace will be faster) and return changed data back to relational model
    you can find description for that here:
    https://apex.oracle.com/pls/apex/f?p=44785:24:13179871410726::NO:24:P24_CONTENT_ID,P24_PREV_PAGE:6621,16
    http://www.thatjeffsmith.com/archive/2012/11/sql-developer-data-modeler-v3-3-early-adopter-search/
    http://www.thatjeffsmith.com/archive/2012/11/sql-developer-data-modeler-v3-3-early-adopter-collaborative-design-via-excel/
    You should search for _PK, then filter result on Index and you can export result using report functionality (to XLS or XLSX output format). You can create template and include only table and name (of index) as properties to be included into report.
    Regards,
    Philip

  • List of purchase order without confirmation

    Dear guru  ,
    I search a list of purchase order without confirmation of the vendor.
    Does exist this list in standard sap ?
    Thanks in advance.

    No Std report exist to pull the informaiton where confiramtion control key is populated but confiramtion is not created.
    please use table EKPO and EKES and write the Query
    you will get what you need from this query

  • List of standard workflow in oracle HRMS 11i - used in SSHR

    Hi everybody,
    I want to know all the list of standard workflow and their description, defined in oracle HRMS and used in SSHR.
    Is there anyway to know that ??
    Please can you give me an answer ASAP.

    i explain my need :
    i want to have the list of standard workflow processes defined for functions in HRSS.
    So i want to know if they are saved in a system table, if it is the case, which program i must execute to have the result..
    i read in this manual "Oracle Self-Service Human Resouces Deploy Self-Service Capability Guide" Chapter 4 that :
    " SSHR uses workflow processes to combine related functions into a single transaction (for example, to add Special Information Types to Change Assignment or to Personal Information). and to control the transaction flow between the initiating user and other users such as a manager, an HR professional, or an applicant.
    You use the Workflow Builder to look at the delivered processes which have been designed to support typical business processes."
    i want to know which business processes are supported by SSHR.
    thank you very much for your help
    Edited by: user638405 on 27 oct. 2010 13:46

  • Sql Developer Data Modeler 3.0 EA1: Preference- Naming standard- Templates

    I am trying to figure out how the naming standard templates work.
    When I go to:
    Preference -> Naming standard -> Templates
    It says that 'Attribute Relation' is '{ref entity} {ref attribute}'
    What is the consequence of this?
    I thought, it would mean that when creating a primary key attribute (ID) on an entity (DEPARTMENT), the related "foreign key" attribute (that is automatically created in related detail entities, such as EMPLOYEES) would be named DEPARTMENT ID.
    Instead it is just called ID. Is that the intended behavior?
    - Marc de Oliveira
    Edited by: marc66 on 2010-10-29 05:59

    Marc,
    you should check "FK Attribute name synchronization" setting in "Preferences>Data Modeler>Model>Logical model" - probably it's checked and you cannot change the name of FK attribute.
    I found another bug here - FK attribute doesn't follow changes in referred entity - I logged it in bug database. As workaround you can apply defined templates at entity level (there is button in entity dialog) or for whole logical model (using pop-up menu in the browser).
    Philip

  • How to get PPR with ADF BC without FkLink defined?  (Jdev 11 with ADF BC)

    I have seen the demos where PPR is demonstrated with a master-detail relationship defined. How do you do this if the relationship is not defined. Here is an example based on the HR schema tables:
    ViewObject1
    select distinct city || ' ' | country_id, location_id from locations;
    ViewObject2
    select
    d.department_name,
    j.job_title,
    count(*) counter
    from
    employees e inner join departments d
    on e.department_id = d.department_id
    inner join jobs j
    on e.job_id = j.job_id
    where
    e.department_id in (select distinct department_id from departments where location_id = :Loc_ID)
    group by j.job_title, d.department_name;
    In a JSF page, the visual components would be a list item based on ViewObject1 and a ReadOnly Table based on ViewObject2
    I want to see the data in ViewObject2 get updated when a new value for ViewObject1 is selected. What are the steps to accomplish this?
    Thanks, Ken

    Frank,
    Thank you for the response. Two (hopefully) quck questions to follow up.
    1. Can you point me to documentation that explains indepenedent vs dependent VO and the implications. I understand the idea, just would like to get a thorough explanation of each.
    2. Can you point me to documentation on implementing the code to set the query condition and implement it. I figure this has to do with backing beans, but have just started programming with ADF Faces. (Most of my programs are 10.1.2 using struts - lots of code.)
    I have the Fusion Developers Guide for Oracle ADF, and the Web user Interface Developer's Guide for Oracle Application Developers Framework. Pointing me to key chapters would be a great help!
    Thank you,
    Ken

  • Query with standard template workflow for Purshase Requisition.

    Hi all
    I am fresher in Workflow. I have to configure standard template workflow for Purshase Requisition.
    I know the flow how to configure it(through forum only).
    I have a development system where all release codes,release strategies are defined.
    when i saw the standard workflows through "pftc" tx code,in workflow builder some default rules are defined.
    I donno is there any oraganisational structure is defined in my system.
    my question are-Is these rules are alternative to Org.structure?
    By the help of rules would i configure agent id in Workflow through spro transaction.
    I am not able to assign agent id which i am using to right now.how can i do that?
    Is i able to do all this once i have defined org. structure.?..
    Thanks in advance..

    Ashwani,
    Since you are new to this  forum, i would suggest you to search this forum. You will get a lot of threads related to PR release workflow and even link to documentation. By going through those docs you may understand the whole process. And after that if you face some new challenges you can come back and post a new thread.
    Don't forget to search before posting a new thread.
    Thanks,
    Shweta

  • How to list output module templates

    I cant seem to get the list of output modules templates, without having a comp in the render queue and getting the template array by looking in:  app.project.renderQueue.item(1).outputModules[1].templates.
    I want to populate a DropDownList with these values prior to adding anything to the renderQueue if possible.

    There is a less kludgy way to do this for Output modules:
    function getOutputModuleTemplateNames()
      var currentOMName;
      var OMStringsPrefSection = "Output Module Spec Strings Section v28";
      var OMStringsKeyPrefix = "Output Module Spec Strings Name ";
      var hiddenPrefixRE = /_HIDDEN/;
      var OMList = new Array();
      for(var i = 0; app.preferences.havePref(OMStringsPrefSection, OMStringsKeyPrefix+i, PREFType.PREF_Type_MACHINE_INDEPENDENT_OUTPUT); i++)
      currentOMName = app.preferences.getPrefAsString(OMStringsPrefSection, OMStringsKeyPrefix+i, PREFType.PREF_Type_MACHINE_INDEPENDENT_OUTPUT);
      if(currentOMName.match(hiddenPrefixRE)==null) OMList.push(currentOMName);
      return OMList;
    My problem is I'd like to do this for Render Settings templates, too, but they aren't stored as individual keys in the preferences, but rather as some chunk of encoded data that can't be retrieved (as far as I can tell) using app.preferences.getPrefAsString().
    Is there any way, short of reading in the preference file itself, which seems clunky and not at all future-proof, to get access to settings like this?

  • No standard templates in Group Policy Editor on SBS 2008

    Hi, we have a SBS 2008. Problem is that we don't have any standard templates in Group Policy Editor anymore, just Office templates. If I do "Add/Remove Templates" the list is empty (please see Image below).
    Any ideas?
    Thanks in advance for your help
    Best regards, Thomas

    Hi Thomas,
    Would you please let me confirm whether change anything before this issue occurred? Did this issue just occurred
    recently?
    Would you please let me know if Administrative Templates files still store in the default location C:\Windows\PolicyDefinitions
    folder? Or have created the Central Store for Group Policy Administrative Template files? Please navigate to
    PolicyDefinitions folder and check if it is empty.
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • Merging reg files as a standard User without UAC prompt ?

    I need to merge reg files as a standard user.
    When I run regedit.exe as a standard user, I get an UAC prompt, thanks to the manifest file embedded in the .exe which requires privilieges elevation.
    I would like to run regedit.exe as a standard user, without UAC prompt, to merge some .reg files in the HKEY_CURRENT_USER path (standard user has permissions to do so).
    How could I do it ?
    (I tried a dirty way to do so : I copied regedit.exe from Windows XP to an user folder on my Vista machine, and it works. It runs silently (after setting the compatibility mode to "Windows XP SP2") and merge correctely my reg file.)
    Thanks in advance,
    Thomas.
    More info about manifest files :
    http://channel9.msdn.com/Showpost.aspx?postid=209647
    http://blogs.msdn.com/uac/
    You can easily check this by viewing regedit.exe with notepad for example. Near the end of the exe, you will see this XML part :
    <!-- Copyright (c) Microsoft Corporation -->
    <assembly xmlns="urnchemas-microsoft-com:asm.v1" manifestVersion="1.0">
    <assemblyIdentity
     processorArchitecture="x86"
     version="1.0.0.0"
     name="Microsoft.Windows.Regedit" type="win32" />
    <description>Registry Editor</description>
    <dependency>
        <dependentAssembly>
            <assemblyIdentity
                type="win32"
                name="Microsoft.Windows.Common-Controls"
                version="6.0.0.0"
                publicKeyToken="6595b64144ccf1df"
                processorArchitecture="x86"
            />
        </dependentAssembly>
    </dependency>
    <trustInfo xmlns="urnchemas-microsoft-com:asm.v3">
        <security>
            <requestedPrivileges>
                <requestedExecutionLevel
                    level="highestAvailable"
                    uiAccess="false"
                />
            </requestedPrivileges>
        </security>
    </trustInfo>
    </assembly>

    And I've had another thought
    Edit the registry and change
    HKEY_CLASSES_ROOT\regfile\shell\open\command
    to
    reg import "%1"
    Reg will import regfiles.
    HKEY_CLASSES_ROOT is a registry key that is composed of merging the
    following two keys.
    HKEY_CURRENT_USER\Software\Classes
    and
    HKEY_LOCAL_MACHINE\SOFTWARE\Classes
    with entries in HKEY_CURRENT_USER overriding entries in HKEY_LOCAL_MACHINE.
    So to specifically edit for the current user only edit HKEY_CURRENT_USER and
    for all users (that don't have a user entry) HKEY_LOCAL_MACHINE.
    EG
    HKEY_CURRENT_USER\Software\Classes\regfile\shell\open\command and
    HKEY_LOCAL_MACHINE\SOFTWARE\Classes\regfile\shell\open\command
    "DavidMCandy" wrote in message news:4d9feb10-65cb-4b9b-ab3b-627692973523...
    > You could edit the application manifest (they are known by the number 24)
    > embedded in the application. You use ResHacker
    > (http://www.angusj.com/resourcehacker/) to export the manifest, edit it,
    > and
    > then replace the embedded manifest with the edited one.
    >
    > But on Vista the manifest seemsto allow execution by nonadmins. It's
    > listed
    > as
    > <requestedExecutionLevel
    >
    > level="highestAvailable"
    >
    > uiAccess="false"
    >
    > />
    >
    > and according to http://msdn.microsoft.com/en-us/library/bb756929.aspx it
    > means
    >
    > highestAvailable
    > The application runs with the highest privileges the current user can
    > obtain.
    >
    > Experiment and see what happens if you change it to AsInvoker.
    >
    > To edit Regedit you'll need to give yourself permission to change
    > c:\windows\regedit.exe
    >
    > Click Start - All Programs - Accessories - Right click
    > Command Prompt and choose Run As Administrator. Type
    >
    > takeown /f c:\windows\regedit.exe /a
    > icacls c:\windows\regedit.exe /grant Administrators:f
    >
    >
    > --
    > ..
    > --
    > "DavidMCandy" wrote in message
    > news:58f05c55-c6ac-4762-aad2-011ff129ec24...
    >> Convert them to a VBSscript or a batfile (it appears Reg.exe doesn't
    >> honour
    >> this setting).
    >>
    >> VBS
    >>
    >> Dim Sh
    >> Set Sh = WScript.CreateObject("WScript.Shell")
    >> Sh.RegDelete "HKCU\Software\ACME\"
    >> WshShell.RegWrite "HKCU\Software\ACME\FortuneTeller\", 1, "REG_BINARY"
    >>
    >>
    >> Batch
    >>
    >> Forhelp and examples type
    >> reg add /?
    >> --
    >> ..
    >> --
    >> "bjohnrini" wrote in message news:cbf09759-a94f-44ee-88de-0bc762fcc5f8...
    >>> Is there anyway to run regedit.exe as a standar user?
    >>>
    >>> I have my group policy set to • Automatically deny elevation
    >>> requests
    >>> for
    >>> User Account Control: Behavior of the elevation prompt for standard
    >>> users.
    >>>
    >>> This simply gives me "This program is blocked by group policy"
    >>>
    >>> On Windows 7.
    >>>
    >>
    >>
    >
    >

  • Connect a Date Dimension to a cube without relationship

    Hi everybody,
    I would like to answers to one business requirements.
    I create a cube that models the following event : a customer send a product from an agency to another customer who receives it in another agency.
    So I have a fact table with only two measures
    Amount
    Count
    which is connected to these dimensions
    Product
    Sending Date
    Receiving Date
    Sender (Customer)
    Receiver (Customer)
    Sender (Agency)
    Receiver (Agency)
    The users would like to analyse the following KPI, at a specific date :
    Number of transactions sent, the amount
    Number of transactions received, the amount
    Number of transactions pending, the amount
    To answer this business requirement, I have added a new date dimension in the cube with no relation, so that the user can select a date from this independent dimension and get the different KPIs. 
    But I don't get any results.
    Is it a good model ? How to make it possible for the user to use the independent Date Dimension to perform analyzes of different KPI ?

    Is it a good model ? How to make it possible for the user to use the independent Date Dimension to perform analyzes of different KPI ?
    Hi Meal,
    According to your description, you want to know if is it possible for the user to use the independent Date Dimension to perform analyzes of different KPI, right?
    As per my understanding, we cannot do this without relationship between dimension tables and the independent Date table. However, we can add the relationship between the added date table and the fact table Sending Date and Receiving Date column. Please refer
    to the link below to see the details.
    http://msdn.microsoft.com/en-us/library/ms175427.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • Why isn't my iTunes store loading properly? It lists everything in text without images, and I can't seem to access the store when I try to search for music or movies etc.

    Why isn't my iTunes store loading properly? It lists everything in text without images, and I can't seem to access the store when I try to search for music or movies etc.

    1) The best way to relocate the iTunes library folder is to move the entire iTunes folder with all subfolders to the new path, then press and hold down shift as start iTunes and keep holding until prompted to choose a library, then browse to the relocated folder and open the file iTunes Library.itl inside it.
    If you've done something different then provide some more details about what is where and I should be able to help.
    2) Purchases on the device should automatically transfer to a Purchased on <DeviceName> playlist, but it my depend a bit on whether automatic iCloud downloads are enabled. If there is a cloudy link then the transfer might not happen. You can use File > Devices > Transfer Purchases. In iTunes you should also check out iTunes Store > Quick Links > Purchased > Music > Not on this computer.
    3) Backup the device, then immediately restore it. In some cases you need to add a restore as new device into that equation. Obbviously not to be attempted until you're sure all your media is in your library. See Recover your iTunes library from your iPod or iOS device should it be needed.
    4) I believe there is complimentary 1 incident 90-day support with hardware purchases, but no free software support for iTunes itself. AppleCare gets you a different level of support.
    tt2

  • List of Standard Reports in Purchasing and Inventory

    Pls send me list of Standard reports for Purchasing and inventory.
    Thanks-Manju

    This is duplicate thread (NO POINTS required)
    Hello Manjula,
    Go to transaction code SAP1, this will show all the reports functional area-wise.
    For purchasing reports : Go to Material management --> Purchasing
    For Inventory management reports : Go to Material management --> Inventory management
    Hope this helps
    Regards
    Arif Mansuri

Maybe you are looking for

  • Urgent please -- got error while doing a simple update -- Thanks:)

    Hi guys, I have a procedure that updates a table, when I run the update manually from sqlplus it works and when I run the procedure by it self from sqlplus it also works the problem comes when I call that procedure from another procedure that I have

  • Firefox 3.6.6 only prints the first page on windows 2000

    Trying to print web pages using forefox 3.6.6 on Windows 2000 only the first page prints though multiple blank pages are printed after the first == This happened == Every time Firefox opened == don't know but noticed with 3.5

  • No notification of Messages in N97 mini

    My phone has only +100 contacts and +3900 messages but whenever a new message arrives there is no notification about it on the screen nor the ringtone is played for the sms When i format the phone the problem is not there but as i restore my data (co

  • Help on oracle forms

    I have 2 tables aa and bb as, table aa delivery_id number not null trx_type varchar2(1) not null fcat varchar2(3) not null summary varchar2(10) comment varchar2(10) table bb delivery_id number not null trx_type varchar2(1) not null fcat varchar2(3) n

  • The Question

    why I see the attribute in a derivative class, if I can't access.