OMB command help: list object dependencies

Hi,
Is there any way in which we can get a list of all object dependencies of OWB mapping using OMB+ or otherwise.
Thanks in advance

Yeah, I could sense that I could make SQL query using OWB views. Could you help me making one?
Thanks,

Similar Messages

  • What is the diffrence between OMB plus command and OMB command

    what is the diffrence between OMB plus command and OMB command?
    are they both TCL command?

    Hi Alena,
    Welcome to SDN.
    Check this
    EXIT in Loops and Modularization Units
    Basic form
    EXIT.
    Effect
    Within a loop structure:
    Terminates looop processing (DO, WHILE, LOOP, SELECT).
    Within subroutines and other modularization units (but not in a loop structure):
    Leaves the subroutine or modularization unit (FORM, MODULE, FUNCTION, TOP-OF-PAGE, END-OF-PAGE).
    Outside loop structures and modularization units (report processing):
    Terminates report processing and triggers list display.
    But not sure about
    atexit() .. ,may use in Object Oriented Programming.
    (C++)
    "At exit-command in module pool."
    Mohinder
    Edited by: Mohinder Singh Chauhan on Aug 1, 2008 8:06 AM

  • Function modules (and the like) for testing Object Dependencies in PLM

    Hi all,
    I've created an upload program for characteristic values to AUSP, but I need to <b>check the object dependencies</b> (as shown in transaction CU03) before saving the data.
    I have the list of the dependencies for the characteristic in question, but how can I perform a dependency check in program code? Is there any <b>function modules</b> (and the like) which I can use?
    All helpful answers will be rewarded!
    - Mari Virik

    Thanks!
    I'm not that familiar with BAPIs, which transactions can I use to check it out? Transaction BAPI? And how do I locate it in the BAPI Explorer? How do I perform the method call?
    More points will be rewarded
    - Mari

  • Function modules (and the like) for testing Object Dependencies

    Hi all,
    I've created an upload program for characteristic values to AUSP, but I need to <b>check the object dependencies</b> (as shown in transaction CU03) before saving the data.
    I have the list of the dependencies for the characteristic in question, but how can I perform a dependency check in program code? Is there any <b>function modules</b> (and the like) which I can use?
    All helpful answers will be rewarded!
    - Mari Virik

    Hi,
    How did you solve this problem?
    I have the same.
    Thanks.

  • Solution Deployment Problem (Administrative Framework Object Dependencies)

    I'm having a problem with the deployment of a SharePoint workflow solution - hopefully someone can help me out.
    Here is the sequence of STSADM commands and their output from the console:
    C:\Workflows>stsadm -o deactivatefeature -name IL.SharePoint.Workflows -url http://localhost/ -force
    Operation completed successfully.
    C:\Workflows>stsadm -o uninstallfeature -name IL.SharePoint.Workflows -force
    Operation completed successfully.
    C:\Workflows>stsadm -o retractsolution -name IL.SharePoint.Workflows.wsp -local
    DeploymentSucceeded : server : The solution was successfully deployed.
    il.sharepoint.workflows.wsp: Operation completed with errors.
    C:\Workflows>stsadm -o deletesolution -name IL.SharePoint.Workflows.wsp
    Operation completed successfully.
    C:\Workflows>stsadm -o addsolution -filename IL.SharePoint.Workflows.wsp
    An object in the SharePoint administrative framework, "SPSolutionLanguagePack Name=0 Parent=SPSolution Name=il.sharepoint.workflows.wsp", depends on other objects which do not exist.  Ensure that all of the objects dependencies are created and retry this operation.
    IL.SharePoint.Workflows.wsp: The Solution installation failed.
    Here is the related log info from the SharePoint logs:
    error-redacted.txt
    As far as I can see, SP is attempting to insert a "SPSolutionLanguagePack" object into the configuration database, with an invalid foreign key reference to the solution. Obviously there is already something fishy going on during solution retraction as well..
    The only possible cause I can think of:
    The virtual machine(s) on which I'm trying to do this deployment (a test environment) were created from the production environment. Somehow, in the process of creating the virtuals, their OS's regional settings got reset to English/US from their desired setting. I've also got a warning in the event log (event id 2486) of the SP host, that the system locale has changed. Weird thing is that another test environment, created from the same set of virtuals and using the same solution package, is not experiencing this problem. Granted, that environment's regional settings were changed back to the desired values at some point, but I've tried doing the same in the problem environment without success.
    Needless to say it's critical for me to be able to test a deployment.. but what's more worrying is that this could occur in the production environment before I've figured out how to solve it.
    Any help much appreciated! :)

    we can deploy any components using solution package (WSP). The below steps ensures that Config refresh timer service occurs.
    1.     Stop the Windows SharePoint Timer Service
    2.     Open C:\Documents and Settings\All Users\Application Data\Microsoft\SharePoint\Config\<<GUID>> folder
    3.     Take backup of Cache.ini file
    4.     Delete all the XML files in the GUID folder
    5.     Open the Cache.ini file in edit mode and delete the contents of it.
    6.     Type 1.Save and close the file.
    7.     Start the Windows SharePoint Timer Service.
    Thanks

  • OMB Commands - Time comparision with OWB

    Hi
    1.
    I wrote a TCL script with OMB commands to Deploy the objects from my OWB to a destination environment.
    The script is working fine but it is taking a bit more time than when deployed through OWB.
    From OWB one module is taking 3.4 minutes but from the script it is taking 5.2 mins.
    I am just trying to understand the reason why this script is taking more time.
    I can think of the following reasons for this delay in the script.
    a. Connect to the repository
    b. Start the control center
    My script is as follows.
    if { [ catch {
    OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN 'TREX_DEPLOY_PLAN' ADD ACTION 'TREX_DEPLOY_PLAN' \
    SET PROPERTIES (OPERATION) VALUES ('REPLACE') SET REFERENCE SEQUENCE '$seqName'
    OMBDEPLOY DEPLOYMENT_ACTION_PLAN 'TREX_DEPLOY_PLAN'
    OMBDROP DEPLOYMENT_ACTION_PLAN 'TREX_DEPLOY_PLAN'
    OMBCOMMIT } errmsg ] } {
    Is there any other reason for this delay ? Or am I missing something ?
    2.
    Is there any difference between executing OMBCOMMIT 'once' in the script and executing it for each OMBDEPLOY ?
    Which method is recommended ?
    3.
    We are planning to run the script in parallel for more than one module at a time.
    Is there any way we can do this in TCL by getting the same connection and control center instead of initiating them for each thread ?
    (Something like pooling of the connections and control centers ?)
    I appreciate any help regarding the above doubts.
    Thanks and Regards
    Sameer

    Hi Sameer,
    1. There's no obvious reason why an OMB command should take any longer than the equivalent operation in the UI. The initial connection to the repository and the connection to the control center will take some time as you've mentioned, but probably not that long.
    OMB*Plus doesn't support deploying a whole module in one go like the UI does, so i guess you have a TCL script that deploys the contents of the module as separate deployment plans? If this is the case, then this will introduce some overhard as each deployment will need to perform the same location checks and create the controller mechanisms for the deployment. If you haven't already done so, you could try adding all the objects from the module to a single deployment plan as this would reduce the overhead.
    2. There shouldn't be any difference between doing commits per statement, or one big one at the end. I would just use one at the end.
    3. OMB*Plus does have some support for parallel activities through the OMBDEPLOY ASYNCHRONOUS keyword. This will start the deployment and return to the command line so that you can continue with other tasks. Unfortunately though, you can't perform two deployments this way as only one generation can be performed at a time in each session.
    In order to perform parallel modules, you'd need to use multiple TCL sessions, each of which would create their own distinct connections to the repos/ control center (there's no connection sharing across threads). Hopefully this shouldn't be a big overhead though.
    Nigel.

  • 1.6 - Database Object Dependencies invaluable!

    Big thanks for the Database Object Dependencies Report!
    As a future enhancement note, it would also be priceless to have a report(like what you currently provide) where you specify the DB Object and the report lists ALL applications/component/items that contain that db object (really helpful when we have to change a db object and then need to get all the HTMLDB applications modified for the change).
    THanks again, Paula

    You cannot create tables in SQL Workshop at your site because your schema doesn't have enough privileges. Privileges obtained through roles won't work. The public user's privileges are always irrelevant in html db.
    Please run this script in your FOO schema which owns the tt table:create or replace procedure test_depend as
    l_value varchar2(30);
    l_boolean boolean;
    begin
    return;
    for c1 in (select * from tt) loop null; end loop;
    end;
    select referenced_owner||':'||referenced_name||':'||referenced_type
    from all_dependencies
    where name = 'TEST_DEPEND'
    /[pre]Just data gathering at this point.
    Scott                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Hide command in ABAP Objects

    Hi everybod,
    i got a small Problem with the HIDE command in ABAB Objects. I got a Method called
    write_on_screen( ). in this method i  got code like this:
    DATA:
        test TYPE c.
    test = 'Hello'.
    WRITE: /0 sym_minus_folder AS SYMBOL HOTSPOT.
    WRITE: /5 'Im a dummy line'.
    HIDE test.
    Then i got this message "You cannot use HIDE with a local field."          
    If i change the code like this
    WRITE: /0 sym_minus_folder AS SYMBOL HOTSPOT.
    WRITE: /5 'Im a dummy line'.
    HIDE _test.
    _test is an Attribute of the class with the type c. "HIDE is not supported with the attributes of classes.     "
    Maybe someone got an advice for me.
    Greetings
    Edited by: Moritz Lutz on Jun 20, 2008 2:29 PM

    Moritz,
    Please Use SAP help first because no one can challange them.
    press F1 on HIDE and read the help.
    specially
    Exceptions
    Non-Catchable Exceptions
    Cause: The field is too long for HIDE.
    Runtime Error: HIDE_FIELD_TOO_LARGE
    Cause: HIDE in a table row or a component in a table row is not possible.
    Runtime Error: HIDE_ILLEGAL_ITAB_SYMBOL
    Cause: HIDE in a local field is not possile.
    Runtime Error: HIDE_NO_LOCAL: HIDE"here is your issue
    Cause: HIDE in an empty page is not possible.
    Runtime Error: HIDE_ON_EMPTY_PAGE
    Amit.

  • BAPI_OBJCL_CHANGE error: valuated with object dependencies

    Hi expert,
    having programmed an extension for a customer for automatic maintenance of characteristic values of technical object, we have come across an error.
    When using BAPI_OBJCL_CHANGE to change a characteristic followed by BAPI_TRANSACTION_COMMIT (without wait) we have two scenarios:
    1. if the technical object has no value in the characteristic before calling  BAPI_OBJCL_CHANGE  the characteristic will be set.
    2. if there is already a value set there is an error stating
    Characteristic 'XYZ' valuated with object dependencies (old value '00')
    However, I can't find a dependency definition in CT04. do you know what's wrong here,or what is a usual cause of that?
    thanks
    Stefan

    Hi,
    Please see the given link, It may help you.
    Re: BAPI_OBJCL_CHANGE and BAPI_TRANSACTION_COMMIT
    Regards,
    Shamma

  • Call Transaction from Excel VBA macro and download ALV list object results

    I have a situation that must be very common u2013 but I canu2019t find any clear information on how to get it done! 
    We frequently run SAP transactions, download the results (orders or inventory) into Excel, do some calculations and create a spreadsheet report. 
    I would like to automate this process using Excel VBA so that a macro will perform these steps:
    1. Run our custom SAP report "YSD033" that summarizes orders using the previous day as the [From Date] parameter.  (The user already has an active ECC 6 R3 session running.)   If possible, can the TC be run using a specific variant "G111BIZ" ?
    2. Download the list object that appears in an ALV grid as a table to an empty spreadsheet in the active workbook (export XXL list object)
    3. Save the resulting workbook and close Excel.
    Should the solution use u201Ccall transactionu201D or a GuiXT script?
    Any help would be much appreciated, and some sample VBA code would be great!
    Thanks.
    Glenn

    Good suggestion, but
    I get "permission denied" for   SapGuiAuto.GetScriptingEngine
    I also tried the method below, but received this RFC error message:
    User PPPPPPP  has no RFC authorization for function group SYST.
    Sub LoginCheck()
    If login = False Then
        ' Setting the necessary variables for R/3 connection
        Set objBAPICortrol = CreateObject("SAP.Functions")
        Set objConnection = objBAPICortrol.Connection
        ' Establish a connection
    If objConnection.Logon(0, False) Then
        login = True
        MsgBox "Connection Established"
        CommandButton1.Caption = "Disconnect"
    End If
    Else
        CommandButton1.Caption = "Connect 2 SAP"
        login = False
        objConnection.Logoff
        Set objConnection = Nothing
        Set objBAPICortrol = Nothing
    End If
    End Sub
    I was told that these kinds of authority open up too big of a window that can't be monitored adequately...
    I'm considering an approach like what is below if I can't convince security to grant me permissions...
        Application.Wait Now + TimeValue("00:00:01")
        SendKeys EnterKey, False
    Since blocked RFC security settings are preventing the solution from being installed, I am markgin this question as answered. 
    I will post different questions about 1. how to convince the security team that it will be safe to allow the use of RFC calls, and /or 2. how use some windows-level scripting code to run the SAP jobs.
    Thanks.
    Edited by: GlennWebster on Mar 1, 2010 4:34 PM

  • Concatination of 2 linked list objects of characters

    Pleas help me to solve the following problem by using Java.
    Problem: Write a program that concatenates two linked list objects of characters. The program should include method concatenate, which takes references to both list objects as arguments and concatenates the second list to the first list.
    Thanking u,
    Ripon

    This assumes that your class is 'ListConcatenate' and that you have set up your two link-lists.
         public void concatenate( ListConcatenate l1, ListConcatenate l2)
              if ( l1.isEmpty1() || l2.isEmpty2() )
                   System.out.printf( "Empty %s or Empty %s\n", name1,name2 );
                   return;
              System.out.printf( "%s concatenated with %s is: ", name1,name2 );
              NodeOne current1 = l1.firstNode1;
              NodeTwo current2 = l2.firstNode2;
              while (current1 != null )
                   System.out.printf( "%s ", current1.data1.toString() + current2.data2.toString() );
                   current1 = current1.nextNode1;
                   current2 = current2.nextNode2;
              }

  • LINQ sorting on List Object - Various Object Type

    I try to sort a List<Object> where the Object are different classes but all share the same Property Name for instance.
    I got a Base Class where Class A and Class B inherit from the Base Class.
    So during the Linq query I cannot specify with object type this is.
    Problem here "from ?????Entry_Global?????? list in Entries"
    Thanks for helping.
    ////Entries is a List<Object> which consist of class object as following\\\\\
    public abstract class EntryBase<T>
    private string _Name;
    public string Name
    get { return this._Name; }
    set { this.SetProperty(ref this._Name, value); }
    public class Entry_Global : EntryBase<Entry_Global>
    public class Entry_CC : EntryBase<Entry_CC>
    private string _url; //Web url
    public string Url
    get { return this._url; }
    set { this.SetProperty(ref this._url, value.Contains("http") ? value : "http://" + value); }
    public List<Object> SortBy()
    IEnumerable<KeyedList<string, object>> groupedEntryList = null;
    //The proble reside in the fact that list is not only one type
    //so when comes in the orderby "Name" it doesn't know Name
    //or any other properties which are all common to all those class
    //It does not want to convert Entry_CC or Entry_Global to EntryBase
    groupedEntryList =
    from ?????Entry_Global?????? list in Entries
    orderby list.Name
    orderby list.CategoryRef.Name
    group list by list.CategoryRef.Name into listByGroup
    select new KeyedList<string, object>(listByGroup);
    return groupedEntryList.ToList<object>();

    Entry_Global and Entry_CC don't share the same base class since EntryBase<Entry_Global> and EntryBase<Entry_CC> are two totally different types so you cannot cast the objects in the List<object> to a common base class in this case.
    You could cast from object to dynamic though:
    public List<Object> SortBy()
    List<object> objects = new List<object>();
    objects.Add(new Entry_Global { Name = "K" });
    objects.Add(new Entry_CC { Name = "A" });
    objects.Add(new Entry_Global { Name = "I" });
    objects.Add(new Entry_CC { Name = "C" });
    var sortedObjectsByName = (from o in objects
    let t = (dynamic)o
    orderby t.Name
    select o).ToList();
    return sortedObjectsByName;
    The dynamic keyword makes a type bypass static type checking at compile-time:
    https://msdn.microsoft.com/en-us/library/dd264736.aspx. This basically means that a dynamic type is considered to have any property of any name at compile time. Of course you will get an exception at runtime if the type doesn't have a Name property but
    providied that all objects in the List<T> to be sorted are of type EntryBase<T> you will be safe as long as the EntryBase<T> type defines the Name property that you sort by.
    Please remember to close your threads by marking helpful posts as answer and please start a new thread if you have a new question.

  • BOM UPload with object dependencies

    Hi PP Gurus,
              Does anyone have a LSMW project or upload program to upload BOM with Object Dependencies?.. I would really appreciate if someone could help me. Thank you very much.
    Sincerely,
    Heinrick Palad

    Hi Sir..
          Do you have an existing excel template for this BAPI. I cant seem to find the field where it assigns object dependencies.
    Thank you Sir

  • LSMW for BOM Object Dependencies

    Dear Sir,
    I can use LSMW to upload BOM component without object dependencies.
    If the BOM component have object dependencies, how to upload OD using LSMW.
    Who can help me !

    Hi all
    I have so much OD to be upload, how can I do that through LSMW ?
    No expert can help me ?
    Regards,

  • Program To List Object in Change Request

    Hi:
    is there a standard program available which will list Object Technical Name and Description in Change Request?
    Please let me know.
    If you have custom code please send it to me.
    Thanks

    Hi,
    There is no std program, but you can take the query element (assuming you are looking to decipher these elements) from the request and place it in SE16 > V_ELTDIR_TXT.
    Hope this helps...

