Conditions need to be placed.........

Hi all..
I want to write the syntax code for the following conditions......but it i am not able to write exact code for it.....can anyone help me out...the syntax code for the program which to be attached is given below after the conditions....
1.‘O’ – All Active Purchase orders i.e. Open POs
2.‘M’ – If for EKPO – VRTKZ = 1 or 2 then set flag to M. (Example PO in D111 is 4210000049); Else ‘S’ – Single account assignment.
3.Count with Variable, Count all the EKPO-NETWR for all the Purchase order lines.
4.EKKO-BEDAT (We don’t’ store approval date in R/3 so when PO get created in SRM we will use its approval Date.)
5.If EKPO-KNTTP = ‘K’ then EKKN – KOSTL, If EKPO-KNTTP = ‘P’ then EKKN- PS_PSP_PNR and If EKPO-KNTTP = ‘O’ then EKKN- AUFNR
TABLES : ekko.
DATA : lv_record_identifier(3) type c value '100',
       lv_sp_id(3) type c value '100',
       lv_sp_name(60) type c value 'hi',
       lv_creation_date(8) type c,
       lv_creation_time(6) type c,
       lv_file_format(3) type c value 'hello',
       lv_file_version(3) type c value '1.1'.
DATA : lv_record_identifier1(3) type c value '110',
       lv_org_id(4) type c value '1744',
       lv_org_name(60) type c value 'see'.
DATA : BEGIN OF lt_ekko OCCURS 0,
         lv_record_identifier2(3) type c,
         lv_org_id1(4) type c,
         ebeln type ekko-ebeln,           " Purchasing Document Number
         bedat type ekko-bedat,           " Purchasing document date
         bsart type ekko-bsart,           " Purchasing document type
         lifnr type ekko-lifnr,           " Vendor's account number
         zsrm_pcnum type ekko-zsrm_pcnum, " SRM: Procurement card number
         name1 type lfa1-name1,           " Name 1
       END OF lt_ekko.
DATA : BEGIN OF lt_ekpo OCCURS 0,
         ebeln type ekpo-ebeln,   " Purchasing Document Number
         VRTKZ type ekpo-vrtkz,   " Distribution indicator for multiple                                   " account assignment
         AFNAM type ekpo-afnam,   " Name of requisitioner/requester
         TXZ01 type ekpo-txz01,   " Short text
         NETWR type ekpo-netwr,
         MENGE type ekpo-menge,
         KNTTP type ekpo-knttp,
         MWSKZ type ekpo-mwskz,
       END OF lt_ekpo.
DATA : BEGIN OF lt_ekkn OCCURS 0,
         ebeln type ekkn-ebeln,   
         VPROZ type ekkn-vproz,                                SAKTO type ekkn-sakto,   
       END OF lt_ekkn.
DATA : lv_record_identifier3(3) type c value '130',
       lv_org_id2(4) type c value '1744',
       lv_org_name1(60) type c value 'match',
       lv_detail_record_count(5) type c.
DATA : lv_record_identifier4(3) type c value '140',
       lv_extract_record_count(5) type c,
       lv_file_record_count(5) type c.
*for conversion to character type
DATA : v_netwr(13) type c,
       v_menge(13) type c,
       v_VPROZ(3) type c.
DATA : lv_record_count type i.
SELECT-OPTIONS : so_bedat for ekko-bedat,
                 so_bsart for ekko-bsart.
*output string
DATA : output_string1 type string,
       output_string2 type string,
       output_string3 type string,
       output_string4 type string,
       output_string5 type string.
*for tab delimiter
CONSTANTS : c_tab TYPE x VALUE '09'.
*for date and time format
lv_creation_date = sy-datum.
lv_creation_time = sy-uzeit.
concatenate lv_record_identifier
            lv_sp_id
            lv_sp_name
            lv_creation_date
            lv_creation_time
            lv_file_format
            lv_file_version
            into output_string1
    separated by c_tab.
write :/ output_string1.
concatenate lv_record_identifier1
            lv_org_id
            lv_org_name
            into output_string2
    separated by c_tab.
