Rtsora linked to a c object

Environment:
Oracle 11.2.0.4
Aix 7.1
Cobol Microfocus v5.1.00
We have linked in the makefile a c object (that contains routine1) compiled by gcc and the rtsora has been generated without errors
When we run rtsora <pgm.gnt> when there is the instruction CALL "routine1" we have the error "Called program file not found in drive/directory"
The same situation in Oracle 9 (32 bit) with an old version of cobol works fine
Content of env_precomp.mk:
RFSG=<pathname>/rfsgi.o
RTSORA_LINKLINE=$(COB) -o $(LOC_RTSORA) -t -xe "" $(RTSPORTFLAGS) $(RESOLVE_SQLROWIDGET) $(COBSQLINTF) \
       $(SCOREPT) $(SSCOREED) $(DEF_ON) -L $(LIBHOME) $(LLIBSQL) $(NAETTOBJS) \
$(LLIBXSD) $(COBTTLIBS) $(RFSG)

hi,
The solution is not just for travel requests but any approval of any workflow . The rejector enters a comment giving the rejection reason . This could be entered on the Portal / as a note attaching to the workflow. (For the travel requests it could be multilevel approval .The rejection is only done by one level and workflow returns normally to the creator) My problem is to get the comment that is sitting in the workflow container as Attachment  and normally a SOFM type object -> to the generic object services attachment list on the Business entity eg on the travel request itself . This will then live with the travel request, available for multiple wf rounds of changes done to the trip.
With every new comment it must add the comment onto the travel request itself.
Currently the comment will just be available for the duration of one round of approval workflow.
Hope this makes sence .
Thanks very much for been interested in my problem.
Christine