Maybe you are looking for

  • Cannot (re-)install itunes (64) for windows 8. get error 7 (Windows error 193)

    I've used itunes for itunes for quite some time before making some hardware change (cpu and motherboard).  The OS, like before, is Windows 8. But now each time that I try it seems to install up to and including the final "finish" in the process.  Aft

  • IMP database for oracle 10G in window

    Hi Experts, I try to imp database from exp dump file. I am new person. When i create a blank database by Oracle 10G ( create general purpose database during install oracle). Now I want to imp a database about 250G size. DO I need to create a each tab

  • Portlet.xml

    Is there a way to update the portlet.xml dynamically? That is, add an instance of the portlet using <portlet> tag at runtime to the portlet.xml. Does the portlet container need to be bounced back so that the updates are picked up? Got to know that th

  • Help on Panel tabbed component

    Hi everybody, i have a panel tab with two show detail items in it. on first show detail item, i have a button - when click should show second show detail item. Can any help how to do this from a bean? Thanks KM.

  • IMac 3.06 GHz Intel cannot print in Snow Leopard in Text Edit or CS4

    iMac/3.06 GHz Intel Core 2 Duo/OSX.6/4gigRAM/1TerabyteHD/CS4 Design Premium/ cheap HP Deskjet D1520 Printer. I have installed the HP Drivers from the original SnowLeopard install of the iMac, yesterday. I have downloaded and installed from Apple the