Reg :Pls reply...seqnr

Hi,
It is said that seqnr is used to differentiate the records having same key and with time constraint 3.
What is meant by key here ? is it refers to the pakey structure?
Pls reply me...It is urgent...
Thanks in advance,
Sowmya.

this field is used to identify the latest record for the infotypes which can have overlapping records at a time.(TC - 3)
like for the IT 0001 u can find out the lates record via begda and endda but for the overlap allowed infotype like IT0022 u need this SEQNR field too as a key field along with begda and endda.
Yes here Key means PAKEy having folowing fields -
PERNR
SUBTY
OBJPS
SPRPS
ENDDA
BEGDA
SEQNR
amit

Similar Messages

  • Calling a WDA on a field's F4 help.. pls reply

    Hi friends,
    I have a WDA1, with a table of item list. coloumns --  item no:  product no: status:
    I need to give a F4 input help for product no: .. it should call a other WDA2(this is for product search. I already did this).
    so once product F4 button is hit, it shoudl call my WDA2 as a popup.... and there the product search list table, if i click one record and hit chooose button.. that product selected in WDA2, should
    transfer to my WDA1's product no coloumn?
    how to call a wda on F4 input help?  how to pass values back to my field...?
    also before the product comes to my WDA1, i need some validations to figure out the status(coloumn 3)...?
    kindly pls.. check this one.. if someone reply me it will be thankful..
    thanks in advance,
    Niraja

    Hi,
    Get yourself familiar with the concept of "Freely Programmed Value Help".
    http://help.sap.com/saphelp_nw70/helpdata/EN/47/9f724642314aabe10000000a42189b/frameset.htm
    And then take a look to the demo value help component that you can find in the system. I cannot now remember the name of this demo component, but you should find it by looking components using component interface IWD_VALUE_HELP (or searching components in SE80 with "WDvaluehelp" or something like that). You should get the idea quite easilly with this demo component provided by SAP.
    Regards,
    Karri
    Edited by: Karri Kemppi on Nov 13, 2008 9:41 PM

  • I plugged my iPod 5th gen into a picaxe socket thinking it was an iPod connection socket and now my iPod wont turn on even if i try charging it. Pls reply asap. What do i need to do?

    Pls help as soon as you can.

    Perhaps something here will help:
    http://support.apple.com/kb/TS2771
    If not, then most likely you have damaged the iPod and will need to take or send it to Apple and pay their out-of-warranty replacement price.
    Regards.

  • Hey everyone..i have attached my iphone 4 to lappy after a long time..itunes syncd all contacts now contacts are no longer in my phone.how to get them back in my ph.pls reply

    hey everyone..i have attached my iphone 4 to lappy after a long time..itunes syncd all contacts now contacts are no longer in my phone.how to get them back in my ph.pls reply

    Hi bluegrandpanash,
    Thanks for visiting Apple Support Communities.
    If you backed up your iPhone to iCloud before updating the software, first try the steps under "Restore from an iCloud backup" in this article to recover your data:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/HT1766
    Best Regards,
    Jeremy

  • Pls reply urgent

    Hi all,
    I am using a function mod for mail alert. The user wants cretain names as BOLD & Colors in the text.
    Is there any function mod which sends the mail with BOLD, COLORS & any other options?
    Pls urgent.
    Thanks in advance.
    Vijay

    Hi Nisha,
    If I understood you right, try to check the values for the 0ForwardAgent in ODS in both levels (ODS1 and ODS2) if you have the correct data in them for this object, you can try scheduling the full update infopackage with selections for 0FORWARDAGENT and also for the dates you have missed with 'repair full request' from the infopackage..from level2 ODS in your case..
    Hope this helps..
    Best Regards,
    DMK
    *Assign points if it serves your purpose..

  • MySAP Doubt! Pls reply !!!

    Hi!
        I want to in mySAP SCM mySAP CRM etc... r all different servers with individual database.
      Looking for your reply.
    POINTS ASSURED.
    Thanks
    Rahul.

    <a href="http://help.sap.com/content/documentation/sbs/docu_sbs_crm.htm">SCM</a> & <a href="http://help.sap.com/content/documentation/sbs/docu_sbs_crm.htm">CRM</a> will be on two different systems.
    ~Suresh

  • Reg: PLS-00418: array bind type must match PL/SQL table row type error

    I am trying to access a table of records through JDBC OracleCallableStatement. I am able to do it fine for all mappings except for the ones below
    TYPE CAT_CD_TYPE IS TABLE OF A.B %TYPE INDEX BY BINARY_INTEGER;
    TYPE ORG_CD_TYPE IS TABLE OF C.D %TYPE INDEX BY BINARY_INTEGER;
    Column B is CHAR(1) and Column D is CHAR(2). I am trying to register the out parameters of Oraclecallablestatement as
    cstmt.registerIndexTableOutParameter(2, 2000, OracleTypes.CHAR, 0);
    cstmt.registerIndexTableOutParameter(3, 2000, OracleTypes.CHAR, 0);
    All the other mappings work fine. These two fail with the error
    SQLException in invokeDBPackage() : ORA-06550: line 1, column 32:
    PLS-00418: array bind type must match PL/SQL table row type
    ORA-06550: line 1, column 35:
    PLS-00418: array bind type must match PL/SQL table row type
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    I tried other OracleTypes mappings too but no luck so far.
    Any advice on this would be greatly appreciated.

    Hi,
    I'm not sure it's reasonable to expect someone to sift through that much stuff.
    Which parameter is it having a problem with?
    Can you modify the following to reproduce the behavior?
    Thanks
    Greg
    create package mypack5 as
    TYPE v2array is table of emp.ename%type index by BINARY_INTEGER;
    PROCEDURE test_it(thearray IN v2array, numrecs out number);
    END;
    CREATE or replace PACKAGE BODY MYPACK5 AS
    PROCEDURE test_it(thearray IN v2array, numrecs out number)
    IS
    begin
    numrecs := thearray.count;
    END;
    END;
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    public class indexby
    public static void Main()
    OracleConnection con = new OracleConnection("data source=orcl;user id=scott;password=tiger;");
    con.Open();
    OracleCommand cmd = new OracleCommand("mypack5.test_it", con);
    cmd.CommandType = CommandType.StoredProcedure;
    OracleParameter Param1 = cmd.Parameters.Add("param1", OracleDbType.Varchar2);
    Param1.Direction = ParameterDirection.Input;
    Param1.CollectionType = OracleCollectionType.PLSQLAssociativeArray;
    Param1.Size = 3;
    string[] vals = { "foo", "bar", "baz" };
    Param1.Value = vals;
    OracleParameter Param2 = cmd.Parameters.Add("param2", OracleDbType.Int32, DBNull.Value, ParameterDirection.Output);
    cmd.ExecuteNonQuery();
    Console.WriteLine("{0} records passed in", Param2.Value);
    con.Close();
    }

  • HT3702 I want to know how I can dispute a purchased that I was charged twice. I only purchased one zynga. Pls reply. Ty

    I purchased only one zynga but I got charged for two. I'm disputing one charged of the zynga. Pls remove it. This is the second time that happen to me. Ty

    Welcome to the Apple community.
    Select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History.

  • Pls reply to this thread!!!

    Requirement on Session TimeOut
    Thanks,
    Sushma.

    Please dont use generic sentences for thread Subjects.
    Please update the relevant thread with your query, someone will reply.
    Thanks
    Tapash

  • Windows media player plugin is not working in firefox 4.if any one know what to do pls reply me

    MY FRIEND SUGGESTED THIS TO ME
    I HAVE TRIED THIS
    BUT ITS WASTE
    I CANT EVEN FIND ANYTHING AS
    WINDOWS MEDIA PLAYER
    I have had the same problem since I installed Firefox 4.0.
    Thank you for letting us know that The RealPlayer plugin conflict, was the source of this problem.
    Another way to fix this (for good) is doing the following:
    1) Click on "Tools">Options"
    2) Click on the "Applications" tab
    3) Search in the "Content Type" column, all the applications that start with the words "Windows Media." Click on the content that is listed to the right of each application's name and choose "Use Windows Media Player (default)."
    By doing this, Firefox will avoid using the Windows Media Player plugin and will open the corresponding application directly with Windows Media Player.
    I just did this and is working perfectly. Try it and let me know how it works for you.

    I just saw this posted to the mozilla.support.firefox newsgroup in the topic,<br>
    [http://groups.google.com/group/mozilla.support.firefox/browse_thread/thread/f381fb349c4d109d/69bef0011240e600?hl=en&ie=UTF-8&oe=utf-8 Windows Media Player will not install in Firefox 4] <br>
    ''Just for the record, the extension that conflicted with Windows Media Player is named: Real Player Browser Record Plug-In 14.0.2''
    <br>..... so try [[Troubleshooting extensions and themes]] to see if a Firefox extension is conflicting with the WMP Firefox plugin.

  • ALL VZW CUSTOMERS I DESPERATELY NEED YOUR HELP!!!! PLS REPLY!

    Hello ALL customers and
    consumers of Verizon Wireless service and their products. On one hand I have
    heard bad things about Verizon adding things to your bill that shouldn't be
    there, bad reception in areas where reception should be smooth sailing, and just
    negative in general. On the other hand I have had issues that one or two phone
    calls resolve the issue and things are going fine again. For me I have had a
    very good experience with Verizon Wireless over the 5 or 6+ years I have been a
    customer of theirs. I enjoyed speaking with the representatives about my
    problem and they tried their best to help me solve the issue. This past time
    really left a sour taste in my mouth about how Verizon does business. I have
    lived in the same house for over 20 years and have ordered things from QVC, to
    facial creams and makeup to gifts for other people, all sent to the house. It
    has been my experience that more expensive items were sent thru FEDEX or UPS
    and not the USPS. I was given no other alternatives to getting my phone
    replaced *thru FEDEX or UPS to make sure they get a signature of the person
    they hand my $550.00 cellular phone and kit to*. Instead they put my order thru
    the USPS for some reason* again I have had stuff sent from Verizon to here with
    no issues until it was sent thru the post office where they sat my almost 600
    dollar phone on the porch, in plain view of anyone driving by.
     This was done in very poor taste and I don’t believe
    I should have to pay for an item I have no control over sending back when I did
    not receive it. First of all I DON’T know what was in the package *for all I know it could have been crackers and pudding? I never saw or touched the packageI didn't’t
    have it to open, it could have had crackers in the box for all I know*! Second
    I don’t know that the package was sat on the front porch either. Thirdly I was
    told by a young man that he spoke to his supervisor and they would take the fee
    for the phone off my account but still look into it, but it wouldn't be my
    problem anymore and he could go ahead and 
    send me out a new phone. This time by FEDEX and YES I got it and was
    able to send the defective phone back to Verizon. So we will see what happens
    next since they are saying I am being charged for this phone I did not get and
    was offered NO insurance on the delivery of the phone. Anything over $50.00 I
    get some type of insurance if offered on it, (who made the horrible decision to
    send such an expensive device thru the mail man??) In the EVENT that something
    goes wrong.
     In the 20 years I have lived here I have had
    no other issues with getting something from manufacturers to my home. As I said
    earlier I have to say I have been a LOYAL customer consistently for about 5 to
    8 years. GIVE OR TAKE A YEAR. . . Does this make sense to anyone, because I can clarify
    any part of this!  SO anyhow I said I
    would keep this short and sweet so you could respond and let me know what you
    think about things. Unfortunately that didn't’t happen because I needed to get
    all the information IN so you that are reading it could say what you think
    about it. [personal detail removed]. I figure that any smart phone is more like a
    computer so It will have glitches in it somehow so I have stayed with the
    Samsung Charge even though it has some glitches in it, but I will say a
    phenomenal camera on front and back. As well as some fun picture software with
    it. I just really shouldn't’t have to pay for this phone they are saying was sent
    to me that no one in my small family ever saw and I am told by the VZW customer
    service people that it’s ESN hasn’t been activated *which I am guessing how u
    see if its been turned on or not*. I don’t understand why someone would steal a
    phone with GPS sensors and technology in it. I will attempt to call VZW today
    sometime when they open but I don’t now that I will get much fruit from my
    labor of talking to someone. Occasionally a nice person will come on and
    every time I tell the story to a representative and they are always floored that
    someone would send a device thru the postal service. So I hope for the best,
    Verizon has been go to myself and my family *our four lines* for a long time.
    Tell me what you think about this issue people of the community. And any VZW
    employees that are on reading this as well can you please get this to the right
    person? I don’t deserve to pay for any of this AT ALL! Travis~

    verizon changed their shipping policy sometime eariler this year. free shipments for warranty replacements are free, if you want fedex its like 7 bucks, over night like 17.  Are you sure you where not offered a choice?
    Verizon is at fault for your postal carriers mistake or the willing theft by some unknown person??
    The reason someone would steal a phone like this is fairly simple, its pretty much an ipod at this point. you can play games on wifi and listen to music, watch movies on an sd card.
    Sign up for TEC for 6.99 a month and not only do you get the insurance and warranty on device past 1 year you get free fedex over night shipping.

  • Can I use any USB adapter/wall charger for my Ipod Touch 5?pls reply...

    I have a USB Adapter/wall charger that I use for my cellphone but I don't know if I can use it for my ipod touch 5.... how will I know if it is compatible with my ipod touch?

    Yes, any USB wall charger will work with an iPod.

  • Pls reply........

    While I am creating a customer in ship to party account group you have shipping and billing partner function tab pages, client wants to shift all important fields in billing like payment terms, incoterms , and tax classification into shipping tab page. He wants only shipping partner function only, how do you customize?

    Hi Vinayak,
    I don't understand the reason behind this requirement. The fields like payment terms, incoterms are related to a bill-to-party and not to the ship-to-party. However, if you still insist on the requirement use the following path
    SPRO -> Financial Accounting -> Accounts Receivable and Accounts Payable -> Customer Accounts -> Master Data -> Preparation for Creating Customer Master Data  -> Define Account Groups with Screen Layout.
    Now, select your bill-to-party a/c group, click on the corresponding field status and select your group. Supress the field that you dont wish to see for the bill-to-party.
    Using the same path, select the ship-to-party a/c group and mark the field as mandatory or optional as per your need.
    This should solve your problem.Reward if so.
    Regards
    Pratheb Nadarajah

  • JOptionPane Problem, pls reply

    Hi, I am having a problem with JOptionPane that I have noticed other people have had but I could not find a solution. Here it is:
    When I use a Showconfirmdialog. It works fine in the develop. environment buts has a bug when I view it in a browser. About 20% of the time, it cuts off the last two letters and replaces them with ... If I stretch the box out the message displays as it should.
    Here is my code:
    java.awt.Frame f = (java.awt.Frame)((MainTabPage)getController().getMainTabPage()).getParentContainer();
              int n = JOptionPane.showConfirmDialog(f,"Changes have been made. Would you like to save?", "User Profile", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE);
              if (n == JOptionPane.YES_OPTION){
                   this.btnSave_ActionPerformed(actionEvent);
                   return;
    and it goes on for the no and cancel option as well.
    ANY help would be greatly app.
    Thanks

    the best way should be to "pack()" the dialog, but as you can't access thatdialog instance...
    I suggest you use html tags :
    simply change your String :
    "Changes have been made. Would you like to save?"
    by
    "<html>Changes have been made. <br>Would you like to save?</html>"the <br> tag indicates a lineBreak
    moreover, you could use the tagts to display some parts of the string as bold or itaic of in colours...
    vincent

  • Urgent pls - Replying the "Quick Select"

    Hi all,
    is there anybody knowing if it is possible and how to replicate the 'quick select' functionality???? I have tried to do it with:
    1. singleSelection Item (to know which is the row I have selected), but if I enable the PPR to trace the event the 'destination Url' is not considered.
    2. imageItem: same as above
    3. submitButton, but I cannot know which is the row I have selected.
    The problem is that in the "pageContext.setForwardUrl" I cannot insert the string "javascript:backHome();", where javascript:backHome(); is a js procedure I have written to close the current window and go back to the window calling it.
    Thanks in advance for your help,
    Rosanna.

    Hi Kumar....
    if statement should not be like ..
    if lv_keep_vgbel lt_vbrp-vgbel.
    Should be like this  if lv_keep_vgbel = lt_vbrp-vgbel.
    and try to use work area and table to select and loop the data...
    Have YOu checked whether da data in it_vbrp...
    there few error in way You are writing...
    And one more thing in the table LIKP the field BOLNR is 35 Char and VGBEL of VBRP is 10 char ...and your are equalling that to extract the data which will not happen even..
    So before select statement change VBRP-VGBEL as 35 char varible by using like this
    data : v_vgbel type likp-bolnr.
    loop at lt_vbrp.
    if lv_keep_vgbel lt_vbrp-vgbel. " Why did you right the statement like this
        if lv_keep_vgbel = lt_vbrp-vgbel.
            clear likp.
                call function 'CONVERSION_EXIT_ALPHA_INPUT'
                  exporting
                    input  = lt_vbrp-vgbel
                  importing
                    output = v_vgbel.
                  select single vbeln traid traty verur bolnr lfdat
                                                      from likp into
                                                     (likp-vbeln,likp-traid,likp-traty,likp-verur,likp-bolnr,likp-lfdat)
                                                      where bolnr = v-vgbel.
    regards,
    sg
    Edited by: Suneel Kumar Gopisetty on May 26, 2008 4:41 AM

Maybe you are looking for

  • How to get Quername while executing query in CMOD

    Hello, I have written some code for giving authorization to the users while excuting query, i need to find users with role YB_CRM_MN_ADMINISTRATOR which i can get through FM CRM_ROLES_OF_USER_GET. After that I need to find the query it is executing,

  • Unable to print PDF Files in Safari 5.1

    Hi, 1) Running Snow Leopard v10.6.8. Downloaded Safari v5.1. I now cannot print or save pdf files within Safari. I can view them okay, but the error message I get when trying to save a pdf file (which is a program document for a photo expo after it h

  • How to set printer settings

    I have created report for purchase register. i am taking print this on epson printer. i have created my own page size as below width is 40 cms and height is 30 cms. how can i assign above width and height for my printer.

  • Problems inserting huge ammount of lines in a table

    Dear all: I have a process that reads data from one table (table A), makes some calculations and writes the modified data into another table (table B). For each line on table A the process will write from 1 to 4 lines in table B. The calculation is V

  • OLAP Variable in InfoPackage / DTP

    Hi Experts, I created an ETL process in our Dev instance, and in my InfoPackage and DTP was able to use an OLAP variable when filtering on 0FISCPER (eg 0I_CUFYE or 0FYTCFP). When I tried it in Prod, the loads failed because it couldn't find these var