How to updated log into Concurrent Request

Hi All,
I am using FND_REQUEST.SUBMIT_REQUEST in Stored PL/SQL Procedure to fire Concurrent Request to Import records thru Interface.
The concurrent request is run successfully and import records also successfully.
Now incase, if any error occured, I want to update the log file at concurrent request level and can see the log using "View Log" in Concurrent Request Window.
Can anyone guide me how it is possible ?
regards & thanks in advance....
Sanjay Desai

Hi Srini,
Thanks for reply.
We have EBS Ver: 11.5.10.2 .
We are using seeded concurrent program (WIP Mass Load) to import data .
To import data, we are using following command line in PL/SQL Stored procedure.
     V_CONC_REQ_ID := FND_REQUEST.SUBMIT_REQUEST( 'WIP' ,'WICMLP','WIP Mass Load', SYSDATE, FALSE, 1, 0, 2 );
The data is imported successfully but we have found that the LOG file is updated with seeded codes and messages
( view LOG Navigation path : MENU > VIEW > REQUESTS > FIND REQUEST BUTTON > VIEW LOG )
but I want to update the LOG file with custom messages instead so that we can debug easily, incase of error occurred.
We have tried to update the LOG file with custom message using command : FND_FILE.PUT_LINE ( FND_FILE.LOG , < msg > ), but LOG file is not updated.
I hope you understand my problem. Can you guide me in the issue ?
regards
Sanjay

