Need to create a few objects....

Hi!
I need to create a few objects, but do not know how:
create Shows in structure
create User Exit
create Enhancement for Z program
create customer screen
create OSS notes
Bassically I need a t-code for each issue and a few steps that are to be done to achieve it, if possible.
Will reward,
Mindaugas

> create Shows in structure
Don't understand the question...
> create User Exit
CMOD and SMOD
> create Enhancement for Z program
SE18
> create customer screen
SE51
> create OSS notes
<a href="http://service.sap.com">SAP Marketplace</a> You need a user for this...Or OSS1
Greetings,
Blag.
Message was edited by:
        Alvaro Tejada Galindo

Similar Messages

  • IFolder 2.1 -- Need to create new iFolder_LDAPnn object

    Don't laugh. Yes, we're still running iFolder 2.1.8 on a decrepit
    NetWare server. Its LDAP source is a different decrepit NetWare server
    that I'd like to retire, since I figure we have to keep iFolder running
    for at least another six months. I have a new server in the same
    eDirectory tree, but I can't find the appropriate snapins to create the
    LDAP object iFolder appears to require.
    Does anyone know what might happen if I copied the existing
    iFolder_LDAP01 object to a new object, then changed its name and IP
    address?
    Thanks

    Anders Gustafsson,
    >> Does anyone know what might happen if I copied the existing
    >> iFolder_LDAP01 object to a new object, then changed its name and IP
    >> address?
    >
    > It might work. By all means try, FWIW, the Initial LDAP server is found
    > through a config file:
    >
    > httpd_ifolder_nw.conf in \\Server\SYS\apache2\ifolder\server
    >
    Copying the existing object and changing its IP address did work, and
    the iFolder management console now shows it under Global Settings ->
    User LDAPs without me having to add it (I wasn't expecting that!).
    Now to schedule a time to disable the original LDAP source and see if
    iFolder still works.
    Thanks

  • Help needed in creating a mail object

    Hi,
    is there any option to create a mail objcet in jsp ???
    i.e. the equivalent code to this asp object :
    Set myMail = CreateObject("CDONTS.NewMail");
    regards,
    ashvini

    Check out the JavaMail API. It is part of the Enterprise Edition, but I believe you can also download it seperately.

  • How to properly create path art object, please help

    Hello there,
    I have a vector of AIRealPoint , each point is actual X, Y coordinate of the stroke. I need to create path art object out of this vector.
    I'm  somehow confused how to correctly construct segments array form the given AIRealPoints, my goal is to have single path object where count of segments is equal to count of AIrealPoints first and last points are anchors. SDK documenation is not really helping here...
    Please, take a look at the code snippet, it seems I'm doing something wrong with in and out params of segment , in any case I fail to create simple path object ....
    ASErr CretaeVectorPathTest2(vector<AIRealPoint>& stroke)
    AIArtHandle artHandle;
    ASErr result = kNoErr;
    try {
      AIRealPoint start;
      long lngStrokeLength = stroke.size()-1;
      AIArtHandle lineHandle = NULL;
      AIErr error = sAIArt->NewArt( kPathArt, kPlaceAboveAll, NULL, &lineHandle );
      if ( error ) throw( error );
      error = sAIPath->SetPathSegmentCount( lineHandle, lngStrokeLength );
      if ( error ) throw( error );
      AIPathSegment *segment = new AIPathSegment[lngStrokeLength];
      // This is a first point of the path
      segment[0].p.h = stroke[0].h;
      segment[0].p.v = stroke[0].v;
      segment[0].in = segment[0].out = segment[0].p;
      segment[0].corner = true;
      for(inti=1 ;i< lngStrokeLength-1;i++)
       segment[i].p.h = stroke[i].h ;
       segment[i].p.v = stroke[i].h ;
       // NOT GOOD!!!
       segment[i].in.h  = stroke[i-1].h ;
       segment[i].in.v  = stroke[i-1].v ;
       segment[i].out.h  = stroke[i+1].h;
       segment[i].out.v  = stroke[i+1].v;
       segment[i].corner = false;
    // NOT GOOD!!!
      // This is a last point of the path
      segment[lngStrokeLength].p.h = stroke[lngStrokeLength].h;
      segment[lngStrokeLength].p.v = stroke[lngStrokeLength].v;
      segment[lngStrokeLength].in = segment[lngStrokeLength].out = segment[lngStrokeLength].p;
      segment[lngStrokeLength].corner = true;
      error = sAIPath->SetPathSegments( lineHandle, 0, lngStrokeLength, segment );
      if ( error ) throw( error );
      error = sAIPath->SetPathClosed( lineHandle, false );
      if ( error ) throw( error );
    // apply color width etc.
      AIPathStyle style;
      error = sAIPathStyle->GetPathStyle( lineHandle, &style );
      if ( error ) throw( error );
      style.strokePaint = true;
      style.stroke.color.kind = kFourColor;
      style.stroke.color.c.f.cyan = 0;
      style.stroke.color.c.f.magenta = 0;
      style.stroke.color.c.f.yellow = 0;
      style.stroke.color.c.f.black = 100;
      style.stroke.width = 0.75;
      style.stroke.dash.length = 0;
      delete[] segment;
      error = sAIPathStyle->SetPathStyle( lineHandle, &style );
      if ( error ) throw( error );
    catch (ai::Error& ex) {
      result = ex;
    return result;
    Thanks,
    David

    As for beziers, Illustrator uses cubic beziers which are fairly straight forward (thank goodness!). Here's a lift from Wikipedia's Bezier entry:
    This image is pretty good at demonstrating how AI's bezier segments work. In the animation, the moving point has two lines sticking off it, ending with two points. If P3 was an AISegment, the left-hand blue point would be in and the right-hand point would be out. If we were to translate the state of the animation in its last frame into AI code, you'd basically have something like this:
    AISegment segment1, segment2;
    segment1.p = p0;
    segment1.in = p0;
    segment1.out = p1;
    segment2.in = p2;
    segment2.p = p3;
    segment.out = p3;
    Note that this would imply any line that continues beyond either end point isn't a smooth beizer curve (i.e. the curve is limited to between these points). That effectively makes them corner points (I think). Also, the line formed by linking in & p or out & p is the tangent to the curve at p, which I think you can make out from from the animation.
    Another way to get a feel for this is to use the pen tool to draw a line with a few segments. If you then pick the sub-select tool (white selection arrow, not black selection arrow) and select individual points on the curve, you'll see when you do that two 'anchors' jut out from each point. Those are the in & out for that point on the curve.
    Its all a little confusing because technically, a bezier segment between p & q would be p, p.out, q.in & q. (four vertices). To avoid repeating information, and keep it simple for non-beziers, AI's segments are still the vertices. So if you wanted to make the nth segment a beizer, you'd need n & n+1 from AI's path, and you'd modify two-thirds of each AISegment (p, out from n & in, p from n+1).
    I hope that helps, but if you have any further questions, feel free to ask! If you need to do anything fancy with beziers, there are some helpful utilites in AIRealBezier.h.

  • How to create a text object at runtime?

    Hi,
    I am using crystal reports for visual studio 2010 and using c# to programming.
    I need to create  a text object in a specific section like section 2. and also I need to control the text object's position and text.
    I tried to move a object like:
    reportDocument1.ReportDefinition.Sections[j].ReportObjects<i>.Left = 0x8760;
    but object's position doesn't change at all.
    How can I do these (create a text object and change a object postion)?
    Thanks

    Hi Don,
    Thank you.
    I have downloaded a RAS ( report application Server ) sample.
    The sample uses the Business Objects Enterprise XI release 2. I am using win 7 and crystal reports for vs2010. Can I use this version of crystal reports to create  a text object at runtime? If not, what is the lowest version I have to purchase to achieve what I want?
    Basicly I need following capabilities at runtime:
    1) craete text objects, line objects, image objects.
    2) change text object, line object and image object positions, sizes, values of text object. If can I like to be able to change font as well.
    3) supress objects, sections. 
    4) change section's height

  • It will not parse! Creating a new object in the universe

    Hi, we have a universe and BO reports. They work fine for our clients. We are on BO XI r3.1. Now, one client captures an additional piece of info. They would like to report against this and add it high up on our drilling heirarchy. "Sure, no problem". For the following I was logged in as administrator.
    The additional data field is a 3 character code.
    1) We added an additional column to the actual database table.
    2) In Universe Designer, I refreshed universe structure and could see the additional column
    3) Created an object 'Acode' that refers to db.new_field
    4) Exported universe
    Maybe worth mentioning that I can see this object and use it in reports fine in Infoview.
    Now, I need to create a new object that will be one of 2 strings based on the 3 character code (Acode) i.e. the 'Atype' can be X or Y.
    Here's my code and it just will not parse:
    CASE
    WHEN @Select(AFolder\Acode) = 'CEL'
    THEN 'X'
    ELSE u2018Yu2019
    END
    Error I get is:
    Parse failed:Eception:DBD ODBC SQL Server driverStatement could not be prepared.State 42000
    I'd appreciate any help, believe me I have searched the forums!
    Thanks, Eddie

    Look at following SAP NOtes.
    1373739
    1184304
    Regards,
    Bashir Awan

  • Can I create draggable Line Object?

    Hiii,
    I'm making a diagram drawing program. I want to draw a line on my panel with two end points, which can be dragged to change the size and direction of the line. I also want to be able to click on the line itself to drag the line without changing any other properties. is it possible to do this?
    Thanks in advance
    Nikhil

    Sure if you know what the coordinates of your endpoints are. You could then calculate where the line itself is. You may need to create a few custom methods/classes for your program, but it can definantly be done.
    Happy New Year!

  • Creating z archive objects???

    Hello gurus,
    in one of my assignment we need to archive z tables.. its understood that we need to create z archive objects for them..we have differenct types of tables.. input, output and masterdata tables...
    1. can i create a single archive object for these tables.
    2. can i create a separate objects for input , output and master data tables
    <<removed>>
    Edited by: Matt on Feb 1, 2009 9:09 PM

    Hello my friend I have  the same situation in my case I have a tutorial of sap which I have read and I recomend you that you need to read in order to under stand archiving.
    in this tutorial there are some parts in which you can see some pages where it mentions some sample of writing, delete, reading archiving progrma  that there are in SAP system.
    Check this link and I think it can help you.
    In my case I do not understand all the code sample.
    http://help.sap.com/saphelp_nw2004s/helpdata/EN/2a/fa043a493111d182b70000e829fbfe/frameset.htm

  • Organizational structure : create a new object type

    Hi all,
    i need to create a new object type in Organizational Management, anyone have documentation, link or some helps to this subject.
    Thanks,
    Cheers

    Small correction
    Personnel ManagementOrganizational Management-Basic settings-Data Model Enhancement--Maintain Object Types
    T-code OOOT
    Edited by: Sikindar on Jul 30, 2008 3:57 PM

  • How can we create an entity object using multiple tables?

    Hi All,
    I'm a newbie to OAF.
    I'm trying to create a simple page using OAF.
    While creating Entity object, there is an option to add the database objects from which we can create our Entity Object.
    There we can enter only one database object.
    If suppose I need to create a Entity object by using mutiple data base objects, how can I add other database objects?
    Is there any option for multiple selection of database objects there?
    Thanks in Advance

    User,
    a). You should use the [url http://forums.oracle.com/forums/forum.jspa?forumID=210]OA Framework Forum for this question.
    b). Entity objects always correspond to a single table. I think you want to create a View object instead.
    c). Really, you want to be using the OA Framework forum.
    John

  • I need to create schema objects like OE,HR,SCOTT in existing ORACLE DATABASE INSTANCE

    I have oracle 9i installed and running.
    I need to create in existing Oracle Instance only few more schema.
    In instance we have schemas like SCOTT,OE,HR etc.,........
    How do I create my own schema object say PRODUCTS so that I can assign the required tables.
    has anyone has points and tips....
    please do send me the information
    thanks & regards
    Prakash

    Pl do not post duplicates - continue the discussion in your original thread - Re: Exp/Imp Database (DATA PUMP)

  • Help need in creating DB objects programatically .

    Hi All,
    I have a case where i need to create a table in DB from ADF and need to insert/modify/delete their records in java code.
    Is that possible to create an update-able view object from java code rather going with conventional declarative steps in ADF?
    Regards,
    Suresh kumar.k

    ADF BC runtime doesn't give you any feature out for the box for creating DB objects, you may need to use standard JDBC API+ DDL. (btw, there may be design time API used by JDev for DB synch . however I'm not sure about the feasibility of using the same in your context) Next step may be building programmatic EO/VO. You can refer this blog post for the same - http://jobinesh.blogspot.com/2010/06/model-driven-approach-for-building.html

  • Is there any need to create schema in unvierse designer of business objects

    HI this is sridhar
    is there any need to create schema in unvierse designer of business objects xi r2,  when i integrated sap bi data into business objects,i,e i have fetched sap-bi/bw data to business objects universe
    please help me

    I don't see what is wrong with
    <jsp:useBean id="tabsConfigurator" class="com.mypackage.TabLayoutConfiguratorImpl"/>
    The class has a no-args constructor at least. The useBean tag will work with it. Probably.
    But still, some code just can't be translated into scriptless JSTL.
    Calling methods which take parameters is one of those things.
    In this case you probably want to write a custom tag to work with your tabs
    I would probably look at using custom tags like this:
    <%@ taglib prefix="tab" uri="/WEB-INF/TabLayout.tld"%>
    // tab to create the configurator.
    // either export it as a var, or use other tags only nested within this one
    // so you can get access to the configurator.
    <tab:configure var="configurator">
      <tab:render configurator="${configurator}" tab="${tab}">
    </tab:configure>I don't know exactly what the scriptlet code will be doing. But I think a custom taglib would be the only way to eliminate scriptlet code that you have here.

  • Do we need to create or actiovate any system objects for ess mss applicatio

    Hi
       I am new to ESS MSS business packages.i know we need to activate 5 pairs of JCO destinations,
    do we need to create or activate any system objects ,because ess mss applications contains transactional iviews also
    how they will communicate.

    once you placed the portal content, the default system objetcs for ESS and MSS are delivered by SAP only, we need to configure the same like JCO destinations.,

  • Need help creating custom objects and adding them to an array.

    Hi Everyone,
    So I'm dinking around in Powershell today and I'm failing at creating an array of custom objects.  I want to create a HTML report that builds out after every MDT image update. To do that, I need to collect my data on what's contained in each build.
    Here's my current script in progress -
    function Parse-Dependents($fullname){
    #PARAMETER SWITCHING
    if(!($fullname)){
    $dependents = get-dependents
    if($fullname){
    $dependents = get-dependents -fullname $fullname
    #SPIN THROUGH ARRAY OF GUIDS FROM GET-DEPENDENTS
    foreach($d in $dependents){
    #SPIN THROUGH EACH APP IN APPLICATIONS.XML
    foreach ($app in $apps){
    #IF MATCH THEN ADD OBJECT WITH PROPERTIES
    if($d -match $app.guid){
    #ADD APPLICATION MATCH TO THE ARRAY
    $applications = @{
    'Name' = $app.ShortName;
    'GUID' = $app.Guid;
    'Version' = $app.Version;
    'Last Modified Time' = $app.LastModifiedTime;
    'Last Modified By' = $app.LastModifiedBy;
    'Install Directory' = [string]'\\my\path\to\MDT\' + $app.WorkingDirectory.TrimStart(".","\")
    'CommandLine' = $app.CommandLine;
    new-object -typename PSObject -property $applications
    #RETURN MATCHED ARRAY
    return $applications
    It all works great until I look at my output and see that I get my expected properties and array, but at the end it's created additional empty entries for each of my initial properties I assigned.  So I get my list of apps like this :
    powershell.ex... OrgChart Plugin  \\my\mdt\server\ XX\user                     9/22/2014 5:... {ffee7497-0c...
    And then below it :
                     CommandLine                                                                                    
                     Name                                                                                           
                     Install Direc...                                                                               
                     Last Modified By                                                                               
                     Version                                                                                        
                     Last Modified...                                                                               
                     GUID                                                                                           
    And these are all listed under the Name property.  I'm still pretty new to PS (8 months or so now), and rarely have to create a custom object, but this seems like a case for doing so to create a custom html report.  Any ideas would be greatly appreciated.
    Ryan

    It's not really all that strange.  
    If you look at your script, you're not outputting the hash table until both loops finish.  The values are dependent on the properties of the $app objects enumerated in the inner loop, and only outputting an object if the dependent ($d) matches the $app
    guid property.
    At the end, you're outputting the hash table without that test, so it's going to have values based on the last $app in the loop, regardless of whether the guid matches the dependents or not.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

Maybe you are looking for

  • Page looks different in Dreamweaver than browser with no errors!

    My url is uchargeproject.com and the site looks horrible in Dreamweaver, but fine in my browser. I have also checked for errors with http://validator.w3.org/ and my site has only one now but still it doesn't work! (also why does it say height is not

  • B&W G3 having trouble finding startup disk

    Hi. Ever since the DVD drive of my B&W G3 died, it's taken an extra minute to find the startup disk. I get the blinking Mac folder plus the question mark that we all know and, well, don't love. I've replaced the DVD drive, and currently there is no o

  • Where to download ESR for SAP NetWeaver CE 7.1, SR5 TRAIL VERSION?

    Hi Netweaver  CE experts, Can please someone tell me where do download Enterprise Service Repository (ESR) for SAP NetWeaver CE 7.1, SR5 ? There is no such link in SDN and I need the TRAIL version , not the licensed one. SAP used to have it with SR3

  • Obiee Date converting to DD-MMM-YY (19-Mar-13)

    Hi All, I have a requirement where i need to display the date in dashboard in this format DD-MMM-YY (19-Mar-13). The default format for the column is MM/dd/yyyy. I need to change using or write a SQL in prompts, as even though i change in column prop

  • Support

    I have a Skype number and It is not working... I want to find where I can see if there is some issues with my Pay Pal or Visa Card but I dont find where I can settle this problem.  Waiting Support Reply. Thanks.