Similar Messages

  • Create view link between two view objects (from programmatic data source)

    Hi Experts,
    Can we create a link between two view objects (they are created from programmatic datasource ; not from either entity or sql query). If yes how to create the link; ( i mean the like attributes?)
    I would also like to drag and drop that in my page so that i can see as top master form and the below child table. Assume in my program i will be only have one master object and many child objects.
    Any hits or idea pls.
    -t

    Easiest way to do this is to add additional transient attributes to your master view object, and then include those additional transient attributes in the list of source attributes for your view link. This way, you can get BC4J to automatically refer to their values with no additional code on your part.

  • Linked Universe - Order of Objects Differs from Kernal

    When I add an object (or class) to a "kernal" universe, these objects are appended to the end of the object (class) list in linked universes. How can I make the objects in the linked universes match the order listed in the kernal?
    For example, if the kernal lists objects A, B , and C (in that order), then I delete and add object A:
        The kernal objects are listed as A, B, C
        All linked universes list the objects as B, C, A.

    Hi,
    Can you please let me know the solution for the same which you had figured out...
    Thanks
    Rachit

  • WebCenter Links Service for Fusion Object

    I am working on a Fusion Application that has the following requirements:
    1. Links between Fusion Business Objects (i.e. VO). For example, link a Fusion Srevice Request Object to another Fusion Service Request Object or to a Fusion "Solution" object.
    2. Link from WebCenter resources to Fusion Business Object. For example, link a a Web Center discussion thread to Fusion Service Request object.
    3. Link from fusion Business Object to WebCenter resources. For example, link a Fusion Service Request object to a Web Center discussion thread.
    Can WebCenter Links service meet all the 3 requirements above? Based on the WC guide shown below, it seems that Fusion Business Object (i.e. a Service Request VO) can NOT be a link "to" target for the Links Service.
    http://fmwdocs.us.oracle.com/doclibs/fmw/E10285_01/webcenter.1111/e10148/jpsdg_relationship.htm#CEGBJBCC

    Hi,
    I have not worked with Webcenter Suite but as far as I know there is no similarity between Webcenter Suite and OSB. Webcenter Suite is a portal framework and OSB is a routing solution product. From the info you provided, I would suggest to use OSB.
    First of all identify what you need and then choose the product. Please elaborate your use case (specially the front-end part).
    Regards,
    Anuj

  • BAPIs or Function Modules for Links between different Business Objects

    Hi experts,
    I am accessing an SAP CRM 5.0 system from outside via remote function calls.
    I have the GUID of a business partner and would like to find other business objects
    that are related to this business partner.
    For example:
    - Which activities are relevant for this business partner?
    - Which orders were placed by this business partner?
    - Which leads or opportunities are linked to this business partner?
    - Which products did this business partner order?
    Is it possible to get this information by calling BAPIs or other RFC function modules?
    Regards,
    Karsten

    After studying lots of documentation and trying to understand the BOL and GenIL concepts,
    I finally found a function module which meets my demands. With function module
    CRM_GENIL_GET_QUERY_RESULT you can execute a Search Object of the GenIL,
    and it is remote-enabled.
    By checking transaction GENIL_MODEL_BROWSER and choosing component set "ALL"
    you get a list of all defined Search Objects. The Search Object that finds all orders of a
    business partner is "BTQuery1O".
    DATA gt_parameter_list TYPE crmt_name_value_pair_tab.
    DATA gs_parameter_list TYPE crmt_name_value_pair.
    DATA gt_data_hdr       TYPE TABLE OF crmt_genil_rfc_data_hdr.
    DATA gt_data_attr      TYPE TABLE OF crmt_genil_rfc_data_attr.
    DATA gt_data_rels      TYPE TABLE OF crmt_genil_rfc_data_rel.
    DATA gt_data_rel_obj   TYPE TABLE OF crmt_genil_rfc_data_rel_obj.
    gs_parameter_list-name  = 'BP_NUMBER'.
    gs_parameter_list-value = '4000000011'.
    APPEND gs_parameter_list TO gt_parameter_list.
    CALL FUNCTION 'CRM_GENIL_GET_QUERY_RESULT'
      EXPORTING
        iv_query_name                = 'BTQuery1O'
        it_parameter_list            = gt_parameter_list
      TABLES
        et_data_hdr                  = gt_data_hdr
        et_data_attr                 = gt_data_attr
        et_data_rels                 = gt_data_rels
        et_data_rel_obj              = gt_data_rel_obj
      EXCEPTIONS
        error_occured                = 1
        OTHERS                       = 2.
    Before you can use the function module, you have to call function module CRM_GENIL_INIT
    to initialize the GenIL.
    Regards,
    Karsten

  • View Links for Programmatic View Objects

    Hi All,
    I created a read only VO called MyVO based on a sql query.
    I created 2 programmatic view objects, MasterView and ChildView.
    In a custom method in AMImpl class ,I iterate through this MyVO resultset and get the rows in a Row object.
    Based on some attributes values of the Row, I populate both master and child View Objects.
    I have created a view link between Master and Child Programmatic View Objects and have exposed them in AM.
    Now I run the AM, and run the method exposed in client interface.
    Now I click on my master and child programmatic views.
    I see that the rows are populated in both of these programmatic VOs.
    But when I click on viewlink which I have exposed under master, it doesnt show me any
    record for child.
    This is my method of AMImpl which is exposed in AM client interface.
    public void constructLines(){
    ViewObject vo= this.getMyVO1();
    ViewObject master=this.getTransientVO1();
    ViewObject child=this.getTransientLineVO1();
    Row r,masterRow,childRow;
    int count=0;
    while(vo.hasNext()){
    ++count;
    r=vo.next();
    masterRow = master.createRow();
    if(r.getAttribute("QuoteHeaderId")!=null)
    masterRow.setAttribute("QuoteHeaderId",
    r.getAttribute("QuoteHeaderId").toString());
    if(r.getAttribute("QuoteLineId")!=null)
    masterRow.setAttribute("QuoteLineId",
    r.getAttribute("QuoteLineId").toString());
    if(r.getAttribute("LineNumber")!=null)
    masterRow.setAttribute("LineNumber",
    r.getAttribute("LineNumber").toString());
    master.insertRow(masterRow);
    childRow= child.createRow();
    if(r.getAttribute("RefLineId")!=null)
    childRow.setAttribute("RefLineId",
    r.getAttribute("QuoteLineId").toString());
    if(r.getAttribute("QuoteHeaderId")!=null)
    childRow.setAttribute("QuoteHeaderId",
    r.getAttribute("QuoteHeaderId").toString());
    child.insertRow(childRow);
    This is stopping me from my development progress.
    Any suggestion to solve this will be of great help.
    Thanks,
    Prabhanjan

    Hi..
    have you define relationship correctly between masterVO and childVO.sometime there may be the problem.

  • Significance of DIR-DIR link direction in DMS object link

    How exactly the DIR-DIR link is controlled by direcetion? (Active/Passive/Two way)
    And why the classification object with class 048 is not provided for DIR-DIR link like other objects? Is there any other way to classify this link?

    I just need to know how DIR behaves when it is Active or Passive in DIR-DIR link.
    I am not able to find out the difference between Active/Passive/ Two way direction in DIR-DIR link.
    What functions are Enabled/Disabled when for the DIR when the it is Active/Passive?
    points rewarded accordingly.

  • Object Link to CRM business object in Trex search result list

    Hello Everyone,
    has anybody sucessfully configured the functionality "Object Link Properties" which is described in the Document <a href="http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000647974&_SCENARIO=01100035870000000112&_OBJECT=011000358700005796662005E">Configuring the Business Package for SAP CRM 5.0 SP01 (EN)</a> on Page 169? I'm not the Knowledge Management specialist and would get some help on this topic. Has anybody detailed steps how to configure this?
    It shounds interresting as the result would be that when the User does a full text search for Attached Documents he will also get a link to the original CRM business object like Activity, Account or Opportunity.
    Regards
    Gregor

    Hi Gregor,
    Thanks for your reply.
    using windows explorer mechanism i can see the folders that i created in the CRM config.
    Now in Portals KM i did the following steps:
    a) Created an HTTP Data Source : with URL = the URL that the service crm_prt_km_dav generates.
    http://abrusux156h.pch.chem.corp.local:8086/sap/crm/crm_prt_km_dav
    b)Created a memory cache
    c)Created a WebDAV respository manager with the following details:
    Description :WebDAV
    Prefix : /PRD  (PRD is the BO Hierarchy name that i have set in the CRM config)
    System ID : T86 (Sames as what was set in HTTP Data Source)
    Repository Service : svc_acl
    ACL Manager cache : ca_cm
    Security manager : ACLSecurityManager
    Memory Cache :webDAV(same as what i had set in step b)
    I restarted the portal server. and then tried doing the test by going to
    Content Admin ->KM Content ->root
    But i dont see the /PRD folder out there.
    Any clues on that???
    Thanks,
    Anand

  • Link for studing ABAP objects

    hi all,
        i know the concept of object . can any once send some demo programs of ABAP object (showing  how to implement )also please send some good links for ABAP objects.
    send to e-mail : [email protected]
    cheers
    senthil

    Create a program (e.g. an executable or a subroutine pool) in SE38.
    Write the following code:
    <b>PROGRAM my_oo_test.
    CLASS my_first_class DEFINITION.
      PUBLIC SECTION.
        METHODS main.
    ENDCLASS.
    CLASS my_first_class IMPLEMENTATION.
      METHOD main.
        MESSAGE 'Hello World!' TYPE 'I'.
      ENDMETHOD.
    ENDCLASS.</b>
    Create a transaction code in SE93 and choose OO-Transaction there. Switch of "OO transaction model", enter the name of your class, method, and program in the fields and save.
    Now you can call the transaction. It shows "Hello World".

  • Setting Links in Documents to Objects in KM Folders

    I have a folder created in KM I need to create a link so that the contents of the folder are displayed and can be accessed on the portal.  I went to KM and opened the iview from settings - properties - acess paths I copied the short ID.  I found information that says to paste the short ID into the document, but it does not say where to paste it.  Please advise if this is the correct process and if so where to paste the link - thanks

    hi Annette,
    Its very simple.
    Go to your folder in pcd content and
    in the context menu of the folder  new ->workset
    and give all the details.  after creating , open that workset as object.
    Then go to the page and right click and add to the workset as  delta link or copy.
    The differnce between them is deltalink is a reference. what ever the changes you  do to the page will automatically relfects in the workset page. In copy method, it is not reflecting.
    Go to the same steps for the role also.
    After you assign the workset to a role, then go to the user administrator->identity management.
    Search for your role and assign your user id to that role.
    iview
    http://help.sap.com/saphelp_nw70/helpdata/EN/c3/d126737a7c804980ac2ac5a9278711/frameset.htm
    page
    http://help.sap.com/saphelp_nw70/helpdata/EN/c3/d126737a7c804980ac2ac5a9278711/frameset.htm
    workset and roles
    http://help.sap.com/saphelp_nw70/helpdata/EN/c3/d126737a7c804980ac2ac5a9278711/frameset.htm
    about delta links
    http://help.sap.com/saphelp_nw70/helpdata/EN/c3/d126737a7c804980ac2ac5a9278711/frameset.htm
    about copies
    http://help.sap.com/saphelp_nw70/helpdata/EN/c3/d126737a7c804980ac2ac5a9278711/frameset.htm
    about user management
    http://help.sap.com/saphelp_nw70/helpdata/EN/13/d33942be60033be10000000a1550b0/frameset.htm
    The above links will help you better in understanding the basics.
    Also search in SDN for a specific topic and will get lot of useful information. All the best
    Raghu

  • Query with links to 'services for object'

    Hi everybody
    I need your help
    We have pictures (jpg, pdf, tif) linked to materials in material master (in transaction mm02 – services for object). Sometthing like this - but form materials:
    http://www.le.ac.uk/mis/docs/sapdocs/ug/UG5-1%20Services.doc
    We would like to create the "stock report" with links to these attachments. Can anyone tell me if it is possible to create these links in the report?
    I would like the report to look something like this:
    material_number1; stock1; link_to_picture_on_material_number1
    material_number2; stock2; link_to_picture_on_material_number2
    the user should be able to open the attached picture (if it exists) by clicking the link at each material number (even better if the pictures were already displayed in the report)
    Thank you very much in advance
    BR,
    Jana

    There are a number of classes with methods for accessing objects saved using services for object - look for classes starting CL_GOS*
    Help for GOS is available at
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/f5/e16f3a53dee246e10000000a11402f/frameset.htm">Generic Object Services (BC-SRV-GBT)</a>
    In your report you could link to the relevant code to display the image based on an event like at line selection / at user command or using hotspots or similar in an ALV based report
    Andrew

  • View Link w/ Transient View Objects

    I'm trying to create 2 view objects that contain only transient attributes and create a view link between them. I have a key defined in the parent and 2 keys in the child. When I create the view link I'm unable to generate the accessor in the source because the boxes are all grey'd out. The destination side works correctly.
    Is there any reason this shouldn't be possibly in BC4J? I've been scouring the documentation and so far I haven't found any mention that a view link will not work in this situation.
    This is in JDev. 9.0.4.
    Thank you

    A view link builds its corresponding where clause based on the selected attributes. On the source side, the attributes are used as parameters to the query, so transient attributes are fine. Attributes on the dest side get built into a where clause which would not work with transient attributes, so they are disabled.
    for example:
    select * from blah where (%1 == destVo.attr1) would not work if destVo.attr1 is transient.

  • Link comment to icons objects

    Is it possible to to link comments to objects that it is referring to such as shown in the figure.  This would allow the comment to be moved automatically when i drag the object itself.  I find it cumbersome to have to move the comment and the object separtely when things need to be reorganized.
    Thanks
    Solved!
    Go to Solution.
    Attachments:
    comments link.png ‏5 KB

    Yup. Right-click on the structure (for-loop, while-loop, whatever) and select Visible Items -> Label. Then enter your text in the label. You can also add a description and tip for it.

  • ADF: use of view link Accessor in Entity Object = always null?

    Hi,
    JClient 9.0.5.2, adf model.
    I would like to use the view link accessor method in the master EO to retrieve detail EO values and the view link accessor method in the detail EO to retrieve master EO values.
    Detail Rule:
    In the detail EO an attribute is derived from an attribute of the master EO: detail attribute = master attribute.
    Master Rule:
    In the master EO an attribute is derived from the detail EO: master atribute set to 0 if detail EO exist else set to 0.
    Tables:
    Table Master => MasterEO => MasterVO
    - masterPK (not updateable)
    - masterField (not updateable)
    - hasDetailsFlag
    Table Detail => DetailEO => DetailVO
    - detailPK (not updateable)
    - masterPK => foreign key (not updateable)
    - masterField (query only)
    MasterDetailLink based on foreign key.
    In link wizard I asked for the generation of following accessors in the source & destination Entity Objects:
    In DetailEO accessor name: RetrieveFromMaster
    In MasterEO accessor name: RetrieveFromDetail
    In the DetailEO, I asked for the generation of the DetailEOImpl file, accessors and create method.
    As wriiten in the file, before the create method:
    ** Add attribute defaulting logic in this method. **
    I tought this is the place to retrieve the master attribute:
    The code:
    MasterVORowImpl masterVO = getRetrieveFromMaster();
    if (masterVO == null)
    System.out.println("MasterVORowImpl masterVO create NNNNNNNNNNNUUUUUUUULLLLLLLLLL");
    The masterVO is always null?
    I suppose I didn't understand something, my guest is that ViewObjects may not be used for default logic?
    I know how to implement those rules in the database with triggers.
    I think that the data I need for implementing those rules exist somewhere at the ADF level so retrieving the data from the db is not necessary?
    Could somebody give some clues?
    I didn't find a similar example in the Business Rules in BC4J document.
    Your help will be appreciated
    Frederic

    Hi,
    Detail Rule, copy attribute value form master.
    In DetailEOImpl:
    protected void create(AttributeList attributeList)
    setAttribute(MASTERFIELD,this.getMaster().getMasterField());
    super.create(attributeList);
    Master rule, set flag to 0 if no details else set to 1.
    In the MasterEOImpl added method to check if detail row exists based on Row Iterator => no db retrieval?
    This method also sets the flag accordingly:
    protected void checkHasOtherDetails()
    oracle.jbo.RowIterator ri = this.getRetrieveFromdetail();
    ri.last();
    // last() must be called else hasNext() returns true even on last delete ???
    Number hasDetails = Constants.NUMBER_NO; // = 1
    if (ri.hasNext() || ri.hasPrevious())
    hasDetails = Constants.NUMBER_YES; // = 0
    if (!getHasDetailsFlag().equals(hasDetails)) {
    this.setHasDetailsFlag(hasDetails);
    I call this method in the remove method of the detailEOImpl:
    public void remove()
    this.getRetrieeFromMaster().checkHasOtherDetails();
    super.remove();
    To set the flag I added follwoing code in the create method of the DetailEOImpl:
    protected void create(AttributeList attributeList)
    setAttribute(MASTERFIELD,this.getMaster().getMasterField());
    **** ADDED ***
    Number masterHasDetailsFlag = getRetrieveFromMaster().getHasDetailsFlag();
    if (!masterHasDetailsFlag.equals(Constants.NUMBER_YES)) {
    getRetrieveFromMaster().setHasDetailsFlag(Constants.NUMBER_YES));
    super.create(attributeList);
    One more question:
    Is there a danger of calling last() on row iterators in create/update/remove methods of *Impl files?
    => current row changed => any effect on display in JPanel
    Thanks
    Frederic
    PS All variable/method/class names have been manually renamed in this code so some small syntax problems may exist.

  • Delete attachments linked with a business object

    Hi All,
    I have added some pdf attachments to a business object using Archivelink. I am making use of FM - ARCHIV_CREATE_TABLE.
    This worked. Now we need to either add a retention period for these attachments or archive them or delete them after a certain period of time. I tried some ways till now.. but they havent worked
    1. Setting a delete date in my FM ARCHIV_CREATE_TABLE :
    CALL FUNCTION 'ARCHIV_CREATE_TABLE'
          EXPORTING
            ar_object                      = <archiveobj>
            DEL_DATE                       = '20100624'
            object_id                      = l_arc_doc
    However when I look in OAAD, this delete date doesnt show up!
    2. Using standard reports - RSBCS_REORG, RSSO_DELETE_PRIVATE and RSSODFRE. However my attachments are not even getting selected to be deleted.
    3. I also tried with FM - archive_object_delete and ARCHIVOBJECT_DELETE. Here I am getting an error that states-
    Error during import of physical document from cluster table SOFFCONT1.
    Any ideas towards this ? All your answers are appreciated.
    Thanks, Liz

    All,
    Minutes after I wrote up this question, I tweaked a way to delete the PDF using FM -ARCHIVOBJECT_DELETE. The archive doc id to be given here is from the 'Link' table one would have configured in transaction OAC3 (part of Archivelink config).
    I would still like to know if there is a cleaner way to delete the attachments from a business object.
    Also is there is way to delete the 'link' from transaction OAAD.
    Your input is appreciated!
    Thanks, Liz

Maybe you are looking for