Help..for updating buyer list at PIR

dear all,my use require me to do a upload program to update the buyer list at PIR..can anybody tell me how to do steps manually? wat is the transcaction code to update the buyer list at PIR? thanks.

Hi Joan,
I think answer written above is perfact in a given situation. If you need more information please post your requirement with some more details.
A Suggestion : Give points to correct answer, it motivates people to help others.
Cheers.
Darshan

Similar Messages

  • Help for updating N73 firmware!!!

    I just bought the N73 and my firmware is version 2. I've followed each rule. I've installed Nokia Software Updater, installed it. But when i try to search for update it says "No software update for your phone" how can this me my version is V2 my firmware is listed below:
    v2.0628.0.0.3
    27-07-2006
    RM-133
    Nokia N73 (C6.02)
    Question:
    Is my firmware new or Old?
    How can i upgrade to version 3
    My phone is made in finland which type of firmware i have to downoad?
    That's all
    your help will be greatly appreciated.
    thank you in advance

    22-Nov-2006
    02:25 AM
    bryan1988 wrote:
    I just bought the N73 and my firmware is version 2. I've followed each rule. I've installed Nokia Software Updater, installed it. But when i try to search for update it says "No software update for your phone" how can this me my version is V2 my firmware is listed below:
    v2.0628.0.0.3
    27-07-2006
    RM-133
    Nokia N73 (C6.02)
    Question:
    Is my firmware new or Old?
    How can i upgrade to version 3
    My phone is made in finland which type of firmware i have to downoad?
    That's all
    your help will be greatly appreciated.
    thank you in advance
    If you bought your phone with this firmware version, you're in luck, 'cause it's newer than the firmware for most shipped phones of this type. Unfortunately, because of your phone being a CV (Country Version), there's still no update available through NSU. I'm not sure whether there IS an update available via the Nokia Service Centres; I have heard about people having obtained firmware newer than this via the Service Centres, but I'm not sure. Anyhow, your firmware version is NOT the newest available, but you'll strike lucky only when you visit an NSC at the time... Please be aware that Nokia does frequently release new firmware versions through NSU as well, so you might want to wait for this to happen for your variant.
    Where did you BUY your phone (which country)? As things stand, the only way for you to upgrade now is to visit an NSC.
    V3.0704.1.0.1
    19-01-2007
    RM-133 Nokia N73(57.01) Product Code:0539338

  • Help for Update!!!!

    Hi all,
    I have a web application built using JSP and Tomcat. I am storing some lines of text entered by the user to a text file. Now have an interface where all those files are listed.
    Now what i want to do is i want to click those file name and this would open in another Window as a HTML textarea where there will be buttons for update. So if the user want to update those lines, they can just change those lines and click update button and those lines will be updated in the file directly.
    Can anyone please help me how can i do that.

    Anyone please look at this problem.

  • Very urgent help - for update field1 nowait across databaselink

    Hi,
    We have a form that uses select for update field1 nowait for a table that is accessed across a database link. When we try to do this the form errors out giving frm-92101 error. If I comment out the for update statement then it works fine. I know it the for update that is causing the problem but I'm not sure how to fix it. Can someone help me please. Very urgent, we are in the middle of upgrade and we found this issue while testing the forms.
    Any ideas or suggestions ?
    I'm using 10g App.Server and 10g database.
    Please help.
    Thanks in advance.

    under which trigger you ran that update ?

  • Search help for general task list

    Hi,
    I have problem when searching for general task list via classification (in service order, extras>task list selection>direct entry). When I doubleclick a task list, group counter is not copied back in first selection screen; only group has copied. How can I solve this problem?
    Regards,
    Robert

    hi Ashok,
    I've checked classification data for general task list, it's ok. but, I still don't have group counter copied. In other tabs of search help is everything ok.
    - Robert

  • Help for update codec AVCHD

    premiere elements 9 don't open file AVCHD, where i find the codecAVCHD in adobe site, for update?

    fabrizio italy
    What computer operating system is your Premiere Element 9 running on? And, are you running the 9.0.1 version of Premiere Elements 9?
    What are the properties of your source media?
    Video Compression
    Audio Compression
    Frame Size
    Frame Rate
    Interlaced or Progressive
    File Extension
    Pixel Aspect Ratio
    There are video/audio readout programs that we can go to for that information if you do not know. But a quick way, may be to give the brand/model/and settings for the camera that recorded that AVCHD video.
    The usual questions:
    1. Do you have the latest version of QuickTime installed on your computer with Premiere Elements 9.0/9.0.1?
    2. Are you running the program Run As Administrator and from User Account with Administrative Privileges?
    The only AVCHD that I am aware of that cannot be imported into Premiere Elements (any version) is AVCHD.avi. Lots more questions and answers. So your reply with more details will help us to help you.
    Looking forward to your follow up.
    Thank you.
    ATR

  • Need help for Update and cancel SalesOrder

    Hi All,
    I  written java code for create sales order based on salesquotation,now i want to update and cancel sales order ,i need help to update and cancel salesorder.
    can give any related links for update and cancel salesorder.
    Thanks and Regards,
    Srinivas

    Hi srinivas.L
    It is simple, here is some sample code. You must use getbykey to get the document. Then once you got it you can make whatever changes you need. Then update it. where i have oOrder.Update() you can have oOrder.cancel
    Dim oOrder As SAPbobsCOM.Documents
            oOrder = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
            If oOrder.GetByKey(530) Then
                oOrder.Lines.SetCurrentLine(1)
                oOrder.Lines.WarehouseCode = "01"
                If oOrder.Update() <> 0 Then
                    MsgBox(oCompany.GetLastErrorDescription)
                End If
            Else
                MsgBox("Nothing found")
            End If
    Hope this helps

  • Best practice for updating a list that is data bound

    Hi All,
    I have a List component and the data is coming in from a bindable ArrayCollection. When I make changes to the data in the bindable ArrayCollection, the change is not being reflected in the list. I notice that if I resize the browser the component redraws I suppose and then the list updates. But how can I show the update when I change the data in the bindable ArrayCollection instantly?
    Thanks,
    Ryan

    ok thanks for that, I have it sorted out now and found out where the problem was. I got a hint from your statement: "truly [Bindable]"..
    Yes, the List is using a bindable ArrayCollection but I'm also using a custom item renderer and this item renderer takes the data and sets the label fields which are not binded. I didnt know that I had to carry the "binding" all the way through. I'm overriding the "set data" function and setting the label fields similar to: myLabel.text = _data.nameHere inside that function. That's where the problem was.
    It works great now that I bind the data directly to the Label fields in my custom item renderer. I'm also using functions to parse certain pieces of data too. Is this taxing on the application? I notice that the List updates everytime I scroll, and resetting / calling all the functions in my Labels in the custom itemrender (for example: myDate.text = "{parseDate(_data.date)}")
    Thanks!

  • Ajax code help for conditional select list.

    Hi,
    I am using AJAX code for the first time, I dont have knowledge in java, I just grabbed the code from this forum and trying to manipulate to my requirement.
    My Requirement is I have two select lists, 1) host_name and 2) database_name.
    As soon as I pick/choose the value in host_name select list, I need to populate only those databases on that particular host. I dont want to submit the page for this action.
    Here is the code, I appreciate if some one can help.
    On demand Application Process code:
    declare
    l_counter number;
    l_o_name varchar2(2000);
    begin
    owa_util.mime_header('text/xml', FALSE );
    htp.p('Cache-Control: no-cache');
    htp.p('Pragma: no-cache');
    owa_util.http_header_close;
    htp.prn('<select>');
    for rec in (select "ORA_DATABASES_VW"."DATABASE_NAME" as "DATABASE_NAME",
         "ORA_DATABASES_VW"."DB_ID" as "DB_ID"
    from "ORA_DATABASES_VW"
    where "ORA_DATABASES_VW"."HOST_NAME" = :TEMP_ITEM)
    loop
    htp.prn('<option value="' || rec.db_id || '">' || rec.database_name || '</option>');
    end loop;
    htp.prn('</select>');
    end;
    HTML Header on that page:
    =================
    <script language="JavaScript1.1" type="text/javascript">
    function get_List_XML (source_item,target_item){   
    var v_Target = html_GetElement(target_item);
    var v_Source = html_GetElement(source_item);
    var ajaxResult = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=POPULATE_LIST_XML',0);
    ajaxResult.add('TEMP_ITEM',source_item.value);
    var v_result_xml = ajaxResult.get('XML');
    if(v_result_xml && v_Target)
    var options_Contents = v_result_xml.getElementsByTagName("option");
    v_Count = options_Contents.length;
    v_Target.length = 0;
    for(var i=0;i<v_Count;i++)
    var v_opt_xml = v_result_xml.getElementsByTagName("option");
    appendToSelect(v_Target, v_opt_xml.getAttribute ('value'),v_opt_xml.firstChild.nodeValue)
    function appendToSelect(target_item, option_val, option_content) {  
    var v_Opt = document.createElement("option");
    v_Opt.option_value = option_val;
    if(document.all){
    target_item.options.add(v_Opt);
    v_Opt.innerText = option_content;
    }else{  
    v_Opt.appendChild(document.createTextNode(option_content));
    target_item.appendChild(v_Opt);
    </script>
    Form element attribute in the host_name column. P935_INSTANCE_DB_NAME is my page item for database_name.
    onchange="get_List_XML (this,'P935_INSTANCE_DB_NAME')"

    Here is the code, Hope I had put it correctly now.
    This is fixed now. Thanks a lot for helping out this. I have two questions.
    1) I am seeing very slowness when selecting the select list. Will these java code require much resource?
    2) I need to put this logic in many screens for many columns. So having these many application process and application items and java code, will the application performance get a hit? I know that application process are on-demand and get called only when required.
    declare
    l_counter number;
    l_o_name varchar2(2000);
    begin
    owa_util.mime_header('text/xml', FALSE );
    htp.p('Cache-Control: no-cache');
    htp.p('Pragma: no-cache');
    owa_util.http_header_close;
    htp.prn('<select>');
    for rec in (select "ORA_DATABASES_VW"."DATABASE_NAME" as "DATABASE_NAME",
    "ORA_DATABASES_VW"."DB_ID" as "DB_ID"
    from "ORA_DATABASES_VW"
    where "ORA_DATABASES_VW"."HOST_NAME" = :TEMP_ITEM)
    loop
    htp.prn('<option value="' || rec.db_id || '">' || rec.database_name || '</option>');
    end loop;
    htp.prn('</select>');
    end;
    HTML Header on that page:
    =================
    <script language="JavaScript1.1" type="text/javascript">
    function get_List_XML (source_item,target_item){
    var v_Target = html_GetElement(target_item);
    var v_Source = html_GetElement(source_item);
    var ajaxResult = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=POPULATE_LIST_XML',0);
    ajaxResult.add('TEMP_ITEM',source_item.value);
    var v_result_xml = ajaxResult.get('XML');
    if(v_result_xml && v_Target)
    var options_Contents = v_result_xml.getElementsByTagName("option");
    v_Count = options_Contents.length;
    v_Target.length = 0;
    for(var i=0;i<v_Count;i++)
    var v_opt_xml = v_result_xml.getElementsByTagName("option");
    appendToSelect(v_Target, v_opt_xml.getAttribute ('value'),v_opt_xml.firstChild.nodeValue)
    function appendToSelect(target_item, option_val, option_content) {
    var v_Opt = document.createElement("option");
    v_Opt.option_value = option_val;
    if(document.all){
    target_item.options.add(v_Opt);
    v_Opt.innerText = option_content;
    }else{
    v_Opt.appendChild(document.createTextNode(option_content));
    target_item.appendChild(v_Opt);
    </script>
    Form element attribute in the host_name column. P935_INSTANCE_DB_NAME is my page item for database_name.
    onchange="get_List_XML (this,'P935_INSTANCE_DB_NAME')"
    }

  • AS Help For Top 5 List

    I am working on a project that is a web tool that guides
    users to appropriate links, based on their selections and criteria.
    I would like for the first frame of this Flash movie to be a "Top
    5" list of the links that the tool guided users to. Essentially,
    everytime a user uses the tool and clicks on the link provided,
    that link would get a point. The "Top 5" list would display, in
    order, the links that have the most points.
    I know how to do this using PHP and MySQL, but I'm a little
    hazy doing it with AS. I don't need the script written out for me
    (but feel free to, if you feel so inclined), but rather a few tips
    on what I should search for in the help files. What functions or
    properties would a "Top 5 List" like this have to use? I can use
    either a MySQL database or flat file (like a txt file) to store the
    "point" count, as security is not an issue with this project.
    Any help, guidance, or simple hellos are much appreciated.
    Thanks!

    if you still are shady where i wrote "whatever u want sent"
    make that fill a dynamic text box on the button your clicking so
    that whenever you load the database it changs two things.
    the dynamic text box to display to the user, and the
    getURL("") so u know what to click
    I have thoroughly confused you i bet.
    lemme back track.
    make a table in a database that has 2 columns, integer and
    varchar
    the integer is the points, and the varchar is the URL of the
    link
    in flash have a set of 5 buttons each with a dynamic text box
    in them.
    in the AS have 5 variables that set the dynamic text boxes
    AND set the getURL("");
    in php use a for loop to echo each of the top 5 urls with a
    differnt "&whatever". so i hope you know how to do that like
    &var . $i so that it displays this:
    &url1=http://www.url1.com
    &url2=http://www.url1.com
    &url3=http://www.url1.com
    &url4=http://www.url1.com
    &url5=http://www.url1.com
    in flash name the buttons button1_btn, button2_btn..etc.
    also in each button have the variable name of the dynamic
    text box be url1 url2 url 3 ect.
    this.loadVariables("url of php file","POST");
    button1_btn.onRelease = function() {
    button1._btn.getURL(url1);
    button2_btn.onRelease = function() {
    button2._btn.getURL(url2);
    button3_btn.onRelease = function() {
    button3._btn.getURL(url3);
    if you have trouble getting the getURLs to work, you need to
    wait for the data to be loaded, so look in previous posts iv
    writtent to other people b4 how to do that.

  • Please help for update

    Hello , 
    i tried to update my Mobile Nokia . the update is available but can not complate and come this message
     CONFIGURATION ERROR
    Nokia Softwear updater has detected a configuration error for more help click here 
    and if i want to click no help ...  look at this photo please  
    (Nokia 3110C   v 7.01 )  
    i make the fire off but it come the same 
    Please help 
     thank you
    Solved!
    Go to Solution.

    richfolkes wrote:
    I have tried again, and failed again. Uninstalled, restarted, reinstalled.  Fat lot of good that did.
    Firewall or no firewall, connected to my router or directly connected to the modem.  It is totally diferenceless.  There is nary a single port that is open.
    I cannot for the absolute, uttermost life of me get NSU to work, period!  There is no way on the planet I can resolve this configuration error, 'sno use!  The only thing left to do is accept this for the fact of life it is.
    I am totally sorry for having the sheer temerity, nerve and gall to be bothering you about this.
    As a last resort richfolkes, make sure you have a look at the Pool of Knowledge article regarding this subject!
    Problems with USB connection or PC Suite
    Maybe this´ll help you!
    By clicking the "Kudos!" or the "Solution?" button on the right you can say "Thank You" and you´ll show the author and others that the post is useful.
    The day we stop improving is the day we stop being good.

  • Help for Updating Itunes

    Hello Everyone,
    Please please please dont say YES ... i tried to update itunes to the latestest version last Saturday, it downloaded to the prompt screen where is says "RUN" software, UNFORTUNATELY my 16 year old wanted to use MSN and crashed the PC
    Now everytime i try to double click itunes on the desk top it wont open and says something like "cannot open, not all components installed"
    Is there anyway i can reinstall without loosing all her library??? if so there will be floods of tears!!!! it took me/her months to build up her library!!!
    Any help would be very gratefully recieved
    All the best and Smiles (i hope)
    Julian

    Hello,
    Just to say i solved my problem with songs in library not playing and the inability to import new songs from cd to itunes
    i read somewhere in these forums about installing the standalone version of quicktime, which i did and hey presto the itunes software works perfectly again.
    Thanks ans smiles
    Julian

  • I need help for updating my ipod touch 1g to 3.1.1

    I can't update my ipod touch 1g to 3.1.1. I am using MAC lion latest version and the latest version of itunes. Also, I didn't install any security programs. Every time I try to download the update files an error show saying an error occurred 8288.

    I would search the forum using the Communities search in the upper right of this page.  Search for:
    8288
    I recall that yu have to contact iTunes.
    Apple - Support - iTunes Store - Contact Us

  • Help for updating mobile

    plz give me help

    No reference to what device you are using here, but either via Nokia Suite upon PC or SW update upon device itself if not an entry level phone.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Help for update query

    Hi, How I can split the column of code_full_desc and update in code1,code2 and code3 column which are blank. It should be split after first hyphen.
    create table #desc (code_full_desc char(20), code1 char(4),code2 char(4), code3 char(6))
    insert into #desc values ('CCCCA_AAAA_99_ECTRA','','','')
    insert into #desc values ('DDDDA_BBBB_88_TRACT','','','')
    ---Results should be
    code_full_desc                  code1   code2   code3
    CCCCA_AAAA_99_ECTRA     AAAA   99        ECTRA
    DDDDA_BBBB_88_TRACT      BBBB    88       TRACT

    create table #desc (code_full_desc char(20), code1 char(4),code2 char(4), code3 char(6))
    insert into #desc values ('CCCCA_AAAA_99_ECTRA','','','')
    insert into #desc values ('DDDDA_BBBB_88_TRACT','','','')
    select * from #desc
    ;with mycte as
    SELECT row_number() Over(Partition by code_full_desc Order by code_full_desc) rn, code_full_desc, S.a.value('(/H/r)[4]', 'VARCHAR(100)') AS splitVal4
    , S.a.value('(/H/r)[3]', 'VARCHAR(100)') AS splitVal3
    , S.a.value('(/H/r)[2]', 'VARCHAR(100)') AS splitVal2
    , S.a.value('(/H/r)[1]', 'VARCHAR(100)') AS splitVal1
    ,code1,code2,code3
    FROM
    SELECT *,CAST (N'<H><r>' + REPLACE(code_full_desc, '_', '</r><r>') + '</r></H>' AS XML) AS [vals]
    FROM #desc) d
    CROSS APPLY d.[vals].nodes('/H/r') S(a)
    Update mycte
    set
    code1=splitVal2,
    code2=splitVal3,
    code3=splitVal4
    WHERE rn=1
    select * from #desc
    drop table #desc

Maybe you are looking for

  • Entries not in table EBAN

    Hello friends, I have a unusual scenario . I am using a SELECT statement in a function module it gets backs 3 records for the LIFNR and EKORG . When I look into the table and use the same selection criteria it does not return any values . How can thi

  • HT4623 Today i did the latest IOS update now my phone wont turn on

    Today i did the latest IOS update on my Iphone, and now i cant turn it on and itunes no longer recognises my phone. I have uninstalled itunes and reinstalled. But not still no luck, has any one else had any problems???

  • Using wpl files on line--Not

    I have some music I put together for a  party using different playlists.  I have made a webpage for navagation. I have the songs linked seperately but I also have several sets developed with seperate wpl files.  When I open the html page locally it w

  • I want JDBC driver for Sybase database...

    Hi All: Can any one help me with JDBC driver for Sybase database ? I have surfed the net, but not able to find a Sybase driver that works correctly. Also, can you please let me know if anything special needs to be done in case of Sybase database conn

  • USR_MISSING_PRIVILEGE

    Hi JDIans, Am getting following error while deleting DCs from DTR workspace. Can anyone guide me what role is essential to delete DCs? Activation Failed: CBS Server Error: The user does not have the authorization for the requested operation (USR_MISS