write :/ output_string2.
select a~ebeln
       a~bedat
       a~bsart
       a~zsrm_pcnum
       a~lifnr
       b~name1
       into corresponding fields of table lt_ekko
       from ekko as a inner join lfa1 as b
       on alifnr = blifnr
       where a~bedat in so_bedat
       and a~bsart in so_bsart
     and bedat = sy-datum
       and ( absart = 'V1' OR absart = 'B1' )
       and a~zsrm_pcnum is not null.
IF NOT lt_ekko[] IS INITIAL.
delete adjacent duplicates from lt_ekko[] comparing all fields.
select ebeln
       VRTKZ
       AFNAM
       TXZ01
       NETWR
       MENGE
       KNTTP
       MWSKZ
       from ekpo
       into table lt_ekpo
       for all entries in lt_ekko
       where ebeln = lt_ekko-ebeln.
select  ebeln
        VPROZ
        SAKTO
        from ekkn
        into table lt_ekkn
        for all entries in lt_ekko
        where ebeln = lt_ekko-ebeln.
ENDIF.
*describe table lt_ekko LINES record_count.
lv_record_count = sy-dbcnt.
lv_detail_record_count = lv_record_count.
lv_extract_record_count = lv_record_count - 2.
lv_file_record_count = lv_record_count + 4.
loop at lt_ekko.
read table lt_ekpo with key ebeln = lt_ekko-ebeln binary search.
read table lt_ekkn with key ebeln = lt_ekko-ebeln binary search.
clear : v_netwr,v_menge,v_vproz.
v_netwr = lt_ekpo-netwr.
SHIFT v_netwr LEFT DELETING LEADING space.
v_menge = lt_ekpo-menge.
SHIFT v_menge LEFT DELETING LEADING space.
v_VPROZ = lt_ekkn-VPROZ.
SHIFT v_vproz LEFT DELETING LEADING space.
  clear output_string3.
  lt_ekko-lv_record_identifier2 = '120'.
  lt_ekko-lv_org_id1 = '1744'.
  concatenate lt_ekko-lv_record_identifier2
              lt_ekko-lv_org_id1
              lt_ekko-ebeln
              lt_ekko-bedat
              lt_ekko-bsart
              lt_ekko-lifnr
              lt_ekko-name1
              lt_ekpo-VRTKZ
              lt_ekpo-AFNAM
              lt_ekpo-TXZ01
              v_netwr
              v_MENGE
              lt_ekpo-KNTTP
              lt_ekpo-MWSKZ
              v_VPROZ
              lt_ekkn-SAKTO
              into output_string3
      separated by c_tab.
  write :/ output_string3.
endloop.
concatenate lv_record_identifier3
            lv_org_id2
            lv_org_name1
            lv_detail_record_count
            into output_string4
    separated by c_tab.
write :/ output_string4.
concatenate lv_record_identifier4
            lv_extract_record_count
            lv_file_record_count
            into output_string5
   separated by c_tab.
write :/ output_string5.

case lt_ekpo-vrtkz
  when  '1' or '2'.
      v_vrtkz = 'M'.
  when '3'.
      v_vrtkz = 'S'.
endcase.
case lt_ekpo-knttp
  when 'K'.
    lt_ekpo-knttp = lt_ekkn-kostl.
  when 'P'.
    lt_ekpo-knttp = lt_ekkn-ps_psp_pnr.
  when  'O'.
    lt_ekpo-knttp = lt_ekkn-aufnr.
  when others.
    lt_ekpo-knttp = lt_ekpo-knttp.  " This is redundant
endcase.
REgards,
Rich Heilman

