Edit the task flow which is default in template for top navigation

Hi,
Where can I get the the default task flow file (i. e. spacesNavigationPanel) for collaborative with top navigation template?
I want to edit the task flow for navigation.
Thanks,
A

Here are the steps to find the default task flow file (i. e. spacesNavigationPanel) for collaborative with top navigation template :
Note: I am assuming you're using Oracle WebCenter Portal 11.1.1.8.x
Goto Portal Builder - Assets tab localhost:8888/webcenter/portal/builder/administration/assets
Select Page Templates under Structure from left side pane and you'll see list of out of the box page templates (source not editable) and custom page templates (source editable) on the right side pane.
Take a copy of the existing 'Collaborative with Top Navigation' page template
Select the row 'Collaborative with Top Navigation'
Click on Actions -> Copy
Change the display name (Default : Copy of Collaborative with Top Navigation) and description if needed.
Click OK to create a copy of 'Collaborative with Top Navigation' page template
Select the row w.r.t. newly created page template Copy of 'Collaborative with Top Navigation'
Click the checkbox to make it Available (Optional if you want to use this template later)
Click on Actions -> Edit Source to edit the source of selected page template.
You'll see template code in the window (by default).
Click on 'Page Definition' tab at the bottom of the template code window i.e. Switch to Page Definition tab.
Under Executables, you can see the taskflow code w.r.t. spacesNavigationPanel as follows :      <taskFlow id="spacesNavigationPanel" taskFlowId="/oracle/webcenter/webcenterapp/view/taskflows/navigation/SpacesNavigationTopPanelCollaborative.xml#SpacesNavigationTopPanel" Refresh="ifNeeded" activation="deferred" xmlns="http://xmlns.oracle.com/adf/controller/binding"/>
I hope it answers your question.

