Field Specific Sorting on Hexadecimal data

Hi,
Has anyone implemented a sorting of Hexadecimal structure data based on any order of key or non-key fields?
I have an internal table ITAB1, of structure of a table T1 (determined at run-time, no way of knowing the structure beforehand). I transfer valyes of ITAB1 to ITAB2 which is of Hexadecimal type of structure T1. Now, I use ITAB2 on list display.
How do I sort the entries of ITAB2 based on any field of T1, determined at run-time? Any ideas?
Any helpful answer will be greatly appreciated, points assured!
Regards,
Rekha

Hai,
If a sort criterion is not known until runtime, you can use SORT itab BY ... (name) ... to specify it dynamically as the contents of the field name . If name is blank at runtime, the sort criterion is ignored. If name contains an invalid component name, a runtime error occurs.
You can use offset and length specifications to further restrict sort criteria, regardless of whether they are specified statically or dynamically.
If itab is an internal table with a header line, you can also use a field symbol pointing to the header line of itab as a dynamic sort criterion. If the field symbol does not point to the header line of the internal table, a runtime error occurs.
Note
Performance
The runtime required to sort an internal table increases with the number of entries and the width of the sort key.
Sorting an internal table with 100 entries and the 50-byte wide default key would take about 1300 msn (standardized microseconds). A 30-byte wide sort key would need about 950 msn.
If one of the specified sort criteria is itself an internal table, the SORT may sometimes take longer.
Runtime errors
SORT_ITAB_FIELD_INVALID :A field symbol used as a dynamic sort criterion does not point to the header line of the internal table to be sorted.
SORT_TOO_MANY_FIELDS : More than 250 sort criteria.
Related APPEND ... SORTED BY
Variant 2
SORT.
Additions
1. ... DESCENDING (similar to variant 1)
2. ... ASCENDING (similar to variant 1)
3. ... BY f1 f2 ... fi
4. ... BY fg
Effect
Sorts the dataset generated with EXTRACT by the fields in the field group HEADER (see FIELD-GROUPS ).
Here, blank fields (i.e. fields not defined with EXTRACT ) are inserted before all non-blank fields, regardless of whether the sort sequence is in ascending or descending order.
Notes
The number of sort criteria is restricted to 50.
As with variant 1, any sequence of fields you specify for sorting purposes does not remain fixed. Any sequence of records which belongs to different field groups, but has the same HEADER field contents, is arbitrary.
Again like variant 1, sorting takes place in main memory if at all possible. If there is insufficient space there, ABAP/4 calls an external sort program. You can modify the directory used to create the temporary auxiliary file by modifying the SAP profile parameter DIR_SORTTMP .
As soon as a dataset has been processed with SORT or LOOP ... ENDLOOP , you cannot extract any more records with EXTRACT .
Addition 3
... BY f1 f2 ... fi
Effect
Can sort only by fields in the field group HEADER .
Otherwise, the effect is similar to variant 1.
Addition 4
... BY fg
Effect
Sorts by the fields in field group fg .
However, the only fields which can be sorted are those in the field group HEADER , i.e. the field group fg can consist only of fields from the field group HEADER (see INSERT ... INTO ).
Example
DATA: ONR(7), DATE TYPE D, POSITION(3) TYPE N,
CUSTOMER(16),
PNR(5) TYPE N, NAME(10), UNITS TYPE I,
ORDERS TYPE I.
FIELD-GROUPS: HEADER, ORDER, PRODUCT, DATE_FIRST.
INSERT ONR DATE POSITION INTO HEADER.
INSERT CUSTOMER INTO ORDER.
INSERT PNR NAME UNITS INTO PRODUCT.
INSERT DATE ONR POSITION INTO DATE_FIRST.
ONR = 'GF00012'. DATE = '19921224'.
POSITION = '000'. CUSTOMER = 'Good friend (2.)'.
EXTRACT ORDER.
ADD 1 TO POSITION.
PNR = '12345'. NAME = 'Screw'. UNITS = 100.
EXTRACT PRODUCT.
ADD 1 TO POSITION.
PNR = '23456'. NAME = 'Nail'. UNITS = 200.
EXTRACT PRODUCT.
ONR = 'MM00034'. DATE = '19920401'.
POSITION = '000'. CUSTOMER = 'Moneymaker'.
EXTRACT ORDER.
ADD 1 TO POSITION.
PNR = '23456'. NAME = 'Nail'. UNITS = 300.
EXTRACT PRODUCT.
ADD 1 TO POSITION.
PNR = '34567'. NAME = 'Hammer'. UNITS = 4.
EXTRACT PRODUCT.
ONR = 'GF00011'. DATE = '19921224'.
POSITION = '000'. CUSTOMER = 'Good friend (1.)'.
EXTRACT ORDER.
ADD 1 TO POSITION.
PNR = '34567'. NAME = 'Hammer'. UNITS = 5.
EXTRACT PRODUCT.
SORT BY DATE_FIRST.
LOOP.
AT ORDER.
WRITE: /, / DATE, ONR, POSITION,
CUSTOMER, 'ordered:'.
ENDAT.
AT PRODUCT.
WRITE: / DATE, ONR, POSITION,
PNR, NAME, UNITS.
ENDAT.
ENDLOOP.
This generates the following output:
01041992 MM00034 000 Moneymaker ordered:
01041992 MM00034 001 23456 Nail 300
01041992 MM00034 002 34567 Hammer 4
24121992 GF00011 000 Good friend (1.) ordered:
24121992 GF00011 001 34567 Hammer 5
24121992 GF00012 000 Good friend (2.) ordered:
24121992 GF00012 001 12345 Screw 100
24121992 GF00012 002 23456 Nail 200
Note
Performance
The runtime required to sort an internal table increases with the number of entries and the width of the sort key.
Note
Runtime errors
SORT_EXTRACT_TOO_MANY_FIELDS : More than 50 sort criteria
SORT_FIELD_NOT_IN_HEADER : Sort criterion not in field group HEADER
SORT_NO_HEADER : Field group HEADER not created
SORT_WITHIN_LOOP : SORT on extract dataset within LOOP on extract dataset
Thanks,
Swetha Singh