Similar Messages

  • Why do i have two game center accounts on one apple id and how do i log into the other one

    One day while i was bored i started up a game but all of my progress items and everything that i paid for was gone and it was the same in all of my other game center related apps. After a long chain of emails with the maker of the game he stopped being helpful but we figured out that i have two game center accounts but only one apple id. So how do i log into the account with all of my data?

    Get a separate Apple ID for one of the phones. Or turn OFF iCloud contacts synching on the one you do not want contacts to synch.
    Settings>>iCloud

  • How can I log into my itunes account to see if my contacts have been saved on my iphone?

    Before I purchase the Iphone 4  I want to be able to Transfer all my contacts, into the new phone.  How do I log into my itunes account and check and see if my contacts are there.... and then will a Sync with the new phone automatically add these contacts into the new phone?
    I have a itunes account but have only accessed while the iphone 3G is plugged in to the laptop.... How do I access the itunes site without the phone plugged into the laptop so that I can CHECK to see if my songs and contacts are really there?
    Todaymatters

    There are no Contacts in iTunes.
    iTunes syncs the Contacts from Outlook.
    and then will a Sync with the new phone automatically add these contacts into the new phone?
    Yes.
    How do I access the itunes site without the phone plugged into the laptop so that I can CHECK to see if my songs and contacts are really there?
    You don't access the iTunes store to see your music (or anything else)..
    You launch iTunes and your music is there, stored on yoru computer.
    You access the iTunes store to purchase items, which are then downloaded to your computer.

  • How can i log into my account if....

    So I just got my own account yesterday and was wondering how could I log into my account. I did the process in store, I'm getting a new phone and I don't have a number yet and I didn't receive any information about my account. Does that mean I don't have one or do I need to contact someone to get it or do I have to wait until the phone come to set up an account ?

    Account access is important in order to properly manage things. We can help you here. Is this for My Verizon? If it is, you will need a cellular number in order to get through the account creation. If it's not My Verizon, please tell us what it is so that we can help. Thank you.
    BobbyN_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • How do I log into my iCloud account. I have iCloud installed on my iPad but can not figure out how to log into my iCloud account to restore a message

    How do I log into my iCloud account. I have iCloud installed on my iPad but can not figure out how to log into my iCloud account to restore a message

    Settings / iCloud on the iOS device to view your settings and options.
    Storage & Backup / iCloud Backup is how you restore the device with your last backup.

  • HT2731 how do i log into my itunes account

    how do i log into my itunes account

    How is asking for enough information so that anyone can answer the question "not helping"? Do you expect us to be psychic and just be able to intuit as to what Veronica meant? And Veronica posted almost a year ago and apparently didn't care enough to post back with details, so it's your reply that serves no useful purpose. Frowny face yourself.

  • How do i log into export pdf

    how do i log into export pdf?

    Hi gregb73859509,
    You can log in via either the web interface at https://cloud.acrobat.com or from within Adobe Reader, by clicking the blue Sign In link in the upper-right corner. In either case, use your Adobe ID and a password, and you should be all set!
    Please let us know if there's anything else we can help with!
    Best,
    Sara

  • How do i log into iCloud

    How do I log into iCloud and then look at all my photos uploaded?

    Welcome to the Apple Community.
    Log into iCloud at system preferences > iCloud and enable photostream. Go to iPhoto and enable photostream in the iPhoto preferences.

  • How to updated matrix into related table?

    hi, can anyone help me below coding how to updated matrix into related table?
    Thank you.
                For rowNum = 0 To oMatrix.RowCount
                    oRecordset.Fields.Item("Code").Value = oMatrix.Columns.Item("DSCode").Cells.Item(rowNum).Specific.Value
                    oRecordset.Fields.Item("Name").Value = oMatrix.Columns.Item("DSName").Cells.Item(rowNum).Specific.Value
                    oRecordset.Fields.Item("U_RPTC").Value = oMatrix.Columns.Item("DSReport").Cells.Item(rowNum).Specific.Value
                    oRecordset.Fields.Item("U_USRC").Value = oMatrix.Columns.Item("DSUser").Cells.Item(rowNum).Specific.Value
                    oRecordset.MoveNext()
                Next

    For Fast Matrix Loading you can user some thing like this.
            Dim Column As SAPbouiCOM.Column
            Dim Matrix As SAPbouiCOM.Matrix
            Dim Table As SAPbouiCOM.DataTable
            Table = oForm.DataSources.DataTables.Add("Documents")
            Table.Columns.Add("Code", SAPbouiCOM.BoFieldsType.ft_Integer)
            Table.Columns.Add("Name", SAPbouiCOM.BoFieldsType.ft_Integer)
            Table.Columns.Add("U_RPTC", SAPbouiCOM.BoFieldsType.ft_AlphaNumeric, 255)
            Table.Columns.Add("U_USRC", SAPbouiCOM.BoFieldsType.ft_AlphaNumeric, 255)
            Matrix = oForm.Items.Item("MatrixUID").Specific
            Column = Matrix.Columns.Item("Code")
            Column.DataBind.Bind("Documents", "Code")
            Column = Matrix.Columns.Item("Name")
            Column.DataBind.Bind("Documents", "Name")
            Column = Matrix.Columns.Item("U_RPTC")
            Column.DataBind.Bind("Documents", "U_RPTC")
            Column = Matrix.Columns.Item("U_USRC")
            Column.DataBind.Bind("Documents", "U_USRC")
            Table.ExecuteQuery(SQLQuery)
            Matrix.LoadFromDataSource() 'Load The Data to the Matrix
    To pull the data form the display back to the Table you can use this
    Matrix.FlushToDataSource()

  • How do I log into the App Store after my friend logged in to his from mine

    How do I log into the App Store after my friend logged in to his from mine?

    Go into settings > iTunes and App store.. your friends email will appear there.. tap and hold until it highlights gray.. then a box will come up  press sign out and then enter your user cardentials where your friends were.

  • MacBook Pro says my password is wrong but I haven't changed it and my apple I'd says its wrong on the MacBook but works fine on the ipad, how can I log into my mac? Pls help urgently

    My MacBook Pro says my password is wrong, but I haven't changed it, tried resetting password with apple I'd but MacBook says that's wrong too.  The apple I'd works on the ipad though.  How do I log into my mac?

    a virus/trojan/malware is not cross platform so they are 100% made for a device
    the day a virus/trojan/malware is discovered that works on any ios devices that are not jailbroken
    you will find it all over the news and all posts in this forum would be about that
    try login from the browser rather then the mail program and verify each account setting one by one to verify that they are correctly because an undocumented unwanted feature in the os of your phone could be the cause

  • How do you log into Facetime after already logging in?

    How do you log into Facetime for 2nd time? I have 2 iPad 2's and trying to get them to connect to same Wi-Fi and at times different Wi-Fi. However on the 2nd iPad i logged into Facetime using same itune account info, i have since setup 2nd itune account & can not figure out how to log in using a different account info.

    You log into and out of accounts in Settings/FaceTime.
    You can contact devices logged into the same Apple ID as long as they are configured with different email addresses.

  • Ive bought my ipod touch of my friend and its still go his email address on the apple id how do i log into my apple id on the ipod?

    ive bought my ipod touch of my friend and its still go his email address on the apple id how do i log into my apple id on the ipod?

    Go on settings, then go on store, then click on the apple ID, then iForget

  • How do I log into icloud after the last update?

    I thought I couldn't log into iCloud.com because the site was down (last week), but still cannot log on... just the general error saying cannot login, no real explanation given. Site sounds like it is working now, but I still cannot log in (but I can on my iPhone). I know I agreed to some update or another and problems were after that.. but I don't see anything online about that update. Any ideas of what I can do??
    I love my iCloud email, but looks like I will have to cancel it and go back to yahoo sigh.

    just the general error saying cannot login, no real explanation given
    Although your message isn't mentioned in the symptoms, let's try the following document with that one:
    Apple software on Windows: May see performance issues and blank iTunes Store

  • How do I log into a kid profile in Game Center on my Apple ID?

    Hi all,
    I have a couple of kids, a couple of iPads, and a couple of profiles in Game Center, all on my Apple ID.
    I know how to get them their own Apple IDs, but they are too young to have Apple IDs of their own, and they will be getting special underage Apple IDs at school in a year or two, so I do not want to get them Apple IDs of their own until then.
    They have their own Game Center profiles right now, on their original iPads (version 1) and iOS 5.1.
    Now, we have purchased a new iPad for one of them, with iOS 7.1, and I wish to connect the Game Center app to his profile.
    I cannot do that.
    Starting Game Center always requests an Apple ID and password. I enter mine, I get my Game Center profile.  I log out, I try to use their nicknames and my password, it does not recognize that as a valid pair and refuses to log me in. I try his nickname and his password, also no good. I try my own again, and I log in as me.
    How do I log my children into Game Center using their profiles and nicknames that are associated with my Apple ID?
    Thank you,
    Danny.

    I am having this same EXACT issue! I cannot seem to get my daughter into her GC account on anything else (including her new device)

Maybe you are looking for

  • Problem setting up email after Belle update

    Hi, I was having this problem that after Belle update I could not receive emails after set up. My email is with eircom.net and phone is with Vodafone Ireland. It is working afet I tried these settings. Set your own email address, user name and passwo

  • Confirming information in JTable without TAB?

    Hi all, I am using a JTable in my application, but I discovered you have to press 'TAB' or click on another row of the JTable to confirm all the data of the JTable.. Is there a way to solve this problem, so that all data are available without doing a

  • PDF and tables (10Dukes)

    Hi, I have big problem.I'm servlet that will be generating pdf document that contain large table ( with many colums and rows). It is important that the generated PDF will be printer friendly, with no data lost, and columns and rows not broken in the

  • How do you block e-mails?

    Recieving numerous e-mails (spam) with no content.  How do I increase security and block e-mails?

  • Firefox sync is duplicating bookmarks

    Firefox sync is duplicating bookmarks. Sync between two Win7 PCs. There is no noted solution to this.