Similar Messages

  • How to return the name (or ID) of the Task FLow in Script

    Sitaution; two task flows created which can be accessed via Tools > TaskFlows within FDQM
    Task Flow "1.1 Multi Load - Import" --> Should run Batch Process Up to Import (enmBatchProcessLevel: 2)
    Task Flow "2.1 Multi Load - Import Up To Validate" --> Should run Batch Process Up to Validate (enmBatchProcessLevel: 4)
    I have developed one generic script which I would like to use for each task flow.
    Only the enmBatchProcessLevel differs between the task flows and therefore I would like to parse this enmBatchProcessLevel as a parameter my generic script.
    To be able to do this, the script needs to know on which task flow a user has clicked. So, I am looking for a function or statement which returns the name (or ID) of the task flow. Based on this name (or ID) a conditional statement can be performed in which a variable is dynamically filled. This variable can then be parsed as a parameter to my generic script.
    For instance:
    Sub GenericRoutine
         Dim strTaskFlow
         Dim intBatchProcessLevel
         '--Get the Task Flow Name
         strTaskFlow = ......<How to return the TaskFlow name or ID?>
         '--Validate the task flow and fill variable intBatchProcessLevel dynamically
         Select Case strTaskFlow
              Case "1.1 Multi Load - Import"
                   intBatchProcessLevel = 2
              Case "2.1 Multi Load - Import Up To Validate"
                   intBatchProcessLevel = 4
         End Select
         '--Execute generic script
         '--Call Batch script and parse intBatchProcessLevel as a parameter:
         Call sBatchProcess(intBatchProcessLevel)
         '--Execute generic script
    End Sub
    Sub sBatchProcess(Byval intBatchProcessLevel)
         Dim lngProcessLevel
         Dim strDelimiter
         Dim blnAutoMapCorrect
         '--Use intBatchProcessLevel to fill lngProcessLevel
         lngProcessLevel = intBatchProcessLevel
         strDelimiter = "_"
         blnAutoMapCorrect = 0
         Set BATCHENG.PcolFiles = BATCHENG.fFileCollectionCreate(CStr(strDelimiter))
         BATCHENG.mFileCollectionProcess BATCHENG.PcolFiles, CLng(lngProcessLevel), , CBool(blnAutoMapCorrect)
    End Sub
    Edited by: user13642656 on Jul 21, 2011 4:55 AM

    Hi, thanks for your reply.
    The Generic script contains 600+ records, which I would like to maintain once, when having multiple Task Flows for Import, UpToValidate, ValidateOnly, UpToExport, ExportOnly etc.
    Is there a central storage in FDQM workbench for script, like a "Module" in Excel VisualBasic environment? Thanks!

  • Is the task-flow input parameter class value being ignored by the framework

    hi
    Although I don't remember where, I think I read or heard about the task-flow input parameter class value that it is "being ignored by the framework".
    One example of this could be what is currently in the UI Shell sample application available
    at http://www.oracle.com/technetwork/developer-tools/adf/uishellapp-134633.zip
    It has in its task-flow in "flows\second.xml" an input parameter configured like
      <task-flow-definition id="second">
        <!-- ... -->
        <input-parameter-definition id="__3">
          <name id="__2">tabContext</name>
          <value>#{pageFlowScope.tabContext}</value>
          <class>oracle.ui.pattern.dynamicShell.TabContex</class>
          <required/>
        </input-parameter-definition>
        <!-- ... -->
      </task-flow-definition>Notice the missing "t" at the end of the class name "oracle.ui.pattern.dynamicShell.TabContex".
    Still this task-flow configuration does allow to use expressions like "#{pageFlowScope.tabContext.selectedTabIndex}", which suggests that the class value is indeed "being ignored by the framework".
    (see also forum thread "does the UI Shell sample break encapsulation in its task-flows"
    at does the UI Shell sample break encapsulation in its task-flows )
    All relevant references (bug numbers, documentation, blogs) explaining about this task-flow input parameter class value are welcome.
    If no such references exist, maybe someone from Oracle can give some feedback.
    many thanks
    Jan Vervecken

    fyi
    The feedback below was posted in the forum message
    at Re: does the UI Shell sample break encapsulation in its task-flows
    Richard Wright wrote:
    That appears to be a bug for which I am seeking confirmation.There is an enhancement request (i.e., 9377487) submitted over a year ago, that describes this behavior. It is listed as an ER as our documentation (e.g., Fusion Developer's Guide for Oracle ADF, online help ) does not specifically state that Java class for the input parameter definition is checked for type. Further anything using EL is untyped. So the expectation that types are enforced is somewhat puzzling to the development team.
    However, there is an acknowledgment within circles of the development organization, that some might come to have this expectation. One trigger might be the definition itself. The other is the existence of a design time audit on the definition. For example, if the class is specified inaccurately (e.g., typo), there is an audit warning to report "not found."
    Under consideration are a number of framework proposals to check for type without breaking backward compatibility or adding overhead to the production environment.
    In the interim, the following recommendations are given.
    Unless this breaks or can break your app in some way, no need exist for change. Nevertheless, if this is a real concern, write a test or consider a java assertion. By default, assertions are disabled at runtime. There is no need to override that default.I have been able to find enhancement request 9377487, "TASK FLOW PARAMETER VALUES NOT VALIDATED ACCORDING TO CLASS", on My Oracle Support. It currently has "Status 15 - To Internal (Oracle) Review" and "Updated 16-Dec-2010".
    In the context of service request 3-4185839067 recently bug 12838099, "THE TASK-FLOW INPUT PARAMETER CLASS VALUE BEING IGNORED BY THE FRAMEWORK", has been filed and it currently still has "Status 16 - Bug Screening/Triage".
    - about "... the expectation that types are enforced is somewhat puzzling to the development team ..."
    Hmm, strange ... so what are people supposed to expect when there is an option to configure a class name for a task-flow input parameter?
    regards
    Jan

  • Two pages reuse a task flow -------how to reinitialize the task flow?

    Hi, i get a question.
    In general:
    In the navigation menu i have two commandlink that are "Service" and "Application". And when i click on each of the two command links, i go to a page.
    The detail:
    This two commandlinks use a same task flow-----that is : <af:commandNavigationItem...... definition of this two link' action attributes are just the same.
    What's more, the pages that i go to when i click on the link also use the same one, just show something different bansed on the paramaters when alick on the link. The parameters are defined in the <af:commandNavigationItem...... using <af:setPropertyListener..
    And the question is:
    when i click on the "Service" link and see the "Add service" page and then click "Application" it's still the "Add service" page, and otherwise is the same. i just can not jump freely through this tow link.
    I have debuged the code and find that, once i click "Service" link then i click "Application" link, the task flow won't reinitialize.
    Any one has some solutions?
    Thanks in advance.

    Reading the official doc will help.
    http://docs.oracle.com/cd/E15523_01/web.1111/b31974/taskflows_complex.htm#BABHIAAI

  • Edit The Task

    
    we edit the tasks (task names in the project ) in project plan , what is the impact on timesheet.? Is there any chance that the timesheets get ‘rejected’ status?
    Surendra Singh, MCITP: SharePoint Administrator 2010

    Hi Surendra,
    The timesheet approval process is not correlated with the task name but with the task GUID. Thus changing the task name has no impact on the timesheet status.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • I have a Apple MacBook Pro "Core i7" 2.8 13" Late 2011. i want to upgrade its RAM from 4GB to 16GB. But OWC sells two kinds of RAM, the DDR3 and the DDR3L.What is the different and which one would work better for my mac. Thanks!!!

    Please help! I have a Apple MacBook Pro "Core i7" 2.8 13" Late 2011. i want to upgrade its RAM from 4GB to 16GB. But OWC sells two kinds of RAM, the DDR3 and the DDR3L.What is the different and which one would work better for my mac. Thanks!!!

    I don't see any DDR3L on the page for the RAM that would fit your model -> http://eshop.macsales.com/shop/memory/Apple_MacBook_MacBook_Pro/Upgrade/DDR3_133 3MHz_SDRAM.
    But the answer is that it doesn't really matter - just make certain to get 1333MHz.
    Good luck,
    Clinton
    MacBook Pro (15-inch Late 2011), OS X 10.??, 16GB Crucial RAM, Crucial M500 960GB SSD, 27” Apple Thunderbolt Display

  • I've just downloaded the ipad manual which states that it is for OS 10.4.3 but the manual states that I need 10.5.8 does this mean that I need an intel machine!

    I've just downloaded the ipad manual which states that it is for OS 10.4.3 but the manual states that I need 10.5.8 does this mean that I need an intel machine!

    No, 10.5 still supports PPC.  10.6 supports Intel only.

  • Where can i find the most popular common effects and title template for free online?

    where can i find the most popular common effects and title template for free online?

    Hello,
    I have a couple of links that I have used:
    http://www.solarisinternals.com/wiki/index.php/ZFS_Best_Practices_Guide
    http://www.solarisinternals.com/wiki/index.php/ZFS_for_Databases
    These are not exactly new, so you may have encountered them already.
    List of ZFS blogs follows:
    http://www.opensolaris.org/os/community/zfs/blogs/
    Again, there does not seem to be huge activity on the blogs featured there.
    jason.
    http://jarneil.wordpress.com

  • How to call the task flow  one region from another region?

    I have page with 3 regions (column wise) named as start, center, end.
    currently I having task flow for middle(i.e, center) region which have panelCollection to perform view, create, & delete functions.
    Task flow:-
    From(action)To
    View(create)Create
    Create(Done)Execute (Execute is a method call)
    Execute(*)View
    View(self)Execute
    By press create button on Center page, task flow takes to the Create page(in Centre region) but all other regions(start, end) remains same.
    I have a usecase where we have a commandLink on Start region to show the View page on Center region. but it is not able to achieve when we move to Create/Edit page.
    Plz help me out to built the same.
    Thanq
    KSB
    Edited by: user641407 on Aug 28, 2008 2:22 PM
    Edited by: user641407 on Aug 28, 2008 2:23 PM

    Hi!
    First, I'm not sure that your page layout is adequate. The regions are not intended to be navigated from outside. Yet, they can send navigation action to the container (page on which the region is placed) through Parent Action taskflow element. Also, you can investigate Contextual Events that can be raised by region, but I'm also not sure that this can be easily used for cross-region navigation.
    I would suggest you to reconsider you page layout. You can use dynamic regions (which are populated by taskflow based on menu selection or click on actionLink or s button). This way, in the Start facet you place a navigation menu (links), which are connected with dynamic region in Center. If you want to reuse a navigation links (in Start), you can put all this in page template and reuse it over and over again.
    Regards,
    PaKo

  • Jdeveloper 12c  bpm 12c why the task-flow-registry.xml causes issues when recompiling?

    when i run a new build I receive the following when it used to work well any ideas?
    classes/META-INF/task-flow-registry.xml'
    [2:43:55 AM] Compilation complete: 4 errors, 0 warnings.
    [2:43:55 AM] Compilation complete: 4 errors, 0 warnings.
    Feb 16, 2015 2:43:55 AM oracle.tip.tools.ide.utils.LogUtil logStackTrace
    SEVERE: oracle.jdeveloper.deploy.DeployException: Build failed.
      at oracle.jdeveloper.deploy.common.BuildDeployer.build(BuildDeployer.java:348)
      at oracle.jdeveloper.deploy.common.BuildDeployer.buildAll(BuildDeployer.java:277)
      at oracle.jdeveloper.deploy.common.BuildDeployer.compileDependants(BuildDeployer.java:137)
      at oracle.jdeveloper.deploy.common.BuildDeployer.deployImpl(BuildDeployer.java:100)
      at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:152)
      at oracle.jdeveloper.deploy.common.AbstractStatefulDeployer.deploy(AbstractStatefulDeployer.java:130)
      at oracle.jdevimpl.deploy.fwk.SequenceDeployer.deployImpl(SequenceDeployer.java:60)
      at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:152)
      at oracle.jdeveloper.deploy.common.AbstractStatefulDeployer.deploy(AbstractStatefulDeployer.java:130)
      at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:95)
      at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:152)
      at oracle.jdeveloper.deploy.common.AbstractStatefulDeployer.deploy(AbstractStatefulDeployer.java:130)
      at oracle.jdevimpl.deploy.fwk.SequenceDeployer.deployImpl(SequenceDeployer.java:60)
      at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:152)
      at oracle.jdeveloper.deploy.common.AbstractStatefulDeployer.deploy(AbstractStatefulDeployer.java:130)
      at oracle.jdevimpl.deploy.fwk.SequenceDeployer.deployImpl(SequenceDeployer.java:60)
      at oracle.jdevimpl.deploy.fwk.TopLevelDeployer.deployImpl(TopLevelDeployer.java:54)
      at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:152)
      at oracle.jdeveloper.deploy.common.AbstractStatefulDeployer.deploy(AbstractStatefulDeployer.java:130)
      at oracle.jdevimpl.deploy.fwk.DeploymentManager.deployImpl(DeploymentManager.java:410)
      at oracle.jdevimpl.deploy.fwk.DeploymentManager.deploy(DeploymentManager.java:371)
      at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:310)
      at oracle.tip.tools.ide.fabric.deploy.workflow.TaskflowPackager.deployImpl(TaskflowPackager.java:107)
      at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:152)
      at oracle.jdeveloper.deploy.common.AbstractStatefulDeployer.deploy(AbstractStatefulDeployer.java:130)
      at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:95)
      at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:152)
      at oracle.jdeveloper.deploy.common.AbstractStatefulDeployer.deploy(AbstractStatefulDeployer.java:130)
      at oracle.jdevimpl.deploy.fwk.SequenceDeployer.deployImpl(SequenceDeployer.java:60)
      at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:152)
      at oracle.jdeveloper.deploy.common.AbstractStatefulDeployer.deploy(AbstractStatefulDeployer.java:130)
      at oracle.jdevimpl.deploy.fwk.SequenceDeployer.deployImpl(SequenceDeployer.java:60)
      at oracle.jdevimpl.deploy.fwk.TopLevelDeployer.deployImpl(TopLevelDeployer.java:54)
      at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:152)
      at oracle.jdeveloper.deploy.common.AbstractStatefulDeployer.deploy(AbstractStatefulDeployer.java:130)
      at oracle.jdevimpl.deploy.fwk.DeploymentManager.deployImpl(DeploymentManager.java:410)
      at oracle.jdevimpl.deploy.fwk.DeploymentManager.deploy(DeploymentManager.java:371)
      at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:310)
      at oracle.jdeveloper.deploy.cmd.DeployCommand.deploy(DeployCommand.java:399)
      at oracle.jdeveloper.deploy.cmd.DeployCommand$DeploymentProgressShellAdapter$1.deploy(DeployCommand.java:529)
      at oracle.jdevimpl.deploy.fwk.RunnableImpl.deploy(RunnableImpl.java:337)
      at oracle.jdevimpl.deploy.fwk.RunnableImpl.run(RunnableImpl.java:394)
      at java.lang.Thread.run(Thread.java:745)

    That is the problem actually. When I run the link directly it works fine. But I need to launch the ADF application from a non-ADF app which is not hosted on WLS.
    The scenario above was just to simplify the problem...
    Is there any security settings etc that may cause this ?
    Thanks

  • Editing the 'show help' view mode default page

    I have enabled the 'show help' view mode on a few of my pages to give users some insight into how a given portlet should be used. However, when clicking on the 'help' link now on portals Portal takes you to some default styled help page. On this page are links to Portal Navigator and Portal Builder which I don't want my users seeing or being able to access. Also I wish to style the page differently. Can this page be altered and where can this be accomplished?

    Yes I understand. In that package is where you can input code for each of the modes. In the section for help view mode I have one line
    htp.p('Hello');
    The issue is on the actual webpage when you click the 'help' button for the portlet it displays the output of the line above but also displays other links that portal decided to stick in like a link to the portal navigator, an image in the upper left, etc. I don't want these to show up and want to sytle the page myself. I was wondering where I can go to edit the way that page is displayed.

  • How to add portlets to the task flow page

    I am using WebCenter space and I want space users to be able to put the portlets into their group space pages.
    All the portlets are under portlet folder in the catalog. However, our requirement was to have a custom folders.
    For example, the user administration portlets have to be in something like "user administration" folder and report portlets have to be in something like "report" folder.
    By "extending WebCenter Spaces" White Paper, I can create a custom folders and then I can put custom task flows. However, it doesn't say anything about the portlets. I opened SR with Oracle but so far I don't have the answer from Oracle.
    So I tried to add portlet into task flow pages after registering the portlet producers. However, it gives me the error portlet unavailable. Do I need additional steps to do this? I need help...

    Thank you.
    However it is not showing in the catalog.
    I used the WSRP producer connection name as provider and id from the portlet.xml file.
    rss is my WSRP producer connection name from EM and the id is numeric in my portlet.xml file.
    I can see the folder but I cannot see anything inside of the folder.
    <folder id="customPortletFolder">
    <attributes>
    <attribute value="Custom Portlet Folder" attributeId="Title" isKey="true"/>
    <attribute value="Custom Portlet Folder" attributeId="Description" isKey="true"/>
    <attribute value="Custom Portlet Folder" attributeId="Subject" isKey="true"/>
    <attribute value="/adf/webcenter/folderlists_qualifier.png" attributeId="IconURI"/>
    </attributes>
    <contents>
    <resource path="1269551712363"
    repository="rss"
    id="RSSReader">
    <attributes>
    <attribute value="portletTest" attributeId="Title" isKey="true"/>
    <attribute value="portletTest" attributeId="Description" isKey="true"/>
    <attribute value="portletTest" attributeId="Subject" isKey="true"/>
    <attribute value="oracle.webcenter.spaces.browser" attributeId="WEBCENTER_SERVICE_ID" isKey="false"/>
    <attribute value="/adf/webcenter/community_qualifier.png" attributeId="IconURI"/>
    </attributes>
    </resource>
    </contents>
    </folder>

  • Edit the Excel file which i have uploaded in my blob domain.

    Hi,
    Am using jdeveloper 11.1.1.6.0.,
    I have dragged and dropped my VO as af:form in which uploadFile is a blobdomain.
    This is the code which i have used for upload and download my excel document.
    public void uploadFileValueChangeEvent(ValueChangeEvent valueChangeEvent) throws IOException,
    SQLException {
    // Add event code here...
    // The event give access to an Uploade dFile which contains data about the file and its content
    UploadedFile file = (UploadedFile)valueChangeEvent.getNewValue();
    // Get the original file name
    String fileName = file.getFilename();
    long filesize = file.getLength();
    long fkb = filesize/1024;
    // get the mime type
    String contentType = file.getContentType();
    //ContentTypes.get(fileName);
    // get the current roew from the ImagesView2Iterator via the binding
    DCBindingContainer lBindingContainer =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding lBinding =
    lBindingContainer.findIteratorBinding("XFilesView1Iterator");
    Row newRow = lBinding.getCurrentRow();
    // set the file name
    newRow.setAttribute("FileName", fileName);
    // create the BlobDomain and set it into the row
    newRow.setAttribute("FileContent", createBlobDomain(file));
    // set the mime type
    newRow.setAttribute("FileType", contentType);
    newRow.setAttribute("FileSize", fkb);
    private BlobDomain createBlobDomain(UploadedFile file)
    throws IOException, SQLException {
    // init the internal variables
    InputStream in = null;
    BlobDomain blobDomain = null;
    OutputStream out = null;
    try
    // Get the input stream representing the data from the client
    in = file.getInputStream();
    // create the BlobDomain datatype to store the data in the db
    blobDomain = new BlobDomain();
    // get the outputStream for hte BlobDomain
    out = blobDomain.getBinaryOutputStream();
    // copy the input stream into the output stream
    * IOUtils is a class from the Apache Commons IO Package (http://www.apache.org/)
    * Here version 2.0.1 is used
    * please download it directly from http://projects.apache.org/projects/commons_io.html
    IOUtils.copy(in, out);
    catch (IOException e)
    e.printStackTrace();
    catch (SQLException e)
    e.fillInStackTrace();
    // return the filled BlobDomain
    return blobDomain;
    public void Download(FacesContext facesContext,
    OutputStream outputStream) {
    // Add event code here...
    BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
    // get an ADF attributevalue from the ADF page definitions
    AttributeBinding attr = (AttributeBinding) bindings.getControlBinding("FileContent");
    if (attr == null)
    return;
    // the value is a BlobDomain data type
    BlobDomain blob = (BlobDomain) attr.getInputValue();
    try
    {   // copy hte data from the BlobDomain to the output stream
    IOUtils.copy(blob.getInputStream(), outputStream);
    // cloase the blob to release the recources
    blob.closeInputStream();
    // flush the outout stream
    outputStream.flush();
    catch (IOException e)
    // handle errors
    e.printStackTrace();
    FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, e.getMessage(), "");
    FacesContext.getCurrentInstance().addMessage(null, msg);
    My Scenario :
    I need to edit the uploaded file and save it back to the same location.
    How can i achieve this?

    By edit you mean changes the cells of the excel file?
    For  this you have to download the file to the client, let him make the changes and upload it again.
    You may want to look into Desktop integration
    Or if you want to change it in java you can use POI to change the file. However you first have to get it out of the blog, change it and put it back into the blob.
    Timo

  • Un able to edit the cash flow transaction in T,code  ftr_edit

    When we edit Treasury Cash flow transactions (FTR_EDIT) it can result in display mode.
    We have completed the TBB1 up to 28.02.2010. We want to edit the 28.03.2010(Installment repayment transaction). In that 28.03.2010 to 28.07.2010 is showing display flow mode, after that 28.08.2010 onwards it is showing edit flow mode.
    Installment repayment Structure;
    Frequency manual input
    Item eff. from 22.09.2009
    Due date        28.02.2010
    Calculate. Date 22.09.2009
    Please let me know anybody aware of the issue.
    Thanks,
    Chandra

    Hi ,
    Thanks for prompt reply. User Run the TBB1 up to 28.02.2010. Now user want to EDIT the 28.03.2010 transaction.
    Please find the below cash flow transactions and suggest me ASAP:
    Pmnt Date     FTyp     Flow Type (Name)            PmntAmtPyC     D     PmntCurr.
    22.09.2009     1105     Borrowing / Increase     1,380,000,000.00     +     INR
    30.09.2009     1200     Nominal interest     -3,373,333.00     -     INR
    31.10.2009     1200     Nominal interest     -9,276,667.00     -     INR
    31.10.2009     1200     Nominal interest     -3,251,111.00     -     INR
    30.11.2009     1200     Nominal interest     -3,128,889.00     -     INR
    30.11.2009     1200     Nominal interest     -8,940,556.00     -     INR
    08.12.2009     1105     Borrowing / Increase     850,000,000.00     +     INR
    31.12.2009     1200     Nominal interest     -3,128,889.00     -     INR
    31.12.2009     1200     Nominal interest     -9,111,667.00     -     INR
    31.12.2009     1200     Nominal interest     -5,084,444.00     -     INR
    31.01.2010     1200     Nominal interest     -13,982,222.00     -     INR
    31.01.2010     1200     Nominal interest     -4,962,222.00     -     INR
    10.02.2010     1105     Borrowing / Increase     270,000,000.00     +     INR
    28.02.2010     1200     Nominal interest     -6,202,778.00     -     INR
    28.02.2010     1200     Nominal interest     -8,433,333.00     -     INR
    28.02.2010     1200     Nominal interest     -4,125,000.00     -     INR
    26.03.2010     1105     Borrowing / Increase     1,000,000,000.00     +     INR
    28.03.2010     1130     Instalment repayment     -50,000,000.00     -     INR
    31.03.2010     1200     Nominal interest     -3,911,111.00     -     INR
    31.03.2010     1200     Nominal interest     -2,688,889.00     -     INR
    31.03.2010     1200     Nominal interest     -16,500,000.00     -     INR
    28.04.2010     1130     Instalment repayment     -50,000,000.00     -     INR
    30.04.2010     1200     Nominal interest     -21,511,111.00     -     INR
    30.04.2010     1200     Nominal interest     -7,700,000.00     -     INR
    28.05.2010     1130     Instalment repayment     -50,000,000.00     -     INR
    31.05.2010     1200     Nominal interest     -7,577,778.00     -     INR
    31.05.2010     1200     Nominal interest     -21,175,000.00     -     INR
    28.06.2010     1130     Instalment repayment     -50,000,000.00     -     INR
    30.06.2010     1200     Nominal interest     -20,838,889.00     -     INR
    30.06.2010     1200     Nominal interest     -7,455,556.00     -     INR
    28.07.2010     1130     Instalment repayment     -50,000,000.00     -     INR
    31.07.2010     1200     Nominal interest     -7,333,333.00     -     INR
    31.07.2010     1200     Nominal interest     -20,502,778.00     -     INR
    28.08.2010     1130     Instalment repayment     -50,000,000.00     -     INR
    31.08.2010     1200     Nominal interest     -20,166,667.00     -     INR
    31.08.2010     1200     Nominal interest     -7,211,111.00     -     INR
    Thanks,
    Chandra.

  • I was able to convert to a word doc but some of the text and symbols were changed. I understood I would be able to edit the pdf file which I am unable to do. A solution please?

    I converted a pdf to a word doc but some of the symbols and letters of words were missing. I attempted to edit the word doc but was unable to do so. Is there a solution to this problem?

    Hi,
    Would you send your PDF document to [email protected] as an email attachment? 
    I will check it from my end.
    Please add the link to this forum post for reference.
    Regards,
    Florence

Maybe you are looking for

  • Apps on BlackBerry World for BlackBerry Z10

    Hi BlackBerry I'm very impressed with the new BlackBerry Z10 device with its new features, display resolution, keyboard typing and gestures, but I have a big issue with the Apps on BlackBerry world.  Still BlackBerry World is missing lots and lots of

  • How do I place music in web page

    I need to place background music in my web page possibly with a on and off button.

  • How to open jsx file with 'do javascript'?

    I am making a folder action to run an Illustrator script on a file.  I am struggling with how to make Illustrator run a jsx file from within applescript.  The default action seems to be to evaluate the string as javascript, not open the path as a jsx

  • Speed vs distance from cabinet

    Hi Hopefully a quick question. My cab is about to be enabled for fibre and I estimate my house is approx 300m away from the cabinet. I know there are many variables but as a very rough guide what do you guys think I will see in download speeds? (Gett

  • OHJ Default Window Size

    I have set specific dimensions for an Oracle Help window to be displayed and have amended the *.hs file of the wintype from "False" to "True". When a context sensitive topic is launched from a Help button the OHJ window is displayed the correct size.