Similar Messages

  • Questions/conditions/needs related to the PBX

    Dear Cisco,
    I act on behalf of my boss who is planning a larger IT investment, but needs some background information.
    So far, we used an open-source free PBX, but after we've recognised its deficiencies, we decided to buy a commercial product.
    To tell the truth, we hesitate between some products, and we need some confirmations related to the concerned PBXs. One of them is Cisco.
    So our questions/conditions/needs are as follows:
    The PBX needs to be an IP PBX.
    Basic PBX features that we need: conferencing, video calling, voicemail, call queuing, IVR.
    The type of all the desktop phone we use is Grandstream GXP 2000. The PBX should be compatible with this device.
    We have a special corporate VoIP SIP phone ("softphone") developed by Ozeki's third party SDK. I am confident that we will continue to use this SDK, so the PBX should be compatible with this software.
    And the last one: we would like to use Android smartphones as the part of our telephone system, so the PBX should support mobile extensions.
    Please indicate if there is a solution that fulfills the above requirements. If so, please suggest me the proper product/service here or send me an e-mail to [email protected]
    I wanted to post this message here intentionally, because any further personal comments/experiences coming from the community would be appreciated.
    Best regards, 
    Donna E. Hill
    [email protected]

    hi
    try SQADB01
    regards
    thyagarajan

  • Sum of the keyfigure from the Infocube and need to be placed in process chain

    Hi,
    Before asking your advise, here is my development,
    1. We are implementing retraction through APD and generating CSV files with Excel file data as Extracting Inputs.
    2. So executed all queries in cutomer exit variant by reading this inputs file from AL11 and result files also placed in same location.
    3. Now my query is,
    Extractor parameters/inputs Excel file format is
    Char1     Char2   
    100          RK     
    now I need to calculate the sum of the KF(i.e this is the kf in result files) value from generated file or info cube and that needs to be placed besides/concatenate extract parameters values.
    Char1     Char2   Total of the KF
    100          RK       1113888
    How to fetch the total value for the KF from the cube and add this into extract parameters file and need attach this to email alert to the user.
    Please advise. Your help is more appreciated.
    Thanks,
    RK

    Hi Ramakrishna,
    Just consider this option - using APD you can store data as per your requirement(rad file and cube data) and create report on direct update DSO and using information broadcasting send it to business user.
    Regards,
    Ganesh Bothe

  • MM condition need to flow to COPA

    Hi Expert
    As there is a requirement from our business that there are some condition type in MM such as Freight , Loading and unloading, etc., expenses need
    to be flow to CO-PA i had tried to assign all the step but still i am not able to generate the COPA document
    Can anybody help me to fix this please guide with necessary step that can be useful to complete this task
    Thanks
    Trinath 

    Hi
    What is the accounting postings you are looking at before they should be posted to COPA? Are they part of the OTC cycle or PTP cycle? If these are on GRN, generally, these type of cost will be inventorized, which means they post to a B/S Account and not to a P&L Account?
    Could you elaborate on the requirement to get them into COPA in the context of your accounting flow?
    Regards
    Sanil Bhandari

  • Conditions Need to decided for ASO or BSO cube?

    Hi
    Could you please tell me on what conditions or business needs we need to decided whether we need to build an ASO or BSO cube?,
    which dimension needs to be Label only or Stored or Accounts or Multiple Hierarchy Enabled property?
    Which needs to be Dense & which needs to be Sparse if it is BSO cube?
    Could you please let me with an example with above question that would be helpfull.
    Thanks,
    Raj

    For dense data sets and Analytic databases ( databases with complex calculations ) and read/write databases we will go for BSO.
    In BSO we can load high and apply the pushdown calculations.
    For large dimensionality and sparse data sets and for read only database we will go for ASO.
    In ASO we can load at leaf level only.

  • MULTISIM need help with placing current dependent current source?

    [IMG]http://i56.tinypic.com/ei7a0n.png[/IMG]
    as you can see it is a current dependent current source and has value 2*I(x). i have placed it in a circuit in multisim but i have a feeling i'm doing it wrong:
    [IMG]http://i54.tinypic.com/2ppezj5.png[/IMG]
    and don't worry about the 25-amp resistor at the right it was the load resistor we had to place.

    Hello,
    Well from the first circuit you have there, you are looking for the current source to output 2x curret passing between the 10ohm resistor and the 19v source. So you need to connect that line to the current controller (the square thing attached to the current source), basically running a wire from the voltage source to one end of the controller, then running the other end of the controller to the 10ohm resistor (deleting the connection between the resistor and the source so that they only connect through the controler).
    Cheers,
    Miguel V
    National Instruments

  • View criteria condition needs to check value in column from another VO

    Hi All,
    My Jdev version - 11.1.1.6
    My use case is as follows-
    2 view objects say EmpVO and DeptVO which have view link with deptId as the foreign key attribute. I need to show the distinct list of departments along with a column which contains the employee names separated by comma for the particular department in the corresponding row. Hence, for DeptVO I use the query as follows -
    -          SELECT deptId,
    -                 deptName,
    -                 (SELECT listagg (empName, ',') WITHIN GROUP (ORDER BY empName)
    -                            emp_names
    -                    FROM EMP_TABLE emp
    -                   WHERE emp.deptId = dept.deptId)
    -                    emp_names
    -            FROM DEPT_TABLE
    This gives me the result on screen as follows -
    DeptId          DeptName          EmpNames
    101               HR                    emp1,emp2
    102               Finance             emp3,emp4,emp5
    Now, my requirement is that there should be a search on department which should also contain an LOV (with search icon) for the employee names i.e. if user selects emp4 from the LOV, department table should list the record for 102.
    For this , I added an LOV on the EmpNames attribute of DeptVO (to map the values from EmpVO) and added a view criteria based on which I added a query panel on screen and the relevant partialTrigger attribute so that the department table should reflect the search results. I tried 2 options in the View Criteria of DeptVO i.e.
    1. Added an Item 'EmpNames = '. WIth this, EmpNames attribute appear with Searh icon in the query panel(which is required) but it does not display the right department record bcz it tries to match exactly with values like 'emp3,emp4,emp5'
    2. If I add Item 'EmpNames CONTAINS ' , EmpNames search will work from query panel i.e. if I enter the value as emp4, department 102 will be shown in the results table but there is no Search icon on the EmpNames field in query panel. The component actually becomes an inputText.
    It would be of great help if you can guide on a better way to achieve this use case. Please let me know if there needs to a change in the approach or if any other details are needed.
    Regards,
    Ansh

    Hi Timo,
    Thanks for this. I have already implemented this part. Here, in the example there's an LOV on department id and form is on employee entity. However, my use case is a different one. I need to search for department which should contain a search criteria for employee in the form of LOV.
    Could you suggest some possible solution?
    Regards,
    Ansh

  • Need help with placing PSD duotone in ILL CS5

    Hi,
    I am using Illustrator CS5 ver.15.0.2. I created a duotone image in Photoshop CS5 from a grayscale image, changed the image mode to duoton and assigned 2 different PMS colors. Saved as Photoshop format. When I tried to place the image in ILL, I got "the file is not readable" message in a dialog box. I tried to copy and paste the image and also drap and drop from PSD to ILL, nothing happened. Tried to delete the preferences files "Adobe Illustrator CS5 Settings" folder and com.adobe.illustrator.plist and restarted ILL, problem still persisted. None of my colleagues was able to place a PSD duotone image into ILL. However, my vendor was able to place a PSD duotone into ILL. In addition, I was not able to open an ILL file from my vendor with a placed PSD duotone image.
    I left comment in the Illustrator Help page, see link below, adobe moderators weren't able to give me an answer.  
    http://help.adobe.com/en_US/illustrator/cs/using/WS714a382cdf7d304e7e07d0100196cbc5f-6565a .html
    Any help is appreciated.
    James

    You must have the new Pantone Color Bridge libraries install but are selecting Pantone Coated or Pantone Uncoated as your library. Change that to Color Bridge Coated Or Color Bridge Uncoated in Photoshop save it with another name use the same colors of course. Then place that in Illustrator. These are the new formuals for the colors pantone makes and I believe they display more accurately on screen.
    If you hae the new Libraries installed and you try to use the old ones you will get this message from Illustrator.
    If you do not have the new Libraries installed as probably your printer has not done so then it may be yu have to install them and then you have to then use Color Bridge as described above.
    Color Bridge Library seems to install to any version but I am not certain it is backward compatible with versions of Illustrator that do not have it installed.
    So make and send two copies to the printer and explain that one uses Color Bridge.
    That's funny originally I used Color + coated and i could not place it now i used it after switching to Color Bridge and that works as well. Go figure.

  • Need to avaid placing floats one after one on the same place

    Hi All,
    I have written a script for placing floats after the citation it works only for either the figure or table. But if both figure and table citation comes on the same place the script placing the floats one on one.
    How to control this?
    Thanks in advance,
    Learner

    Hi Vandy,
    It is a xml workflow.
    Here is the script.
    function caption(){
        this.name = "caption";
        this.xpath = "//caption";
              this.apply = function(caption,){
            with(caption){
                var mydoc = app.activeDocument;
                var pwidth = mydoc.documentPreferences.pageWidth;
                var pheight = mydoc.documentPreferences.pageHeight;
                var topmargin = app.activeDocument.masterSpreads.item(0).pages.item(0).marginPreferences.top;    
                var bottommargin = app.activeDocument.masterSpreads.item(0).pages.item(0).marginPreferences.bottom;
                var insidemarginfirstmaserpage = app.activeDocument.masterSpreads.item(0).pages.item(0).marginPreferences.left;
                var outsidemarginfirstmaserpage = app.activeDocument.masterSpreads.item(0).pages.item(0).marginPreferences.right;
                var y1 = topmargin;
                var x1 = outsidemarginfirstmaserpage;
                var y2 = pheight - bottommargin;
                var x2 = pwidth- insidemarginfirstmaserpage;           
                citpage = figCitationPage.name;
                textfm = placeIntoFrame(app.activeDocument.pages.item(citpage), [y1, x1, y2, x2]);
                textfm.fit(FitOptions.FRAME_TO_CONTENT);
                textfm.appliedObjectStyle = mydoc.objectStyles.item("oSlug");
                mydoc.xmlImportMaps.add(mydoc.xmlTags.item("caption"), mydoc.paragraphStyles.item("Slug"));
                mydoc.mapXMLTagsToStyles();
                textfm.textWrapPreferences.textWrapMode = TextWrapModes.BOUNDING_BOX_TEXT_WRAP;
                textfm.textFramePreferences.ignoreWrap = true;
                var textfmy1 = textfm.geometricBounds[0];
                var textfmx1 = textfm.geometricBounds[1];
                var textfmy2 = textfm.geometricBounds[2];
                var textfmx2 = textfm.geometricBounds[3];
                figfmy1 = figfm.geometricBounds[0];
                figfmx1 = figfm.geometricBounds[1];
                figfmy2 = figfm.geometricBounds[2];
                figfmx2 = figfm.geometricBounds[3];
                textfm.geometricBounds = [textfmy1,textfmx1,textfmy2,x2];
                textfm.move([textfmy1, figfmy2]);
                textfm.fit(FitOptions.FRAME_TO_CONTENT);
                var myPage = mydoc.pages.everyItem();
                var myArray = new Array;
                myArray.push(figfm);
                myArray.push(textfm);
                var t = (textfmy2-textfmy1)
                var groupitem = figCitationPage.groups.add(myArray);
                var citbaseline = exbm - citpos;
                var test = parseInt(citpage)
                var citbaseline = exbm - citpos;
                var test = parseInt(citpage)
                if (citbaseline<groupitem.geometricBounds[2]){
                        groupitem.move(app.activeDocument.pages[test]);
                        groupitem.move([x1,y1])
                else {
                        var by1 = groupitem.geometricBounds[0];
                        var by2 = groupitem.geometricBounds[2];
                        var t = (by2-by1)
                        groupitem.move([x1, (y2-t)])
            return true;
    function figure(){
        this.name = "figure";
        this.xpath = "//figure";
              this.apply = function(figure,){
            with(figure){
                var mydoc = app.activeDocument;
                var pwidth = mydoc.documentPreferences.pageWidth;
                var pheight = mydoc.documentPreferences.pageHeight;
                var topmargin = app.activeDocument.masterSpreads.item(0).pages.item(0).marginPreferences.top;    
                var bottommargin = app.activeDocument.masterSpreads.item(0).pages.item(0).marginPreferences.bottom;
                var insidemarginfirstmaserpage = app.activeDocument.masterSpreads.item(0).pages.item(0).marginPreferences.left;
                var outsidemarginfirstmaserpage = app.activeDocument.masterSpreads.item(0).pages.item(0).marginPreferences.right;
                //var insidemarginsecondmaserpage = app.activeDocument.masterSpreads.item(0).pages.item(1).marginPreferences.left;
                //var outsidemarginsecondmaserpage = app.activeDocument.masterSpreads.item(0).pages.item(1).marginPreferences.right;
                var y1 = topmargin;
                var x1 = outsidemarginfirstmaserpage;
                //var x1recto = AMinsidemargin
                var y2 = pheight - bottommargin;
                var x2 = pwidth- insidemarginfirstmaserpage;           
                //var x2recto = pwidth- AMoutsidemargin;
                citpage = figCitationPage.name;
                figfm = placeIntoFrame(app.activeDocument.pages.item(citpage), [y1, x1, y2, x2]);
                figfm.fit(FitOptions.FRAME_TO_CONTENT);
                figfm.textWrapPreferences.textWrapMode = TextWrapModes.BOUNDING_BOX_TEXT_WRAP;
                figfm.textFramePreferences.ignoreWrap = true;
                figfm.appliedObjectStyle = mydoc.objectStyles.item("ofigure");
                fy1 = figfm.geometricBounds[0];
                fx1 = figfm.geometricBounds[1];
                fy2 = figfm.geometricBounds[2];
                fx2 = figfm.geometricBounds[3];
            return true;

  • What's the conditions needed for 6 gig ram on a snow leopard running 8.1?

    Do I need 2 different 4 gig ram's or 1 of the 2 gig, one of the 4 gig? Also I'm used to making sure my Ram is equal but I'm unfamiliar with Mac hardware.
    Offically I hear Apple say it's limit is 4 gig but 'Other world computing' seems to think I can match 2 gig with 4 gig here:
    http://eshop.macsales.com/shop/memory/iMac/Intel_Core_2_Duo_PC2-6400
    So I want to know if people can confirm this since will be looking into upgrading my Imac to the max limits that I can push it to, at moment 2 gig isn't much for 3d rendering so I could do with more Ram.

    http://www.everymac.com/systems/by_capability/actual-maximum-ram-capacity-of-mac s.html
    Noticed this, it also seem's to say 6 gig ram so I'm probably going to assume the 6 gig ram is correct, following this method here:
    http://forums.macrumors.com/showthread.php?t=1289056
    Mean's I'll need to install 2 gig ram on the first slot, 4 gig ram on the 2nd slot but will have to get on this as soon as I get the parts.
    Anyway thought post here in case someone else finds the thread with similar problem.

  • Hi - Need advice on placing pictures and text within DIV's

    I am new to CSS and am creating DIV's to structure my page.
    I am trying to do two things and i imagine the solution will be similar or the same for both issues.
    Firstly I have created a container DIV in the centre of my page, within that I would like to place pictures and text.
    My questions are
    How do i get one DIV to sit beside another one? it is defaulting to sitting underneath it, I have adjusted the box size etc.
    When adding text I would like it to sit next to the picture (located in the top left corner)  it is currently sitting below the picture.
    many thanks
    Mark

    Here is a tut on positioning divs's:
    http://www.brainjar.com/css/positioning/
    When adding text I would like it to sit next to the picture
    You can create a class to float the picture left, something like this:
    .pic_left {
        float: left;
        padding: 5px;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 5px;
        margin-left: 0;
    When it's floated left the text will be next to it.
    Your markup would be:
    <img src="images/picture.jpg" alt="xxx" width="175" height="165" class="pic_left" />
    Then add the text.

  • Need help with placing Flash animations in Captivate...

    I have a few short animations I did in Flash that I want to put in Adobe Captivate. They place fine and play fine. But I wanted to know if it is possible to have the last frame of the animation show for the rest of the captivate slide. Thanks!

    If I place a .swf in a Captivate slide (v5), it allows me to drag the duration of the swf placeholder to be as short or long within the slide duration.  If the swf file's duration is shorter than the Captivate slide's duration, it cuts out after X seconds, but if I drag the swf duration to match the slide, it plays as long as the slide does.  Is that the info you're looking for or is there more to it?
    Sean

  • Help in writing a condition needed.

    how do i state that my checkbox is checked?
    eg:
    if (checkbox is checked){
    thanks

    private Checkbox checkbox;
    private boolean checked = false;
    // or the second way
    private Ckeckbox(String label, boolean initial state);
    // if you want it to be marked as checked
    boolean checked = true;
    if (checked ==  true) {
    // do something
    // or
    if (!checked) { }

  • Needs Pricing conditions to be ZEROS .

    Hi Friends,
    We are using sales order, which triggers PO automatically based on the outline agreement and picks up conditions and these conditions needs to be ZEROS as per the requirement.
    but technically i used userexit and routine. but these are not working when creating PO : ME21N through saleorder. means conditions are not going to zeros.
    anyone help.
    regards,
    Sreenu.

    Hi Friends,
    We are creating third party Sales order -va01 , which triggers PO automatically .
    in this situation  when Tax amount in document currency(komp-MWSBP) in PO INVOICE TAB is equal to ZERO then the condition ABC (in Condition tab ) needs to be ZEROS as per the requirement.
    anyone help.
    regards,
    Sreenu.

  • Need suggestion in uploading dynamic excel file to corresponding columns of internal table

    Hi Friends,
    I have an excel file which doesn't have standard template. Just the users will key in their header (in row1 ) and followed by item details in excel and upload to internal table. Now by doing some internal developments in program I need to place the values in corresponding fields.
    Let me explain with some examples.
    1. I have an internal table
    data : begin of itab occurs 0,
                       f1,
                       f2,
                       f3,
                       f4,
                       f5,
              end of itab.
    2. I have excel file as below
    3 . Now i need to fill my internal table itab as below
    Need to be placed in corresponding fields.
    4. When I used GUI_UPLOAD FM it updates internal table as
    Please give me suggestion on how to achieve it.
    Thanks in advance.

    Hi Kumar,
    use a temporary table to get excel values and then parse them to a second table with the format you want.
    This is pretty basic.
    regards,
    Edgar

Maybe you are looking for

  • Mac G5i no longer recognising digital camera

    This was working fine one day and then not the other, Previously whenever I plugged in my Pentax Optio S5i via USB port it was picked up immediately and I could copy over photos. Now nothing happens I go to System Profiler and under USB it's there, s

  • Can not commit distributed transaction

    Hi We get error "can not commit distributed transaction" during commit the transaction in which we have create NEW entities. Update-transactions on existing enitites work correct. Our problem is probably due to seauences for object IDs: we are using

  • Safari not honoring text encoding settings

    I'm trying to track down a problem I'm having with Safari Version 2.0.3 (417.9.2) and text encoding. Unfortunately I believe it had something to do with SafariStand, and I somehow can't fully remove it. I have removed SafariStand, SIMBL, and trashed

  • Ipad shipment concelled

    Order number W219294269 yesturday i order an ipad from the online store and the shipment was cancelled .. i want to know the reason of the cancellation >> i try to find apple constomer service email and i didn t find ..

  • Opening multiple bookmarks in new tabs without switching to the new tabs and keeping the bookmark list open

    With the bookmark list open I like to open a number of them at a time, the be problem is that each time I click on a bookmark it opens and switches to a new tab. I like to open around 5 tabs from the bookmark list, with FF I have to open the bookmark