Similar Messages

  • In V_V2 the role of Sort Item by date of creation and Sort by delivery date of earliest schedule line for the Sales Orders when Material is out of Stock.

    Hi All,
    Good Morning,
    I am working on once Incident for Re-Scheduling Program V_V2 where the user has requested us to change the criteria for determining the priority of Sales Document based on Sort Item by date of creation. Currently they are using the Sort by delivery date of earliest schedule line in the Variant.
    I would like to know the role these both options play in the Re-Scheduling program V_V2. I would like to know the impact of both of them and the kind of testing I need to perform to study the behaviour of Sales Orders especially when the material is out of stock?
    Please explain with help of examples.
    Thanks
    Farhan.

    This is not that simple that an example would explain how this transaction works but I'll give you some examples.
    Material A has SO1 and SO2 of 10KG each, stock is 20KG so both quantities are confirmed at today. A stock recount determines a reduction to 5KG. This program would change confirmed quantity of SO1 to 5KG and SO2 to 0KG if:
    Creation date of SO1 is older then SO2 in strategy 1
    1st delivery date of SO1 is smaller then SO2 in strategy 2
    Material B has SO1 and SO2 with 10KG each but no quantity confirmed, stock is 0KG. A prodution adds 15KG to stock. The program would change confirmed quantities of SO1 to 10KG and SO2 to 5KG if:
    Creation date of SO1 is older then SO2 in strategy 1
    1st delivery date of SO1 is smaller then SO2 in strategy 2
    I'm assuming a specific configuration, there are many other scenarios possible.
    regards,
    Edgar

  • How can I sort pictures by date and than by time stamp ?

    The approx. 2.000 pictures was taken by two cameras.
    Both cameras intern date and time where adjusted before the for session.
    It seems that Aperture 3.3.1 can´t manage it, can it?
    In the browser there is only one common field for date and time.
    I shoot the picture with two Canon 5D Mark II and Mark-III in JPG and RAW mode.
    The file name only is totally confusing for sorting.
    Like IMG_0008, _MG_0022 for Mark-II
    and
    _L2A8410 for Mark-III.

    Hi,
    I am not sure, which sort order you want to achieve? If you sort by the date field, the images will be sorted chronologically, ascending or descending, according to date and time - isn't what what you want?
    Can it be that you have a time zone problem? Compare the dates on the images that should be sorted side by side.
    Unless you specify "Camera Time" and "Actual Time" on import, Aperture will assume that the camera time has been your current system time.
    Canon 5D Mark II and Mark-III
    And unfortunately, both your cameras are exactly the two cameras that I know, where the time zone correction in Aperture is buggy and does not have much effect. I cannot find the discussion again right now, but look for a thread by Frank Caggiano on time zone correction.
    Regards
    Léonie

  • Sort by Release Date option?

    I don't know why an option to sort by "release date" is absent from iTunes. It seems like an obvious way to layout/view music. There isn't even an option to enter the "Release Date"(only "Year") on music files.
    I use the pattern "Year/Month/Date - Album Name" with in the "Album Sort Order" field to help iTunes sort my Albums by release date. But, within the "Grid View", it doesn't seem to be possible to sort by "album"(which would use the "sort album" field) to see all the albums by release date.
    It just seems like such a basic thing to be added to such a music application.
    It seem like there are a lot of these "little" details which iTunes never seems to add. For example: the ability for iTunes to read and write multiple Genres(& subgenre) entries with in a MP3 IDtag.
    I just don't understand how the devs can neglect such options, which would be valuable for anyone who likes to keep there music properly labelled.
    I wish they would forget silly ideas like PING, and concentrate on trying to make iTunes a deep music browser and management tool, like it should be.
    That's the end of my rant.

    I was talking about "Grid View". I cannot sort my albums by release date within "Grid View".
    But yes, you are correct. Although, in my experience, the issue with using the "Release Date" field is that iTunes seems unable to read some dates correctly.
    For example; I have Bob Dylans album "Times They Are A Changin'", and if I enter the release date(using a 3rd party program because you can't edit the "ReleaseTime" field in iTunes), using the correct format, "1964-01-13" iTunes displays this as "Thu 01/01/70". I know this is the correct format because I can enter a newer date and it will display correctly.
    So it seems iTunes doesn't recognise anything before that date.

  • Date type-specific Customizing missing for date type ACTActPln

    Hi all.
    I'm using a Web Service obtained by copying the CRM 7.0 built-in WS APPTACTCRTRC.
    I'm using it to create Appointments using an Adobe Interactive Form.
    It goes everything fine (a Date is created in the system, with all the input data properly set) excepted the dates...
    The WS uses two TIMESTAMPS, TIMESTAMP_FROM for StartDateTime and TIMESTAMP_TO for EndDateTime, whereas the GUI transaction to create Dates accepts dates and times in separated fields.
    Going in Debug I can see that the execution ends with the following error, referred to the involved entity (CRM_APPOINTMENT):
    Date type-specific Customizing missing for date type ACTActPln
    CRM_APPOINTMENT uses date profile 0000000001 with three possible date types: ORDERACTUAL, ORDERPLANNED and ORDERPROPOSED and I cannot find anywhere date type ACTActPln (just to add it in customizing).
    Is anyone able to enlight me?
    Thank you in advance!
    Alessandro
    PS I've years of experience in Java programming but I'm quite new to the SAP world. Maybe the problem is not a problem at all, but it seems to me as such. Even if it has a trivial solution, please let me know. Thx!

    Hi,
    Well I was about to write that you should enter date in decimal format. but you already did that as mentioned in How to set a date in a Form where the bound date format is a decimal?
    In response to following from above thread (copied for others to understand my response)
    Hi all.
    I'm successfully using the LiveCycle Designer and I've managed to remotely create Appointments using a CRM Web Service (a mere copy of APPTACTCRTRC).
    The only problem I'm encountering is that I'm not able to set the dates/times (start and end of the appointment).
    Dragging each of the two fields from the WSDL based Data Connection I obtain a Decimal Field limited to 15 digits.
    How can I write a date and time in such a field?
    I've tried with a retroverse date as YYYYMMDDHHmmss (for example, 20100301124500) but it does not work
    (the appointment is indeed created, but with the start date and time fields filled with
    the current date/time and the end date and time fields filled with the current date and time plus 10 minutes).
    The retroverse date above is only 14 digit long, so, maybe, this is the problem.
    But, given the field definition, I'm not able to fill a blank space between the date and the time.
    I'm not able to put a dot either.
    What should I do?
    Any suggestions?
    Thank you in advance.
    Alessandro
    15 digit in UTC time format here is fraction of second so you should enter 201003011245000 (add one more zero).
    14th Oct 2010 16:00 should be written as 201010141600000, so just try it and and see if it works, I guess if you do not supply end time then by default it will be starttime + 10 min but this is just guess.
    Regards,
    Gourav

  • Restrict date field in vf01 to system date .

    hi gurus,
    my requirement is to restrict date field in vf01 to system date .
    i have changed the 011 routine in vtfa .
    do I need any extra effort
    debajyoti

    Hi debajyothi
    First of all which date field you want to restrict to systems date can you be more specific debajyothi
    But In VOV8 , there is a pricing  date field  , if you customize it as per your requirement , like if you keep it blank then it will be systems date , or billing date , delivery date etc this can be one input if it is related to pricing
    Even as you said in copy controls if you change the sub- routine then it will work
    Regards
    Srinath

  • Allocation field in sort key

    hi
    what is allocation field in sort key?plz explain me that allocation field?
    rgds
    naagesh

    Hi Nagesh,
    As You might be aware the Sort key helps in filling the assignment number field while posting to a GL a/c. If we choose 000 or allocation number which is nothing but assignment field itself , the assignment field will eb left blank for those GL accounts which ahs sort key 000.
    Allocation number is nothing but the assignment filed ZUONR itself.
    so when we give 000 sort key we are giving an option to the user to enter their choice of data in teh assignement field.
    Hope this is clear.(Pls assign points if its helpful)
    Thanks,
    vamsi

  • Use of COMnn/NUMnn fields in infotype 0032 (Internal Data)

    Hi,
    Please advise how to use the COMnn /NUMnn fields in infotype 0032 (Internal Data). Those fields are not available as screenfields in the screens of MP003200 and also therefore available for configuration in v_t588m. Those fields look suspiciosly as being mean to provide a subview of it0105 but again not sure how that should work?
    Thanks in advance for any input!
    Regards,
    Philipp

    Hi Philipp,
    The fileds you are referring to are not showing on my system either.
    Yet, we are only talking about dynpro 2000, aren't we ?
    If they are not present on the screen, there is no way to show them through customization.
    If you want to use them, one approach would be to create a custom-specific subscreen and add the standard field in it (I already did that in the past).
    There is a 2306 dynpro with a Q-structure that seems to use some of these fields.
    Best regards,
    Guillaume

  • Specific sorting of the quotations/contracts - BADI ECRM_ISU_UTILITY_UIS

    Hi Experts.
    I have one issue related to the Technical object tree on the web ui.
    We previously used the BADI ECRM_ISU_UTILITY_UIS in CRM4.0 to make a sort for example : sort premise by adress, sort contracts by date, .. Then, the result in the connection object tree is formated and sorted.
    In CRM7, we activated the implementation of the BADI but I does not enter in the implementation class Z.
    I put a break point in the method IF_ECRM_ISU_UTILITY_UIS~SET_TREE_OUTPUT_STRUC but, the program does not enter in it.
    I check in the method GET_INSTANCE of the class CL_EXITHANDLER and it calls the BADI ECRM_ISU_UTILITY_UIS, class CL_EX_ECRM_ISU_UTILITY_UIS.
    My question is what should I do to make the program call my specific implementation of the BADI ECRM_ISU_UTILITY_UIS?
    Is there any customizing or is there a replacement of the method SET_TREE_OUTPUT_STRUC of the BADI on CRM7?
    Thanks.

    As I understand, it should call your custom code.
    I could find there is small difference in Subscreen  tab of ECRM_ISU_UTILITY_UIS definition se19i.e. called programs &Screen in which this custom should called.
    In CRM 4.0, there are 2 entries:
    SAPLECRM_ISU_WSP_INDICATOR     450     SUB_EXT_UI     Customer Definition of External Point of Delivery Name
    SAPLECRM_ISU_WSP_NAVIGATOR     2100     SUB                                                                
    But in CRM 7.0 there is only below:
    SAPLECRM_ISU_WSP_NAVIGATOR     2100     SUB     
    Hope this might help you identify why your implementation is not being called.

  • Warranty Date field in the equipment master data

    Hi everyone!
    I wanted to display the warranty date field in the equipment master data (IE01). I have already made the configuration and added the additional tab and screen thru this path:
    Plant Maintenance and Customer Service > Master Data in Plant Maintenance and Customer Service > Technical Objects > General Data > Set View Profile for Technical Objects
    But still, the tab is not added and the warranty date field is not found in the "Define Field Selection for the Equipment Master Record". please help me with this. We need this data because we are not using serial numbering and warranty master data that's why a way to track the warranty date is thru this adjustment in the equipment master data screen.
    Thank you very much.

    Marlon,
      Make sure that you have assigned this specific profile to the Equipment category of the associated equipment that you are creating under SPRO > PM> Master data> tech object > Equipment > Equip category.
    Regards
    Narasimhan

  • Table EABL Question SORT with  reading date ADATTATS and  ADAT

    Hi all,
    I have selction criteria to qery EABL.
    After select ,i have to sort to get  latest 10 records from EABL .
    I  was told if the value of ADATTATS  is null ,i should display ADAT .
    But to select latest 10 records i have need to sort based upon date field..IF date field is null i will not get sort in proper descending order......
    Any suggestions and help ?
    display :for a partcular contract account
    Current meter reading date 1
    previous meter reading date 2
    previous meter reading date 3
    Is there any other field in this table EABL  which could be used for SORT here  for this display.
    Thanks in advance...
    Edited by: Sona on Feb 26, 2008 7:29 PM

    Yes,
    My case is :
    ADATTATS      
    record1 : date1         
    date2        
    null          
    null           
    record5 : date5   
    ADAT 
    record1 :  0
    0
    date3
    date4
    record5 :     0 
    Result is :
    date1
    date2
    date3
    date4
    date5
    I was told only if date is null in ADATTATS  i should go for ADAT.(that means only then value will be in ADAT)The majority of the time there will be a date in ADATTATS.  If an estimate or manual MR is entered, the date will come from ADAT.
    My test table has all null values in ADATTATS ,i hv values only in ADAT in test table.
    Another question :
    Can we change the data in test tables ?
    Testing process to check the billing run ?what r the steps involved ?

  • Reseting a specific Sort Preference independant from the current App_ID

    Hi,
    I want to reset a specific User Sort Preference. That is no problem, look in the report "current User Preferences" and reset the name with apex_util.remove_preference.
    But I have 3 systems with different App_IDs Developing = 220, Test = 320 and Production = 420. So this specific sort preference has different names in different versions (FSP220_P20_R...., FSP320_P20_R...)
    I dont want to reset all preferences for the user. Is there any solution...?
    Thanks, Juergen

    Hi Vijay!
    Have a look at my post: http://ioi.solutions/easy-way-get-sharepoint-context/
    It will save you a lot of your time.
    SPLoader.js file has example of updating/deleting  items:
    function updateCheckList(list,listItemId,fields) {
    var deferred = $.Deferred();
    SpLoader.ready(function () {
    var listName = list;
    var oList = SpLoader.hostWeb.get_lists().getByTitle(listName);
    var oListItem = oList.getItemById(listItemId);
    $.each(fields, function (index,item) {
    oListItem.set_item(item.fname, item.value);
    oListItem.update();
    SpLoader.context.executeQueryAsync(
    function () {
    deferred.resolve("Operation successfully completed.");
    function (sender, args) {
    deferred.resolve('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    return deferred.promise();
    In the above example I am dynamically updating fields with new values.
    fields= [{fname:'field1',value:1},{fname:'field2',value:0},....]
    Nick

  • How can I sort lines of data (alphabetically) in the new pages 5.0?

    How can I sort lines of data (alphabetically) in the new pages 5.0?
    It was very simple to do in the previou version of pages.

    I'm not sure why people are torturing themselves with Pages 5 given the nearly universal outcry on this forum and the incredibly negative reviews elswhere, such as the App Store.
    Pages 4.3 should still be in an iWorks folder within your Applications folder.  Just use that.
    Please remember to tell Apple what we need from them at:
    http://www.apple.com/feedback/pages.html

  • Date field not working like a date field

    We have quite a few date objects in the Universe but only some seem to function as a date field whereas some do not.
    The easiest way to tell whether a date field is functioning as a date field seems to be to add the date fields as a filter in a query. If it is a proper date field a Calendar option appears. If it is not, no Calendar option appears.
    In the screenshot below, the Latest Approved Date functions like a proper date object and shows a calendar option. The other field does not even though it is a date field too.
    I'm checking with this forum as the Universe designer didn't have any answer for this.

    HI Vivek,
    Go to Universe Designer
    click on object (Latest Approved Date)
    click on definition
    go to TYPE scroll down and select type as DATE
    and export now check the filter it will work
    try once
    Regards,
    Ranjeet

  • Ensure field sequence is correct for data for mutiple source structure

    Hi,
    I'm using LSMW with IDOC message type 'FIDCC2' Basic type 'FIDCCP02'.
    I'm getting error that packed fields are not permitted.
    I'm getting Ensure field sequence is correct for data for mutiple source structures.
    Source Structures
           HEADER_STRUCT            G/L  Account Document Header
               LINE_STRUCT              G/L Account Document Line
    Source Fields
           HEADER_STRUCT             G/L  Account Document Header
               BKTXT                          C(025)    Document  Header Text
               BLART                          C(002)    Document Type
               BLDAT                          DYMD(008) Document Date
               BUDAT                          DYMD(008) Posting Date
               KURSF                          C(009)    Exchange rate
               WAERS                          C(005)    Currency
               WWERT                          DYMD(008) Translation Date
               XBLNR                          C(016)    Reference
               LINE_STRUCT               G/L Account Document Line
                   AUFNR                          C(012)    Order
                   HKONT                          C(010)    G/L Account
                   KOSTL                          C(010)    Cost Center
                   MEINS                          C(003)    Base Unit of Measure
                   MENGE                          C(013)    Quantity
                   PRCTR                          C(010)    Profit Center
                   SGTXT                          C(050)    Text
                   SHKZG                          C(001)    Debit/Credit Ind.
                   WRBTR                          AMT3(013) Amount
    I have changed PAC3 field for caracters fields of same length to avoid erreur message of no packed fields allowed.
    Structure Relations
           E1FIKPF FI Document Header (BKPF)         <<<< HEADER_STRUCT G/L  Account Document Header
                   Select Target Structure E1FIKPF .
               E1FISEG FI Document Item (BSEG)          <<<< LINE_STRUCT   G/L Account Document Line
                   E1FISE2 FI Document Item, Second Part of E1FISEG   (BSEG)
                   E1FINBU FI Subsidiary Ledger (FI-AP-AR) (BSEG)
               E1FISEC CPD Customer/Vendor  (BSEC)
               E1FISET FI Tax Data (BSET)
               E1FIXWT Extended Withholding Tax (WITH_ITEM)
    Files
           Legacy Data          On the PC (Frontend)
               File to read GL Account info   c:\GL_Account.txt
                                              Data for Multiple Source Structures (Sequential Files)
                                              Separator Tabulator
                                              Field Names at Start of File
                                              Field Order Matches Source Structure Definition
                                              With Record End Indicator (Text File)
                                              Code Page ASCII
           Legacy Data          On the R/3 server (application server)
           Imported Data        File for Imported Data (Application Server)
               Imported Data                  c:\SYNERGO_CREATE_LCNA_FI_GLDOC_CREATE.lsmw.read
           Converted Data       File for Converted Data (Application Server)
               Converted Data                 c:\SYNERGO_LCNA_FI_GLDOC_CREATE.lsmw.conv
           Wildcard Value       Value for Wildcard '*' in File Name
    Source Structures and Files
           HEADER_STRUCT G/L  Account Document Header
                         File to read GL Account info c:\GL_Account.txt
               LINE_STRUCT G/L Account Document Line
                           File to read GL Account info c:\GL_Account.txt
    File content:
    Document  Header Text     Document Type     Document Date     Posting Date     Exchange rate     Currency     Translation Date     Reference     
    G/L Account document     SA     20080401     20080409     1.05     CAD     20080409     Reference     
    Order     G/L Account     Cost Center     Base Unit of Measure     Quantity     Profit Center     Text     Debit/Credit Ind.     Amount
         44000022                    1040     Line item text 1     H     250
         60105M01     13431     TO     10          Line item text 2     S     150
    800000     60105M01                         Line item text 3     S     100
         60110P01     6617     H     40          Line item text 4     S     600
         44000022                    ACIBRAM     Line item text 5     H     600
    The file structure is as follow
    Header titles
    Header info
    Line titles
    Line1 info
    Line2 info
    Line3 info
    Line4 info
    Line5 info
    Could someone direct me in the wright direction?
    Thank you in advance!
    Curtis

    Hi,
    Thank you so much for yout reply.
    For example
    i have VBAK(Heder structure)
              VBAP( Item Structure)
    My file should be like this i think
    Identification content         Fieldnames
         H                               VBELN      ERDAT     ERNAM        
                                          Fieldvalues for header
          H                              1000          20080703   swapna
    Identification content         Fieldnames
        I                                   VBELP     AUART 
                                          Fieldvalues for item
        I                                  001             OR
                                           002             OR
    Is this format is correct.
    Let me know whether i am correct or not

Maybe you are looking for

  • HT201272 how can i change my icloud address without having to set up a new account?

    How can I change my icloud address without having to set up a new account?

  • Need Help for API Modifier in Advance Pricing

    Dear Gurus, i've problem when i run API create modifier there is an error message: "err msg 1is: Attribute list_type is invalid. Please re-enter." can u help me solve this problem ?? Thx, Dedy my example script is : ==================================

  • Do I have to buy something else to get Flash Player?

    I go through step 1 and 2 of the Flash Player Installer Process and after I complete the 3rd and hit "Finish", it goes to a screen that says "other products you might be interested in".  It offers the opportunity to buy Photo Shop and Light something

  • ZEN MICRO: MY HEADPHONE JACK IS BROK

    My headphone jack is broken. Does anyone know how to fix it's?When I stick my headphones into the jack, I can still hear sound, but it depends on how I'm holding my mp3 player. If i hold it in a certain position, only one headphone might work or one

  • Mapping 2 tablecolumns to one java property?

    Hello! How can i map 2 tablecolumns to one java property with the workbench? Example: Table1 with fields Description1, Description2 Java Class with Property description The Java-property description should get the following result: Description1 (Desc